ERC-721
Overview
Max Total Supply
2,601 MULTIVERS3
Holders
1,744
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MULTIVERS3Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
multivers3
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-19 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // 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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: contracts/ERC721A.sol // Creator: Chiru Labs // Version: 3.2.0 pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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. uint32 numberBurned; uint32 mintedDay1; uint32 mintedDay2; uint32 mintedFree; uint32 mintedPublic; } // 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 1; } /** * @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) public view returns (uint256) { 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) { return uint256(_addressData[owner].numberBurned); } /** * Mint data handlers */ function getMintData(address owner) external view returns (uint mintedDay1, uint mintedDay2, uint mintedFree, uint mintedPublic) { AddressData memory addressData = _addressData[owner]; return (addressData.mintedDay1, addressData.mintedDay2, addressData.mintedFree, addressData.mintedPublic); } function _addToMintDay1(address owner, uint32 amount) internal returns(uint32 newValue) { return (_addressData[owner].mintedDay1 += amount); } function _addToMintDay2(address owner, uint32 amount) internal returns(uint32 newValue) { return (_addressData[owner].mintedDay2 += amount); } function _addToMintFree(address owner, uint32 amount) internal returns(uint32 newValue) { return (_addressData[owner].mintedFree += amount); } function _addToMintPublic(address owner, uint32 amount) internal returns(uint32 newValue) { return (_addressData[owner].mintedPublic += amount); } /** * 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 virtual 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; } /** * @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 ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // 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; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } } /** * @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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); // 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)) } } } } } // File: contracts/ERC721ALowCap.sol // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Low Cap * @dev ERC721A Helper functions for Low Cap (<= 10,000) totalSupply. */ abstract contract ERC721ALowCap is ERC721A { /** * @dev Returns the tokenIds of the address. O(totalSupply) in complexity. */ function tokensOfOwner(address owner) public view returns (uint256[] memory) { uint256 holdingAmount = balanceOf(owner); uint256 currSupply = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; uint256[] memory list = new uint256[](holdingAmount); unchecked { for (uint256 i = _startTokenId(); i < currSupply; ++i) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } // Find out who owns this sequence if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } // Append tokens the last found owner owns in the sequence if (currOwnershipAddr == owner) { list[tokenIdsIdx++] = i; } // All tokens have been found, we don't need to keep searching if (tokenIdsIdx == holdingAmount) { break; } } } return list; } } // File: contracts/MULTIVERS3.sol pragma solidity ^0.8.4; contract multivers3 is Ownable, ERC721A, ERC721ALowCap { // To concatenate the URL of an NFT using Strings for uint; // To verify mint signatures using ECDSA for bytes32; enum SaleDay { CLOSED, PRESALE_DAY_1, PRESALE_DAY_2, PUBLIC } // Used to disallow contracts from sending multiple mint transactions in one tx modifier directOnly { require(msg.sender == tx.origin); _; } // Constants uint constant public cost = 0.00 ether; uint constant public maxMintSupply = 2600; uint constant public FreeMintMaxSupply = 2600; // uint public publicMaxSupply = maxMintSupply - FreeMintMaxSupply; // Used for public and whitelist mints uint constant public maxTxMintAmount = 4; uint constant public publicMaxTxMintAmount = 1; // add Mapping List publicMinters qui permettra d'eviter d'avoir plus d'un mint par addresse pendant le public mint //MODIF MAP address constant signer = 0xE68be8d5788646A3c9FD61fEc32C2dF27e23FE46; // Storage Variables uint public FreeMintSupplyMinted = 0; string public baseURI; bool public isFreeMintActive; /* * Values go in the order they are defined in the Enum * 0: CLOSED * 1: PRESALE_DAY_1 * 2: PRESALE_DAY_2 * 3: PUBLIC */ SaleDay public saleDay; constructor(string memory _theBaseURI) Ownable() ERC721A(unicode"MULTIVERS3", "MULTIVERS3") { baseURI = _theBaseURI; } // Minting function freeMint(address to, uint32 amountToMint, uint maxMintsFree, uint8 v, bytes32 r, bytes32 s) external directOnly { require(isFreeMintActive, "Free mint is not active"); // Mint amount limits require(amountToMint > 0 && _addToMintFree(msg.sender, amountToMint) <= maxMintsFree, "Sorry, invalid amount"); require((FreeMintSupplyMinted += amountToMint) <= FreeMintMaxSupply, "Sorry, not enough NFTs remaining to mint"); // Signature verification require(_verifySignature(keccak256(abi.encodePacked("multivers3Free", msg.sender, maxMintsFree)), v, r, s), "Invalid sig"); // Split mints in batches of `maxTxMintAmount` to avoid having large gas-consuming loops when transfering or selling tokens uint mintedSoFar = 0; do { uint batchAmount = min(amountToMint - mintedSoFar, maxTxMintAmount); mintedSoFar += batchAmount; _mint(to, batchAmount); } while(mintedSoFar < amountToMint); } function ownerMint(address to, uint32 amountToMint) external onlyOwner { // Mint amount limits require(amountToMint > 0,"Sorry, invalid amount"); require((FreeMintSupplyMinted += amountToMint) <= FreeMintMaxSupply, "Sorry, not enough NFTs remaining to mint"); // Split mints in batches of `maxTxMintAmount` to avoid having large gas-consuming loops when transfering or selling tokens uint mintedSoFar = 0; do { uint batchAmount = min(amountToMint - mintedSoFar, maxTxMintAmount); mintedSoFar += batchAmount; _mint(to, batchAmount); } while(mintedSoFar < amountToMint); } function publicMint(uint32 amountToMint) external payable directOnly { require(saleDay == SaleDay.PUBLIC, "Sorry, public sale is not active"); require(amountToMint > 0 && _addToMintPublic(msg.sender, amountToMint) <= publicMaxTxMintAmount, "Sorry, invalid amount"); require(_totalMinted() + amountToMint <= maxMintSupply, "Sorry, not enough NFTs remaining to mint"); // ETH sent verification require(msg.value >= cost * amountToMint); uint mintedSoFar = 0; do { uint batchAmount = min(amountToMint - mintedSoFar, publicMaxTxMintAmount); mintedSoFar += batchAmount; _mint(msg.sender, batchAmount); } while(mintedSoFar < amountToMint); } // View Only function tokenURI(uint _nftId) public view override returns (string memory) { require(_exists(_nftId), "This NFT doesn't exist"); return string(abi.encodePacked(baseURI, _nftId.toString(), ".json")); } // Only Owner Functions function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMintDay(SaleDay day) external onlyOwner { saleDay = day; } function toggleFreeMintStatus() external onlyOwner { isFreeMintActive = !isFreeMintActive; } function _verifySignature(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns(bool) { return hash.toEthSignedMessageHash().recover(v, r, s) == signer; } function min(uint a,uint b) internal pure returns(uint) { return a < b ? a : b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_theBaseURI","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":[],"name":"FreeMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeMintSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amountToMint","type":"uint32"},{"internalType":"uint256","name":"maxMintsFree","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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"}],"name":"getMintData","outputs":[{"internalType":"uint256","name":"mintedDay1","type":"uint256"},{"internalType":"uint256","name":"mintedDay2","type":"uint256"},{"internalType":"uint256","name":"mintedFree","type":"uint256"},{"internalType":"uint256","name":"mintedPublic","type":"uint256"}],"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":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amountToMint","type":"uint32"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxTxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amountToMint","type":"uint32"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"saleDay","outputs":[{"internalType":"enum multivers3.SaleDay","name":"","type":"uint8"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum multivers3.SaleDay","name":"day","type":"uint8"}],"name":"setMintDay","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":"toggleFreeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]
Contract Creation Code
608060405260006009553480156200001657600080fd5b506040516200283f3803806200283f8339810160408190526200003991620001e2565b6040518060400160405280600a8152602001694d554c5449564552533360b01b8152506040518060400160405280600a8152602001694d554c5449564552533360b01b8152506200009962000093620000e860201b60201c565b620000ec565b8151620000ae9060039060208501906200013c565b508051620000c49060049060208401906200013c565b506001805550508051620000e090600a9060208401906200013c565b505062000311565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014a90620002be565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b60006020808385031215620001f657600080fd5b82516001600160401b03808211156200020e57600080fd5b818501915085601f8301126200022357600080fd5b815181811115620002385762000238620002fb565b604051601f8201601f19908116603f01168101908382118183101715620002635762000263620002fb565b8160405282815288868487010111156200027c57600080fd5b600093505b82841015620002a0578484018601518185018701529285019262000281565b82841115620002b25760008684830101525b98975050505050505050565b600181811c90821680620002d357607f821691505b60208210811415620002f557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61251e80620003216000396000f3fe6080604052600436106102045760003560e01c80637a5b85c111610118578063c3e19ed3116100a0578063e985e9c51161006f578063e985e9c5146106a1578063f151d791146106ea578063f2fde38b146106fd578063fd5b5a0b146105f0578063ff12ec741461071d57600080fd5b8063c3e19ed314610606578063c87b56dd1461061b578063d7b4c4661461063b578063dc33e6811461065b57600080fd5b80638da5cb5b116100e75780638da5cb5b1461057d57806395d89b411461059b578063a22cb465146105b0578063b88d4fde146105d0578063c285e107146105f057600080fd5b80637a5b85c1146104f6578063813b4b5a146105105780638462151c146105305780638764dfad1461055d57600080fd5b806339ea3e261161019b5780636352211e1161016a5780636352211e14610476578063676229a6146104965780636c0360eb146104ac57806370a08231146104c1578063715018a6146104e157600080fd5b806339ea3e261461032f57806342842e0e1461035b578063514553e21461037b57806355f804b31461045657600080fd5b80631275c52e116101d75780631275c52e146102ba57806313faede6146102dd57806318160ddd146102f257806323b872dd1461030f57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004612037565b610732565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610784565b60405161023591906122ba565b34801561026c57600080fd5b5061028061027b3660046120da565b610816565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611f7c565b61085a565b005b3480156102c657600080fd5b506102cf600481565b604051908152602001610235565b3480156102e957600080fd5b506102cf600081565b3480156102fe57600080fd5b5060025460015403600019016102cf565b34801561031b57600080fd5b506102b861032a366004611e89565b6108e8565b34801561033b57600080fd5b50600b5461034e90610100900460ff1681565b6040516102359190612292565b34801561036757600080fd5b506102b8610376366004611e89565b6108f3565b34801561038757600080fd5b50610436610396366004611e3b565b6001600160a01b038116600090815260066020908152604091829020825160e08101845281546001600160401b038082168352600160401b8204169382019390935263ffffffff600160801b8404811694820194909452600160a01b8304841660608201819052600160c01b8404851660808301819052600160e01b909404851660a0830181905260019093015490941660c09091018190529193509193565b604080519485526020850193909352918301526060820152608001610235565b34801561046257600080fd5b506102b8610471366004612092565b61090e565b34801561048257600080fd5b506102806104913660046120da565b61092d565b3480156104a257600080fd5b506102cf60095481565b3480156104b857600080fd5b5061025361093f565b3480156104cd57600080fd5b506102cf6104dc366004611e3b565b6109cd565b3480156104ed57600080fd5b506102b8610a1b565b34801561050257600080fd5b50600b546102299060ff1681565b34801561051c57600080fd5b506102b861052b366004611fa6565b610a2f565b34801561053c57600080fd5b5061055061054b366004611e3b565b610aef565b604051610235919061224e565b34801561056957600080fd5b506102b8610578366004611fd0565b610c2c565b34801561058957600080fd5b506000546001600160a01b0316610280565b3480156105a757600080fd5b50610253610de9565b3480156105bc57600080fd5b506102b86105cb366004611f40565b610df8565b3480156105dc57600080fd5b506102b86105eb366004611ec5565b610e8e565b3480156105fc57600080fd5b506102cf610a2881565b34801561061257600080fd5b506102cf600181565b34801561062757600080fd5b506102536106363660046120da565b610edf565b34801561064757600080fd5b506102b8610656366004612071565b610f61565b34801561066757600080fd5b506102cf610676366004611e3b565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b3480156106ad57600080fd5b506102296106bc366004611e56565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6102b86106f83660046120f3565b610f92565b34801561070957600080fd5b506102b8610718366004611e3b565b6110f0565b34801561072957600080fd5b506102b8611169565b60006001600160e01b031982166380ac58cd60e01b148061076357506001600160e01b03198216635b5e139f60e01b145b8061077e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610793906123fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf906123fa565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b600061082182611185565b61083e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108658261092d565b9050806001600160a01b0316836001600160a01b0316141561089a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ba57506108b881336106bc565b155b156108d8576040516367d9dca160e11b815260040160405180910390fd5b6108e38383836111be565b505050565b6108e383838361121a565b6108e383838360405180602001604052806000815250610e8e565b610916611407565b805161092990600a906020840190611cfd565b5050565b600061093882611461565b5192915050565b600a805461094c906123fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610978906123fa565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b505050505081565b60006001600160a01b0382166109f6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b610a23611407565b610a2d6000611588565b565b610a37611407565b60008163ffffffff1611610a665760405162461bcd60e51b8152600401610a5d906122cd565b60405180910390fd5b610a288163ffffffff1660096000828254610a819190612344565b9250508190551115610aa55760405162461bcd60e51b8152600401610a5d906122fc565b60005b6000610ac4610abd8363ffffffff86166123b7565b60046115d8565b9050610ad08183612344565b9150610adc84826115f0565b508163ffffffff168110610aa857505050565b60606000610afc836109cd565b60015490915060008080846001600160401b03811115610b1e57610b1e6124bc565b604051908082528060200260200182016040528015610b47578160200160208202803683370190505b50905060015b84811015610c2157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610bb45750610c19565b80516001600160a01b031615610bc957805193505b886001600160a01b0316846001600160a01b03161415610c095781838680600101975081518110610bfc57610bfc6124a6565b6020026020010181815250505b86851415610c175750610c21565b505b600101610b4d565b509695505050505050565b333214610c3857600080fd5b600b5460ff16610c8a5760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610a5d565b60008563ffffffff16118015610caf575083610ca6338761171b565b63ffffffff1611155b610ccb5760405162461bcd60e51b8152600401610a5d906122cd565b610a288563ffffffff1660096000828254610ce69190612344565b9250508190551115610d0a5760405162461bcd60e51b8152600401610a5d906122fc565b6040516d6d756c746976657273334672656560901b60208201526bffffffffffffffffffffffff193360601b16602e82015260428101859052610d689060620160405160208183030381529060405280519060200120848484611778565b610da25760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610a5d565b60005b6000610dba610abd8363ffffffff8a166123b7565b9050610dc68183612344565b9150610dd288826115f0565b508563ffffffff168110610da55750505050505050565b606060048054610793906123fa565b6001600160a01b038216331415610e225760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9984848461121a565b6001600160a01b0383163b15158015610ebb5750610eb984848484611809565b155b15610ed9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eea82611185565b610f2f5760405162461bcd60e51b8152602060048201526016602482015275151a1a5cc813919508191bd95cdb89dd08195e1a5cdd60521b6044820152606401610a5d565b600a610f3a836118fd565b604051602001610f4b929190612156565b6040516020818303038152906040529050919050565b610f69611407565b600b805482919061ff001916610100836003811115610f8a57610f8a612490565b021790555050565b333214610f9e57600080fd5b6003600b54610100900460ff166003811115610fbc57610fbc612490565b146110095760405162461bcd60e51b815260206004820181905260248201527f536f7272792c207075626c69632073616c65206973206e6f74206163746976656044820152606401610a5d565b60008163ffffffff1611801561102f5750600161102633836119fa565b63ffffffff1611155b61104b5760405162461bcd60e51b8152600401610a5d906122cd565b610a288163ffffffff166110626001546000190190565b61106c9190612344565b111561108a5760405162461bcd60e51b8152600401610a5d906122fc565b61109b63ffffffff82166000612398565b3410156110a757600080fd5b60005b60006110c66110bf8363ffffffff86166123b7565b60016115d8565b90506110d28183612344565b91506110de33826115f0565b508163ffffffff1681106110aa575050565b6110f8611407565b6001600160a01b03811661115d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5d565b61116681611588565b50565b611171611407565b600b805460ff19811660ff90911615179055565b600081600111158015611199575060015482105b801561077e575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122582611461565b9050836001600160a01b031681600001516001600160a01b03161461125c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061127a575061127a85336106bc565b8061129557503361128a84610816565b6001600160a01b0316145b9050806112b557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112dc57604051633a954ecd60e21b815260040160405180910390fd5b6112e8600084876111be565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113bc5760015482146113bc57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b03163314610a2d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5d565b60408051606081018252600080825260208201819052918101919091528180600111158015611491575060015481105b1561156f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061156d5780516001600160a01b031615611504579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611568579392505050565b611504565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008183106115e757816115e9565b825b9392505050565b6001546001600160a01b03831661161957604051622e076360e81b815260040160405180910390fd5b816116375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a018116918217600160401b67ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156116ce5750600155505050565b6001600160a01b03821660009081526006602052604081208054839190601c90611753908490600160e01b900463ffffffff1661235c565b92506101000a81548163ffffffff021916908363ffffffff1602179055905092915050565b600073e68be8d5788646a3c9fd61fec32c2df27e23fe466117f48585856117ec8a6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b929190611a2d565b6001600160a01b03161490505b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061183e903390899088908890600401612211565b602060405180830381600087803b15801561185857600080fd5b505af1925050508015611888575060408051601f3d908101601f1916820190925261188591810190612054565b60015b6118e3573d8080156118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b5080516118db576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611801565b6060816119215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561194b578061193581612435565b91506119449050600a83612384565b9150611925565b6000816001600160401b03811115611965576119656124bc565b6040519080825280601f01601f19166020018201604052801561198f576020820181803683370190505b5090505b8415611801576119a46001836123b7565b91506119b1600a86612450565b6119bc906030612344565b60f81b8183815181106119d1576119d16124a6565b60200101906001600160f81b031916908160001a9053506119f3600a86612384565b9450611993565b6001600160a01b03821660009081526006602052604081206001018054839190839061175390849063ffffffff1661235c565b6000806000611a3e87878787611a55565b91509150611a4b81611b42565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611a8c5750600090506003611b39565b8460ff16601b14158015611aa457508460ff16601c14155b15611ab55750600090506004611b39565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b09573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b3257600060019250925050611b39565b9150600090505b94509492505050565b6000816004811115611b5657611b56612490565b1415611b5f5750565b6001816004811115611b7357611b73612490565b1415611bc15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a5d565b6002816004811115611bd557611bd5612490565b1415611c235760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a5d565b6003816004811115611c3757611c37612490565b1415611c905760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a5d565b6004816004811115611ca457611ca4612490565b14156111665760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a5d565b828054611d09906123fa565b90600052602060002090601f016020900481019282611d2b5760008555611d71565b82601f10611d4457805160ff1916838001178555611d71565b82800160010185558215611d71579182015b82811115611d71578251825591602001919060010190611d56565b50611d7d929150611d81565b5090565b5b80821115611d7d5760008155600101611d82565b60006001600160401b0380841115611db057611db06124bc565b604051601f8501601f19908116603f01168101908282118183101715611dd857611dd86124bc565b81604052809350858152868686011115611df157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2257600080fd5b919050565b803563ffffffff81168114611e2257600080fd5b600060208284031215611e4d57600080fd5b6115e982611e0b565b60008060408385031215611e6957600080fd5b611e7283611e0b565b9150611e8060208401611e0b565b90509250929050565b600080600060608486031215611e9e57600080fd5b611ea784611e0b565b9250611eb560208501611e0b565b9150604084013590509250925092565b60008060008060808587031215611edb57600080fd5b611ee485611e0b565b9350611ef260208601611e0b565b92506040850135915060608501356001600160401b03811115611f1457600080fd5b8501601f81018713611f2557600080fd5b611f3487823560208401611d96565b91505092959194509250565b60008060408385031215611f5357600080fd5b611f5c83611e0b565b915060208301358015158114611f7157600080fd5b809150509250929050565b60008060408385031215611f8f57600080fd5b611f9883611e0b565b946020939093013593505050565b60008060408385031215611fb957600080fd5b611fc283611e0b565b9150611e8060208401611e27565b60008060008060008060c08789031215611fe957600080fd5b611ff287611e0b565b955061200060208801611e27565b945060408701359350606087013560ff8116811461201d57600080fd5b9598949750929560808101359460a0909101359350915050565b60006020828403121561204957600080fd5b81356115e9816124d2565b60006020828403121561206657600080fd5b81516115e9816124d2565b60006020828403121561208357600080fd5b8135600481106115e957600080fd5b6000602082840312156120a457600080fd5b81356001600160401b038111156120ba57600080fd5b8201601f810184136120cb57600080fd5b61180184823560208401611d96565b6000602082840312156120ec57600080fd5b5035919050565b60006020828403121561210557600080fd5b6115e982611e27565b600081518084526121268160208601602086016123ce565b601f01601f19169290920160200192915050565b6000815161214c8185602086016123ce565b9290920192915050565b600080845481600182811c91508083168061217257607f831692505b602080841082141561219257634e487b7160e01b86526022600452602486fd5b8180156121a657600181146121b7576121e4565b60ff198616895284890196506121e4565b60008b81526020902060005b868110156121dc5781548b8201529085019083016121c3565b505084890196505b5050505050506122086121f7828661213a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122449083018461210e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122865783518352928401929184019160010161226a565b50909695505050505050565b60208101600483106122b457634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006115e9602083018461210e565b60208082526015908201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b604082015260600190565b60208082526028908201527f536f7272792c206e6f7420656e6f756768204e4654732072656d61696e696e67604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6000821982111561235757612357612464565b500190565b600063ffffffff80831681851680830382111561237b5761237b612464565b01949350505050565b6000826123935761239361247a565b500490565b60008160001904831182151516156123b2576123b2612464565b500290565b6000828210156123c9576123c9612464565b500390565b60005b838110156123e95781810151838201526020016123d1565b83811115610ed95750506000910152565b600181811c9082168061240e57607f821691505b6020821081141561242f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244957612449612464565b5060010190565b60008261245f5761245f61247a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461116657600080fdfea2646970667358221220cd9527a6e5417782da2eeceb75c1a88dbfb87a99a754b6dc5a9c3490d45f325b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f75642f697066732f516d5948436d34426157515744595053507a44334357626a46645645314a575555456a59326864483750483361772f0000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80637a5b85c111610118578063c3e19ed3116100a0578063e985e9c51161006f578063e985e9c5146106a1578063f151d791146106ea578063f2fde38b146106fd578063fd5b5a0b146105f0578063ff12ec741461071d57600080fd5b8063c3e19ed314610606578063c87b56dd1461061b578063d7b4c4661461063b578063dc33e6811461065b57600080fd5b80638da5cb5b116100e75780638da5cb5b1461057d57806395d89b411461059b578063a22cb465146105b0578063b88d4fde146105d0578063c285e107146105f057600080fd5b80637a5b85c1146104f6578063813b4b5a146105105780638462151c146105305780638764dfad1461055d57600080fd5b806339ea3e261161019b5780636352211e1161016a5780636352211e14610476578063676229a6146104965780636c0360eb146104ac57806370a08231146104c1578063715018a6146104e157600080fd5b806339ea3e261461032f57806342842e0e1461035b578063514553e21461037b57806355f804b31461045657600080fd5b80631275c52e116101d75780631275c52e146102ba57806313faede6146102dd57806318160ddd146102f257806323b872dd1461030f57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004612037565b610732565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610784565b60405161023591906122ba565b34801561026c57600080fd5b5061028061027b3660046120da565b610816565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611f7c565b61085a565b005b3480156102c657600080fd5b506102cf600481565b604051908152602001610235565b3480156102e957600080fd5b506102cf600081565b3480156102fe57600080fd5b5060025460015403600019016102cf565b34801561031b57600080fd5b506102b861032a366004611e89565b6108e8565b34801561033b57600080fd5b50600b5461034e90610100900460ff1681565b6040516102359190612292565b34801561036757600080fd5b506102b8610376366004611e89565b6108f3565b34801561038757600080fd5b50610436610396366004611e3b565b6001600160a01b038116600090815260066020908152604091829020825160e08101845281546001600160401b038082168352600160401b8204169382019390935263ffffffff600160801b8404811694820194909452600160a01b8304841660608201819052600160c01b8404851660808301819052600160e01b909404851660a0830181905260019093015490941660c09091018190529193509193565b604080519485526020850193909352918301526060820152608001610235565b34801561046257600080fd5b506102b8610471366004612092565b61090e565b34801561048257600080fd5b506102806104913660046120da565b61092d565b3480156104a257600080fd5b506102cf60095481565b3480156104b857600080fd5b5061025361093f565b3480156104cd57600080fd5b506102cf6104dc366004611e3b565b6109cd565b3480156104ed57600080fd5b506102b8610a1b565b34801561050257600080fd5b50600b546102299060ff1681565b34801561051c57600080fd5b506102b861052b366004611fa6565b610a2f565b34801561053c57600080fd5b5061055061054b366004611e3b565b610aef565b604051610235919061224e565b34801561056957600080fd5b506102b8610578366004611fd0565b610c2c565b34801561058957600080fd5b506000546001600160a01b0316610280565b3480156105a757600080fd5b50610253610de9565b3480156105bc57600080fd5b506102b86105cb366004611f40565b610df8565b3480156105dc57600080fd5b506102b86105eb366004611ec5565b610e8e565b3480156105fc57600080fd5b506102cf610a2881565b34801561061257600080fd5b506102cf600181565b34801561062757600080fd5b506102536106363660046120da565b610edf565b34801561064757600080fd5b506102b8610656366004612071565b610f61565b34801561066757600080fd5b506102cf610676366004611e3b565b6001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b3480156106ad57600080fd5b506102296106bc366004611e56565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6102b86106f83660046120f3565b610f92565b34801561070957600080fd5b506102b8610718366004611e3b565b6110f0565b34801561072957600080fd5b506102b8611169565b60006001600160e01b031982166380ac58cd60e01b148061076357506001600160e01b03198216635b5e139f60e01b145b8061077e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610793906123fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf906123fa565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b600061082182611185565b61083e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108658261092d565b9050806001600160a01b0316836001600160a01b0316141561089a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ba57506108b881336106bc565b155b156108d8576040516367d9dca160e11b815260040160405180910390fd5b6108e38383836111be565b505050565b6108e383838361121a565b6108e383838360405180602001604052806000815250610e8e565b610916611407565b805161092990600a906020840190611cfd565b5050565b600061093882611461565b5192915050565b600a805461094c906123fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610978906123fa565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b505050505081565b60006001600160a01b0382166109f6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b610a23611407565b610a2d6000611588565b565b610a37611407565b60008163ffffffff1611610a665760405162461bcd60e51b8152600401610a5d906122cd565b60405180910390fd5b610a288163ffffffff1660096000828254610a819190612344565b9250508190551115610aa55760405162461bcd60e51b8152600401610a5d906122fc565b60005b6000610ac4610abd8363ffffffff86166123b7565b60046115d8565b9050610ad08183612344565b9150610adc84826115f0565b508163ffffffff168110610aa857505050565b60606000610afc836109cd565b60015490915060008080846001600160401b03811115610b1e57610b1e6124bc565b604051908082528060200260200182016040528015610b47578160200160208202803683370190505b50905060015b84811015610c2157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610bb45750610c19565b80516001600160a01b031615610bc957805193505b886001600160a01b0316846001600160a01b03161415610c095781838680600101975081518110610bfc57610bfc6124a6565b6020026020010181815250505b86851415610c175750610c21565b505b600101610b4d565b509695505050505050565b333214610c3857600080fd5b600b5460ff16610c8a5760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610a5d565b60008563ffffffff16118015610caf575083610ca6338761171b565b63ffffffff1611155b610ccb5760405162461bcd60e51b8152600401610a5d906122cd565b610a288563ffffffff1660096000828254610ce69190612344565b9250508190551115610d0a5760405162461bcd60e51b8152600401610a5d906122fc565b6040516d6d756c746976657273334672656560901b60208201526bffffffffffffffffffffffff193360601b16602e82015260428101859052610d689060620160405160208183030381529060405280519060200120848484611778565b610da25760405162461bcd60e51b815260206004820152600b60248201526a496e76616c69642073696760a81b6044820152606401610a5d565b60005b6000610dba610abd8363ffffffff8a166123b7565b9050610dc68183612344565b9150610dd288826115f0565b508563ffffffff168110610da55750505050505050565b606060048054610793906123fa565b6001600160a01b038216331415610e225760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9984848461121a565b6001600160a01b0383163b15158015610ebb5750610eb984848484611809565b155b15610ed9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eea82611185565b610f2f5760405162461bcd60e51b8152602060048201526016602482015275151a1a5cc813919508191bd95cdb89dd08195e1a5cdd60521b6044820152606401610a5d565b600a610f3a836118fd565b604051602001610f4b929190612156565b6040516020818303038152906040529050919050565b610f69611407565b600b805482919061ff001916610100836003811115610f8a57610f8a612490565b021790555050565b333214610f9e57600080fd5b6003600b54610100900460ff166003811115610fbc57610fbc612490565b146110095760405162461bcd60e51b815260206004820181905260248201527f536f7272792c207075626c69632073616c65206973206e6f74206163746976656044820152606401610a5d565b60008163ffffffff1611801561102f5750600161102633836119fa565b63ffffffff1611155b61104b5760405162461bcd60e51b8152600401610a5d906122cd565b610a288163ffffffff166110626001546000190190565b61106c9190612344565b111561108a5760405162461bcd60e51b8152600401610a5d906122fc565b61109b63ffffffff82166000612398565b3410156110a757600080fd5b60005b60006110c66110bf8363ffffffff86166123b7565b60016115d8565b90506110d28183612344565b91506110de33826115f0565b508163ffffffff1681106110aa575050565b6110f8611407565b6001600160a01b03811661115d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5d565b61116681611588565b50565b611171611407565b600b805460ff19811660ff90911615179055565b600081600111158015611199575060015482105b801561077e575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122582611461565b9050836001600160a01b031681600001516001600160a01b03161461125c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061127a575061127a85336106bc565b8061129557503361128a84610816565b6001600160a01b0316145b9050806112b557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112dc57604051633a954ecd60e21b815260040160405180910390fd5b6112e8600084876111be565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113bc5760015482146113bc57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b03163314610a2d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a5d565b60408051606081018252600080825260208201819052918101919091528180600111158015611491575060015481105b1561156f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061156d5780516001600160a01b031615611504579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611568579392505050565b611504565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008183106115e757816115e9565b825b9392505050565b6001546001600160a01b03831661161957604051622e076360e81b815260040160405180910390fd5b816116375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a018116918217600160401b67ffffffffffffffff1990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156116ce5750600155505050565b6001600160a01b03821660009081526006602052604081208054839190601c90611753908490600160e01b900463ffffffff1661235c565b92506101000a81548163ffffffff021916908363ffffffff1602179055905092915050565b600073e68be8d5788646a3c9fd61fec32c2df27e23fe466117f48585856117ec8a6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b929190611a2d565b6001600160a01b03161490505b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061183e903390899088908890600401612211565b602060405180830381600087803b15801561185857600080fd5b505af1925050508015611888575060408051601f3d908101601f1916820190925261188591810190612054565b60015b6118e3573d8080156118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b5080516118db576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611801565b6060816119215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561194b578061193581612435565b91506119449050600a83612384565b9150611925565b6000816001600160401b03811115611965576119656124bc565b6040519080825280601f01601f19166020018201604052801561198f576020820181803683370190505b5090505b8415611801576119a46001836123b7565b91506119b1600a86612450565b6119bc906030612344565b60f81b8183815181106119d1576119d16124a6565b60200101906001600160f81b031916908160001a9053506119f3600a86612384565b9450611993565b6001600160a01b03821660009081526006602052604081206001018054839190839061175390849063ffffffff1661235c565b6000806000611a3e87878787611a55565b91509150611a4b81611b42565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611a8c5750600090506003611b39565b8460ff16601b14158015611aa457508460ff16601c14155b15611ab55750600090506004611b39565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b09573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b3257600060019250925050611b39565b9150600090505b94509492505050565b6000816004811115611b5657611b56612490565b1415611b5f5750565b6001816004811115611b7357611b73612490565b1415611bc15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a5d565b6002816004811115611bd557611bd5612490565b1415611c235760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a5d565b6003816004811115611c3757611c37612490565b1415611c905760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a5d565b6004816004811115611ca457611ca4612490565b14156111665760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a5d565b828054611d09906123fa565b90600052602060002090601f016020900481019282611d2b5760008555611d71565b82601f10611d4457805160ff1916838001178555611d71565b82800160010185558215611d71579182015b82811115611d71578251825591602001919060010190611d56565b50611d7d929150611d81565b5090565b5b80821115611d7d5760008155600101611d82565b60006001600160401b0380841115611db057611db06124bc565b604051601f8501601f19908116603f01168101908282118183101715611dd857611dd86124bc565b81604052809350858152868686011115611df157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2257600080fd5b919050565b803563ffffffff81168114611e2257600080fd5b600060208284031215611e4d57600080fd5b6115e982611e0b565b60008060408385031215611e6957600080fd5b611e7283611e0b565b9150611e8060208401611e0b565b90509250929050565b600080600060608486031215611e9e57600080fd5b611ea784611e0b565b9250611eb560208501611e0b565b9150604084013590509250925092565b60008060008060808587031215611edb57600080fd5b611ee485611e0b565b9350611ef260208601611e0b565b92506040850135915060608501356001600160401b03811115611f1457600080fd5b8501601f81018713611f2557600080fd5b611f3487823560208401611d96565b91505092959194509250565b60008060408385031215611f5357600080fd5b611f5c83611e0b565b915060208301358015158114611f7157600080fd5b809150509250929050565b60008060408385031215611f8f57600080fd5b611f9883611e0b565b946020939093013593505050565b60008060408385031215611fb957600080fd5b611fc283611e0b565b9150611e8060208401611e27565b60008060008060008060c08789031215611fe957600080fd5b611ff287611e0b565b955061200060208801611e27565b945060408701359350606087013560ff8116811461201d57600080fd5b9598949750929560808101359460a0909101359350915050565b60006020828403121561204957600080fd5b81356115e9816124d2565b60006020828403121561206657600080fd5b81516115e9816124d2565b60006020828403121561208357600080fd5b8135600481106115e957600080fd5b6000602082840312156120a457600080fd5b81356001600160401b038111156120ba57600080fd5b8201601f810184136120cb57600080fd5b61180184823560208401611d96565b6000602082840312156120ec57600080fd5b5035919050565b60006020828403121561210557600080fd5b6115e982611e27565b600081518084526121268160208601602086016123ce565b601f01601f19169290920160200192915050565b6000815161214c8185602086016123ce565b9290920192915050565b600080845481600182811c91508083168061217257607f831692505b602080841082141561219257634e487b7160e01b86526022600452602486fd5b8180156121a657600181146121b7576121e4565b60ff198616895284890196506121e4565b60008b81526020902060005b868110156121dc5781548b8201529085019083016121c3565b505084890196505b5050505050506122086121f7828661213a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122449083018461210e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122865783518352928401929184019160010161226a565b50909695505050505050565b60208101600483106122b457634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006115e9602083018461210e565b60208082526015908201527414dbdc9c9e4b081a5b9d985b1a5908185b5bdd5b9d605a1b604082015260600190565b60208082526028908201527f536f7272792c206e6f7420656e6f756768204e4654732072656d61696e696e67604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6000821982111561235757612357612464565b500190565b600063ffffffff80831681851680830382111561237b5761237b612464565b01949350505050565b6000826123935761239361247a565b500490565b60008160001904831182151516156123b2576123b2612464565b500290565b6000828210156123c9576123c9612464565b500390565b60005b838110156123e95781810151838201526020016123d1565b83811115610ed95750506000910152565b600181811c9082168061240e57607f821691505b6020821081141561242f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244957612449612464565b5060010190565b60008261245f5761245f61247a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461116657600080fdfea2646970667358221220cd9527a6e5417782da2eeceb75c1a88dbfb87a99a754b6dc5a9c3490d45f325b64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f75642f697066732f516d5948436d34426157515744595053507a44334357626a46645645314a575555456a59326864483750483361772f0000000000000000000000
-----Decoded View---------------
Arg [0] : _theBaseURI (string): https://sunblocks.mypinata.cloud/ipfs/QmYHCm4BaWQWDYPSPzD3CWbjFdVE1JWUUEjY2hdH7PH3aw/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [2] : 68747470733a2f2f73756e626c6f636b732e6d7970696e6174612e636c6f7564
Arg [3] : 2f697066732f516d5948436d34426157515744595053507a44334357626a4664
Arg [4] : 5645314a575555456a59326864483750483361772f0000000000000000000000
Deployed Bytecode Sourcemap
53117:4927:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36478:305;;;;;;;;;;-1:-1:-1;36478:305:0;;;;;:::i;:::-;;:::i;:::-;;;9774:14:1;;9767:22;9749:41;;9737:2;9722:18;36478:305:0;;;;;;;;40098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41601:204::-;;;;;;;;;;-1:-1:-1;41601:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8435:32:1;;;8417:51;;8405:2;8390:18;41601:204:0;8271:203:1;41164:371:0;;;;;;;;;;-1:-1:-1;41164:371:0;;;;;:::i;:::-;;:::i;:::-;;53837:40;;;;;;;;;;;;53876:1;53837:40;;;;;15369:25:1;;;15357:2;15342:18;53837:40:0;15223:177:1;53580:38:0;;;;;;;;;;;;53608:10;53580:38;;35727:303;;;;;;;;;;-1:-1:-1;35981:12:0;;35584:1;35965:13;:28;-1:-1:-1;;35965:46:0;35727:303;;42466:170;;;;;;;;;;-1:-1:-1;42466:170:0;;;;;:::i;:::-;;:::i;54449:22::-;;;;;;;;;;-1:-1:-1;54449:22:0;;;;;;;;;;;;;;;;;;:::i;42707:185::-;;;;;;;;;;-1:-1:-1;42707:185:0;;;;;:::i;:::-;;:::i;37557:316::-;;;;;;;;;;-1:-1:-1;37557:316:0;;;;;:::i;:::-;-1:-1:-1;;;;;37730:19:0;;37616:15;37730:19;;;:12;:19;;;;;;;;;37697:52;;;;;;;;;-1:-1:-1;;;;;37697:52:0;;;;;-1:-1:-1;;;37697:52:0;;;;;;;;;;;-1:-1:-1;;;37697:52:0;;;;;;;;;;;-1:-1:-1;;;37697:52:0;;;;;;;;;;-1:-1:-1;;;37697:52:0;;;;;;;;;;-1:-1:-1;;;37697:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;37557:316;;;;;;;;;;15636:25:1;;;15692:2;15677:18;;15670:34;;;;15720:18;;;15713:34;15778:2;15763:18;;15756:34;15623:3;15608:19;37557:316:0;15405:391:1;57437:104:0;;;;;;;;;;-1:-1:-1;57437:104:0;;;;;:::i;:::-;;:::i;39906:125::-;;;;;;;;;;-1:-1:-1;39906:125:0;;;;;:::i;:::-;;:::i;54174:36::-;;;;;;;;;;;;;;;;54219:21;;;;;;;;;;;;;:::i;36847:206::-;;;;;;;;;;-1:-1:-1;36847:206:0;;;;;:::i;:::-;;:::i;14246:103::-;;;;;;;;;;;;;:::i;54249:28::-;;;;;;;;;;-1:-1:-1;54249:28:0;;;;;;;;55698:681;;;;;;;;;;-1:-1:-1;55698:681:0;;;;;:::i;:::-;;:::i;51862:1174::-;;;;;;;;;;-1:-1:-1;51862:1174:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54665:1025::-;;;;;;;;;;-1:-1:-1;54665:1025:0;;;;;:::i;:::-;;:::i;13598:87::-;;;;;;;;;;-1:-1:-1;13644:7:0;13671:6;-1:-1:-1;;;;;13671:6:0;13598:87;;40267:104;;;;;;;;;;;;;:::i;41877:287::-;;;;;;;;;;-1:-1:-1;41877:287:0;;;;;:::i;:::-;;:::i;42963:369::-;;;;;;;;;;-1:-1:-1;42963:369:0;;;;;:::i;:::-;;:::i;53625:41::-;;;;;;;;;;;;53662:4;53625:41;;53884:46;;;;;;;;;;;;53929:1;53884:46;;57172:226;;;;;;;;;;-1:-1:-1;57172:226:0;;;;;:::i;:::-;;:::i;57549:84::-;;;;;;;;;;-1:-1:-1;57549:84:0;;;;;:::i;:::-;;:::i;37135:134::-;;;;;;;;;;-1:-1:-1;37135:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;37228:19:0;37193:7;37228:19;;;:12;:19;;;;;:32;-1:-1:-1;;;37228:32:0;;-1:-1:-1;;;;;37228:32:0;;37135:134;42235:164;;;;;;;;;;-1:-1:-1;42235:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42356:25:0;;;42332:4;42356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42235:164;56387:757;;;;;;:::i;:::-;;:::i;14504:201::-;;;;;;;;;;-1:-1:-1;14504:201:0;;;;;:::i;:::-;;:::i;57641:106::-;;;;;;;;;;;;;:::i;36478:305::-;36580:4;-1:-1:-1;;;;;;36617:40:0;;-1:-1:-1;;;36617:40:0;;:105;;-1:-1:-1;;;;;;;36674:48:0;;-1:-1:-1;;;36674:48:0;36617:105;:158;;;-1:-1:-1;;;;;;;;;;26561:40:0;;;36739:36;36597:178;36478:305;-1:-1:-1;;36478:305:0:o;40098:100::-;40152:13;40185:5;40178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40098:100;:::o;41601:204::-;41669:7;41694:16;41702:7;41694;:16::i;:::-;41689:64;;41719:34;;-1:-1:-1;;;41719:34:0;;;;;;;;;;;41689:64;-1:-1:-1;41773:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41773:24:0;;41601:204::o;41164:371::-;41237:13;41253:24;41269:7;41253:15;:24::i;:::-;41237:40;;41298:5;-1:-1:-1;;;;;41292:11:0;:2;-1:-1:-1;;;;;41292:11:0;;41288:48;;;41312:24;;-1:-1:-1;;;41312:24:0;;;;;;;;;;;41288:48;12229:10;-1:-1:-1;;;;;41353:21:0;;;;;;:63;;-1:-1:-1;41379:37:0;41396:5;12229:10;42235:164;:::i;41379:37::-;41378:38;41353:63;41349:138;;;41440:35;;-1:-1:-1;;;41440:35:0;;;;;;;;;;;41349:138;41499:28;41508:2;41512:7;41521:5;41499:8;:28::i;:::-;41226:309;41164:371;;:::o;42466:170::-;42600:28;42610:4;42616:2;42620:7;42600:9;:28::i;42707:185::-;42845:39;42862:4;42868:2;42872:7;42845:39;;;;;;;;;;;;:16;:39::i;57437:104::-;13484:13;:11;:13::i;:::-;57512:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57437:104:::0;:::o;39906:125::-;39970:7;39997:21;40010:7;39997:12;:21::i;:::-;:26;;39906:125;-1:-1:-1;;39906:125:0:o;54219:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36847:206::-;36911:7;-1:-1:-1;;;;;36935:19:0;;36931:60;;36963:28;;-1:-1:-1;;;36963:28:0;;;;;;;;;;;36931:60;-1:-1:-1;;;;;;37017:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37017:27:0;;36847:206::o;14246:103::-;13484:13;:11;:13::i;:::-;14311:30:::1;14338:1;14311:18;:30::i;:::-;14246:103::o:0;55698:681::-;13484:13;:11;:13::i;:::-;55836:1:::1;55821:12;:16;;;55813:49;;;;-1:-1:-1::0;;;55813:49:0::1;;;;;;;:::i;:::-;;;;;;;;;53714:4;55906:12;55882:36;;:20;;:36;;;;;;;:::i;:::-;;;;;;;55881:59;;55873:112;;;;-1:-1:-1::0;;;55873:112:0::1;;;;;;;:::i;:::-;56131:16;56162:210;56180:16;56199:48;56203:26;56218:11:::0;56203:26:::1;::::0;::::1;;:::i;:::-;53876:1;56199:3;:48::i;:::-;56180:67:::0;-1:-1:-1;56262:26:0::1;56180:67:::0;56262:26;::::1;:::i;:::-;;;56303:22;56309:2;56313:11;56303:5;:22::i;:::-;56165:172;56358:12;56344:26;;:11;:26;56162:210;;55769:610;55698:681:::0;;:::o;51862:1174::-;51921:16;51950:21;51974:16;51984:5;51974:9;:16::i;:::-;52022:13;;51950:40;;-1:-1:-1;52001:18:0;;;51950:40;-1:-1:-1;;;;;52138:28:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52138:28:0;-1:-1:-1;52114:52:0;-1:-1:-1;35584:1:0;52204:790;52242:10;52238:1;:14;52204:790;;;52278:31;52312:14;;;:11;:14;;;;;;;;;52278:48;;;;;;;;;-1:-1:-1;;;;;52278:48:0;;;;-1:-1:-1;;;52278:48:0;;-1:-1:-1;;;;;52278:48:0;;;;;;;;-1:-1:-1;;;52278:48:0;;;;;;;;;;;;;;;;52347:73;;52392:8;;;52347:73;52496:14;;-1:-1:-1;;;;;52496:28:0;;52492:111;;52569:14;;;-1:-1:-1;52492:111:0;52724:5;-1:-1:-1;;;;;52703:26:0;:17;-1:-1:-1;;;;;52703:26:0;;52699:98;;;52776:1;52754:4;52759:13;;;;;;52754:19;;;;;;;;:::i;:::-;;;;;;:23;;;;;52699:98;52916:13;52901:11;:28;52897:82;;;52954:5;;;52897:82;52259:735;52204:790;52254:3;;52204:790;;;-1:-1:-1;53024:4:0;51862:1174;-1:-1:-1;;;;;;51862:1174:0:o;54665:1025::-;53508:10;53522:9;53508:23;53500:32;;;;;;54805:16:::1;::::0;::::1;;54797:52;;;::::0;-1:-1:-1;;;54797:52:0;;12785:2:1;54797:52:0::1;::::0;::::1;12767:21:1::0;12824:2;12804:18;;;12797:30;12863:25;12843:18;;;12836:53;12906:18;;54797:52:0::1;12583:347:1::0;54797:52:0::1;54916:1;54901:12;:16;;;:76;;;;;54965:12;54921:40;54936:10;54948:12;54921:14;:40::i;:::-;:56;;;;54901:76;54893:110;;;;-1:-1:-1::0;;;54893:110:0::1;;;;;;;:::i;:::-;53714:4;55047:12;55023:36;;:20;;:36;;;;;;;:::i;:::-;;;;;;;55022:59;;55014:112;;;;-1:-1:-1::0;;;55014:112:0::1;;;;;;;:::i;:::-;55209:60;::::0;-1:-1:-1;;;55209:60:0::1;::::0;::::1;8082:29:1::0;-1:-1:-1;;55244:10:0::1;8149:2:1::0;8145:15;8141:53;8127:12;;;8120:75;8211:12;;;8204:28;;;55182:98:0::1;::::0;8248:12:1;;55209:60:0::1;;;;;;;;;;;;55199:71;;;;;;55272:1;55275;55278;55182:16;:98::i;:::-;55174:122;;;::::0;-1:-1:-1;;;55174:122:0;;12445:2:1;55174:122:0::1;::::0;::::1;12427:21:1::0;12484:2;12464:18;;;12457:30;-1:-1:-1;;;12503:18:1;;;12496:41;12554:18;;55174:122:0::1;12243:335:1::0;55174:122:0::1;55442:16;55473:210;55491:16;55510:48;55514:26;55529:11:::0;55514:26:::1;::::0;::::1;;:::i;55510:48::-;55491:67:::0;-1:-1:-1;55573:26:0::1;55491:67:::0;55573:26;::::1;:::i;:::-;;;55614:22;55620:2;55624:11;55614:5;:22::i;:::-;55476:172;55669:12;55655:26;;:11;:26;55473:210;;54786:904;54665:1025:::0;;;;;;:::o;40267:104::-;40323:13;40356:7;40349:14;;;;;:::i;41877:287::-;-1:-1:-1;;;;;41976:24:0;;12229:10;41976:24;41972:54;;;42009:17;;-1:-1:-1;;;42009:17:0;;;;;;;;;;;41972:54;12229:10;42039:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42039:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42039:53:0;;;;;;;;;;42108:48;;9749:41:1;;;42039:42:0;;12229:10;42108:48;;9722:18:1;42108:48:0;;;;;;;41877:287;;:::o;42963:369::-;43130:28;43140:4;43146:2;43150:7;43130:9;:28::i;:::-;-1:-1:-1;;;;;43173:13:0;;16591:19;:23;;43173:76;;;;;43193:56;43224:4;43230:2;43234:7;43243:5;43193:30;:56::i;:::-;43192:57;43173:76;43169:156;;;43273:40;;-1:-1:-1;;;43273:40:0;;;;;;;;;;;43169:156;42963:369;;;;:::o;57172:226::-;57233:13;57267:15;57275:6;57267:7;:15::i;:::-;57259:50;;;;-1:-1:-1;;;57259:50:0;;13137:2:1;57259:50:0;;;13119:21:1;13176:2;13156:18;;;13149:30;-1:-1:-1;;;13195:18:1;;;13188:52;13257:18;;57259:50:0;12935:346:1;57259:50:0;57353:7;57362:17;:6;:15;:17::i;:::-;57336:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57322:68;;57172:226;;;:::o;57549:84::-;13484:13;:11;:13::i;:::-;57612:7:::1;:13:::0;;57622:3;;57612:7;-1:-1:-1;;57612:13:0::1;;57622:3:::0;57612:13:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;57549:84:::0;:::o;56387:757::-;53508:10;53522:9;53508:23;53500:32;;;;;;56486:14:::1;56475:7;::::0;::::1;::::0;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;56467:70;;;::::0;-1:-1:-1;;;56467:70:0;;13891:2:1;56467:70:0::1;::::0;::::1;13873:21:1::0;;;13910:18;;;13903:30;13969:34;13949:18;;;13942:62;14021:18;;56467:70:0::1;13689:356:1::0;56467:70:0::1;56571:1;56556:12;:16;;;:87;;;;;53929:1;56576:42;56593:10;56605:12;56576:16;:42::i;:::-;:67;;;;56556:87;56548:121;;;;-1:-1:-1::0;;;56548:121:0::1;;;;;;;:::i;:::-;53662:4;56707:12;56690:29;;:14;35584:1:::0;36356:13;-1:-1:-1;;36356:31:0;;36123:283;56690:14:::1;:29;;;;:::i;:::-;:46;;56682:99;;;;-1:-1:-1::0;;;56682:99:0::1;;;;;;;:::i;:::-;56849:19;;::::0;::::1;53608:10;56849:19;:::i;:::-;56836:9;:32;;56828:41;;;::::0;::::1;;56882:16;56913:224;56931:16;56950:54;56954:26;56969:11:::0;56954:26:::1;::::0;::::1;;:::i;:::-;53929:1;56950:3;:54::i;:::-;56931:73:::0;-1:-1:-1;57019:26:0::1;56931:73:::0;57019:26;::::1;:::i;:::-;;;57060:30;57066:10;57078:11;57060:5;:30::i;:::-;56916:186;57123:12;57109:26;;:11;:26;56913:224;;56456:688;56387:757:::0;:::o;14504:201::-;13484:13;:11;:13::i;:::-;-1:-1:-1;;;;;14593:22:0;::::1;14585:73;;;::::0;-1:-1:-1;;;14585:73:0;;12038:2:1;14585:73:0::1;::::0;::::1;12020:21:1::0;12077:2;12057:18;;;12050:30;12116:34;12096:18;;;12089:62;-1:-1:-1;;;12167:18:1;;;12160:36;12213:19;;14585:73:0::1;11836:402:1::0;14585:73:0::1;14669:28;14688:8;14669:18;:28::i;:::-;14504:201:::0;:::o;57641:106::-;13484:13;:11;:13::i;:::-;57723:16:::1;::::0;;-1:-1:-1;;57703:36:0;::::1;57723:16;::::0;;::::1;57722:17;57703:36;::::0;;57641:106::o;43587:174::-;43644:4;43687:7;35584:1;43668:26;;:53;;;;;43708:13;;43698:7;:23;43668:53;:85;;;;-1:-1:-1;;43726:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;43726:27:0;;;;43725:28;;43587:174::o;50149:196::-;50264:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50264:29:0;-1:-1:-1;;;;;50264:29:0;;;;;;;;;50309:28;;50264:24;;50309:28;;;;;;;50149:196;;;:::o;45326:2021::-;45441:35;45479:21;45492:7;45479:12;:21::i;:::-;45441:59;;45539:4;-1:-1:-1;;;;;45517:26:0;:13;:18;;;-1:-1:-1;;;;;45517:26:0;;45513:67;;45552:28;;-1:-1:-1;;;45552:28:0;;;;;;;;;;;45513:67;45593:22;12229:10;-1:-1:-1;;;;;45619:20:0;;;;:73;;-1:-1:-1;45656:36:0;45673:4;12229:10;42235:164;:::i;45656:36::-;45619:126;;;-1:-1:-1;12229:10:0;45709:20;45721:7;45709:11;:20::i;:::-;-1:-1:-1;;;;;45709:36:0;;45619:126;45593:153;;45764:17;45759:66;;45790:35;;-1:-1:-1;;;45790:35:0;;;;;;;;;;;45759:66;-1:-1:-1;;;;;45840:16:0;;45836:52;;45865:23;;-1:-1:-1;;;45865:23:0;;;;;;;;;;;45836:52;45953:35;45970:1;45974:7;45983:4;45953:8;:35::i;:::-;-1:-1:-1;;;;;46284:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46284:31:0;;;-1:-1:-1;;;;;46284:31:0;;;-1:-1:-1;;46284:31:0;;;;;;;46330:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46330:29:0;;;;;;;;;;;46410:20;;;:11;:20;;;;;;46445:18;;-1:-1:-1;;;;;;46478:49:0;;;;-1:-1:-1;;;46511:15:0;46478:49;;;;;;;;;;46801:11;;46861:24;;;;;46904:13;;46410:20;;46861:24;;46904:13;46900:384;;47114:13;;47099:11;:28;47095:174;;47152:20;;47221:28;;;;-1:-1:-1;;;;;47195:54:0;-1:-1:-1;;;47195:54:0;-1:-1:-1;;;;;;47195:54:0;;;-1:-1:-1;;;;;47152:20:0;;47195:54;;;;47095:174;46259:1036;;;47331:7;47327:2;-1:-1:-1;;;;;47312:27:0;47321:4;-1:-1:-1;;;;;47312:27:0;;;;;;;;;;;45430:1917;;45326:2021;;;:::o;13763:132::-;13644:7;13671:6;-1:-1:-1;;;;;13671:6:0;12229:10;13827:23;13819:68;;;;-1:-1:-1;;;13819:68:0;;15064:2:1;13819:68:0;;;15046:21:1;;;15083:18;;;15076:30;15142:34;15122:18;;;15115:62;15194:18;;13819:68:0;14862:356:1;38735:1109:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;38846:7:0;;35584:1;38895:23;;:47;;;;;38929:13;;38922:4;:20;38895:47;38891:886;;;38963:31;38997:17;;;:11;:17;;;;;;;;;38963:51;;;;;;;;;-1:-1:-1;;;;;38963:51:0;;;;-1:-1:-1;;;38963:51:0;;-1:-1:-1;;;;;38963:51:0;;;;;;;;-1:-1:-1;;;38963:51:0;;;;;;;;;;;;;;39033:729;;39083:14;;-1:-1:-1;;;;;39083:28:0;;39079:101;;39147:9;38735:1109;-1:-1:-1;;;38735:1109:0:o;39079:101::-;-1:-1:-1;;;39522:6:0;39567:17;;;;:11;:17;;;;;;;;;39555:29;;;;;;;;;-1:-1:-1;;;;;39555:29:0;;;;;-1:-1:-1;;;39555:29:0;;-1:-1:-1;;;;;39555:29:0;;;;;;;;-1:-1:-1;;;39555:29:0;;;;;;;;;;;;;39615:28;39611:109;;39683:9;38735:1109;-1:-1:-1;;;38735:1109:0:o;39611:109::-;39482:261;;;38944:833;38891:886;39805:31;;-1:-1:-1;;;39805:31:0;;;;;;;;;;;14865:191;14939:16;14958:6;;-1:-1:-1;;;;;14975:17:0;;;-1:-1:-1;;;;;;14975:17:0;;;;;;15008:40;;14958:6;;;;;;;15008:40;;14939:16;15008:40;14928:128;14865:191;:::o;57944:95::-;57994:4;58022:1;58018;:5;:13;;58030:1;58018:13;;;58026:1;58018:13;58011:20;57944:95;-1:-1:-1;;;57944:95:0:o;44020:1052::-;44133:13;;-1:-1:-1;;;;;44161:16:0;;44157:48;;44186:19;;-1:-1:-1;;;44186:19:0;;;;;;;;;;;44157:48;44220:13;44216:44;;44242:18;;-1:-1:-1;;;44242:18:0;;;;;;;;;;;44216:44;-1:-1:-1;;;;;44537:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;44596:49:0;;-1:-1:-1;;;;;44537:44:0;;;;;;;44596:49;;;-1:-1:-1;;;;;44537:44:0;;;;;;44596:49;;;;;;;;;;;;;;;;44662:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;44712:66:0;;;;-1:-1:-1;;;44762:15:0;44712:66;;;;;;;;;;44662:25;44859:23;;;44899:112;44926:40;;44951:14;;;;;-1:-1:-1;;;;;44926:40:0;;;44943:1;;44926:40;;44943:1;;44926:40;45006:3;44990:12;:19;;44899:112;;-1:-1:-1;45025:13:0;:28;-1:-1:-1;;;44020:1052:0:o;38209:156::-;-1:-1:-1;;;;;38316:19:0;;38280:15;38316:19;;;:12;:19;;;;;:40;;38350:6;;38316:19;:30;;:40;;38350:6;;-1:-1:-1;;;38316:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;38307:50;;38209:156;;;;:::o;57755:181::-;57848:4;54095:42;57872:46;57910:1;57913;57916;57872:29;:4;10357:58;;7681:66:1;10357:58:0;;;7669:79:1;7764:12;;;7757:28;;;10224:7:0;;7801:12:1;;10357:58:0;;;;;;;;;;;;10347:69;;;;;;10340:76;;10155:269;;;;57872:29;:37;:46;;:37;:46::i;:::-;-1:-1:-1;;;;;57872:56:0;;57865:63;;57755:181;;;;;;;:::o;50837:667::-;51021:72;;-1:-1:-1;;;51021:72:0;;51000:4;;-1:-1:-1;;;;;51021:36:0;;;;;:72;;12229:10;;51072:4;;51078:7;;51087:5;;51021:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51021:72:0;;;;;;;;-1:-1:-1;;51021:72:0;;;;;;;;;;;;:::i;:::-;;;51017:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51255:13:0;;51251:235;;51301:40;;-1:-1:-1;;;51301:40:0;;;;;;;;;;;51251:235;51444:6;51438:13;51429:6;51425:2;51421:15;51414:38;51017:480;-1:-1:-1;;;;;;51140:55:0;-1:-1:-1;;;51140:55:0;;-1:-1:-1;51133:62:0;;430:723;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;-1:-1:-1;;;;;932:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;38373:160;-1:-1:-1;;;;;38482:19:0;;38446:15;38482:19;;;:12;:19;;;;;:32;;:42;;38518:6;;38482:32;38446:15;;38482:42;;38518:6;;38482:42;;;:::i;9576:279::-;9704:7;9725:17;9744:18;9766:25;9777:4;9783:1;9786;9789;9766:10;:25::i;:::-;9724:67;;;;9802:18;9814:5;9802:11;:18::i;:::-;-1:-1:-1;9838:9:0;9576:279;-1:-1:-1;;;;;9576:279:0:o;7805:1632::-;7936:7;;8870:66;8857:79;;8853:163;;;-1:-1:-1;8969:1:0;;-1:-1:-1;8973:30:0;8953:51;;8853:163;9030:1;:7;;9035:2;9030:7;;:18;;;;;9041:1;:7;;9046:2;9041:7;;9030:18;9026:102;;;-1:-1:-1;9081:1:0;;-1:-1:-1;9085:30:0;9065:51;;9026:102;9242:24;;;9225:14;9242:24;;;;;;;;;10028:25:1;;;10101:4;10089:17;;10069:18;;;10062:45;;;;10123:18;;;10116:34;;;10166:18;;;10159:34;;;9242:24:0;;10000:19:1;;9242:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9242:24:0;;-1:-1:-1;;9242:24:0;;;-1:-1:-1;;;;;;;9281:20:0;;9277:103;;9334:1;9338:29;9318:50;;;;;;;9277:103;9400:6;-1:-1:-1;9408:20:0;;-1:-1:-1;7805:1632:0;;;;;;;;:::o;3075:643::-;3153:20;3144:5;:29;;;;;;;;:::i;:::-;;3140:571;;;3075:643;:::o;3140:571::-;3251:29;3242:5;:38;;;;;;;;:::i;:::-;;3238:473;;;3297:34;;-1:-1:-1;;;3297:34:0;;10975:2:1;3297:34:0;;;10957:21:1;11014:2;10994:18;;;10987:30;11053:26;11033:18;;;11026:54;11097:18;;3297:34:0;10773:348:1;3238:473:0;3362:35;3353:5;:44;;;;;;;;:::i;:::-;;3349:362;;;3414:41;;-1:-1:-1;;;3414:41:0;;11328:2:1;3414:41:0;;;11310:21:1;11367:2;11347:18;;;11340:30;11406:33;11386:18;;;11379:61;11457:18;;3414:41:0;11126:355:1;3349:362:0;3486:30;3477:5;:39;;;;;;;;:::i;:::-;;3473:238;;;3533:44;;-1:-1:-1;;;3533:44:0;;13488:2:1;3533:44:0;;;13470:21:1;13527:2;13507:18;;;13500:30;13566:34;13546:18;;;13539:62;-1:-1:-1;;;13617:18:1;;;13610:32;13659:19;;3533:44:0;13286:398:1;3473:238:0;3608:30;3599:5;:39;;;;;;;;:::i;:::-;;3595:116;;;3655:44;;-1:-1:-1;;;3655:44:0;;14252:2:1;3655:44:0;;;14234:21:1;14291:2;14271:18;;;14264:30;14330:34;14310:18;;;14303:62;-1:-1:-1;;;14381:18:1;;;14374:32;14423:19;;3655:44:0;14050:398:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:163::-;895:20;;955:10;944:22;;934:33;;924:61;;981:1;978;971:12;996:186;1055:6;1108:2;1096:9;1087:7;1083:23;1079:32;1076:52;;;1124:1;1121;1114:12;1076:52;1147:29;1166:9;1147:29;:::i;1187:260::-;1255:6;1263;1316:2;1304:9;1295:7;1291:23;1287:32;1284:52;;;1332:1;1329;1322:12;1284:52;1355:29;1374:9;1355:29;:::i;:::-;1345:39;;1403:38;1437:2;1426:9;1422:18;1403:38;:::i;:::-;1393:48;;1187:260;;;;;:::o;1452:328::-;1529:6;1537;1545;1598:2;1586:9;1577:7;1573:23;1569:32;1566:52;;;1614:1;1611;1604:12;1566:52;1637:29;1656:9;1637:29;:::i;:::-;1627:39;;1685:38;1719:2;1708:9;1704:18;1685:38;:::i;:::-;1675:48;;1770:2;1759:9;1755:18;1742:32;1732:42;;1452:328;;;;;:::o;1785:666::-;1880:6;1888;1896;1904;1957:3;1945:9;1936:7;1932:23;1928:33;1925:53;;;1974:1;1971;1964:12;1925:53;1997:29;2016:9;1997:29;:::i;:::-;1987:39;;2045:38;2079:2;2068:9;2064:18;2045:38;:::i;:::-;2035:48;;2130:2;2119:9;2115:18;2102:32;2092:42;;2185:2;2174:9;2170:18;2157:32;-1:-1:-1;;;;;2204:6:1;2201:30;2198:50;;;2244:1;2241;2234:12;2198:50;2267:22;;2320:4;2312:13;;2308:27;-1:-1:-1;2298:55:1;;2349:1;2346;2339:12;2298:55;2372:73;2437:7;2432:2;2419:16;2414:2;2410;2406:11;2372:73;:::i;:::-;2362:83;;;1785:666;;;;;;;:::o;2456:347::-;2521:6;2529;2582:2;2570:9;2561:7;2557:23;2553:32;2550:52;;;2598:1;2595;2588:12;2550:52;2621:29;2640:9;2621:29;:::i;:::-;2611:39;;2700:2;2689:9;2685:18;2672:32;2747:5;2740:13;2733:21;2726:5;2723:32;2713:60;;2769:1;2766;2759:12;2713:60;2792:5;2782:15;;;2456:347;;;;;:::o;2808:254::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;3052:2;3037:18;;;;3024:32;;-1:-1:-1;;;2808:254:1:o;3067:258::-;3134:6;3142;3195:2;3183:9;3174:7;3170:23;3166:32;3163:52;;;3211:1;3208;3201:12;3163:52;3234:29;3253:9;3234:29;:::i;:::-;3224:39;;3282:37;3315:2;3304:9;3300:18;3282:37;:::i;3330:622::-;3431:6;3439;3447;3455;3463;3471;3524:3;3512:9;3503:7;3499:23;3495:33;3492:53;;;3541:1;3538;3531:12;3492:53;3564:29;3583:9;3564:29;:::i;:::-;3554:39;;3612:37;3645:2;3634:9;3630:18;3612:37;:::i;:::-;3602:47;;3696:2;3685:9;3681:18;3668:32;3658:42;;3750:2;3739:9;3735:18;3722:32;3794:4;3787:5;3783:16;3776:5;3773:27;3763:55;;3814:1;3811;3804:12;3763:55;3330:622;;;;-1:-1:-1;3330:622:1;;3889:3;3874:19;;3861:33;;3941:3;3926:19;;;3913:33;;-1:-1:-1;3330:622:1;-1:-1:-1;;3330:622:1:o;3957:245::-;4015:6;4068:2;4056:9;4047:7;4043:23;4039:32;4036:52;;;4084:1;4081;4074:12;4036:52;4123:9;4110:23;4142:30;4166:5;4142:30;:::i;4207:249::-;4276:6;4329:2;4317:9;4308:7;4304:23;4300:32;4297:52;;;4345:1;4342;4335:12;4297:52;4377:9;4371:16;4396:30;4420:5;4396:30;:::i;4461:268::-;4532:6;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4640:9;4627:23;4679:1;4672:5;4669:12;4659:40;;4695:1;4692;4685:12;4734:450;4803:6;4856:2;4844:9;4835:7;4831:23;4827:32;4824:52;;;4872:1;4869;4862:12;4824:52;4912:9;4899:23;-1:-1:-1;;;;;4937:6:1;4934:30;4931:50;;;4977:1;4974;4967:12;4931:50;5000:22;;5053:4;5045:13;;5041:27;-1:-1:-1;5031:55:1;;5082:1;5079;5072:12;5031:55;5105:73;5170:7;5165:2;5152:16;5147:2;5143;5139:11;5105:73;:::i;5189:180::-;5248:6;5301:2;5289:9;5280:7;5276:23;5272:32;5269:52;;;5317:1;5314;5307:12;5269:52;-1:-1:-1;5340:23:1;;5189:180;-1:-1:-1;5189:180:1:o;5374:184::-;5432:6;5485:2;5473:9;5464:7;5460:23;5456:32;5453:52;;;5501:1;5498;5491:12;5453:52;5524:28;5542:9;5524:28;:::i;5563:257::-;5604:3;5642:5;5636:12;5669:6;5664:3;5657:19;5685:63;5741:6;5734:4;5729:3;5725:14;5718:4;5711:5;5707:16;5685:63;:::i;:::-;5802:2;5781:15;-1:-1:-1;;5777:29:1;5768:39;;;;5809:4;5764:50;;5563:257;-1:-1:-1;;5563:257:1:o;5825:185::-;5867:3;5905:5;5899:12;5920:52;5965:6;5960:3;5953:4;5946:5;5942:16;5920:52;:::i;:::-;5988:16;;;;;5825:185;-1:-1:-1;;5825:185:1:o;6133:1301::-;6410:3;6439:1;6472:6;6466:13;6502:3;6524:1;6552:9;6548:2;6544:18;6534:28;;6612:2;6601:9;6597:18;6634;6624:61;;6678:4;6670:6;6666:17;6656:27;;6624:61;6704:2;6752;6744:6;6741:14;6721:18;6718:38;6715:165;;;-1:-1:-1;;;6779:33:1;;6835:4;6832:1;6825:15;6865:4;6786:3;6853:17;6715:165;6896:18;6923:104;;;;7041:1;7036:320;;;;6889:467;;6923:104;-1:-1:-1;;6956:24:1;;6944:37;;7001:16;;;;-1:-1:-1;6923:104:1;;7036:320;15874:1;15867:14;;;15911:4;15898:18;;7131:1;7145:165;7159:6;7156:1;7153:13;7145:165;;;7237:14;;7224:11;;;7217:35;7280:16;;;;7174:10;;7145:165;;;7149:3;;7339:6;7334:3;7330:16;7323:23;;6889:467;;;;;;;7372:56;7397:30;7423:3;7415:6;7397:30;:::i;:::-;-1:-1:-1;;;6075:20:1;;6120:1;6111:11;;6015:113;7372:56;7365:63;6133:1301;-1:-1:-1;;;;;6133:1301:1:o;8479:488::-;-1:-1:-1;;;;;8748:15:1;;;8730:34;;8800:15;;8795:2;8780:18;;8773:43;8847:2;8832:18;;8825:34;;;8895:3;8890:2;8875:18;;8868:31;;;8673:4;;8916:45;;8941:19;;8933:6;8916:45;:::i;:::-;8908:53;8479:488;-1:-1:-1;;;;;;8479:488:1:o;8972:632::-;9143:2;9195:21;;;9265:13;;9168:18;;;9287:22;;;9114:4;;9143:2;9366:15;;;;9340:2;9325:18;;;9114:4;9409:169;9423:6;9420:1;9417:13;9409:169;;;9484:13;;9472:26;;9553:15;;;;9518:12;;;;9445:1;9438:9;9409:169;;;-1:-1:-1;9595:3:1;;8972:632;-1:-1:-1;;;;;;8972:632:1:o;10204:340::-;10348:2;10333:18;;10381:1;10370:13;;10360:144;;10426:10;10421:3;10417:20;10414:1;10407:31;10461:4;10458:1;10451:15;10489:4;10486:1;10479:15;10360:144;10513:25;;;10204:340;:::o;10549:219::-;10698:2;10687:9;10680:21;10661:4;10718:44;10758:2;10747:9;10743:18;10735:6;10718:44;:::i;11486:345::-;11688:2;11670:21;;;11727:2;11707:18;;;11700:30;-1:-1:-1;;;11761:2:1;11746:18;;11739:51;11822:2;11807:18;;11486:345::o;14453:404::-;14655:2;14637:21;;;14694:2;14674:18;;;14667:30;14733:34;14728:2;14713:18;;14706:62;-1:-1:-1;;;14799:2:1;14784:18;;14777:38;14847:3;14832:19;;14453:404::o;15927:128::-;15967:3;15998:1;15994:6;15991:1;15988:13;15985:39;;;16004:18;;:::i;:::-;-1:-1:-1;16040:9:1;;15927:128::o;16060:228::-;16099:3;16127:10;16164:2;16161:1;16157:10;16194:2;16191:1;16187:10;16225:3;16221:2;16217:12;16212:3;16209:21;16206:47;;;16233:18;;:::i;:::-;16269:13;;16060:228;-1:-1:-1;;;;16060:228:1:o;16293:120::-;16333:1;16359;16349:35;;16364:18;;:::i;:::-;-1:-1:-1;16398:9:1;;16293:120::o;16418:168::-;16458:7;16524:1;16520;16516:6;16512:14;16509:1;16506:21;16501:1;16494:9;16487:17;16483:45;16480:71;;;16531:18;;:::i;:::-;-1:-1:-1;16571:9:1;;16418:168::o;16591:125::-;16631:4;16659:1;16656;16653:8;16650:34;;;16664:18;;:::i;:::-;-1:-1:-1;16701:9:1;;16591:125::o;16721:258::-;16793:1;16803:113;16817:6;16814:1;16811:13;16803:113;;;16893:11;;;16887:18;16874:11;;;16867:39;16839:2;16832:10;16803:113;;;16934:6;16931:1;16928:13;16925:48;;;-1:-1:-1;;16969:1:1;16951:16;;16944:27;16721:258::o;16984:380::-;17063:1;17059:12;;;;17106;;;17127:61;;17181:4;17173:6;17169:17;17159:27;;17127:61;17234:2;17226:6;17223:14;17203:18;17200:38;17197:161;;;17280:10;17275:3;17271:20;17268:1;17261:31;17315:4;17312:1;17305:15;17343:4;17340:1;17333:15;17197:161;;16984:380;;;:::o;17369:135::-;17408:3;-1:-1:-1;;17429:17:1;;17426:43;;;17449:18;;:::i;:::-;-1:-1:-1;17496:1:1;17485:13;;17369:135::o;17509:112::-;17541:1;17567;17557:35;;17572:18;;:::i;:::-;-1:-1:-1;17606:9:1;;17509:112::o;17626:127::-;17687:10;17682:3;17678:20;17675:1;17668:31;17718:4;17715:1;17708:15;17742:4;17739:1;17732:15;17758:127;17819:10;17814:3;17810:20;17807:1;17800:31;17850:4;17847:1;17840:15;17874:4;17871:1;17864:15;17890:127;17951:10;17946:3;17942:20;17939:1;17932:31;17982:4;17979:1;17972:15;18006:4;18003:1;17996:15;18022:127;18083:10;18078:3;18074:20;18071:1;18064:31;18114:4;18111:1;18104:15;18138:4;18135:1;18128:15;18154:127;18215:10;18210:3;18206:20;18203:1;18196:31;18246:4;18243:1;18236:15;18270:4;18267:1;18260:15;18286:131;-1:-1:-1;;;;;;18360:32:1;;18350:43;;18340:71;;18407:1;18404;18397:12
Swarm Source
ipfs://cd9527a6e5417782da2eeceb75c1a88dbfb87a99a754b6dc5a9c3490d45f325b
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.