ERC-721
Overview
Max Total Supply
200 TAPEM
Holders
85
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 TAPEMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheApeProjectEasterMint
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-16 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; contract TheApeProjectEasterMint is ERC721A, Ownable { using Strings for uint256; uint256 public cost = 0.33 ether; uint256 public maxSupply = 200; uint256 public tokenCount = 0; bool public paused = true; bool public reveal; string public baseURI; string public notRevealedURI; constructor(string memory _initBaseURI, string memory _initNotRevealedURI) ERC721A("TheApeProjectEasterMint", "TAPEM") { baseURI = _initBaseURI; notRevealedURI = _initNotRevealedURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (reveal) { return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, "/", tokenId.toString(), ".json" ) ) : ""; } else { return bytes(notRevealedURI).length > 0 ? notRevealedURI : ""; } } function mint(uint256 _amount) external payable { require(!paused, "TheApeProjectEasterMint - The Contract is Paused"); require( tokenCount + _amount <= maxSupply, "TheApeProjectEasterMint - max NFT limit exceeded" ); if (msg.sender != owner()) { require( msg.value >= cost * _amount, "TheApeProjectEasterMint - insufficient ethers" ); } _safeMint(msg.sender, _amount); tokenCount += _amount; } //only owner function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function pause() public onlyOwner { paused = !paused; } function revealNFT() external onlyOwner { reveal = !reveal; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052670494654067e1000060095560c8600a556000600b55600c805460ff191660011790553480156200003457600080fd5b50604051620020b2380380620020b28339810160408190526200005791620002da565b604080518082018252601781527f54686541706550726f6a6563744561737465724d696e74000000000000000000602080830191825283518085019094526005845264544150454d60d81b908401528151919291620000b99160029162000167565b508051620000cf90600390602084019062000167565b50506000805550620000e13362000115565b8151620000f690600d90602085019062000167565b5080516200010c90600e90602084019062000167565b50505062000380565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001759062000344565b90600052602060002090601f016020900481019282620001995760008555620001e4565b82601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b50620001f2929150620001f6565b5090565b5b80821115620001f25760008155600101620001f7565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023557600080fd5b81516001600160401b03808211156200025257620002526200020d565b604051601f8301601f19908116603f011681019082821181831017156200027d576200027d6200020d565b816040528381526020925086838588010111156200029a57600080fd5b600091505b83821015620002be57858201830151818301840152908201906200029f565b83821115620002d05760008385830101525b9695505050505050565b60008060408385031215620002ee57600080fd5b82516001600160401b03808211156200030657600080fd5b620003148683870162000223565b935060208501519150808211156200032b57600080fd5b506200033a8582860162000223565b9150509250929050565b600181811c908216806200035957607f821691505b6020821081036200037a57634e487b7160e01b600052602260045260246000fd5b50919050565b611d2280620003906000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104d3578063d5abeb01146104f3578063e985e9c514610509578063f2fde38b1461055257600080fd5b8063a0712d6814610461578063a22cb46514610474578063a475b5dd14610494578063b88d4fde146104b357600080fd5b80638456cb59116100d15780638456cb59146104035780638da5cb5b1461041857806395d89b41146104365780639f181b5e1461044b57600080fd5b806370a08231146103b9578063715018a6146103d957806372250380146103ee57600080fd5b806323b872dd1161016f57806355f804b31161013e57806355f804b31461034a5780635c975abb1461036a5780636352211e146103845780636c0360eb146103a457600080fd5b806323b872dd146102d55780633ccfd60b146102f557806342842e0e1461030a57806344a0d68a1461032a57600080fd5b8063081812fc116101ab578063081812fc14610240578063095ea7b31461027857806313faede61461029857806318160ddd146102bc57600080fd5b806301ffc9a7146101d257806304b4bba91461020757806306fdde031461021e575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461176c565b610572565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c4565b005b34801561022a57600080fd5b50610233610614565b6040516101fe91906117e8565b34801561024c57600080fd5b5061026061025b3660046117fb565b6106a6565b6040516001600160a01b0390911681526020016101fe565b34801561028457600080fd5b5061021c61029336600461182b565b6106ea565b3480156102a457600080fd5b506102ae60095481565b6040519081526020016101fe565b3480156102c857600080fd5b50600154600054036102ae565b3480156102e157600080fd5b5061021c6102f0366004611855565b610777565b34801561030157600080fd5b5061021c610782565b34801561031657600080fd5b5061021c610325366004611855565b610820565b34801561033657600080fd5b5061021c6103453660046117fb565b61083b565b34801561035657600080fd5b5061021c61036536600461191d565b61086a565b34801561037657600080fd5b50600c546101f29060ff1681565b34801561039057600080fd5b5061026061039f3660046117fb565b6108ab565b3480156103b057600080fd5b506102336108bd565b3480156103c557600080fd5b506102ae6103d4366004611966565b61094b565b3480156103e557600080fd5b5061021c61099a565b3480156103fa57600080fd5b506102336109d0565b34801561040f57600080fd5b5061021c6109dd565b34801561042457600080fd5b506008546001600160a01b0316610260565b34801561044257600080fd5b50610233610a1b565b34801561045757600080fd5b506102ae600b5481565b61021c61046f3660046117fb565b610a2a565b34801561048057600080fd5b5061021c61048f366004611981565b610bb7565b3480156104a057600080fd5b50600c546101f290610100900460ff1681565b3480156104bf57600080fd5b5061021c6104ce3660046119bd565b610c4c565b3480156104df57600080fd5b506102336104ee3660046117fb565b610c9d565b3480156104ff57600080fd5b506102ae600a5481565b34801561051557600080fd5b506101f2610524366004611a39565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055e57600080fd5b5061021c61056d366004611966565b610e39565b60006001600160e01b031982166380ac58cd60e01b14806105a357506001600160e01b03198216635b5e139f60e01b145b806105be57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105f75760405162461bcd60e51b81526004016105ee90611a6c565b60405180910390fd5b600c805461ff001981166101009182900460ff1615909102179055565b60606002805461062390611aa1565b80601f016020809104026020016040519081016040528092919081815260200182805461064f90611aa1565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b60006106b182610ed1565b6106ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106f5826108ab565b9050806001600160a01b0316836001600160a01b0316036107295760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074957506107478133610524565b155b15610767576040516367d9dca160e11b815260040160405180910390fd5b610772838383610efc565b505050565b610772838383610f58565b6008546001600160a01b031633146107ac5760405162461bcd60e51b81526004016105ee90611a6c565b60006107c06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461080a576040519150601f19603f3d011682016040523d82523d6000602084013e61080f565b606091505b505090508061081d57600080fd5b50565b61077283838360405180602001604052806000815250610c4c565b6008546001600160a01b031633146108655760405162461bcd60e51b81526004016105ee90611a6c565b600955565b6008546001600160a01b031633146108945760405162461bcd60e51b81526004016105ee90611a6c565b80516108a790600d9060208401906116bd565b5050565b60006108b68261116e565b5192915050565b600d80546108ca90611aa1565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611aa1565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b505050505081565b60006001600160a01b038216610974576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109c45760405162461bcd60e51b81526004016105ee90611a6c565b6109ce600061128a565b565b600e80546108ca90611aa1565b6008546001600160a01b03163314610a075760405162461bcd60e51b81526004016105ee90611a6c565b600c805460ff19811660ff90911615179055565b60606003805461062390611aa1565b600c5460ff1615610a965760405162461bcd60e51b815260206004820152603060248201527f54686541706550726f6a6563744561737465724d696e74202d2054686520436f60448201526f1b9d1c9858dd081a5cc814185d5cd95960821b60648201526084016105ee565b600a5481600b54610aa79190611af1565b1115610b0e5760405162461bcd60e51b815260206004820152603060248201527f54686541706550726f6a6563744561737465724d696e74202d206d6178204e4660448201526f15081b1a5b5a5d08195e18d95959195960821b60648201526084016105ee565b6008546001600160a01b03163314610b935780600954610b2e9190611b09565b341015610b935760405162461bcd60e51b815260206004820152602d60248201527f54686541706550726f6a6563744561737465724d696e74202d20696e7375666660448201526c696369656e742065746865727360981b60648201526084016105ee565b610b9d33826112dc565b80600b6000828254610baf9190611af1565b909155505050565b336001600160a01b03831603610be05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c57848484610f58565b6001600160a01b0383163b15158015610c795750610c77848484846112f6565b155b15610c97576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ca882610ed1565b610d0c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ee565b600c54610100900460ff1615610d78576000600d8054610d2b90611aa1565b905011610d4757604051806020016040528060008152506105be565b600d610d52836113e2565b604051602001610d63929190611b44565b60405160208183030381529060405292915050565b6000600e8054610d8790611aa1565b905011610da357604051806020016040528060008152506105be565b600e8054610db090611aa1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc90611aa1565b8015610e295780601f10610dfe57610100808354040283529160200191610e29565b820191906000526020600020905b815481529060010190602001808311610e0c57829003601f168201915b505050505092915050565b919050565b6008546001600160a01b03163314610e635760405162461bcd60e51b81526004016105ee90611a6c565b6001600160a01b038116610ec85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b61081d8161128a565b60008054821080156105be575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f638261116e565b80519091506000906001600160a01b0316336001600160a01b03161480610f9157508151610f919033610524565b80610fac575033610fa1846106a6565b6001600160a01b0316145b905080610fcc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110015760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661102857604051633a954ecd60e21b815260040160405180910390fd5b6110386000848460000151610efc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661112457600054811015611124578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561127157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061126f5780516001600160a01b031615611205579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561126a579392505050565b611205565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108a78282604051806020016040528060008152506114e3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061132b903390899088908890600401611c0e565b6020604051808303816000875af1925050508015611366575060408051601f3d908101601f1916820190925261136391810190611c4b565b60015b6113c4573d808015611394576040519150601f19603f3d011682016040523d82523d6000602084013e611399565b606091505b5080516000036113bc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036114095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611433578061141d81611c68565b915061142c9050600a83611c97565b915061140d565b60008167ffffffffffffffff81111561144e5761144e611891565b6040519080825280601f01601f191660200182016040528015611478576020820181803683370190505b5090505b84156113da5761148d600183611cab565b915061149a600a86611cc2565b6114a5906030611af1565b60f81b8183815181106114ba576114ba611cd6565b60200101906001600160f81b031916908160001a9053506114dc600a86611c97565b945061147c565b61077283838360016000546001600160a01b03851661151457604051622e076360e81b815260040160405180910390fd5b836000036115355760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115e757506001600160a01b0387163b15155b1561166f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163860008884806001019550886112f6565b611655576040516368d2bf6b60e11b815260040160405180910390fd5b8082036115ed57826000541461166a57600080fd5b6116b4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611670575b50600055611167565b8280546116c990611aa1565b90600052602060002090601f0160209004810192826116eb5760008555611731565b82601f1061170457805160ff1916838001178555611731565b82800160010185558215611731579182015b82811115611731578251825591602001919060010190611716565b5061173d929150611741565b5090565b5b8082111561173d5760008155600101611742565b6001600160e01b03198116811461081d57600080fd5b60006020828403121561177e57600080fd5b813561178981611756565b9392505050565b60005b838110156117ab578181015183820152602001611793565b83811115610c975750506000910152565b600081518084526117d4816020860160208601611790565b601f01601f19169290920160200192915050565b60208152600061178960208301846117bc565b60006020828403121561180d57600080fd5b5035919050565b80356001600160a01b0381168114610e3457600080fd5b6000806040838503121561183e57600080fd5b61184783611814565b946020939093013593505050565b60008060006060848603121561186a57600080fd5b61187384611814565b925061188160208501611814565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118c2576118c2611891565b604051601f8501601f19908116603f011681019082821181831017156118ea576118ea611891565b8160405280935085815286868601111561190357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561192f57600080fd5b813567ffffffffffffffff81111561194657600080fd5b8201601f8101841361195757600080fd5b6113da848235602084016118a7565b60006020828403121561197857600080fd5b61178982611814565b6000806040838503121561199457600080fd5b61199d83611814565b9150602083013580151581146119b257600080fd5b809150509250929050565b600080600080608085870312156119d357600080fd5b6119dc85611814565b93506119ea60208601611814565b925060408501359150606085013567ffffffffffffffff811115611a0d57600080fd5b8501601f81018713611a1e57600080fd5b611a2d878235602084016118a7565b91505092959194509250565b60008060408385031215611a4c57600080fd5b611a5583611814565b9150611a6360208401611814565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ab557607f821691505b602082108103611ad557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b0457611b04611adb565b500190565b6000816000190483118215151615611b2357611b23611adb565b500290565b60008151611b3a818560208601611790565b9290920192915050565b600080845481600182811c915080831680611b6057607f831692505b60208084108203611b7f57634e487b7160e01b86526022600452602486fd5b818015611b935760018114611ba457611bd1565b60ff19861689528489019650611bd1565b60008b81526020902060005b86811015611bc95781548b820152908501908301611bb0565b505084890196505b505050505050611c05611bf4611bee83602f60f81b815260010190565b86611b28565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c41908301846117bc565b9695505050505050565b600060208284031215611c5d57600080fd5b815161178981611756565b600060018201611c7a57611c7a611adb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ca657611ca6611c81565b500490565b600082821015611cbd57611cbd611adb565b500390565b600082611cd157611cd1611c81565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122084d0fde461d2cf5ab8779d1fd550eed23b825498d13e37bedc0d293c5c38572e64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6369714d31345463746e6565696a6b4b773634697655646b365569705548317738487139654e566b6865476d00000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6369714d31345463746e6565696a6b4b773634697655646b365569705548317738487139654e566b6865476d0000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104d3578063d5abeb01146104f3578063e985e9c514610509578063f2fde38b1461055257600080fd5b8063a0712d6814610461578063a22cb46514610474578063a475b5dd14610494578063b88d4fde146104b357600080fd5b80638456cb59116100d15780638456cb59146104035780638da5cb5b1461041857806395d89b41146104365780639f181b5e1461044b57600080fd5b806370a08231146103b9578063715018a6146103d957806372250380146103ee57600080fd5b806323b872dd1161016f57806355f804b31161013e57806355f804b31461034a5780635c975abb1461036a5780636352211e146103845780636c0360eb146103a457600080fd5b806323b872dd146102d55780633ccfd60b146102f557806342842e0e1461030a57806344a0d68a1461032a57600080fd5b8063081812fc116101ab578063081812fc14610240578063095ea7b31461027857806313faede61461029857806318160ddd146102bc57600080fd5b806301ffc9a7146101d257806304b4bba91461020757806306fdde031461021e575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461176c565b610572565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c4565b005b34801561022a57600080fd5b50610233610614565b6040516101fe91906117e8565b34801561024c57600080fd5b5061026061025b3660046117fb565b6106a6565b6040516001600160a01b0390911681526020016101fe565b34801561028457600080fd5b5061021c61029336600461182b565b6106ea565b3480156102a457600080fd5b506102ae60095481565b6040519081526020016101fe565b3480156102c857600080fd5b50600154600054036102ae565b3480156102e157600080fd5b5061021c6102f0366004611855565b610777565b34801561030157600080fd5b5061021c610782565b34801561031657600080fd5b5061021c610325366004611855565b610820565b34801561033657600080fd5b5061021c6103453660046117fb565b61083b565b34801561035657600080fd5b5061021c61036536600461191d565b61086a565b34801561037657600080fd5b50600c546101f29060ff1681565b34801561039057600080fd5b5061026061039f3660046117fb565b6108ab565b3480156103b057600080fd5b506102336108bd565b3480156103c557600080fd5b506102ae6103d4366004611966565b61094b565b3480156103e557600080fd5b5061021c61099a565b3480156103fa57600080fd5b506102336109d0565b34801561040f57600080fd5b5061021c6109dd565b34801561042457600080fd5b506008546001600160a01b0316610260565b34801561044257600080fd5b50610233610a1b565b34801561045757600080fd5b506102ae600b5481565b61021c61046f3660046117fb565b610a2a565b34801561048057600080fd5b5061021c61048f366004611981565b610bb7565b3480156104a057600080fd5b50600c546101f290610100900460ff1681565b3480156104bf57600080fd5b5061021c6104ce3660046119bd565b610c4c565b3480156104df57600080fd5b506102336104ee3660046117fb565b610c9d565b3480156104ff57600080fd5b506102ae600a5481565b34801561051557600080fd5b506101f2610524366004611a39565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055e57600080fd5b5061021c61056d366004611966565b610e39565b60006001600160e01b031982166380ac58cd60e01b14806105a357506001600160e01b03198216635b5e139f60e01b145b806105be57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105f75760405162461bcd60e51b81526004016105ee90611a6c565b60405180910390fd5b600c805461ff001981166101009182900460ff1615909102179055565b60606002805461062390611aa1565b80601f016020809104026020016040519081016040528092919081815260200182805461064f90611aa1565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b60006106b182610ed1565b6106ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106f5826108ab565b9050806001600160a01b0316836001600160a01b0316036107295760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074957506107478133610524565b155b15610767576040516367d9dca160e11b815260040160405180910390fd5b610772838383610efc565b505050565b610772838383610f58565b6008546001600160a01b031633146107ac5760405162461bcd60e51b81526004016105ee90611a6c565b60006107c06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461080a576040519150601f19603f3d011682016040523d82523d6000602084013e61080f565b606091505b505090508061081d57600080fd5b50565b61077283838360405180602001604052806000815250610c4c565b6008546001600160a01b031633146108655760405162461bcd60e51b81526004016105ee90611a6c565b600955565b6008546001600160a01b031633146108945760405162461bcd60e51b81526004016105ee90611a6c565b80516108a790600d9060208401906116bd565b5050565b60006108b68261116e565b5192915050565b600d80546108ca90611aa1565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611aa1565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b505050505081565b60006001600160a01b038216610974576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109c45760405162461bcd60e51b81526004016105ee90611a6c565b6109ce600061128a565b565b600e80546108ca90611aa1565b6008546001600160a01b03163314610a075760405162461bcd60e51b81526004016105ee90611a6c565b600c805460ff19811660ff90911615179055565b60606003805461062390611aa1565b600c5460ff1615610a965760405162461bcd60e51b815260206004820152603060248201527f54686541706550726f6a6563744561737465724d696e74202d2054686520436f60448201526f1b9d1c9858dd081a5cc814185d5cd95960821b60648201526084016105ee565b600a5481600b54610aa79190611af1565b1115610b0e5760405162461bcd60e51b815260206004820152603060248201527f54686541706550726f6a6563744561737465724d696e74202d206d6178204e4660448201526f15081b1a5b5a5d08195e18d95959195960821b60648201526084016105ee565b6008546001600160a01b03163314610b935780600954610b2e9190611b09565b341015610b935760405162461bcd60e51b815260206004820152602d60248201527f54686541706550726f6a6563744561737465724d696e74202d20696e7375666660448201526c696369656e742065746865727360981b60648201526084016105ee565b610b9d33826112dc565b80600b6000828254610baf9190611af1565b909155505050565b336001600160a01b03831603610be05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c57848484610f58565b6001600160a01b0383163b15158015610c795750610c77848484846112f6565b155b15610c97576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ca882610ed1565b610d0c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ee565b600c54610100900460ff1615610d78576000600d8054610d2b90611aa1565b905011610d4757604051806020016040528060008152506105be565b600d610d52836113e2565b604051602001610d63929190611b44565b60405160208183030381529060405292915050565b6000600e8054610d8790611aa1565b905011610da357604051806020016040528060008152506105be565b600e8054610db090611aa1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc90611aa1565b8015610e295780601f10610dfe57610100808354040283529160200191610e29565b820191906000526020600020905b815481529060010190602001808311610e0c57829003601f168201915b505050505092915050565b919050565b6008546001600160a01b03163314610e635760405162461bcd60e51b81526004016105ee90611a6c565b6001600160a01b038116610ec85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b61081d8161128a565b60008054821080156105be575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f638261116e565b80519091506000906001600160a01b0316336001600160a01b03161480610f9157508151610f919033610524565b80610fac575033610fa1846106a6565b6001600160a01b0316145b905080610fcc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110015760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661102857604051633a954ecd60e21b815260040160405180910390fd5b6110386000848460000151610efc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661112457600054811015611124578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561127157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061126f5780516001600160a01b031615611205579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561126a579392505050565b611205565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108a78282604051806020016040528060008152506114e3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061132b903390899088908890600401611c0e565b6020604051808303816000875af1925050508015611366575060408051601f3d908101601f1916820190925261136391810190611c4b565b60015b6113c4573d808015611394576040519150601f19603f3d011682016040523d82523d6000602084013e611399565b606091505b5080516000036113bc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036114095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611433578061141d81611c68565b915061142c9050600a83611c97565b915061140d565b60008167ffffffffffffffff81111561144e5761144e611891565b6040519080825280601f01601f191660200182016040528015611478576020820181803683370190505b5090505b84156113da5761148d600183611cab565b915061149a600a86611cc2565b6114a5906030611af1565b60f81b8183815181106114ba576114ba611cd6565b60200101906001600160f81b031916908160001a9053506114dc600a86611c97565b945061147c565b61077283838360016000546001600160a01b03851661151457604051622e076360e81b815260040160405180910390fd5b836000036115355760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115e757506001600160a01b0387163b15155b1561166f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163860008884806001019550886112f6565b611655576040516368d2bf6b60e11b815260040160405180910390fd5b8082036115ed57826000541461166a57600080fd5b6116b4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611670575b50600055611167565b8280546116c990611aa1565b90600052602060002090601f0160209004810192826116eb5760008555611731565b82601f1061170457805160ff1916838001178555611731565b82800160010185558215611731579182015b82811115611731578251825591602001919060010190611716565b5061173d929150611741565b5090565b5b8082111561173d5760008155600101611742565b6001600160e01b03198116811461081d57600080fd5b60006020828403121561177e57600080fd5b813561178981611756565b9392505050565b60005b838110156117ab578181015183820152602001611793565b83811115610c975750506000910152565b600081518084526117d4816020860160208601611790565b601f01601f19169290920160200192915050565b60208152600061178960208301846117bc565b60006020828403121561180d57600080fd5b5035919050565b80356001600160a01b0381168114610e3457600080fd5b6000806040838503121561183e57600080fd5b61184783611814565b946020939093013593505050565b60008060006060848603121561186a57600080fd5b61187384611814565b925061188160208501611814565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118c2576118c2611891565b604051601f8501601f19908116603f011681019082821181831017156118ea576118ea611891565b8160405280935085815286868601111561190357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561192f57600080fd5b813567ffffffffffffffff81111561194657600080fd5b8201601f8101841361195757600080fd5b6113da848235602084016118a7565b60006020828403121561197857600080fd5b61178982611814565b6000806040838503121561199457600080fd5b61199d83611814565b9150602083013580151581146119b257600080fd5b809150509250929050565b600080600080608085870312156119d357600080fd5b6119dc85611814565b93506119ea60208601611814565b925060408501359150606085013567ffffffffffffffff811115611a0d57600080fd5b8501601f81018713611a1e57600080fd5b611a2d878235602084016118a7565b91505092959194509250565b60008060408385031215611a4c57600080fd5b611a5583611814565b9150611a6360208401611814565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611ab557607f821691505b602082108103611ad557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b0457611b04611adb565b500190565b6000816000190483118215151615611b2357611b23611adb565b500290565b60008151611b3a818560208601611790565b9290920192915050565b600080845481600182811c915080831680611b6057607f831692505b60208084108203611b7f57634e487b7160e01b86526022600452602486fd5b818015611b935760018114611ba457611bd1565b60ff19861689528489019650611bd1565b60008b81526020902060005b86811015611bc95781548b820152908501908301611bb0565b505084890196505b505050505050611c05611bf4611bee83602f60f81b815260010190565b86611b28565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c41908301846117bc565b9695505050505050565b600060208284031215611c5d57600080fd5b815161178981611756565b600060018201611c7a57611c7a611adb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ca657611ca6611c81565b500490565b600082821015611cbd57611cbd611adb565b500390565b600082611cd157611cd1611c81565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122084d0fde461d2cf5ab8779d1fd550eed23b825498d13e37bedc0d293c5c38572e64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6369714d31345463746e6565696a6b4b773634697655646b365569705548317738487139654e566b6865476d00000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6369714d31345463746e6565696a6b4b773634697655646b365569705548317738487139654e566b6865476d0000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmciqM14TctneeijkKw64ivUdk6UipUH1w8Hq9eNVkheGm
Arg [1] : _initNotRevealedURI (string): ipfs://QmciqM14TctneeijkKw64ivUdk6UipUH1w8Hq9eNVkheGm
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d6369714d31345463746e6565696a6b4b77363469765564
Arg [4] : 6b365569705548317738487139654e566b6865476d0000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d6369714d31345463746e6565696a6b4b77363469765564
Arg [7] : 6b365569705548317738487139654e566b6865476d0000000000000000000000
Deployed Bytecode Sourcemap
47247:2402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26465:355;;;;;;;;;;-1:-1:-1;26465:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26465:355:0;;;;;;;;49416:75;;;;;;;;;;;;;:::i;:::-;;29932:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31532:245::-;;;;;;;;;;-1:-1:-1;31532:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;31532:245:0;1550:203:1;31095:371:0;;;;;;;;;;-1:-1:-1;31095:371:0;;;;;:::i;:::-;;:::i;47339:32::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;47339:32:0;2195:177:1;25714:303:0;;;;;;;;;;-1:-1:-1;25968:12:0;;25758:7;25952:13;:28;25714:303;;32503:170;;;;;;;;;;-1:-1:-1;32503:170:0;;;;;:::i;:::-;;:::i;49499:147::-;;;;;;;;;;;;;:::i;32744:185::-;;;;;;;;;;-1:-1:-1;32744:185:0;;;;;:::i;:::-;;:::i;49139:86::-;;;;;;;;;;-1:-1:-1;49139:86:0;;;;;:::i;:::-;;:::i;49233:98::-;;;;;;;;;;-1:-1:-1;49233:98:0;;;;;:::i;:::-;;:::i;47451:25::-;;;;;;;;;;-1:-1:-1;47451:25:0;;;;;;;;29741:124;;;;;;;;;;-1:-1:-1;29741:124:0;;;;;:::i;:::-;;:::i;47508:21::-;;;;;;;;;;;;;:::i;26884:206::-;;;;;;;;;;-1:-1:-1;26884:206:0;;;;;:::i;:::-;;:::i;46366:103::-;;;;;;;;;;;;;:::i;47536:28::-;;;;;;;;;;;;;:::i;49339:69::-;;;;;;;;;;;;;:::i;45715:87::-;;;;;;;;;;-1:-1:-1;45788:6:0;;-1:-1:-1;;;;;45788:6:0;45715:87;;30101:104;;;;;;;;;;;;;:::i;47415:29::-;;;;;;;;;;;;;;;;48563:550;;;;;;:::i;:::-;;:::i;31849:302::-;;;;;;;;;;-1:-1:-1;31849:302:0;;;;;:::i;:::-;;:::i;47483:18::-;;;;;;;;;;-1:-1:-1;47483:18:0;;;;;;;;;;;33000:406;;;;;;;;;;-1:-1:-1;33000:406:0;;;;;:::i;:::-;;:::i;47802:753::-;;;;;;;;;;-1:-1:-1;47802:753:0;;;;;:::i;:::-;;:::i;47378:30::-;;;;;;;;;;;;;;;;32222:214;;;;;;;;;;-1:-1:-1;32222:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32393:25:0;;;32364:4;32393:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32222:214;46624:238;;;;;;;;;;-1:-1:-1;46624:238:0;;;;;:::i;:::-;;:::i;26465:355::-;26612:4;-1:-1:-1;;;;;;26654:40:0;;-1:-1:-1;;;26654:40:0;;:105;;-1:-1:-1;;;;;;;26711:48:0;;-1:-1:-1;;;26711:48:0;26654:105;:158;;;-1:-1:-1;;;;;;;;;;14121:40:0;;;26776:36;26634:178;26465:355;-1:-1:-1;;26465:355:0:o;49416:75::-;45788:6;;-1:-1:-1;;;;;45788:6:0;21859:10;45935:23;45927:68;;;;-1:-1:-1;;;45927:68:0;;;;;;;:::i;:::-;;;;;;;;;49477:6:::1;::::0;;-1:-1:-1;;49467:16:0;::::1;49477:6;::::0;;;::::1;;;49476:7;49467:16:::0;;::::1;;::::0;;49416:75::o;29932:100::-;29986:13;30019:5;30012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29932:100;:::o;31532:245::-;31636:7;31666:16;31674:7;31666;:16::i;:::-;31661:64;;31691:34;;-1:-1:-1;;;31691:34:0;;;;;;;;;;;31661:64;-1:-1:-1;31745:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31745:24:0;;31532:245::o;31095:371::-;31168:13;31184:24;31200:7;31184:15;:24::i;:::-;31168:40;;31229:5;-1:-1:-1;;;;;31223:11:0;:2;-1:-1:-1;;;;;31223:11:0;;31219:48;;31243:24;;-1:-1:-1;;;31243:24:0;;;;;;;;;;;31219:48;21859:10;-1:-1:-1;;;;;31284:21:0;;;;;;:63;;-1:-1:-1;31310:37:0;31327:5;21859:10;32222:214;:::i;31310:37::-;31309:38;31284:63;31280:138;;;31371:35;;-1:-1:-1;;;31371:35:0;;;;;;;;;;;31280:138;31430:28;31439:2;31443:7;31452:5;31430:8;:28::i;:::-;31157:309;31095:371;;:::o;32503:170::-;32637:28;32647:4;32653:2;32657:7;32637:9;:28::i;49499:147::-;45788:6;;-1:-1:-1;;;;;45788:6:0;21859:10;45935:23;45927:68;;;;-1:-1:-1;;;45927:68:0;;;;;;;:::i;:::-;49548:7:::1;49569;45788:6:::0;;-1:-1:-1;;;;;45788:6:0;;45715:87;49569:7:::1;-1:-1:-1::0;;;;;49561:21:0::1;49590;49561:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49547:69;;;49635:2;49627:11;;;::::0;::::1;;49536:110;49499:147::o:0;32744:185::-;32882:39;32899:4;32905:2;32909:7;32882:39;;;;;;;;;;;;:16;:39::i;49139:86::-;45788:6;;-1:-1:-1;;;;;45788:6:0;21859:10;45935:23;45927:68;;;;-1:-1:-1;;;45927:68:0;;;;;;;:::i;:::-;49202:4:::1;:15:::0;49139:86::o;49233:98::-;45788:6;;-1:-1:-1;;;;;45788:6:0;21859:10;45935:23;45927:68;;;;-1:-1:-1;;;45927:68:0;;;;;;;:::i;:::-;49305:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49233:98:::0;:::o;29741:124::-;29805:7;29832:20;29844:7;29832:11;:20::i;:::-;:25;;29741:124;-1:-1:-1;;29741:124:0:o;47508:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26884:206::-;26948:7;-1:-1:-1;;;;;26972:19:0;;26968:60;;27000:28;;-1:-1:-1;;;27000:28:0;;;;;;;;;;;26968:60;-1:-1:-1;;;;;;27054:19:0;;;;;:12;:19;;;;;:27;;;;26884:206::o;46366:103::-;45788:6;;-1:-1:-1;;;;;45788:6:0;21859:10;45935:23;45927:68;;;;-1:-1:-1;;;45927:68:0;;;;;;;:::i;:::-;46431:30:::1;46458:1;46431:18;:30::i;:::-;46366:103::o:0;47536:28::-;;;;;;;:::i;49339:69::-;45788:6;;-1:-1:-1;;;;;45788:6:0;21859:10;45935:23;45927:68;;;;-1:-1:-1;;;45927:68:0;;;;;;;:::i;:::-;49394:6:::1;::::0;;-1:-1:-1;;49384:16:0;::::1;49394:6;::::0;;::::1;49393:7;49384:16;::::0;;49339:69::o;30101:104::-;30157:13;30190:7;30183:14;;;;;:::i;48563:550::-;48631:6;;;;48630:7;48622:68;;;;-1:-1:-1;;;48622:68:0;;6573:2:1;48622:68:0;;;6555:21:1;6612:2;6592:18;;;6585:30;6651:34;6631:18;;;6624:62;-1:-1:-1;;;6702:18:1;;;6695:46;6758:19;;48622:68:0;6371:412:1;48622:68:0;48747:9;;48736:7;48723:10;;:20;;;;:::i;:::-;:33;;48701:131;;;;-1:-1:-1;;;48701:131:0;;7255:2:1;48701:131:0;;;7237:21:1;7294:2;7274:18;;;7267:30;7333:34;7313:18;;;7306:62;-1:-1:-1;;;7384:18:1;;;7377:46;7440:19;;48701:131:0;7053:412:1;48701:131:0;45788:6;;-1:-1:-1;;;;;45788:6:0;48847:10;:21;48843:188;;48931:7;48924:4;;:14;;;;:::i;:::-;48911:9;:27;;48885:134;;;;-1:-1:-1;;;48885:134:0;;7845:2:1;48885:134:0;;;7827:21:1;7884:2;7864:18;;;7857:30;7923:34;7903:18;;;7896:62;-1:-1:-1;;;7974:18:1;;;7967:43;8027:19;;48885:134:0;7643:409:1;48885:134:0;49043:30;49053:10;49065:7;49043:9;:30::i;:::-;49098:7;49084:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;48563:550:0:o;31849:302::-;21859:10;-1:-1:-1;;;;;31963:24:0;;;31959:54;;31996:17;;-1:-1:-1;;;31996:17:0;;;;;;;;;;;31959:54;21859:10;32026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32026:53:0;;;;;;;;;;32095:48;;540:41:1;;;32026:42:0;;21859:10;32095:48;;513:18:1;32095:48:0;;;;;;;31849:302;;:::o;33000:406::-;33167:28;33177:4;33183:2;33187:7;33167:9;:28::i;:::-;-1:-1:-1;;;;;33224:13:0;;3715:19;:23;;33224:89;;;;;33257:56;33288:4;33294:2;33298:7;33307:5;33257:30;:56::i;:::-;33256:57;33224:89;33206:193;;;33347:40;;-1:-1:-1;;;33347:40:0;;;;;;;;;;;33206:193;33000:406;;;;:::o;47802:753::-;47903:13;47956:16;47964:7;47956;:16::i;:::-;47934:113;;;;-1:-1:-1;;;47934:113:0;;8259:2:1;47934:113:0;;;8241:21:1;8298:2;8278:18;;;8271:30;8337:34;8317:18;;;8310:62;-1:-1:-1;;;8388:18:1;;;8381:45;8443:19;;47934:113:0;8057:411:1;47934:113:0;48062:6;;;;;;;48058:490;;;48133:1;48115:7;48109:21;;;;;:::i;:::-;;;:25;:333;;;;;;;;;;;;;;;;;48238:7;48310:18;:7;:16;:18::i;:::-;48191:202;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48085:357;47802:753;-1:-1:-1;;47802:753:0:o;48058:490::-;48513:1;48488:14;48482:28;;;;;:::i;:::-;;;:32;:54;;;;;;;;;;;;;;;;;48517:14;48482:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48475:61;47802:753;-1:-1:-1;;47802:753:0:o;48058:490::-;47802:753;;;:::o;46624:238::-;45788:6;;-1:-1:-1;;;;;45788:6:0;21859:10;45935:23;45927:68;;;;-1:-1:-1;;;45927:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46727:22:0;::::1;46705:110;;;::::0;-1:-1:-1;;;46705:110:0;;10666:2:1;46705:110:0::1;::::0;::::1;10648:21:1::0;10705:2;10685:18;;;10678:30;10744:34;10724:18;;;10717:62;-1:-1:-1;;;10795:18:1;;;10788:36;10841:19;;46705:110:0::1;10464:402:1::0;46705:110:0::1;46826:28;46845:8;46826:18;:28::i;33661:213::-:0;33718:4;33808:13;;33798:7;:23;33755:111;;;;-1:-1:-1;;33839:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33839:27:0;;;;33838:28;;33661:213::o;41541:196::-;41656:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41656:29:0;-1:-1:-1;;;;;41656:29:0;;;;;;;;;41701:28;;41656:24;;41701:28;;;;;;;41541:196;;;:::o;36991:2138::-;37106:35;37144:20;37156:7;37144:11;:20::i;:::-;37219:18;;37106:58;;-1:-1:-1;37177:22:0;;-1:-1:-1;;;;;37203:34:0;21859:10;-1:-1:-1;;;;;37203:34:0;;:101;;;-1:-1:-1;37271:18:0;;37254:50;;21859:10;32222:214;:::i;37254:50::-;37203:154;;;-1:-1:-1;21859:10:0;37321:20;37333:7;37321:11;:20::i;:::-;-1:-1:-1;;;;;37321:36:0;;37203:154;37177:181;;37376:17;37371:66;;37402:35;;-1:-1:-1;;;37402:35:0;;;;;;;;;;;37371:66;37474:4;-1:-1:-1;;;;;37452:26:0;:13;:18;;;-1:-1:-1;;;;;37452:26:0;;37448:67;;37487:28;;-1:-1:-1;;;37487:28:0;;;;;;;;;;;37448:67;-1:-1:-1;;;;;37530:16:0;;37526:52;;37555:23;;-1:-1:-1;;;37555:23:0;;;;;;;;;;;37526:52;37699:49;37716:1;37720:7;37729:13;:18;;;37699:8;:49::i;:::-;-1:-1:-1;;;;;38044:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38044:31:0;;;;;;;-1:-1:-1;;38044:31:0;;;;;;;38090:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38090:29:0;;;;;;;;;;;38136:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38181:61:0;;;;-1:-1:-1;;;38226:15:0;38181:61;;;;;;;;;;;38516:11;;;38546:24;;;;;:29;38516:11;;38546:29;38542:471;;38771:13;;38757:11;:27;38753:245;;;38841:18;;;38809:24;;;:11;:24;;;;;;;;:50;;38924:54;;;;38882:96;;-1:-1:-1;;;38882:96:0;-1:-1:-1;;;;;;38882:96:0;;;-1:-1:-1;;;;;38809:50:0;;;38882:96;;;;;;;38753:245;38019:1005;39060:7;39056:2;-1:-1:-1;;;;;39041:27:0;39050:4;-1:-1:-1;;;;;39041:27:0;;;;;;;;;;;39079:42;37095:2034;;36991:2138;;;:::o;28539:1140::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28681:7:0;28764:13;;28757:4;:20;28726:886;;;28798:31;28832:17;;;:11;:17;;;;;;;;;28798:51;;;;;;;;;-1:-1:-1;;;;;28798:51:0;;;;-1:-1:-1;;;28798:51:0;;;;;;;;;;;-1:-1:-1;;;28798:51:0;;;;;;;;;;;;;;28868:729;;28918:14;;-1:-1:-1;;;;;28918:28:0;;28914:101;;28982:9;28539:1140;-1:-1:-1;;;28539:1140:0:o;28914:101::-;-1:-1:-1;;;29357:6:0;29402:17;;;;:11;:17;;;;;;;;;29390:29;;;;;;;;;-1:-1:-1;;;;;29390:29:0;;;;;-1:-1:-1;;;29390:29:0;;;;;;;;;;;-1:-1:-1;;;29390:29:0;;;;;;;;;;;;;29450:28;29446:109;;29518:9;28539:1140;-1:-1:-1;;;28539:1140:0:o;29446:109::-;29317:261;;;28779:833;28726:886;29640:31;;-1:-1:-1;;;29640:31:0;;;;;;;;;;;47022:191;47115:6;;;-1:-1:-1;;;;;47132:17:0;;;-1:-1:-1;;;;;;47132:17:0;;;;;;;47165:40;;47115:6;;;47132:17;47115:6;;47165:40;;47096:16;;47165:40;47085:128;47022:191;:::o;33882:104::-;33951:27;33961:2;33965:8;33951:27;;;;;;;;;;;;:9;:27::i;42229:772::-;42426:155;;-1:-1:-1;;;42426:155:0;;42392:4;;-1:-1:-1;;;;;42426:36:0;;;;;:155;;21859:10;;42512:4;;42535:7;;42561:5;;42426:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42426:155:0;;;;;;;;-1:-1:-1;;42426:155:0;;;;;;;;;;;;:::i;:::-;;;42409:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42752:6;:13;42769:1;42752:18;42748:235;;42798:40;;-1:-1:-1;;;42798:40:0;;;;;;;;;;;42748:235;42941:6;42935:13;42926:6;42922:2;42918:15;42911:38;42409:585;-1:-1:-1;;;;;;42637:55:0;-1:-1:-1;;;42637:55:0;;-1:-1:-1;42409:585:0;42229:772;;;;;;:::o;398:723::-;454:13;675:5;684:1;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;34349:163;34472:32;34478:2;34482:8;34492:5;34499:4;34910:20;34933:13;-1:-1:-1;;;;;34961:16:0;;34957:48;;34986:19;;-1:-1:-1;;;34986:19:0;;;;;;;;;;;34957:48;35020:8;35032:1;35020:13;35016:44;;35042:18;;-1:-1:-1;;;35042:18:0;;;;;;;;;;;35016:44;-1:-1:-1;;;;;35411:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35470:49:0;;35411:44;;;;;;;;35470:49;;;;-1:-1:-1;;35411:44:0;;;;;;35470:49;;;;;;;;;;;;;;;;35536:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35586:66:0;;;;-1:-1:-1;;;35636:15:0;35586:66;;;;;;;;;;35536:25;35733:23;;;35777:4;:23;;;;-1:-1:-1;;;;;;35785:13:0;;3715:19;:23;;35785:15;35773:832;;;35821:505;35852:38;;35877:12;;-1:-1:-1;;;;;35852:38:0;;;35869:1;;35852:38;;35869:1;;35852:38;35944:212;36013:1;36046:2;36079:14;;;;;;36124:5;35944:30;:212::i;:::-;35913:365;;36214:40;;-1:-1:-1;;;36214:40:0;;;;;;;;;;;35913:365;36321:3;36305:12;:19;35821:505;;36407:12;36390:13;;:29;36386:43;;36421:8;;;36386:43;35773:832;;;36470:120;36501:40;;36526:14;;;;;-1:-1:-1;;;;;36501:40:0;;;36518:1;;36501:40;;36518:1;;36501:40;36585:3;36569:12;:19;36470:120;;35773:832;-1:-1:-1;36619:13:0;:28;36669:60;33000:406;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;2937:18;2978:2;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:356::-;5617:2;5599:21;;;5636:18;;;5629:30;5695:34;5690:2;5675:18;;5668:62;5762:2;5747:18;;5415:356::o;5776:380::-;5855:1;5851:12;;;;5898;;;5919:61;;5973:4;5965:6;5961:17;5951:27;;5919:61;6026:2;6018:6;6015:14;5995:18;5992:38;5989:161;;6072:10;6067:3;6063:20;6060:1;6053:31;6107:4;6104:1;6097:15;6135:4;6132:1;6125:15;5989:161;;5776:380;;;:::o;6788:127::-;6849:10;6844:3;6840:20;6837:1;6830:31;6880:4;6877:1;6870:15;6904:4;6901:1;6894:15;6920:128;6960:3;6991:1;6987:6;6984:1;6981:13;6978:39;;;6997:18;;:::i;:::-;-1:-1:-1;7033:9:1;;6920:128::o;7470:168::-;7510:7;7576:1;7572;7568:6;7564:14;7561:1;7558:21;7553:1;7546:9;7539:17;7535:45;7532:71;;;7583:18;;:::i;:::-;-1:-1:-1;7623:9:1;;7470:168::o;8718:185::-;8760:3;8798:5;8792:12;8813:52;8858:6;8853:3;8846:4;8839:5;8835:16;8813:52;:::i;:::-;8881:16;;;;;8718:185;-1:-1:-1;;8718:185:1:o;9026:1433::-;9404:3;9433:1;9466:6;9460:13;9496:3;9518:1;9546:9;9542:2;9538:18;9528:28;;9606:2;9595:9;9591:18;9628;9618:61;;9672:4;9664:6;9660:17;9650:27;;9618:61;9698:2;9746;9738:6;9735:14;9715:18;9712:38;9709:165;;-1:-1:-1;;;9773:33:1;;9829:4;9826:1;9819:15;9859:4;9780:3;9847:17;9709:165;9890:18;9917:104;;;;10035:1;10030:320;;;;9883:467;;9917:104;-1:-1:-1;;9950:24:1;;9938:37;;9995:16;;;;-1:-1:-1;9917:104:1;;10030:320;8546:1;8539:14;;;8583:4;8570:18;;10125:1;10139:165;10153:6;10150:1;10147:13;10139:165;;;10231:14;;10218:11;;;10211:35;10274:16;;;;10168:10;;10139:165;;;10143:3;;10333:6;10328:3;10324:16;10317:23;;9883:467;;;;;;;10366:87;10391:61;10417:34;10447:3;-1:-1:-1;;;8664:16:1;;8705:1;8696:11;;8599:114;10417:34;10409:6;10391:61;:::i;:::-;-1:-1:-1;;;8968:20:1;;9013:1;9004:11;;8908:113;10366:87;10359:94;9026:1433;-1:-1:-1;;;;;9026:1433:1:o;10871:500::-;-1:-1:-1;;;;;11140:15:1;;;11122:34;;11192:15;;11187:2;11172:18;;11165:43;11239:2;11224:18;;11217:34;;;11287:3;11282:2;11267:18;;11260:31;;;11065:4;;11308:57;;11345:19;;11337:6;11308:57;:::i;:::-;11300:65;10871:500;-1:-1:-1;;;;;;10871:500:1:o;11376:249::-;11445:6;11498:2;11486:9;11477:7;11473:23;11469:32;11466:52;;;11514:1;11511;11504:12;11466:52;11546:9;11540:16;11565:30;11589:5;11565:30;:::i;11630:135::-;11669:3;11690:17;;;11687:43;;11710:18;;:::i;:::-;-1:-1:-1;11757:1:1;11746:13;;11630:135::o;11770:127::-;11831:10;11826:3;11822:20;11819:1;11812:31;11862:4;11859:1;11852:15;11886:4;11883:1;11876:15;11902:120;11942:1;11968;11958:35;;11973:18;;:::i;:::-;-1:-1:-1;12007:9:1;;11902:120::o;12027:125::-;12067:4;12095:1;12092;12089:8;12086:34;;;12100:18;;:::i;:::-;-1:-1:-1;12137:9:1;;12027:125::o;12157:112::-;12189:1;12215;12205:35;;12220:18;;:::i;:::-;-1:-1:-1;12254:9:1;;12157:112::o;12274:127::-;12335:10;12330:3;12326:20;12323:1;12316:31;12366:4;12363:1;12356:15;12390:4;12387:1;12380:15
Swarm Source
ipfs://84d0fde461d2cf5ab8779d1fd550eed23b825498d13e37bedc0d293c5c38572e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.