ERC-721
Overview
Max Total Supply
624 PRINTER
Holders
189
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PRINTERLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MagicPrinters
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-02 */ /////////////////////////////////////////////////////////////////// // // // Magic Printers // // Contract Development by https://twitter.com/ViperwareLabs // // // /////////////////////////////////////////////////////////////////// // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { 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); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (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) if(!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()) if(!_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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev 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(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); 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(); _beforeTokenTransfers(from, to, tokenId, 1); // 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); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev 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(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // 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); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; contract MagicPrinters is ERC721A, Ownable { bytes32 public claimRoot; bytes32 public whitelistRoot; using Strings for uint; uint public WL_PRICE = 0.03 ether; uint public PUBLIC_PRICE = 0.04 ether; uint public MAX_NFT_PER_TRAN = 5; uint public MAX_PER_WALLET = 50; uint public maxSupply = 4444; uint public MAX_FREE_MINT = 2; uint public MAX_PRINTER_CLAIMS = 1000; uint public freeClaims = 0; bool public isPublicMint = false; bool public isWhitelistMint = false; bool public isMetadataFinal; string private _baseURL; string public prerevealURL = ''; mapping(address => uint) private _walletMintedCount; mapping(address => uint) private _freeMintedCount; // Name constructor() ERC721A('MagicPrinters', 'PRINTER') { } function _baseURI() internal view override returns (string memory) { return _baseURL; } function _startTokenId() internal pure override returns (uint) { return 1; } function contractURI() public pure returns (string memory) { return ""; } function finalizeMetadata() external onlyOwner { isMetadataFinal = true; } function reveal(string memory url) external onlyOwner { require(!isMetadataFinal, "Metadata is finalized"); _baseURL = url; } function mintedCount(address owner) external view returns (uint) { return _walletMintedCount[owner]; } function setWhitelistRoot(bytes32 _root) external onlyOwner { whitelistRoot = _root; } function setClaimRoot(bytes32 _root) external onlyOwner { claimRoot = _root; } function setPublicState(bool value) external onlyOwner { isPublicMint = value; } function setWhitelistState(bool value) external onlyOwner { isWhitelistMint = value; } /* // Splitter function withdraw() public onlyOwner { uint256 balance = address(this).balance; address _wallet1 = 0x130752003Cc8a51C34247794580C07b8862B5d3C; uint _payable1 = balance * 50 / 100; payable(_wallet1).transfer(_payable1); address _wallet2 = 0x130752003Cc8a51C34247794580C07b8862B5d3C; uint _payable2 = balance * 25 / 100; payable(_wallet2).transfer(_payable2); address _wallet3 = 0x130752003Cc8a51C34247794580C07b8862B5d3C; uint _payable3 = balance * 25 / 100; payable(_wallet3).transfer(_payable3); }*/ function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function airdrop(address to, uint count) external onlyOwner { require( _totalMinted() + count <= maxSupply, 'Exceeds max supply' ); _safeMint(to, count); } function reduceSupply(uint newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function setMaxFreeMints(uint newFreeMints) external onlyOwner { MAX_FREE_MINT = newFreeMints; } function setMaxPrinterClaims(uint newMaxPrinters) external onlyOwner { MAX_PRINTER_CLAIMS = newMaxPrinters; } function tokenURI(uint tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(_baseURI()).length > 0 ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")) : prerevealURL; } function isWhitelistValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, whitelistRoot, leaf); } function isClaimValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, claimRoot, leaf); } function setPublicPrice(uint newPrice) external onlyOwner { PUBLIC_PRICE = newPrice; } function setWhitelistPrice(uint newPrice) external onlyOwner { WL_PRICE = newPrice; } function claimFreePrinters(bytes32[] memory proof) public { uint count = MAX_FREE_MINT - _freeMintedCount[msg.sender]; require(isWhitelistMint, "Whitelist mint has not started"); require(isClaimValid(proof, keccak256(abi.encodePacked(msg.sender))), "Wallet not on the allowlist"); require(_totalMinted() + count <= maxSupply,'Exceeds max supply'); require(freeClaims + count <= MAX_PRINTER_CLAIMS,'Exceeds max free claim supply.'); require(count > 0,'No free claims available.'); freeClaims += count; _walletMintedCount[msg.sender] += count; _freeMintedCount[msg.sender] += count; _safeMint(msg.sender, count); } function whitelistMintPrinter(uint count, bytes32[] memory proof) public payable { require(isWhitelistMint, "Whitelist mint has not started"); require(isWhitelistValid(proof, keccak256(abi.encodePacked(msg.sender))), "Wallet not on the allowlist"); require(_totalMinted() + count <= maxSupply,'Exceeds max supply'); require( msg.value >= count * WL_PRICE, 'Ether value sent is not sufficient' ); _walletMintedCount[msg.sender] += count; _safeMint(msg.sender, count); } function publicMintPrinter(uint count) external payable { require(isPublicMint, "Public mint has not started"); require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit'); require(_totalMinted() + count <= maxSupply,'Exceeds max supply'); require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet'); require( msg.value >= count * PUBLIC_PRICE, 'Ether value sent is not sufficient' ); _walletMintedCount[msg.sender] += count; _safeMint(msg.sender, count); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRINTER_CLAIMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimFreePrinters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeClaims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isClaimValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isWhitelistValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMintPrinter","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setClaimRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeMints","type":"uint256"}],"name":"setMaxFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPrinters","type":"uint256"}],"name":"setMaxPrinterClaims","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistState","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMintPrinter","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
666a94d74f430000600b55668e1bc9bf040000600c556005600d556032600e5561115c600f5560026010556103e8601155600060128190556013805461ffff1916905560a0604081905260808290526200005d916015919062000141565b503480156200006b57600080fd5b50604080518082018252600d81526c4d616769635072696e7465727360981b602080830191825283518085019094526007845266282924a72a22a960c91b908401528151919291620000c09160029162000141565b508051620000d690600390602084019062000141565b5050600160005550620000e933620000ef565b62000224565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014f90620001e7565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600181811c90821680620001fc57607f821691505b602082108114156200021e57634e487b7160e01b600052602260045260246000fd5b50919050565b6127c880620002346000396000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063c48156af116100dc578063e193e7e211610095578063f2fde38b1161006f578063f2fde38b1461087c578063f4a560a51461089c578063f5aa406d146108b1578063fddcb5ea146108d157600080fd5b8063e193e7e2146107fc578063e8a3d48514610812578063e985e9c51461083357600080fd5b8063c48156af14610752578063c627525514610772578063c754da3314610792578063c87b56dd146107b1578063d5abeb01146107d1578063d8210482146107e757600080fd5b80638ba4cc3c1161014957806395d89b411161012357806395d89b41146106dd578063a22cb465146106f2578063b3727e0c14610712578063b88d4fde1461073257600080fd5b80638ba4cc3c1461067f5780638da5cb5b1461069f57806393e5639d146106bd57600080fd5b8063715018a6146105e1578063717d57d3146105f657806379efb97d146106165780637d5e1f31146106365780638062344414610649578063860347d51461066957600080fd5b80632dfb8f671161024f57806341cda20311610208578063611f3f10116101e2578063611f3f10146105785780636352211e1461058e5780636f42ed7f146105ae57806370a08231146105c157600080fd5b806341cda2031461052257806342842e0e146105385780634c2612471461055857600080fd5b80632dfb8f67146104915780633057931f146104a757806331c3c7a0146104c1578063386bfc98146104d75780633ccfd60b146104ed578063407043fc1461050257600080fd5b806314ea35e7116102a157806314ea35e7146103de57806318160ddd146103f45780631df0bb8a1461041157806321b97f201461043157806323b872dd14610451578063246a77f91461047157600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630de76de41461039a5780630f2cdd6c146103ba575b600080fd5b3480156102f557600080fd5b506103096103043660046123d6565b610907565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610959565b6040516103159190612546565b34801561034c57600080fd5b5061036061035b3660046123bd565b6109eb565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610398610393366004612300565b610a2f565b005b3480156103a657600080fd5b506013546103099062010000900460ff1681565b3480156103c657600080fd5b506103d0600e5481565b604051908152602001610315565b3480156103ea57600080fd5b506103d060095481565b34801561040057600080fd5b5060015460005403600019016103d0565b34801561041d57600080fd5b5061039861042c3660046123a2565b610ab6565b34801561043d57600080fd5b5061039861044c3660046123bd565b610b03565b34801561045d57600080fd5b5061039861046c36600461221f565b610b32565b34801561047d57600080fd5b5061039861048c3660046123bd565b610b3d565b34801561049d57600080fd5b506103d060115481565b3480156104b357600080fd5b506013546103099060ff1681565b3480156104cd57600080fd5b506103d0600b5481565b3480156104e357600080fd5b506103d0600a5481565b3480156104f957600080fd5b50610398610b6c565b34801561050e57600080fd5b5061039861051d3660046123bd565b610bc9565b34801561052e57600080fd5b506103d060105481565b34801561054457600080fd5b5061039861055336600461221f565b610bf8565b34801561056457600080fd5b50610398610573366004612410565b610c13565b34801561058457600080fd5b506103d0600c5481565b34801561059a57600080fd5b506103606105a93660046123bd565b610ca1565b6103986105bc366004612458565b610cb3565b3480156105cd57600080fd5b506103d06105dc3660046121d1565b610e29565b3480156105ed57600080fd5b50610398610e77565b34801561060257600080fd5b506103986106113660046123bd565b610ead565b34801561062257600080fd5b5061030961063136600461235e565b610edc565b6103986106443660046123bd565b610ef2565b34801561065557600080fd5b506103986106643660046123bd565b61109c565b34801561067557600080fd5b506103d060125481565b34801561068b57600080fd5b5061039861069a366004612300565b6110cb565b3480156106ab57600080fd5b506008546001600160a01b0316610360565b3480156106c957600080fd5b506103986106d836600461232a565b611138565b3480156106e957600080fd5b5061033361138c565b3480156106fe57600080fd5b5061039861070d3660046122d6565b61139b565b34801561071e57600080fd5b5061030961072d36600461235e565b611431565b34801561073e57600080fd5b5061039861074d36600461225b565b611440565b34801561075e57600080fd5b5061039861076d3660046123a2565b61148a565b34801561077e57600080fd5b5061039861078d3660046123bd565b6114c7565b34801561079e57600080fd5b5060135461030990610100900460ff1681565b3480156107bd57600080fd5b506103336107cc3660046123bd565b6114f6565b3480156107dd57600080fd5b506103d0600f5481565b3480156107f357600080fd5b5061033361163c565b34801561080857600080fd5b506103d0600d5481565b34801561081e57600080fd5b50604080516020810190915260008152610333565b34801561083f57600080fd5b5061030961084e3660046121ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088857600080fd5b506103986108973660046121d1565b6116ca565b3480156108a857600080fd5b50610398611762565b3480156108bd57600080fd5b506103986108cc3660046123bd565b61179f565b3480156108dd57600080fd5b506103d06108ec3660046121d1565b6001600160a01b031660009081526016602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061093857506001600160e01b03198216635b5e139f60e01b145b8061095357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610968906126ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610994906126ba565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109f6826117ce565b610a13576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a3a82610ca1565b9050806001600160a01b0316836001600160a01b03161415610a6f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610aa657610a89813361084e565b610aa6576040516367d9dca160e11b815260040160405180910390fd5b610ab1838383611807565b505050565b6008546001600160a01b03163314610ae95760405162461bcd60e51b8152600401610ae0906125c7565b60405180910390fd5b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610ae0906125c7565b600955565b610ab1838383611863565b6008546001600160a01b03163314610b675760405162461bcd60e51b8152600401610ae0906125c7565b601155565b6008546001600160a01b03163314610b965760405162461bcd60e51b8152600401610ae0906125c7565b6040514790339082156108fc029083906000818181858888f19350505050158015610bc5573d6000803e3d6000fd5b5050565b6008546001600160a01b03163314610bf35760405162461bcd60e51b8152600401610ae0906125c7565b601055565b610ab183838360405180602001604052806000815250611440565b6008546001600160a01b03163314610c3d5760405162461bcd60e51b8152600401610ae0906125c7565b60135462010000900460ff1615610c8e5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b6044820152606401610ae0565b8051610bc5906014906020840190612030565b6000610cac82611a50565b5192915050565b601354610100900460ff16610d0a5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f74207374617274656400006044820152606401610ae0565b6040516bffffffffffffffffffffffff193360601b166020820152610d4990829060340160405160208183030381529060405280519060200120610edc565b610d955760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610ae0565b600f5482610da66000546000190190565b610db0919061262c565b1115610dce5760405162461bcd60e51b8152600401610ae090612559565b600b54610ddb9083612658565b341015610dfa5760405162461bcd60e51b8152600401610ae090612585565b3360009081526016602052604081208054849290610e1990849061262c565b90915550610bc590503383611b72565b60006001600160a01b038216610e52576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ea15760405162461bcd60e51b8152600401610ae0906125c7565b610eab6000611b8c565b565b6008546001600160a01b03163314610ed75760405162461bcd60e51b8152600401610ae0906125c7565b600b55565b6000610eeb83600a5484611bde565b9392505050565b60135460ff16610f445760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f74207374617274656400000000006044820152606401610ae0565b600d54811115610fa05760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b6064820152608401610ae0565b600f5481610fb16000546000190190565b610fbb919061262c565b1115610fd95760405162461bcd60e51b8152600401610ae090612559565b600e5433600090815260166020526040902054610ff790839061262c565b111561103e5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610ae0565b600c5461104b9082612658565b34101561106a5760405162461bcd60e51b8152600401610ae090612585565b336000908152601660205260408120805483929061108990849061262c565b9091555061109990503382611b72565b50565b6008546001600160a01b031633146110c65760405162461bcd60e51b8152600401610ae0906125c7565b600f55565b6008546001600160a01b031633146110f55760405162461bcd60e51b8152600401610ae0906125c7565b600f54816111066000546000190190565b611110919061262c565b111561112e5760405162461bcd60e51b8152600401610ae090612559565b610bc58282611b72565b336000908152601760205260408120546010546111559190612677565b601354909150610100900460ff166111af5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f74207374617274656400006044820152606401610ae0565b6040516bffffffffffffffffffffffff193360601b1660208201526111ee90839060340160405160208183030381529060405280519060200120611431565b61123a5760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610ae0565b600f548161124b6000546000190190565b611255919061262c565b11156112735760405162461bcd60e51b8152600401610ae090612559565b60115481601254611284919061262c565b11156112d25760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206672656520636c61696d20737570706c792e00006044820152606401610ae0565b600081116113225760405162461bcd60e51b815260206004820152601960248201527f4e6f206672656520636c61696d7320617661696c61626c652e000000000000006044820152606401610ae0565b8060126000828254611334919061262c565b9091555050336000908152601660205260408120805483929061135890849061262c565b9091555050336000908152601760205260408120805483929061137c90849061262c565b90915550610bc590503382611b72565b606060038054610968906126ba565b6001600160a01b0382163314156113c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610eeb8360095484611bde565b61144b848484611863565b6001600160a01b0383163b156114845761146784848484611bf4565b611484576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146114b45760405162461bcd60e51b8152600401610ae0906125c7565b6013805460ff1916911515919091179055565b6008546001600160a01b031633146114f15760405162461bcd60e51b8152600401610ae0906125c7565b600c55565b6060611501826117ce565b6115655760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ae0565b600061156f611cec565b51116116055760158054611582906126ba565b80601f01602080910402602001604051908101604052809291908181526020018280546115ae906126ba565b80156115fb5780601f106115d0576101008083540402835291602001916115fb565b820191906000526020600020905b8154815290600101906020018083116115de57829003601f168201915b5050505050610953565b61160d611cec565b61161683611cfb565b6040516020016116279291906124ca565b60405160208183030381529060405292915050565b60158054611649906126ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611675906126ba565b80156116c25780601f10611697576101008083540402835291602001916116c2565b820191906000526020600020905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b6008546001600160a01b031633146116f45760405162461bcd60e51b8152600401610ae0906125c7565b6001600160a01b0381166117595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae0565b61109981611b8c565b6008546001600160a01b0316331461178c5760405162461bcd60e51b8152600401610ae0906125c7565b6013805462ff0000191662010000179055565b6008546001600160a01b031633146117c95760405162461bcd60e51b8152600401610ae0906125c7565b600a55565b6000816001111580156117e2575060005482105b8015610953575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061186e82611a50565b9050836001600160a01b031681600001516001600160a01b0316146118a55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118c357506118c3853361084e565b806118de5750336118d3846109eb565b6001600160a01b0316145b9050806118fe57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661192557604051633a954ecd60e21b815260040160405180910390fd5b61193160008487611807565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a05576000548214611a0557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611b5957600054811015611b5957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b575780516001600160a01b031615611aee579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b52579392505050565b611aee565b505b604051636f96cda160e11b815260040160405180910390fd5b610bc5828260405180602001604052806000815250611df8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611beb8584611fbc565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c29903390899088908890600401612509565b602060405180830381600087803b158015611c4357600080fd5b505af1925050508015611c73575060408051601f3d908101601f19168201909252611c70918101906123f3565b60015b611cce573d808015611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b508051611cc6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060148054610968906126ba565b606081611d1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d495780611d33816126f5565b9150611d429050600a83612644565b9150611d23565b6000816001600160401b03811115611d6357611d63612766565b6040519080825280601f01601f191660200182016040528015611d8d576020820181803683370190505b5090505b8415611ce457611da2600183612677565b9150611daf600a86612710565b611dba90603061262c565b60f81b818381518110611dcf57611dcf612750565b60200101906001600160f81b031916908160001a905350611df1600a86612644565b9450611d91565b6000546001600160a01b038416611e2157604051622e076360e81b815260040160405180910390fd5b82611e3f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611f67575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f306000878480600101955087611bf4565b611f4d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ee5578260005414611f6257600080fd5b611fac565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611f68575b5060009081556114849085838684565b600081815b8451811015612028576000858281518110611fde57611fde612750565b602002602001015190508083116120045760008381526020829052604090209250612015565b600081815260208490526040902092505b5080612020816126f5565b915050611fc1565b509392505050565b82805461203c906126ba565b90600052602060002090601f01602090048101928261205e57600085556120a4565b82601f1061207757805160ff19168380011785556120a4565b828001600101855582156120a4579182015b828111156120a4578251825591602001919060010190612089565b506120b09291506120b4565b5090565b5b808211156120b057600081556001016120b5565b60006001600160401b038311156120e2576120e2612766565b6120f5601f8401601f19166020016125fc565b905082815283838301111561210957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461213757600080fd5b919050565b600082601f83011261214d57600080fd5b813560206001600160401b0382111561216857612168612766565b8160051b6121778282016125fc565b83815282810190868401838801850189101561219257600080fd5b600093505b858410156121b5578035835260019390930192918401918401612197565b50979650505050505050565b8035801515811461213757600080fd5b6000602082840312156121e357600080fd5b610eeb82612120565b600080604083850312156121ff57600080fd5b61220883612120565b915061221660208401612120565b90509250929050565b60008060006060848603121561223457600080fd5b61223d84612120565b925061224b60208501612120565b9150604084013590509250925092565b6000806000806080858703121561227157600080fd5b61227a85612120565b935061228860208601612120565b92506040850135915060608501356001600160401b038111156122aa57600080fd5b8501601f810187136122bb57600080fd5b6122ca878235602084016120c9565b91505092959194509250565b600080604083850312156122e957600080fd5b6122f283612120565b9150612216602084016121c1565b6000806040838503121561231357600080fd5b61231c83612120565b946020939093013593505050565b60006020828403121561233c57600080fd5b81356001600160401b0381111561235257600080fd5b611ce48482850161213c565b6000806040838503121561237157600080fd5b82356001600160401b0381111561238757600080fd5b6123938582860161213c565b95602094909401359450505050565b6000602082840312156123b457600080fd5b610eeb826121c1565b6000602082840312156123cf57600080fd5b5035919050565b6000602082840312156123e857600080fd5b8135610eeb8161277c565b60006020828403121561240557600080fd5b8151610eeb8161277c565b60006020828403121561242257600080fd5b81356001600160401b0381111561243857600080fd5b8201601f8101841361244957600080fd5b611ce4848235602084016120c9565b6000806040838503121561246b57600080fd5b8235915060208301356001600160401b0381111561248857600080fd5b6124948582860161213c565b9150509250929050565b600081518084526124b681602086016020860161268e565b601f01601f19169290920160200192915050565b600083516124dc81846020880161268e565b8351908301906124f081836020880161268e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253c9083018461249e565b9695505050505050565b602081526000610eeb602083018461249e565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561262457612624612766565b604052919050565b6000821982111561263f5761263f612724565b500190565b6000826126535761265361273a565b500490565b600081600019048311821515161561267257612672612724565b500290565b60008282101561268957612689612724565b500390565b60005b838110156126a9578181015183820152602001612691565b838111156114845750506000910152565b600181811c908216806126ce57607f821691505b602082108114156126ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270957612709612724565b5060010190565b60008261271f5761271f61273a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461109957600080fdfea26469706673582212201b7494d366476779672f52eb3a0500cd98286a04cc8cef0e0c8ceb70d51f505b64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102e45760003560e01c8063715018a611610190578063c48156af116100dc578063e193e7e211610095578063f2fde38b1161006f578063f2fde38b1461087c578063f4a560a51461089c578063f5aa406d146108b1578063fddcb5ea146108d157600080fd5b8063e193e7e2146107fc578063e8a3d48514610812578063e985e9c51461083357600080fd5b8063c48156af14610752578063c627525514610772578063c754da3314610792578063c87b56dd146107b1578063d5abeb01146107d1578063d8210482146107e757600080fd5b80638ba4cc3c1161014957806395d89b411161012357806395d89b41146106dd578063a22cb465146106f2578063b3727e0c14610712578063b88d4fde1461073257600080fd5b80638ba4cc3c1461067f5780638da5cb5b1461069f57806393e5639d146106bd57600080fd5b8063715018a6146105e1578063717d57d3146105f657806379efb97d146106165780637d5e1f31146106365780638062344414610649578063860347d51461066957600080fd5b80632dfb8f671161024f57806341cda20311610208578063611f3f10116101e2578063611f3f10146105785780636352211e1461058e5780636f42ed7f146105ae57806370a08231146105c157600080fd5b806341cda2031461052257806342842e0e146105385780634c2612471461055857600080fd5b80632dfb8f67146104915780633057931f146104a757806331c3c7a0146104c1578063386bfc98146104d75780633ccfd60b146104ed578063407043fc1461050257600080fd5b806314ea35e7116102a157806314ea35e7146103de57806318160ddd146103f45780631df0bb8a1461041157806321b97f201461043157806323b872dd14610451578063246a77f91461047157600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630de76de41461039a5780630f2cdd6c146103ba575b600080fd5b3480156102f557600080fd5b506103096103043660046123d6565b610907565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610959565b6040516103159190612546565b34801561034c57600080fd5b5061036061035b3660046123bd565b6109eb565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610398610393366004612300565b610a2f565b005b3480156103a657600080fd5b506013546103099062010000900460ff1681565b3480156103c657600080fd5b506103d0600e5481565b604051908152602001610315565b3480156103ea57600080fd5b506103d060095481565b34801561040057600080fd5b5060015460005403600019016103d0565b34801561041d57600080fd5b5061039861042c3660046123a2565b610ab6565b34801561043d57600080fd5b5061039861044c3660046123bd565b610b03565b34801561045d57600080fd5b5061039861046c36600461221f565b610b32565b34801561047d57600080fd5b5061039861048c3660046123bd565b610b3d565b34801561049d57600080fd5b506103d060115481565b3480156104b357600080fd5b506013546103099060ff1681565b3480156104cd57600080fd5b506103d0600b5481565b3480156104e357600080fd5b506103d0600a5481565b3480156104f957600080fd5b50610398610b6c565b34801561050e57600080fd5b5061039861051d3660046123bd565b610bc9565b34801561052e57600080fd5b506103d060105481565b34801561054457600080fd5b5061039861055336600461221f565b610bf8565b34801561056457600080fd5b50610398610573366004612410565b610c13565b34801561058457600080fd5b506103d0600c5481565b34801561059a57600080fd5b506103606105a93660046123bd565b610ca1565b6103986105bc366004612458565b610cb3565b3480156105cd57600080fd5b506103d06105dc3660046121d1565b610e29565b3480156105ed57600080fd5b50610398610e77565b34801561060257600080fd5b506103986106113660046123bd565b610ead565b34801561062257600080fd5b5061030961063136600461235e565b610edc565b6103986106443660046123bd565b610ef2565b34801561065557600080fd5b506103986106643660046123bd565b61109c565b34801561067557600080fd5b506103d060125481565b34801561068b57600080fd5b5061039861069a366004612300565b6110cb565b3480156106ab57600080fd5b506008546001600160a01b0316610360565b3480156106c957600080fd5b506103986106d836600461232a565b611138565b3480156106e957600080fd5b5061033361138c565b3480156106fe57600080fd5b5061039861070d3660046122d6565b61139b565b34801561071e57600080fd5b5061030961072d36600461235e565b611431565b34801561073e57600080fd5b5061039861074d36600461225b565b611440565b34801561075e57600080fd5b5061039861076d3660046123a2565b61148a565b34801561077e57600080fd5b5061039861078d3660046123bd565b6114c7565b34801561079e57600080fd5b5060135461030990610100900460ff1681565b3480156107bd57600080fd5b506103336107cc3660046123bd565b6114f6565b3480156107dd57600080fd5b506103d0600f5481565b3480156107f357600080fd5b5061033361163c565b34801561080857600080fd5b506103d0600d5481565b34801561081e57600080fd5b50604080516020810190915260008152610333565b34801561083f57600080fd5b5061030961084e3660046121ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088857600080fd5b506103986108973660046121d1565b6116ca565b3480156108a857600080fd5b50610398611762565b3480156108bd57600080fd5b506103986108cc3660046123bd565b61179f565b3480156108dd57600080fd5b506103d06108ec3660046121d1565b6001600160a01b031660009081526016602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061093857506001600160e01b03198216635b5e139f60e01b145b8061095357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610968906126ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610994906126ba565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109f6826117ce565b610a13576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a3a82610ca1565b9050806001600160a01b0316836001600160a01b03161415610a6f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610aa657610a89813361084e565b610aa6576040516367d9dca160e11b815260040160405180910390fd5b610ab1838383611807565b505050565b6008546001600160a01b03163314610ae95760405162461bcd60e51b8152600401610ae0906125c7565b60405180910390fd5b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610ae0906125c7565b600955565b610ab1838383611863565b6008546001600160a01b03163314610b675760405162461bcd60e51b8152600401610ae0906125c7565b601155565b6008546001600160a01b03163314610b965760405162461bcd60e51b8152600401610ae0906125c7565b6040514790339082156108fc029083906000818181858888f19350505050158015610bc5573d6000803e3d6000fd5b5050565b6008546001600160a01b03163314610bf35760405162461bcd60e51b8152600401610ae0906125c7565b601055565b610ab183838360405180602001604052806000815250611440565b6008546001600160a01b03163314610c3d5760405162461bcd60e51b8152600401610ae0906125c7565b60135462010000900460ff1615610c8e5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b6044820152606401610ae0565b8051610bc5906014906020840190612030565b6000610cac82611a50565b5192915050565b601354610100900460ff16610d0a5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f74207374617274656400006044820152606401610ae0565b6040516bffffffffffffffffffffffff193360601b166020820152610d4990829060340160405160208183030381529060405280519060200120610edc565b610d955760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610ae0565b600f5482610da66000546000190190565b610db0919061262c565b1115610dce5760405162461bcd60e51b8152600401610ae090612559565b600b54610ddb9083612658565b341015610dfa5760405162461bcd60e51b8152600401610ae090612585565b3360009081526016602052604081208054849290610e1990849061262c565b90915550610bc590503383611b72565b60006001600160a01b038216610e52576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ea15760405162461bcd60e51b8152600401610ae0906125c7565b610eab6000611b8c565b565b6008546001600160a01b03163314610ed75760405162461bcd60e51b8152600401610ae0906125c7565b600b55565b6000610eeb83600a5484611bde565b9392505050565b60135460ff16610f445760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f74207374617274656400000000006044820152606401610ae0565b600d54811115610fa05760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b6064820152608401610ae0565b600f5481610fb16000546000190190565b610fbb919061262c565b1115610fd95760405162461bcd60e51b8152600401610ae090612559565b600e5433600090815260166020526040902054610ff790839061262c565b111561103e5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610ae0565b600c5461104b9082612658565b34101561106a5760405162461bcd60e51b8152600401610ae090612585565b336000908152601660205260408120805483929061108990849061262c565b9091555061109990503382611b72565b50565b6008546001600160a01b031633146110c65760405162461bcd60e51b8152600401610ae0906125c7565b600f55565b6008546001600160a01b031633146110f55760405162461bcd60e51b8152600401610ae0906125c7565b600f54816111066000546000190190565b611110919061262c565b111561112e5760405162461bcd60e51b8152600401610ae090612559565b610bc58282611b72565b336000908152601760205260408120546010546111559190612677565b601354909150610100900460ff166111af5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f74207374617274656400006044820152606401610ae0565b6040516bffffffffffffffffffffffff193360601b1660208201526111ee90839060340160405160208183030381529060405280519060200120611431565b61123a5760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610ae0565b600f548161124b6000546000190190565b611255919061262c565b11156112735760405162461bcd60e51b8152600401610ae090612559565b60115481601254611284919061262c565b11156112d25760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206672656520636c61696d20737570706c792e00006044820152606401610ae0565b600081116113225760405162461bcd60e51b815260206004820152601960248201527f4e6f206672656520636c61696d7320617661696c61626c652e000000000000006044820152606401610ae0565b8060126000828254611334919061262c565b9091555050336000908152601660205260408120805483929061135890849061262c565b9091555050336000908152601760205260408120805483929061137c90849061262c565b90915550610bc590503382611b72565b606060038054610968906126ba565b6001600160a01b0382163314156113c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610eeb8360095484611bde565b61144b848484611863565b6001600160a01b0383163b156114845761146784848484611bf4565b611484576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146114b45760405162461bcd60e51b8152600401610ae0906125c7565b6013805460ff1916911515919091179055565b6008546001600160a01b031633146114f15760405162461bcd60e51b8152600401610ae0906125c7565b600c55565b6060611501826117ce565b6115655760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ae0565b600061156f611cec565b51116116055760158054611582906126ba565b80601f01602080910402602001604051908101604052809291908181526020018280546115ae906126ba565b80156115fb5780601f106115d0576101008083540402835291602001916115fb565b820191906000526020600020905b8154815290600101906020018083116115de57829003601f168201915b5050505050610953565b61160d611cec565b61161683611cfb565b6040516020016116279291906124ca565b60405160208183030381529060405292915050565b60158054611649906126ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611675906126ba565b80156116c25780601f10611697576101008083540402835291602001916116c2565b820191906000526020600020905b8154815290600101906020018083116116a557829003601f168201915b505050505081565b6008546001600160a01b031633146116f45760405162461bcd60e51b8152600401610ae0906125c7565b6001600160a01b0381166117595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae0565b61109981611b8c565b6008546001600160a01b0316331461178c5760405162461bcd60e51b8152600401610ae0906125c7565b6013805462ff0000191662010000179055565b6008546001600160a01b031633146117c95760405162461bcd60e51b8152600401610ae0906125c7565b600a55565b6000816001111580156117e2575060005482105b8015610953575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061186e82611a50565b9050836001600160a01b031681600001516001600160a01b0316146118a55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118c357506118c3853361084e565b806118de5750336118d3846109eb565b6001600160a01b0316145b9050806118fe57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661192557604051633a954ecd60e21b815260040160405180910390fd5b61193160008487611807565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a05576000548214611a0557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611b5957600054811015611b5957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b575780516001600160a01b031615611aee579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b52579392505050565b611aee565b505b604051636f96cda160e11b815260040160405180910390fd5b610bc5828260405180602001604052806000815250611df8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611beb8584611fbc565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c29903390899088908890600401612509565b602060405180830381600087803b158015611c4357600080fd5b505af1925050508015611c73575060408051601f3d908101601f19168201909252611c70918101906123f3565b60015b611cce573d808015611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b508051611cc6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060148054610968906126ba565b606081611d1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d495780611d33816126f5565b9150611d429050600a83612644565b9150611d23565b6000816001600160401b03811115611d6357611d63612766565b6040519080825280601f01601f191660200182016040528015611d8d576020820181803683370190505b5090505b8415611ce457611da2600183612677565b9150611daf600a86612710565b611dba90603061262c565b60f81b818381518110611dcf57611dcf612750565b60200101906001600160f81b031916908160001a905350611df1600a86612644565b9450611d91565b6000546001600160a01b038416611e2157604051622e076360e81b815260040160405180910390fd5b82611e3f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611f67575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f306000878480600101955087611bf4565b611f4d576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ee5578260005414611f6257600080fd5b611fac565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611f68575b5060009081556114849085838684565b600081815b8451811015612028576000858281518110611fde57611fde612750565b602002602001015190508083116120045760008381526020829052604090209250612015565b600081815260208490526040902092505b5080612020816126f5565b915050611fc1565b509392505050565b82805461203c906126ba565b90600052602060002090601f01602090048101928261205e57600085556120a4565b82601f1061207757805160ff19168380011785556120a4565b828001600101855582156120a4579182015b828111156120a4578251825591602001919060010190612089565b506120b09291506120b4565b5090565b5b808211156120b057600081556001016120b5565b60006001600160401b038311156120e2576120e2612766565b6120f5601f8401601f19166020016125fc565b905082815283838301111561210957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461213757600080fd5b919050565b600082601f83011261214d57600080fd5b813560206001600160401b0382111561216857612168612766565b8160051b6121778282016125fc565b83815282810190868401838801850189101561219257600080fd5b600093505b858410156121b5578035835260019390930192918401918401612197565b50979650505050505050565b8035801515811461213757600080fd5b6000602082840312156121e357600080fd5b610eeb82612120565b600080604083850312156121ff57600080fd5b61220883612120565b915061221660208401612120565b90509250929050565b60008060006060848603121561223457600080fd5b61223d84612120565b925061224b60208501612120565b9150604084013590509250925092565b6000806000806080858703121561227157600080fd5b61227a85612120565b935061228860208601612120565b92506040850135915060608501356001600160401b038111156122aa57600080fd5b8501601f810187136122bb57600080fd5b6122ca878235602084016120c9565b91505092959194509250565b600080604083850312156122e957600080fd5b6122f283612120565b9150612216602084016121c1565b6000806040838503121561231357600080fd5b61231c83612120565b946020939093013593505050565b60006020828403121561233c57600080fd5b81356001600160401b0381111561235257600080fd5b611ce48482850161213c565b6000806040838503121561237157600080fd5b82356001600160401b0381111561238757600080fd5b6123938582860161213c565b95602094909401359450505050565b6000602082840312156123b457600080fd5b610eeb826121c1565b6000602082840312156123cf57600080fd5b5035919050565b6000602082840312156123e857600080fd5b8135610eeb8161277c565b60006020828403121561240557600080fd5b8151610eeb8161277c565b60006020828403121561242257600080fd5b81356001600160401b0381111561243857600080fd5b8201601f8101841361244957600080fd5b611ce4848235602084016120c9565b6000806040838503121561246b57600080fd5b8235915060208301356001600160401b0381111561248857600080fd5b6124948582860161213c565b9150509250929050565b600081518084526124b681602086016020860161268e565b601f01601f19169290920160200192915050565b600083516124dc81846020880161268e565b8351908301906124f081836020880161268e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253c9083018461249e565b9695505050505050565b602081526000610eeb602083018461249e565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561262457612624612766565b604052919050565b6000821982111561263f5761263f612724565b500190565b6000826126535761265361273a565b500490565b600081600019048311821515161561267257612672612724565b500290565b60008282101561268957612689612724565b500390565b60005b838110156126a9578181015183820152602001612691565b838111156114845750506000910152565b600181811c908216806126ce57607f821691505b602082108114156126ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270957612709612724565b5060010190565b60008261271f5761271f61273a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461109957600080fdfea26469706673582212201b7494d366476779672f52eb3a0500cd98286a04cc8cef0e0c8ceb70d51f505b64736f6c63430008070033
Deployed Bytecode Sourcemap
50128:5770:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28749:305;;;;;;;;;;-1:-1:-1;28749:305:0;;;;;:::i;:::-;;:::i;:::-;;;8187:14:1;;8180:22;8162:41;;8150:2;8135:18;28749:305:0;;;;;;;;31864:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33368:204::-;;;;;;;;;;-1:-1:-1;33368:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7485:32:1;;;7467:51;;7455:2;7440:18;33368:204:0;7321:203:1;32930:372:0;;;;;;;;;;-1:-1:-1;32930:372:0;;;;;:::i;:::-;;:::i;:::-;;50653:27;;;;;;;;;;-1:-1:-1;50653:27:0;;;;;;;;;;;50386:31;;;;;;;;;;;;;;;;;;;8360:25:1;;;8348:2;8333:18;50386:31:0;8214:177:1;50178:24:0;;;;;;;;;;;;;;;;27989:312;;;;;;;;;;-1:-1:-1;51111:1:0;28252:12;28042:7;28236:13;:28;-1:-1:-1;;28236:46:0;27989:312;;51856:91;;;;;;;;;;-1:-1:-1;51856:91:0;;;;;:::i;:::-;;:::i;51675:83::-;;;;;;;;;;-1:-1:-1;51675:83:0;;;;;:::i;:::-;;:::i;34233:170::-;;;;;;;;;;-1:-1:-1;34233:170:0;;;;;:::i;:::-;;:::i;53133:114::-;;;;;;;;;;-1:-1:-1;53133:114:0;;;;;:::i;:::-;;:::i;50494:37::-;;;;;;;;;;;;;;;;50570:32;;;;;;;;;;-1:-1:-1;50570:32:0;;;;;;;;50269:33;;;;;;;;;;;;;;;;50209:28;;;;;;;;;;;;;;;;52595:143;;;;;;;;;;;;;:::i;53024:101::-;;;;;;;;;;-1:-1:-1;53024:101:0;;;;;:::i;:::-;;:::i;50458:29::-;;;;;;;;;;;;;;;;34474:185;;;;;;;;;;-1:-1:-1;34474:185:0;;;;;:::i;:::-;;:::i;51301:139::-;;;;;;;;;;-1:-1:-1;51301:139:0;;;;;:::i;:::-;;:::i;50306:37::-;;;;;;;;;;;;;;;;31672:125;;;;;;;;;;-1:-1:-1;31672:125:0;;;;;:::i;:::-;;:::i;54825:515::-;;;;;;:::i;:::-;;:::i;29118:206::-;;;;;;;;;;-1:-1:-1;29118:206:0;;;;;:::i;:::-;;:::i;49276:103::-;;;;;;;;;;;;;:::i;54031:90::-;;;;;;;;;;-1:-1:-1;54031:90:0;;;;;:::i;:::-;;:::i;53598:163::-;;;;;;;;;;-1:-1:-1;53598:163:0;;;;;:::i;:::-;;:::i;55352:543::-;;;;;;:::i;:::-;;:::i;52922:94::-;;;;;;;;;;-1:-1:-1;52922:94:0;;;;;:::i;:::-;;:::i;50538:26::-;;;;;;;;;;;;;;;;52743:174;;;;;;;;;;-1:-1:-1;52743:174:0;;;;;:::i;:::-;;:::i;48625:87::-;;;;;;;;;;-1:-1:-1;48698:6:0;;-1:-1:-1;;;;;48698:6:0;48625:87;;54129:688;;;;;;;;;;-1:-1:-1;54129:688:0;;;;;:::i;:::-;;:::i;32033:104::-;;;;;;;;;;;;;:::i;33644:287::-;;;;;;;;;;-1:-1:-1;33644:287:0;;;;;:::i;:::-;;:::i;53769:155::-;;;;;;;;;;-1:-1:-1;53769:155:0;;;;;:::i;:::-;;:::i;34730:370::-;;;;;;;;;;-1:-1:-1;34730:370:0;;;;;:::i;:::-;;:::i;51763:85::-;;;;;;;;;;-1:-1:-1;51763:85:0;;;;;:::i;:::-;;:::i;53932:91::-;;;;;;;;;;-1:-1:-1;53932:91:0;;;;;:::i;:::-;;:::i;50609:35::-;;;;;;;;;;-1:-1:-1;50609:35:0;;;;;;;;;;;53252:341;;;;;;;;;;-1:-1:-1;53252:341:0;;;;;:::i;:::-;;:::i;50421:28::-;;;;;;;;;;;;;;;;50714:31;;;;;;;;;;;;;:::i;50347:32::-;;;;;;;;;;;;;;;;51122:78;;;;;;;;;;-1:-1:-1;51186:9:0;;;;;;;;;-1:-1:-1;51186:9:0;;51122:78;;34002:164;;;;;;;;;;-1:-1:-1;34002:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34123:25:0;;;34099:4;34123:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34002:164;49534:201;;;;;;;;;;-1:-1:-1;49534:201:0;;;;;:::i;:::-;;:::i;51208:88::-;;;;;;;;;;;;;:::i;51572:91::-;;;;;;;;;;-1:-1:-1;51572:91:0;;;;;:::i;:::-;;:::i;51448:116::-;;;;;;;;;;-1:-1:-1;51448:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51531:25:0;51507:4;51531:25;;;:18;:25;;;;;;;51448:116;28749:305;28851:4;-1:-1:-1;;;;;;28888:40:0;;-1:-1:-1;;;28888:40:0;;:105;;-1:-1:-1;;;;;;;28945:48:0;;-1:-1:-1;;;28945:48:0;28888:105;:158;;;-1:-1:-1;;;;;;;;;;16306:40:0;;;29010:36;28868:178;28749:305;-1:-1:-1;;28749:305:0:o;31864:100::-;31918:13;31951:5;31944:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31864:100;:::o;33368:204::-;33436:7;33461:16;33469:7;33461;:16::i;:::-;33456:64;;33486:34;;-1:-1:-1;;;33486:34:0;;;;;;;;;;;33456:64;-1:-1:-1;33540:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33540:24:0;;33368:204::o;32930:372::-;33003:13;33019:24;33035:7;33019:15;:24::i;:::-;33003:40;;33064:5;-1:-1:-1;;;;;33058:11:0;:2;-1:-1:-1;;;;;33058:11:0;;33054:48;;;33078:24;;-1:-1:-1;;;33078:24:0;;;;;;;;;;;33054:48;25766:10;-1:-1:-1;;;;;33119:21:0;;;33115:139;;33146:37;33163:5;25766:10;34002:164;:::i;33146:37::-;33142:112;;33207:35;;-1:-1:-1;;;33207:35:0;;;;;;;;;;;33142:112;33266:28;33275:2;33279:7;33288:5;33266:8;:28::i;:::-;32992:310;32930:372;;:::o;51856:91::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;;;;;;;;;51919:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;51919:23:0;;::::1;::::0;;;::::1;::::0;;51856:91::o;51675:83::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51736:9:::1;:17:::0;51675:83::o;34233:170::-;34367:28;34377:4;34383:2;34387:7;34367:9;:28::i;53133:114::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;53207:18:::1;:35:::0;53133:114::o;52595:143::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;52693:37:::1;::::0;52661:21:::1;::::0;52701:10:::1;::::0;52693:37;::::1;;;::::0;52661:21;;52643:15:::1;52693:37:::0;52643:15;52693:37;52661:21;52701:10;52693:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52632:106;52595:143::o:0;53024:101::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;53092:13:::1;:28:::0;53024:101::o;34474:185::-;34612:39;34629:4;34635:2;34639:7;34612:39;;;;;;;;;;;;:16;:39::i;51301:139::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51375:15:::1;::::0;;;::::1;;;51374:16;51366:50;;;::::0;-1:-1:-1;;;51366:50:0;;8822:2:1;51366:50:0::1;::::0;::::1;8804:21:1::0;8861:2;8841:18;;;8834:30;-1:-1:-1;;;8880:18:1;;;8873:51;8941:18;;51366:50:0::1;8620:345:1::0;51366:50:0::1;51421:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;31672:125::-:0;31736:7;31763:21;31776:7;31763:12;:21::i;:::-;:26;;31672:125;-1:-1:-1;;31672:125:0:o;54825:515::-;54919:15;;;;;;;54911:58;;;;-1:-1:-1;;;54911:58:0;;9579:2:1;54911:58:0;;;9561:21:1;9618:2;9598:18;;;9591:30;9657:32;9637:18;;;9630:60;9707:18;;54911:58:0;9377:354:1;54911:58:0;55022:28;;-1:-1:-1;;55039:10:0;6594:2:1;6590:15;6586:53;55022:28:0;;;6574:66:1;54988:64:0;;55005:5;;6656:12:1;;55022:28:0;;;;;;;;;;;;55012:39;;;;;;54988:16;:64::i;:::-;54980:104;;;;-1:-1:-1;;;54980:104:0;;9938:2:1;54980:104:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:29;9996:18;;;9989:57;10063:18;;54980:104:0;9736:351:1;54980:104:0;55123:9;;55114:5;55097:14;28441:7;28627:13;-1:-1:-1;;28627:31:0;;28394:283;55097:14;:22;;;;:::i;:::-;:35;;55089:65;;;;-1:-1:-1;;;55089:65:0;;;;;;;:::i;:::-;55201:8;;55193:16;;:5;:16;:::i;:::-;55180:9;:29;;55167:89;;;;-1:-1:-1;;;55167:89:0;;;;;;;:::i;:::-;55282:10;55263:30;;;;:18;:30;;;;;:39;;55297:5;;55263:30;:39;;55297:5;;55263:39;:::i;:::-;;;;-1:-1:-1;55307:28:0;;-1:-1:-1;55317:10:0;55329:5;55307:9;:28::i;29118:206::-;29182:7;-1:-1:-1;;;;;29206:19:0;;29202:60;;29234:28;;-1:-1:-1;;;29234:28:0;;;;;;;;;;;29202:60;-1:-1:-1;;;;;;29288:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29288:27:0;;29118:206::o;49276:103::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;49341:30:::1;49368:1;49341:18;:30::i;:::-;49276:103::o:0;54031:90::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;54097:8:::1;:19:::0;54031:90::o;53598:163::-;53683:4;53707:46;53726:5;53733:13;;53748:4;53707:18;:46::i;:::-;53700:53;53598:163;-1:-1:-1;;;53598:163:0:o;55352:543::-;55421:12;;;;55413:52;;;;-1:-1:-1;;;55413:52:0;;10294:2:1;55413:52:0;;;10276:21:1;10333:2;10313:18;;;10306:30;10372:29;10352:18;;;10345:57;10419:18;;55413:52:0;10092:351:1;55413:52:0;55487:16;;55478:5;:25;;55470:70;;;;-1:-1:-1;;;55470:70:0;;10650:2:1;55470:70:0;;;10632:21:1;10689:2;10669:18;;;10662:30;10728:34;10708:18;;;10701:62;-1:-1:-1;;;10779:18:1;;;10772:31;10820:19;;55470:70:0;10448:397:1;55470:70:0;55579:9;;55570:5;55553:14;28441:7;28627:13;-1:-1:-1;;28627:31:0;;28394:283;55553:14;:22;;;;:::i;:::-;:35;;55545:65;;;;-1:-1:-1;;;55545:65:0;;;;;;;:::i;:::-;55671:14;;55648:10;55629:30;;;;:18;:30;;;;;;:38;;55662:5;;55629:38;:::i;:::-;:56;;55621:90;;;;-1:-1:-1;;;55621:90:0;;12933:2:1;55621:90:0;;;12915:21:1;12972:2;12952:18;;;12945:30;-1:-1:-1;;;12991:18:1;;;12984:52;13053:18;;55621:90:0;12731:346:1;55621:90:0;55752:12;;55744:20;;:5;:20;:::i;:::-;55731:9;:33;;55718:93;;;;-1:-1:-1;;;55718:93:0;;;;;;;:::i;:::-;55837:10;55818:30;;;;:18;:30;;;;;:39;;55852:5;;55818:30;:39;;55852:5;;55818:39;:::i;:::-;;;;-1:-1:-1;55862:28:0;;-1:-1:-1;55872:10:0;55884:5;55862:9;:28::i;:::-;55352:543;:::o;52922:94::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;52987:9:::1;:24:::0;52922:94::o;52743:174::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;52847:9:::1;;52838:5;52821:14;28441:7:::0;28627:13;-1:-1:-1;;28627:31:0;;28394:283;52821:14:::1;:22;;;;:::i;:::-;:35;;52808:79;;;;-1:-1:-1::0;;;52808:79:0::1;;;;;;;:::i;:::-;52892:20;52902:2;52906:5;52892:9;:20::i;54129:688::-:0;54244:10;54198;54227:28;;;:16;:28;;;;;;54211:13;;:44;;54227:28;54211:44;:::i;:::-;54278:15;;54198:57;;-1:-1:-1;54278:15:0;;;;;54270:58;;;;-1:-1:-1;;;54270:58:0;;9579:2:1;54270:58:0;;;9561:21:1;9618:2;9598:18;;;9591:30;9657:32;9637:18;;;9630:60;9707:18;;54270:58:0;9377:354:1;54270:58:0;54377:28;;-1:-1:-1;;54394:10:0;6594:2:1;6590:15;6586:53;54377:28:0;;;6574:66:1;54347:60:0;;54360:5;;6656:12:1;;54377:28:0;;;;;;;;;;;;54367:39;;;;;;54347:12;:60::i;:::-;54339:100;;;;-1:-1:-1;;;54339:100:0;;9938:2:1;54339:100:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:29;9996:18;;;9989:57;10063:18;;54339:100:0;9736:351:1;54339:100:0;54478:9;;54469:5;54452:14;28441:7;28627:13;-1:-1:-1;;28627:31:0;;28394:283;54452:14;:22;;;;:::i;:::-;:35;;54444:65;;;;-1:-1:-1;;;54444:65:0;;;;;;;:::i;:::-;54544:18;;54535:5;54522:10;;:18;;;;:::i;:::-;:40;;54514:82;;;;-1:-1:-1;;;54514:82:0;;13284:2:1;54514:82:0;;;13266:21:1;13323:2;13303:18;;;13296:30;13362:32;13342:18;;;13335:60;13412:18;;54514:82:0;13082:354:1;54514:82:0;54623:1;54615:5;:9;54607:46;;;;-1:-1:-1;;;54607:46:0;;12579:2:1;54607:46:0;;;12561:21:1;12618:2;12598:18;;;12591:30;12657:27;12637:18;;;12630:55;12702:18;;54607:46:0;12377:349:1;54607:46:0;54688:5;54674:10;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;54717:10:0;54698:30;;;;:18;:30;;;;;:39;;54732:5;;54698:30;:39;;54732:5;;54698:39;:::i;:::-;;;;-1:-1:-1;;54759:10:0;54742:28;;;;:16;:28;;;;;:37;;54774:5;;54742:28;:37;;54774:5;;54742:37;:::i;:::-;;;;-1:-1:-1;54784:28:0;;-1:-1:-1;54794:10:0;54806:5;54784:9;:28::i;32033:104::-;32089:13;32122:7;32115:14;;;;;:::i;33644:287::-;-1:-1:-1;;;;;33743:24:0;;25766:10;33743:24;33739:54;;;33776:17;;-1:-1:-1;;;33776:17:0;;;;;;;;;;;33739:54;25766:10;33806:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33806:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33806:53:0;;;;;;;;;;33875:48;;8162:41:1;;;33806:42:0;;25766:10;33875:48;;8135:18:1;33875:48:0;;;;;;;33644:287;;:::o;53769:155::-;53850:4;53874:42;53893:5;53900:9;;53911:4;53874:18;:42::i;34730:370::-;34897:28;34907:4;34913:2;34917:7;34897:9;:28::i;:::-;-1:-1:-1;;;;;34940:13:0;;6386:19;:23;34936:157;;34961:56;34992:4;34998:2;35002:7;35011:5;34961:30;:56::i;:::-;34957:136;;35041:40;;-1:-1:-1;;;35041:40:0;;;;;;;;;;;34957:136;34730:370;;;;:::o;51763:85::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51823:12:::1;:20:::0;;-1:-1:-1;;51823:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51763:85::o;53932:91::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;53995:12:::1;:23:::0;53932:91::o;53252:341::-;53326:13;53362:16;53370:7;53362;:16::i;:::-;53354:76;;;;-1:-1:-1;;;53354:76:0;;12163:2:1;53354:76:0;;;12145:21:1;12202:2;12182:18;;;12175:30;12241:34;12221:18;;;12214:62;-1:-1:-1;;;12292:18:1;;;12285:45;12347:19;;53354:76:0;11961:411:1;53354:76:0;53477:1;53456:10;:8;:10::i;:::-;53450:24;:28;:138;;53576:12;53450:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53519:10;:8;:10::i;:::-;53531:18;:7;:16;:18::i;:::-;53502:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53443:145;53252:341;-1:-1:-1;;53252:341:0:o;50714:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49534:201::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49623:22:0;::::1;49615:73;;;::::0;-1:-1:-1;;;49615:73:0;;9172:2:1;49615:73:0::1;::::0;::::1;9154:21:1::0;9211:2;9191:18;;;9184:30;9250:34;9230:18;;;9223:62;-1:-1:-1;;;9301:18:1;;;9294:36;9347:19;;49615:73:0::1;8970:402:1::0;49615:73:0::1;49699:28;49718:8;49699:18;:28::i;51208:88::-:0;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51266:15:::1;:22:::0;;-1:-1:-1;;51266:22:0::1;::::0;::::1;::::0;;51208:88::o;51572:91::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51637:13:::1;:21:::0;51572:91::o;35355:174::-;35412:4;35455:7;51111:1;35436:26;;:53;;;;;35476:13;;35466:7;:23;35436:53;:85;;;;-1:-1:-1;;35494:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35494:27:0;;;;35493:28;;35355:174::o;44577:196::-;44692:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44692:29:0;-1:-1:-1;;;;;44692:29:0;;;;;;;;;44737:28;;44692:24;;44737:28;;;;;;;44577:196;;;:::o;39525:2130::-;39640:35;39678:21;39691:7;39678:12;:21::i;:::-;39640:59;;39738:4;-1:-1:-1;;;;;39716:26:0;:13;:18;;;-1:-1:-1;;;;;39716:26:0;;39712:67;;39751:28;;-1:-1:-1;;;39751:28:0;;;;;;;;;;;39712:67;39792:22;25766:10;-1:-1:-1;;;;;39818:20:0;;;;:73;;-1:-1:-1;39855:36:0;39872:4;25766:10;34002:164;:::i;39855:36::-;39818:126;;;-1:-1:-1;25766:10:0;39908:20;39920:7;39908:11;:20::i;:::-;-1:-1:-1;;;;;39908:36:0;;39818:126;39792:153;;39963:17;39958:66;;39989:35;;-1:-1:-1;;;39989:35:0;;;;;;;;;;;39958:66;-1:-1:-1;;;;;40039:16:0;;40035:52;;40064:23;;-1:-1:-1;;;40064:23:0;;;;;;;;;;;40035:52;40208:35;40225:1;40229:7;40238:4;40208:8;:35::i;:::-;-1:-1:-1;;;;;40539:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40539:31:0;;;-1:-1:-1;;;;;40539:31:0;;;-1:-1:-1;;40539:31:0;;;;;;;40585:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40585:29:0;;;;;;;;;;;40665:20;;;:11;:20;;;;;;40700:18;;-1:-1:-1;;;;;;40733:49:0;;;;-1:-1:-1;;;40766:15:0;40733:49;;;;;;;;;;41056:11;;41116:24;;;;;41159:13;;40665:20;;41116:24;;41159:13;41155:384;;41369:13;;41354:11;:28;41350:174;;41407:20;;41476:28;;;;-1:-1:-1;;;;;41450:54:0;-1:-1:-1;;;41450:54:0;-1:-1:-1;;;;;;41450:54:0;;;-1:-1:-1;;;;;41407:20:0;;41450:54;;;;41350:174;40514:1036;;;41586:7;41582:2;-1:-1:-1;;;;;41567:27:0;41576:4;-1:-1:-1;;;;;41567:27:0;;;;;;;;;;;39629:2026;;39525:2130;;;:::o;30499:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30610:7:0;;51111:1;30659:23;30655:888;;30695:13;;30688:4;:20;30684:859;;;30729:31;30763:17;;;:11;:17;;;;;;;;;30729:51;;;;;;;;;-1:-1:-1;;;;;30729:51:0;;;;-1:-1:-1;;;30729:51:0;;-1:-1:-1;;;;;30729:51:0;;;;;;;;-1:-1:-1;;;30729:51:0;;;;;;;;;;;;;;30799:729;;30849:14;;-1:-1:-1;;;;;30849:28:0;;30845:101;;30913:9;30499:1111;-1:-1:-1;;;30499:1111:0:o;30845:101::-;-1:-1:-1;;;31288:6:0;31333:17;;;;:11;:17;;;;;;;;;31321:29;;;;;;;;;-1:-1:-1;;;;;31321:29:0;;;;;-1:-1:-1;;;31321:29:0;;-1:-1:-1;;;;;31321:29:0;;;;;;;;-1:-1:-1;;;31321:29:0;;;;;;;;;;;;;31381:28;31377:109;;31449:9;30499:1111;-1:-1:-1;;;30499:1111:0:o;31377:109::-;31248:261;;;30710:833;30684:859;31571:31;;-1:-1:-1;;;31571:31:0;;;;;;;;;;;35613:104;35682:27;35692:2;35696:8;35682:27;;;;;;;;;;;;:9;:27::i;49895:191::-;49988:6;;;-1:-1:-1;;;;;50005:17:0;;;-1:-1:-1;;;;;;50005:17:0;;;;;;;50038:40;;49988:6;;;50005:17;49988:6;;50038:40;;49969:16;;50038:40;49958:128;49895:191;:::o;1266:190::-;1391:4;1444;1415:25;1428:5;1435:4;1415:12;:25::i;:::-;:33;;1266:190;-1:-1:-1;;;;1266:190:0:o;45265:667::-;45449:72;;-1:-1:-1;;;45449:72:0;;45428:4;;-1:-1:-1;;;;;45449:36:0;;;;;:72;;25766:10;;45500:4;;45506:7;;45515:5;;45449:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45449:72:0;;;;;;;;-1:-1:-1;;45449:72:0;;;;;;;;;;;;:::i;:::-;;;45445:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45683:13:0;;45679:235;;45729:40;;-1:-1:-1;;;45729:40:0;;;;;;;;;;;45679:235;45872:6;45866:13;45857:6;45853:2;45849:15;45842:38;45445:480;-1:-1:-1;;;;;;45568:55:0;-1:-1:-1;;;45568:55:0;;-1:-1:-1;45445:480:0;45265:667;;;;;;:::o;50939:92::-;50991:13;51018:8;51011:15;;;;;:::i;3099:723::-;3155:13;3376:10;3372:53;;-1:-1:-1;;3403:10:0;;;;;;;;;;;;-1:-1:-1;;;3403:10:0;;;;;3099:723::o;3372:53::-;3450:5;3435:12;3491:78;3498:9;;3491:78;;3524:8;;;;:::i;:::-;;-1:-1:-1;3547:10:0;;-1:-1:-1;3555:2:0;3547:10;;:::i;:::-;;;3491:78;;;3579:19;3611:6;-1:-1:-1;;;;;3601:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3601:17:0;;3579:39;;3629:154;3636:10;;3629:154;;3663:11;3673:1;3663:11;;:::i;:::-;;-1:-1:-1;3732:10:0;3740:2;3732:5;:10;:::i;:::-;3719:24;;:2;:24;:::i;:::-;3706:39;;3689:6;3696;3689:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3689:56:0;;;;;;;;-1:-1:-1;3760:11:0;3769:2;3760:11;;:::i;:::-;;;3629:154;;36090:1749;36213:20;36236:13;-1:-1:-1;;;;;36264:16:0;;36260:48;;36289:19;;-1:-1:-1;;;36289:19:0;;;;;;;;;;;36260:48;36323:13;36319:44;;36345:18;;-1:-1:-1;;;36345:18:0;;;;;;;;;;;36319:44;-1:-1:-1;;;;;36714:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36773:49:0;;-1:-1:-1;;;;;36714:44:0;;;;;;;36773:49;;;;-1:-1:-1;;36714:44:0;;;;;;36773:49;;;;;;;;;;;;;;;;36839:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36889:66:0;;;-1:-1:-1;;;36939:15:0;36889:66;;;;;;;;;;;;;36839:25;;37036:23;;;;6386:19;:23;37076:631;;37116:313;37147:38;;37172:12;;-1:-1:-1;;;;;37147:38:0;;;37164:1;;37147:38;;37164:1;;37147:38;37213:69;37252:1;37256:2;37260:14;;;;;;37276:5;37213:30;:69::i;:::-;37208:174;;37318:40;;-1:-1:-1;;;37318:40:0;;;;;;;;;;;37208:174;37424:3;37409:12;:18;37116:313;;37510:12;37493:13;;:29;37489:43;;37524:8;;;37489:43;37076:631;;;37573:119;37604:40;;37629:14;;;;;-1:-1:-1;;;;;37604:40:0;;;37621:1;;37604:40;;37621:1;;37604:40;37687:3;37672:12;:18;37573:119;;37076:631;-1:-1:-1;37721:13:0;:28;;;37771:60;;37804:2;37808:12;37822:8;37771:60;:::i;1818:675::-;1901:7;1944:4;1901:7;1959:497;1983:5;:12;1979:1;:16;1959:497;;;2017:20;2040:5;2046:1;2040:8;;;;;;;;:::i;:::-;;;;;;;2017:31;;2083:12;2067;:28;2063:382;;2569:13;2619:15;;;2655:4;2648:15;;;2702:4;2686:21;;2195:57;;2063:382;;;2569:13;2619:15;;;2655:4;2648:15;;;2702:4;2686:21;;2372:57;;2063:382;-1:-1:-1;1997:3:0;;;;:::i;:::-;;;;1959:497;;;-1:-1:-1;2473:12:0;1818:675;-1:-1:-1;;;1818:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:348::-;3558:6;3611:2;3599:9;3590:7;3586:23;3582:32;3579:52;;;3627:1;3624;3617:12;3579:52;3667:9;3654:23;-1:-1:-1;;;;;3692:6:1;3689:30;3686:50;;;3732:1;3729;3722:12;3686:50;3755:61;3808:7;3799:6;3788:9;3784:22;3755:61;:::i;3827:416::-;3920:6;3928;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;-1:-1:-1;;;;;4062:6:1;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:61;4178:7;4169:6;4158:9;4154:22;4125:61;:::i;:::-;4115:71;4233:2;4218:18;;;;4205:32;;-1:-1:-1;;;;3827:416:1:o;4248:180::-;4304:6;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4396:26;4412:9;4396:26;:::i;4433:180::-;4492:6;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;-1:-1:-1;4584:23:1;;4433:180;-1:-1:-1;4433:180:1:o;4618:245::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4784:9;4771:23;4803:30;4827:5;4803:30;:::i;4868:249::-;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5038:9;5032:16;5057:30;5081:5;5057:30;:::i;5122:450::-;5191:6;5244:2;5232:9;5223:7;5219:23;5215:32;5212:52;;;5260:1;5257;5250:12;5212:52;5300:9;5287:23;-1:-1:-1;;;;;5325:6:1;5322:30;5319:50;;;5365:1;5362;5355:12;5319:50;5388:22;;5441:4;5433:13;;5429:27;-1:-1:-1;5419:55:1;;5470:1;5467;5460:12;5419:55;5493:73;5558:7;5553:2;5540:16;5535:2;5531;5527:11;5493:73;:::i;5762:416::-;5855:6;5863;5916:2;5904:9;5895:7;5891:23;5887:32;5884:52;;;5932:1;5929;5922:12;5884:52;5968:9;5955:23;5945:33;;6029:2;6018:9;6014:18;6001:32;-1:-1:-1;;;;;6048:6:1;6045:30;6042:50;;;6088:1;6085;6078:12;6042:50;6111:61;6164:7;6155:6;6144:9;6140:22;6111:61;:::i;:::-;6101:71;;;5762:416;;;;;:::o;6183:257::-;6224:3;6262:5;6256:12;6289:6;6284:3;6277:19;6305:63;6361:6;6354:4;6349:3;6345:14;6338:4;6331:5;6327:16;6305:63;:::i;:::-;6422:2;6401:15;-1:-1:-1;;6397:29:1;6388:39;;;;6429:4;6384:50;;6183:257;-1:-1:-1;;6183:257:1:o;6679:637::-;6959:3;6997:6;6991:13;7013:53;7059:6;7054:3;7047:4;7039:6;7035:17;7013:53;:::i;:::-;7129:13;;7088:16;;;;7151:57;7129:13;7088:16;7185:4;7173:17;;7151:57;:::i;:::-;-1:-1:-1;;;7230:20:1;;7259:22;;;7308:1;7297:13;;6679:637;-1:-1:-1;;;;6679:637:1:o;7529:488::-;-1:-1:-1;;;;;7798:15:1;;;7780:34;;7850:15;;7845:2;7830:18;;7823:43;7897:2;7882:18;;7875:34;;;7945:3;7940:2;7925:18;;7918:31;;;7723:4;;7966:45;;7991:19;;7983:6;7966:45;:::i;:::-;7958:53;7529:488;-1:-1:-1;;;;;;7529:488:1:o;8396:219::-;8545:2;8534:9;8527:21;8508:4;8565:44;8605:2;8594:9;8590:18;8582:6;8565:44;:::i;10850:342::-;11052:2;11034:21;;;11091:2;11071:18;;;11064:30;-1:-1:-1;;;11125:2:1;11110:18;;11103:48;11183:2;11168:18;;10850:342::o;11197:398::-;11399:2;11381:21;;;11438:2;11418:18;;;11411:30;11477:34;11472:2;11457:18;;11450:62;-1:-1:-1;;;11543:2:1;11528:18;;11521:32;11585:3;11570:19;;11197:398::o;11600:356::-;11802:2;11784:21;;;11821:18;;;11814:30;11880:34;11875:2;11860:18;;11853:62;11947:2;11932:18;;11600:356::o;13623:275::-;13694:2;13688:9;13759:2;13740:13;;-1:-1:-1;;13736:27:1;13724:40;;-1:-1:-1;;;;;13779:34:1;;13815:22;;;13776:62;13773:88;;;13841:18;;:::i;:::-;13877:2;13870:22;13623:275;;-1:-1:-1;13623:275:1:o;13903:128::-;13943:3;13974:1;13970:6;13967:1;13964:13;13961:39;;;13980:18;;:::i;:::-;-1:-1:-1;14016:9:1;;13903:128::o;14036:120::-;14076:1;14102;14092:35;;14107:18;;:::i;:::-;-1:-1:-1;14141:9:1;;14036:120::o;14161:168::-;14201:7;14267:1;14263;14259:6;14255:14;14252:1;14249:21;14244:1;14237:9;14230:17;14226:45;14223:71;;;14274:18;;:::i;:::-;-1:-1:-1;14314:9:1;;14161:168::o;14334:125::-;14374:4;14402:1;14399;14396:8;14393:34;;;14407:18;;:::i;:::-;-1:-1:-1;14444:9:1;;14334:125::o;14464:258::-;14536:1;14546:113;14560:6;14557:1;14554:13;14546:113;;;14636:11;;;14630:18;14617:11;;;14610:39;14582:2;14575:10;14546:113;;;14677:6;14674:1;14671:13;14668:48;;;-1:-1:-1;;14712:1:1;14694:16;;14687:27;14464:258::o;14727:380::-;14806:1;14802:12;;;;14849;;;14870:61;;14924:4;14916:6;14912:17;14902:27;;14870:61;14977:2;14969:6;14966:14;14946:18;14943:38;14940:161;;;15023:10;15018:3;15014:20;15011:1;15004:31;15058:4;15055:1;15048:15;15086:4;15083:1;15076:15;14940:161;;14727:380;;;:::o;15112:135::-;15151:3;-1:-1:-1;;15172:17:1;;15169:43;;;15192:18;;:::i;:::-;-1:-1:-1;15239:1:1;15228:13;;15112:135::o;15252:112::-;15284:1;15310;15300:35;;15315:18;;:::i;:::-;-1:-1:-1;15349:9:1;;15252:112::o;15369:127::-;15430:10;15425:3;15421:20;15418:1;15411:31;15461:4;15458:1;15451:15;15485:4;15482:1;15475:15;15501:127;15562:10;15557:3;15553:20;15550:1;15543:31;15593:4;15590:1;15583:15;15617:4;15614:1;15607:15;15633:127;15694:10;15689:3;15685:20;15682:1;15675:31;15725:4;15722:1;15715:15;15749:4;15746:1;15739:15;15765:127;15826:10;15821:3;15817:20;15814:1;15807:31;15857:4;15854:1;15847:15;15881:4;15878:1;15871:15;15897:131;-1:-1:-1;;;;;;15971:32:1;;15961:43;;15951:71;;16018:1;16015;16008:12
Swarm Source
ipfs://1b7494d366476779672f52eb3a0500cd98286a04cc8cef0e0c8ceb70d51f505b
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.