ERC-721
Overview
Max Total Supply
446 PLAT
Holders
134
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 PLATLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-20 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // 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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts 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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/platydoodles.sol pragma solidity >=0.7.0 <0.9.0; contract NFT is ERC721Enumerable, Ownable { using Strings for uint256; using MerkleProof for bytes32[]; string public baseURI; bytes32 private _merkleRoot; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = .01 ether; uint256 public maxSupply = 3562; uint256 public maxMintAmount = 25; uint256 public nftPerAddressLimit = 25; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri, bytes32 merkleRoot ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); _merkleRoot = merkleRoot; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount, bytes32[] memory _proof) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { isAllowedToMint(_proof); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // only owner function changeMerkleRoot(bytes32 merkleRoot) public onlyOwner { _merkleRoot = merkleRoot; } function isAllowedToMint(bytes32[] memory _proof) internal view returns (bool) { require( MerkleProof.verify(_proof, _merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Caller is not whitelisted for Presale" ); return true; } //only owner function reveal() public onlyOwner { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function withdraw() public payable onlyOwner { // ============================================================================= // This will payout the owner the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"changeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600d91906200020e565b50662386f26fc10000600f55610dea601055601960118190556012556013805462ffffff1916620100001790553480156200006257600080fd5b5060405162002ec638038062002ec683398101604081905262000085916200036b565b8451859085906200009e9060009060208501906200020e565b508051620000b49060019060208401906200020e565b505050620000d1620000cb620000f560201b60201c565b620000f9565b620000dc836200014b565b620000e782620001b3565b600c55506200048192505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200019a5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ea683398151915260448201526064015b60405180910390fd5b8051620001af90600b9060208401906200020e565b5050565b600a546001600160a01b03163314620001fe5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ea6833981519152604482015260640162000191565b8051620001af90600e9060208401905b8280546200021c906200042e565b90600052602060002090601f0160209004810192826200024057600085556200028b565b82601f106200025b57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028b5782518255916020019190600101906200026e565b50620002999291506200029d565b5090565b5b808211156200029957600081556001016200029e565b600082601f830112620002c657600080fd5b81516001600160401b0380821115620002e357620002e36200046b565b604051601f8301601f19908116603f011681019082821181831017156200030e576200030e6200046b565b816040528381526020925086838588010111156200032b57600080fd5b600091505b838210156200034f578582018301518183018401529082019062000330565b83821115620003615760008385830101525b9695505050505050565b600080600080600060a086880312156200038457600080fd5b85516001600160401b03808211156200039c57600080fd5b620003aa89838a01620002b4565b96506020880151915080821115620003c157600080fd5b620003cf89838a01620002b4565b95506040880151915080821115620003e657600080fd5b620003f489838a01620002b4565b945060608801519150808211156200040b57600080fd5b506200041a88828901620002b4565b925050608086015190509295509295909350565b600181811c908216806200044357607f821691505b602082108114156200046557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a1580620004916000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063ba41b0c6116100b6578063d5abeb011161007a578063d5abeb01146106c1578063da3ef23f146106d7578063e985e9c5146106f7578063ebcea3db14610740578063f2c4ce1e14610760578063f2fde38b1461078057600080fd5b8063ba41b0c614610643578063ba7d2c7614610656578063c66828621461066c578063c87b56dd14610681578063d0eb26b0146106a157600080fd5b80638da5cb5b116101085780638da5cb5b1461059b57806395d89b41146105b95780639c70b512146105ce578063a22cb465146105ee578063a475b5dd1461060e578063b88d4fde1461062357600080fd5b80636352211e146105115780636c0360eb1461053157806370a0823114610546578063715018a6146105665780637f00c7a61461057b57600080fd5b806323b872dd116101dd578063438b6300116101a1578063438b63001461044b57806344a0d68a146104785780634f6ccce71461049857806351830227146104b857806355f804b3146104d75780635c975abb146104f757600080fd5b806323b872dd146103c35780632f745c59146103e35780633c952764146104035780633ccfd60b1461042357806342842e0e1461042b57600080fd5b8063095ea7b311610224578063095ea7b31461032757806313faede61461034757806318160ddd1461036b57806318cae26914610380578063239c70ae146103ad57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063081c8c4414610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461249a565b6107a0565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004612466565b6107cb565b005b3480156102c457600080fd5b506102cd610811565b60405161028d9190612747565b3480156102e657600080fd5b506102fa6102f5366004612481565b6108a3565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102cd610938565b34801561033357600080fd5b506102b661034236600461243c565b6109c6565b34801561035357600080fd5b5061035d600f5481565b60405190815260200161028d565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b5061035d61039b36600461230c565b60146020526000908152604090205481565b3480156103b957600080fd5b5061035d60115481565b3480156103cf57600080fd5b506102b66103de36600461235a565b610adc565b3480156103ef57600080fd5b5061035d6103fe36600461243c565b610b0d565b34801561040f57600080fd5b506102b661041e366004612466565b610ba3565b6102b6610be9565b34801561043757600080fd5b506102b661044636600461235a565b610c87565b34801561045757600080fd5b5061046b61046636600461230c565b610ca2565b60405161028d9190612703565b34801561048457600080fd5b506102b6610493366004612481565b610d44565b3480156104a457600080fd5b5061035d6104b3366004612481565b610d73565b3480156104c457600080fd5b5060135461028190610100900460ff1681565b3480156104e357600080fd5b506102b66104f23660046124d4565b610e06565b34801561050357600080fd5b506013546102819060ff1681565b34801561051d57600080fd5b506102fa61052c366004612481565b610e47565b34801561053d57600080fd5b506102cd610ebe565b34801561055257600080fd5b5061035d61056136600461230c565b610ecb565b34801561057257600080fd5b506102b6610f52565b34801561058757600080fd5b506102b6610596366004612481565b610f88565b3480156105a757600080fd5b50600a546001600160a01b03166102fa565b3480156105c557600080fd5b506102cd610fb7565b3480156105da57600080fd5b506013546102819062010000900460ff1681565b3480156105fa57600080fd5b506102b6610609366004612412565b610fc6565b34801561061a57600080fd5b506102b6610fd1565b34801561062f57600080fd5b506102b661063e366004612396565b61100c565b6102b661065136600461251d565b611044565b34801561066257600080fd5b5061035d60125481565b34801561067857600080fd5b506102cd6112e0565b34801561068d57600080fd5b506102cd61069c366004612481565b6112ed565b3480156106ad57600080fd5b506102b66106bc366004612481565b61146c565b3480156106cd57600080fd5b5061035d60105481565b3480156106e357600080fd5b506102b66106f23660046124d4565b61149b565b34801561070357600080fd5b50610281610712366004612327565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074c57600080fd5b506102b661075b366004612481565b6114d8565b34801561076c57600080fd5b506102b661077b3660046124d4565b611507565b34801561078c57600080fd5b506102b661079b36600461230c565b611544565b60006001600160e01b0319821663780e9d6360e01b14806107c557506107c5826115dc565b92915050565b600a546001600160a01b031633146107fe5760405162461bcd60e51b81526004016107f5906127ac565b60405180910390fd5b6013805460ff1916911515919091179055565b606060008054610820906128f1565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906128f1565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f5565b506000908152600460205260409020546001600160a01b031690565b600e8054610945906128f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610971906128f1565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b505050505081565b60006109d182610e47565b9050806001600160a01b0316836001600160a01b03161415610a3f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f5565b336001600160a01b0382161480610a5b5750610a5b8133610712565b610acd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f5565b610ad7838361162c565b505050565b610ae6338261169a565b610b025760405162461bcd60e51b81526004016107f5906127e1565b610ad7838383611791565b6000610b1883610ecb565b8210610b7a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bcd5760405162461bcd60e51b81526004016107f5906127ac565b60138054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610c135760405162461bcd60e51b81526004016107f5906127ac565b6000610c27600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c71576040519150601f19603f3d011682016040523d82523d6000602084013e610c76565b606091505b5050905080610c8457600080fd5b50565b610ad78383836040518060200160405280600081525061100c565b60606000610caf83610ecb565b905060008167ffffffffffffffff811115610ccc57610ccc6129b3565b604051908082528060200260200182016040528015610cf5578160200160208202803683370190505b50905060005b82811015610d3c57610d0d8582610b0d565b828281518110610d1f57610d1f61299d565b602090810291909101015280610d348161292c565b915050610cfb565b509392505050565b600a546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016107f5906127ac565b600f55565b6000610d7e60085490565b8210610de15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f5565b60088281548110610df457610df461299d565b90600052602060002001549050919050565b600a546001600160a01b03163314610e305760405162461bcd60e51b81526004016107f5906127ac565b8051610e4390600b9060208401906121ef565b5050565b6000818152600260205260408120546001600160a01b0316806107c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f5565b600b8054610945906128f1565b60006001600160a01b038216610f365760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f7c5760405162461bcd60e51b81526004016107f5906127ac565b610f86600061193c565b565b600a546001600160a01b03163314610fb25760405162461bcd60e51b81526004016107f5906127ac565b601155565b606060018054610820906128f1565b610e4333838361198e565b600a546001600160a01b03163314610ffb5760405162461bcd60e51b81526004016107f5906127ac565b6013805461ff001916610100179055565b611016338361169a565b6110325760405162461bcd60e51b81526004016107f5906127e1565b61103e84848484611a5d565b50505050565b60135460ff16156110905760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107f5565b600061109b60085490565b9050600083116110ed5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107f5565b60115483111561114b5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016107f5565b6010546111588483612863565b111561119f5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107f5565b600a546001600160a01b031633146112905760135462010000900460ff1615156001141561123e576111d082611a90565b50336000908152601460205260409020546012546111ee8583612863565b111561123c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107f5565b505b82600f5461124c919061288f565b3410156112905760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016107f5565b60015b83811161103e573360009081526014602052604081208054916112b58361292c565b909155506112ce9050336112c98385612863565b611b38565b806112d88161292c565b915050611293565b600d8054610945906128f1565b6000818152600260205260409020546060906001600160a01b031661136c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f5565b601354610100900460ff1661140d57600e8054611388906128f1565b80601f01602080910402602001604051908101604052809291908181526020018280546113b4906128f1565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b50505050509050919050565b6000611417611b52565b905060008151116114375760405180602001604052806000815250611465565b8061144184611b61565b600d60405160200161145593929190612602565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114965760405162461bcd60e51b81526004016107f5906127ac565b601255565b600a546001600160a01b031633146114c55760405162461bcd60e51b81526004016107f5906127ac565b8051610e4390600d9060208401906121ef565b600a546001600160a01b031633146115025760405162461bcd60e51b81526004016107f5906127ac565b600c55565b600a546001600160a01b031633146115315760405162461bcd60e51b81526004016107f5906127ac565b8051610e4390600e9060208401906121ef565b600a546001600160a01b0316331461156e5760405162461bcd60e51b81526004016107f5906127ac565b6001600160a01b0381166115d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f5565b610c848161193c565b60006001600160e01b031982166380ac58cd60e01b148061160d57506001600160e01b03198216635b5e139f60e01b145b806107c557506301ffc9a760e01b6001600160e01b03198316146107c5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166182610e47565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f5565b600061171e83610e47565b9050806001600160a01b0316846001600160a01b031614806117595750836001600160a01b031661174e846108a3565b6001600160a01b0316145b8061178957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117a482610e47565b6001600160a01b03161461180c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f5565b6001600160a01b03821661186e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f5565b611879838383611c5f565b61188460008261162c565b6001600160a01b03831660009081526003602052604081208054600192906118ad9084906128ae565b90915550506001600160a01b03821660009081526003602052604081208054600192906118db908490612863565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119f05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a68848484611791565b611a7484848484611d17565b61103e5760405162461bcd60e51b81526004016107f59061275a565b600c546040516bffffffffffffffffffffffff193360601b166020820152600091611ad69184919060340160405160208183030381529060405280519060200120611e24565b611b305760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f742077686974656c697374656420666f722050726044820152646573616c6560d81b60648201526084016107f5565b506001919050565b610e43828260405180602001604052806000815250611e3a565b6060600b8054610820906128f1565b606081611b855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611baf5780611b998161292c565b9150611ba89050600a8361287b565b9150611b89565b60008167ffffffffffffffff811115611bca57611bca6129b3565b6040519080825280601f01601f191660200182016040528015611bf4576020820181803683370190505b5090505b841561178957611c096001836128ae565b9150611c16600a86612947565b611c21906030612863565b60f81b818381518110611c3657611c3661299d565b60200101906001600160f81b031916908160001a905350611c58600a8661287b565b9450611bf8565b6001600160a01b038316611cba57611cb581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cdd565b816001600160a01b0316836001600160a01b031614611cdd57611cdd8382611e6d565b6001600160a01b038216611cf457610ad781611f0a565b826001600160a01b0316826001600160a01b031614610ad757610ad78282611fb9565b60006001600160a01b0384163b15611e1957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d5b9033908990889088906004016126c6565b602060405180830381600087803b158015611d7557600080fd5b505af1925050508015611da5575060408051601f3d908101601f19168201909252611da2918101906124b7565b60015b611dff573d808015611dd3576040519150601f19603f3d011682016040523d82523d6000602084013e611dd8565b606091505b508051611df75760405162461bcd60e51b81526004016107f59061275a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611789565b506001949350505050565b600082611e318584611ffd565b14949350505050565b611e4483836120a1565b611e516000848484611d17565b610ad75760405162461bcd60e51b81526004016107f59061275a565b60006001611e7a84610ecb565b611e8491906128ae565b600083815260076020526040902054909150808214611ed7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f1c906001906128ae565b60008381526009602052604081205460088054939450909284908110611f4457611f4461299d565b906000526020600020015490508060088381548110611f6557611f6561299d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f9d57611f9d612987565b6001900381819060005260206000200160009055905550505050565b6000611fc483610ecb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610d3c57600085828151811061201f5761201f61299d565b6020026020010151905080831161206157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061208e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806120998161292c565b915050612002565b6001600160a01b0382166120f75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f5565b6000818152600260205260409020546001600160a01b03161561215c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f5565b61216860008383611c5f565b6001600160a01b0382166000908152600360205260408120805460019290612191908490612863565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121fb906128f1565b90600052602060002090601f01602090048101928261221d5760008555612263565b82601f1061223657805160ff1916838001178555612263565b82800160010185558215612263579182015b82811115612263578251825591602001919060010190612248565b5061226f929150612273565b5090565b5b8082111561226f5760008155600101612274565b600067ffffffffffffffff8311156122a2576122a26129b3565b6122b5601f8401601f1916602001612832565b90508281528383830111156122c957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122f757600080fd5b919050565b803580151581146122f757600080fd5b60006020828403121561231e57600080fd5b611465826122e0565b6000806040838503121561233a57600080fd5b612343836122e0565b9150612351602084016122e0565b90509250929050565b60008060006060848603121561236f57600080fd5b612378846122e0565b9250612386602085016122e0565b9150604084013590509250925092565b600080600080608085870312156123ac57600080fd5b6123b5856122e0565b93506123c3602086016122e0565b925060408501359150606085013567ffffffffffffffff8111156123e657600080fd5b8501601f810187136123f757600080fd5b61240687823560208401612288565b91505092959194509250565b6000806040838503121561242557600080fd5b61242e836122e0565b9150612351602084016122fc565b6000806040838503121561244f57600080fd5b612458836122e0565b946020939093013593505050565b60006020828403121561247857600080fd5b611465826122fc565b60006020828403121561249357600080fd5b5035919050565b6000602082840312156124ac57600080fd5b8135611465816129c9565b6000602082840312156124c957600080fd5b8151611465816129c9565b6000602082840312156124e657600080fd5b813567ffffffffffffffff8111156124fd57600080fd5b8201601f8101841361250e57600080fd5b61178984823560208401612288565b6000806040838503121561253057600080fd5b8235915060208084013567ffffffffffffffff8082111561255057600080fd5b818601915086601f83011261256457600080fd5b813581811115612576576125766129b3565b8060051b9150612587848301612832565b8181528481019084860184860187018b10156125a257600080fd5b600095505b838610156125c55780358352600195909501949186019186016125a7565b508096505050505050509250929050565b600081518084526125ee8160208601602086016128c5565b601f01601f19169290920160200192915050565b6000845160206126158285838a016128c5565b8551918401916126288184848a016128c5565b8554920191600090600181811c908083168061264557607f831692505b85831081141561266357634e487b7160e01b85526022600452602485fd5b8080156126775760018114612688576126b5565b60ff198516885283880195506126b5565b60008b81526020902060005b858110156126ad5781548a820152908401908801612694565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126f9908301846125d6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561273b5783518352928401929184019160010161271f565b50909695505050505050565b60208152600061146560208301846125d6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561285b5761285b6129b3565b604052919050565b600082198211156128765761287661295b565b500190565b60008261288a5761288a612971565b500490565b60008160001904831182151516156128a9576128a961295b565b500290565b6000828210156128c0576128c061295b565b500390565b60005b838110156128e05781810151838201526020016128c8565b8381111561103e5750506000910152565b600181811c9082168061290557607f821691505b6020821081141561292657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129405761294061295b565b5060010190565b60008261295657612956612971565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8457600080fdfea2646970667358221220d2da9263babc6cce20cfe94232fc44f3472b52058ac0649be280421439d14cd964736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180e765cec090edbe0e9923a3a4351bec39119ceb5aea551cedb0066c6b230aa35c000000000000000000000000000000000000000000000000000000000000000d506c61747920446f6f646c6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504c4154000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a544b68684a68697441755737586139507766436857464e53435238345868566f326e4b383534574a516f722f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5a63344d716242616d66707375365270706b654b6e58586d6178324568707458545347707a4c66556f35724c2f48696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636352211e11610144578063ba41b0c6116100b6578063d5abeb011161007a578063d5abeb01146106c1578063da3ef23f146106d7578063e985e9c5146106f7578063ebcea3db14610740578063f2c4ce1e14610760578063f2fde38b1461078057600080fd5b8063ba41b0c614610643578063ba7d2c7614610656578063c66828621461066c578063c87b56dd14610681578063d0eb26b0146106a157600080fd5b80638da5cb5b116101085780638da5cb5b1461059b57806395d89b41146105b95780639c70b512146105ce578063a22cb465146105ee578063a475b5dd1461060e578063b88d4fde1461062357600080fd5b80636352211e146105115780636c0360eb1461053157806370a0823114610546578063715018a6146105665780637f00c7a61461057b57600080fd5b806323b872dd116101dd578063438b6300116101a1578063438b63001461044b57806344a0d68a146104785780634f6ccce71461049857806351830227146104b857806355f804b3146104d75780635c975abb146104f757600080fd5b806323b872dd146103c35780632f745c59146103e35780633c952764146104035780633ccfd60b1461042357806342842e0e1461042b57600080fd5b8063095ea7b311610224578063095ea7b31461032757806313faede61461034757806318160ddd1461036b57806318cae26914610380578063239c70ae146103ad57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063081c8c4414610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461249a565b6107a0565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004612466565b6107cb565b005b3480156102c457600080fd5b506102cd610811565b60405161028d9190612747565b3480156102e657600080fd5b506102fa6102f5366004612481565b6108a3565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102cd610938565b34801561033357600080fd5b506102b661034236600461243c565b6109c6565b34801561035357600080fd5b5061035d600f5481565b60405190815260200161028d565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b5061035d61039b36600461230c565b60146020526000908152604090205481565b3480156103b957600080fd5b5061035d60115481565b3480156103cf57600080fd5b506102b66103de36600461235a565b610adc565b3480156103ef57600080fd5b5061035d6103fe36600461243c565b610b0d565b34801561040f57600080fd5b506102b661041e366004612466565b610ba3565b6102b6610be9565b34801561043757600080fd5b506102b661044636600461235a565b610c87565b34801561045757600080fd5b5061046b61046636600461230c565b610ca2565b60405161028d9190612703565b34801561048457600080fd5b506102b6610493366004612481565b610d44565b3480156104a457600080fd5b5061035d6104b3366004612481565b610d73565b3480156104c457600080fd5b5060135461028190610100900460ff1681565b3480156104e357600080fd5b506102b66104f23660046124d4565b610e06565b34801561050357600080fd5b506013546102819060ff1681565b34801561051d57600080fd5b506102fa61052c366004612481565b610e47565b34801561053d57600080fd5b506102cd610ebe565b34801561055257600080fd5b5061035d61056136600461230c565b610ecb565b34801561057257600080fd5b506102b6610f52565b34801561058757600080fd5b506102b6610596366004612481565b610f88565b3480156105a757600080fd5b50600a546001600160a01b03166102fa565b3480156105c557600080fd5b506102cd610fb7565b3480156105da57600080fd5b506013546102819062010000900460ff1681565b3480156105fa57600080fd5b506102b6610609366004612412565b610fc6565b34801561061a57600080fd5b506102b6610fd1565b34801561062f57600080fd5b506102b661063e366004612396565b61100c565b6102b661065136600461251d565b611044565b34801561066257600080fd5b5061035d60125481565b34801561067857600080fd5b506102cd6112e0565b34801561068d57600080fd5b506102cd61069c366004612481565b6112ed565b3480156106ad57600080fd5b506102b66106bc366004612481565b61146c565b3480156106cd57600080fd5b5061035d60105481565b3480156106e357600080fd5b506102b66106f23660046124d4565b61149b565b34801561070357600080fd5b50610281610712366004612327565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074c57600080fd5b506102b661075b366004612481565b6114d8565b34801561076c57600080fd5b506102b661077b3660046124d4565b611507565b34801561078c57600080fd5b506102b661079b36600461230c565b611544565b60006001600160e01b0319821663780e9d6360e01b14806107c557506107c5826115dc565b92915050565b600a546001600160a01b031633146107fe5760405162461bcd60e51b81526004016107f5906127ac565b60405180910390fd5b6013805460ff1916911515919091179055565b606060008054610820906128f1565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906128f1565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f5565b506000908152600460205260409020546001600160a01b031690565b600e8054610945906128f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610971906128f1565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b505050505081565b60006109d182610e47565b9050806001600160a01b0316836001600160a01b03161415610a3f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f5565b336001600160a01b0382161480610a5b5750610a5b8133610712565b610acd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f5565b610ad7838361162c565b505050565b610ae6338261169a565b610b025760405162461bcd60e51b81526004016107f5906127e1565b610ad7838383611791565b6000610b1883610ecb565b8210610b7a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bcd5760405162461bcd60e51b81526004016107f5906127ac565b60138054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610c135760405162461bcd60e51b81526004016107f5906127ac565b6000610c27600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c71576040519150601f19603f3d011682016040523d82523d6000602084013e610c76565b606091505b5050905080610c8457600080fd5b50565b610ad78383836040518060200160405280600081525061100c565b60606000610caf83610ecb565b905060008167ffffffffffffffff811115610ccc57610ccc6129b3565b604051908082528060200260200182016040528015610cf5578160200160208202803683370190505b50905060005b82811015610d3c57610d0d8582610b0d565b828281518110610d1f57610d1f61299d565b602090810291909101015280610d348161292c565b915050610cfb565b509392505050565b600a546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016107f5906127ac565b600f55565b6000610d7e60085490565b8210610de15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f5565b60088281548110610df457610df461299d565b90600052602060002001549050919050565b600a546001600160a01b03163314610e305760405162461bcd60e51b81526004016107f5906127ac565b8051610e4390600b9060208401906121ef565b5050565b6000818152600260205260408120546001600160a01b0316806107c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f5565b600b8054610945906128f1565b60006001600160a01b038216610f365760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f7c5760405162461bcd60e51b81526004016107f5906127ac565b610f86600061193c565b565b600a546001600160a01b03163314610fb25760405162461bcd60e51b81526004016107f5906127ac565b601155565b606060018054610820906128f1565b610e4333838361198e565b600a546001600160a01b03163314610ffb5760405162461bcd60e51b81526004016107f5906127ac565b6013805461ff001916610100179055565b611016338361169a565b6110325760405162461bcd60e51b81526004016107f5906127e1565b61103e84848484611a5d565b50505050565b60135460ff16156110905760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107f5565b600061109b60085490565b9050600083116110ed5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107f5565b60115483111561114b5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016107f5565b6010546111588483612863565b111561119f5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107f5565b600a546001600160a01b031633146112905760135462010000900460ff1615156001141561123e576111d082611a90565b50336000908152601460205260409020546012546111ee8583612863565b111561123c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107f5565b505b82600f5461124c919061288f565b3410156112905760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016107f5565b60015b83811161103e573360009081526014602052604081208054916112b58361292c565b909155506112ce9050336112c98385612863565b611b38565b806112d88161292c565b915050611293565b600d8054610945906128f1565b6000818152600260205260409020546060906001600160a01b031661136c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f5565b601354610100900460ff1661140d57600e8054611388906128f1565b80601f01602080910402602001604051908101604052809291908181526020018280546113b4906128f1565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b50505050509050919050565b6000611417611b52565b905060008151116114375760405180602001604052806000815250611465565b8061144184611b61565b600d60405160200161145593929190612602565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114965760405162461bcd60e51b81526004016107f5906127ac565b601255565b600a546001600160a01b031633146114c55760405162461bcd60e51b81526004016107f5906127ac565b8051610e4390600d9060208401906121ef565b600a546001600160a01b031633146115025760405162461bcd60e51b81526004016107f5906127ac565b600c55565b600a546001600160a01b031633146115315760405162461bcd60e51b81526004016107f5906127ac565b8051610e4390600e9060208401906121ef565b600a546001600160a01b0316331461156e5760405162461bcd60e51b81526004016107f5906127ac565b6001600160a01b0381166115d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f5565b610c848161193c565b60006001600160e01b031982166380ac58cd60e01b148061160d57506001600160e01b03198216635b5e139f60e01b145b806107c557506301ffc9a760e01b6001600160e01b03198316146107c5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166182610e47565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f5565b600061171e83610e47565b9050806001600160a01b0316846001600160a01b031614806117595750836001600160a01b031661174e846108a3565b6001600160a01b0316145b8061178957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117a482610e47565b6001600160a01b03161461180c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f5565b6001600160a01b03821661186e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f5565b611879838383611c5f565b61188460008261162c565b6001600160a01b03831660009081526003602052604081208054600192906118ad9084906128ae565b90915550506001600160a01b03821660009081526003602052604081208054600192906118db908490612863565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119f05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a68848484611791565b611a7484848484611d17565b61103e5760405162461bcd60e51b81526004016107f59061275a565b600c546040516bffffffffffffffffffffffff193360601b166020820152600091611ad69184919060340160405160208183030381529060405280519060200120611e24565b611b305760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f742077686974656c697374656420666f722050726044820152646573616c6560d81b60648201526084016107f5565b506001919050565b610e43828260405180602001604052806000815250611e3a565b6060600b8054610820906128f1565b606081611b855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611baf5780611b998161292c565b9150611ba89050600a8361287b565b9150611b89565b60008167ffffffffffffffff811115611bca57611bca6129b3565b6040519080825280601f01601f191660200182016040528015611bf4576020820181803683370190505b5090505b841561178957611c096001836128ae565b9150611c16600a86612947565b611c21906030612863565b60f81b818381518110611c3657611c3661299d565b60200101906001600160f81b031916908160001a905350611c58600a8661287b565b9450611bf8565b6001600160a01b038316611cba57611cb581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cdd565b816001600160a01b0316836001600160a01b031614611cdd57611cdd8382611e6d565b6001600160a01b038216611cf457610ad781611f0a565b826001600160a01b0316826001600160a01b031614610ad757610ad78282611fb9565b60006001600160a01b0384163b15611e1957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d5b9033908990889088906004016126c6565b602060405180830381600087803b158015611d7557600080fd5b505af1925050508015611da5575060408051601f3d908101601f19168201909252611da2918101906124b7565b60015b611dff573d808015611dd3576040519150601f19603f3d011682016040523d82523d6000602084013e611dd8565b606091505b508051611df75760405162461bcd60e51b81526004016107f59061275a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611789565b506001949350505050565b600082611e318584611ffd565b14949350505050565b611e4483836120a1565b611e516000848484611d17565b610ad75760405162461bcd60e51b81526004016107f59061275a565b60006001611e7a84610ecb565b611e8491906128ae565b600083815260076020526040902054909150808214611ed7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f1c906001906128ae565b60008381526009602052604081205460088054939450909284908110611f4457611f4461299d565b906000526020600020015490508060088381548110611f6557611f6561299d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f9d57611f9d612987565b6001900381819060005260206000200160009055905550505050565b6000611fc483610ecb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610d3c57600085828151811061201f5761201f61299d565b6020026020010151905080831161206157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061208e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806120998161292c565b915050612002565b6001600160a01b0382166120f75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f5565b6000818152600260205260409020546001600160a01b03161561215c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f5565b61216860008383611c5f565b6001600160a01b0382166000908152600360205260408120805460019290612191908490612863565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121fb906128f1565b90600052602060002090601f01602090048101928261221d5760008555612263565b82601f1061223657805160ff1916838001178555612263565b82800160010185558215612263579182015b82811115612263578251825591602001919060010190612248565b5061226f929150612273565b5090565b5b8082111561226f5760008155600101612274565b600067ffffffffffffffff8311156122a2576122a26129b3565b6122b5601f8401601f1916602001612832565b90508281528383830111156122c957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122f757600080fd5b919050565b803580151581146122f757600080fd5b60006020828403121561231e57600080fd5b611465826122e0565b6000806040838503121561233a57600080fd5b612343836122e0565b9150612351602084016122e0565b90509250929050565b60008060006060848603121561236f57600080fd5b612378846122e0565b9250612386602085016122e0565b9150604084013590509250925092565b600080600080608085870312156123ac57600080fd5b6123b5856122e0565b93506123c3602086016122e0565b925060408501359150606085013567ffffffffffffffff8111156123e657600080fd5b8501601f810187136123f757600080fd5b61240687823560208401612288565b91505092959194509250565b6000806040838503121561242557600080fd5b61242e836122e0565b9150612351602084016122fc565b6000806040838503121561244f57600080fd5b612458836122e0565b946020939093013593505050565b60006020828403121561247857600080fd5b611465826122fc565b60006020828403121561249357600080fd5b5035919050565b6000602082840312156124ac57600080fd5b8135611465816129c9565b6000602082840312156124c957600080fd5b8151611465816129c9565b6000602082840312156124e657600080fd5b813567ffffffffffffffff8111156124fd57600080fd5b8201601f8101841361250e57600080fd5b61178984823560208401612288565b6000806040838503121561253057600080fd5b8235915060208084013567ffffffffffffffff8082111561255057600080fd5b818601915086601f83011261256457600080fd5b813581811115612576576125766129b3565b8060051b9150612587848301612832565b8181528481019084860184860187018b10156125a257600080fd5b600095505b838610156125c55780358352600195909501949186019186016125a7565b508096505050505050509250929050565b600081518084526125ee8160208601602086016128c5565b601f01601f19169290920160200192915050565b6000845160206126158285838a016128c5565b8551918401916126288184848a016128c5565b8554920191600090600181811c908083168061264557607f831692505b85831081141561266357634e487b7160e01b85526022600452602485fd5b8080156126775760018114612688576126b5565b60ff198516885283880195506126b5565b60008b81526020902060005b858110156126ad5781548a820152908401908801612694565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126f9908301846125d6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561273b5783518352928401929184019160010161271f565b50909695505050505050565b60208152600061146560208301846125d6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561285b5761285b6129b3565b604052919050565b600082198211156128765761287661295b565b500190565b60008261288a5761288a612971565b500490565b60008160001904831182151516156128a9576128a961295b565b500290565b6000828210156128c0576128c061295b565b500390565b60005b838110156128e05781810151838201526020016128c8565b8381111561103e5750506000910152565b600181811c9082168061290557607f821691505b6020821081141561292657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129405761294061295b565b5060010190565b60008261295657612956612971565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8457600080fdfea2646970667358221220d2da9263babc6cce20cfe94232fc44f3472b52058ac0649be280421439d14cd964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180e765cec090edbe0e9923a3a4351bec39119ceb5aea551cedb0066c6b230aa35c000000000000000000000000000000000000000000000000000000000000000d506c61747920446f6f646c6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504c4154000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a544b68684a68697441755737586139507766436857464e53435238345868566f326e4b383534574a516f722f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5a63344d716242616d66707375365270706b654b6e58586d6178324568707458545347707a4c66556f35724c2f48696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Platy Doodles
Arg [1] : _symbol (string): PLAT
Arg [2] : _initBaseURI (string): ipfs://QmZTKhhJhitAuW7Xa9PwfChWFNSCR84XhVo2nK854WJQor/
Arg [3] : _initNotRevealedUri (string): ipfs://QmZc4MqbBamfpsu6RppkeKnXXmax2EhptXTSGpzLfUo5rL/Hidden.json
Arg [4] : merkleRoot (bytes32): 0xe765cec090edbe0e9923a3a4351bec39119ceb5aea551cedb0066c6b230aa35c
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : e765cec090edbe0e9923a3a4351bec39119ceb5aea551cedb0066c6b230aa35c
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 506c61747920446f6f646c657300000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 504c415400000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d5a544b68684a6869744175573758613950776643685746
Arg [11] : 4e53435238345868566f326e4b383534574a516f722f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 697066733a2f2f516d5a63344d716242616d66707375365270706b654b6e5858
Arg [14] : 6d6178324568707458545347707a4c66556f35724c2f48696464656e2e6a736f
Arg [15] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46707:4752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40473:224;;;;;;;;;;-1:-1:-1;40473:224:0;;;;;:::i;:::-;;:::i;:::-;;;9283:14:1;;9276:22;9258:41;;9246:2;9231:18;40473:224:0;;;;;;;;50724:73;;;;;;;;;;-1:-1:-1;50724:73:0;;;;;:::i;:::-;;:::i;:::-;;27967:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29526:221::-;;;;;;;;;;-1:-1:-1;29526:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7944:32:1;;;7926:51;;7914:2;7899:18;29526:221:0;7780:203:1;46924:28:0;;;;;;;;;;;;;:::i;29049:411::-;;;;;;;;;;-1:-1:-1;29049:411:0;;;;;:::i;:::-;;:::i;46957:31::-;;;;;;;;;;;;;;;;;;;19460:25:1;;;19448:2;19433:18;46957:31:0;19314:177:1;41113:113:0;;;;;;;;;;-1:-1:-1;41201:10:0;:17;41113:113;;47213:55;;;;;;;;;;-1:-1:-1;47213:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;47029:33;;;;;;;;;;;;;;;;30276:339;;;;;;;;;;-1:-1:-1;30276:339:0;;;;;:::i;:::-;;:::i;40781:256::-;;;;;;;;;;-1:-1:-1;40781:256:0;;;;;:::i;:::-;;:::i;50805:95::-;;;;;;;;;;-1:-1:-1;50805:95:0;;;;;:::i;:::-;;:::i;50907:549::-;;;:::i;30686:185::-;;;;;;;;;;-1:-1:-1;30686:185:0;;;;;:::i;:::-;;:::i;48646:348::-;;;;;;;;;;-1:-1:-1;48646:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50156:80::-;;;;;;;;;;-1:-1:-1;50156:80:0;;;;;:::i;:::-;;:::i;41303:233::-;;;;;;;;;;-1:-1:-1;41303:233:0;;;;;:::i;:::-;;:::i;47141:28::-;;;;;;;;;;-1:-1:-1;47141:28:0;;;;;;;;;;;50364:98;;;;;;;;;;-1:-1:-1;50364:98:0;;;;;:::i;:::-;;:::i;47110:26::-;;;;;;;;;;-1:-1:-1;47110:26:0;;;;;;;;27661:239;;;;;;;;;;-1:-1:-1;27661:239:0;;;;;:::i;:::-;;:::i;46824:21::-;;;;;;;;;;;;;:::i;27391:208::-;;;;;;;;;;-1:-1:-1;27391:208:0;;;;;:::i;:::-;;:::i;6937:103::-;;;;;;;;;;;;;:::i;50242:116::-;;;;;;;;;;-1:-1:-1;50242:116:0;;;;;:::i;:::-;;:::i;6286:87::-;;;;;;;;;;-1:-1:-1;6359:6:0;;-1:-1:-1;;;;;6359:6:0;6286:87;;28136:104;;;;;;;;;;;;;:::i;47174:34::-;;;;;;;;;;-1:-1:-1;47174:34:0;;;;;;;;;;;29819:155;;;;;;;;;;-1:-1:-1;29819:155:0;;;;;:::i;:::-;;:::i;49971:65::-;;;;;;;;;;;;;:::i;30942:328::-;;;;;;;;;;-1:-1:-1;30942:328:0;;;;;:::i;:::-;;:::i;47722:918::-;;;;;;:::i;:::-;;:::i;47067:38::-;;;;;;;;;;;;;;;;46882:37;;;;;;;;;;;;;:::i;49000:497::-;;;;;;;;;;-1:-1:-1;49000:497:0;;;;;:::i;:::-;;:::i;50044:104::-;;;;;;;;;;-1:-1:-1;50044:104:0;;;;;:::i;:::-;;:::i;46993:31::-;;;;;;;;;;;;;;;;50468:122;;;;;;;;;;-1:-1:-1;50468:122:0;;;;;:::i;:::-;;:::i;30045:164::-;;;;;;;;;;-1:-1:-1;30045:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30166:25:0;;;30142:4;30166:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30045:164;49520:129;;;;;;;;;;-1:-1:-1;49520:129:0;;;;;:::i;:::-;;:::i;50598:120::-;;;;;;;;;;-1:-1:-1;50598:120:0;;;;;:::i;:::-;;:::i;7195:201::-;;;;;;;;;;-1:-1:-1;7195:201:0;;;;;:::i;:::-;;:::i;40473:224::-;40575:4;-1:-1:-1;;;;;;40599:50:0;;-1:-1:-1;;;40599:50:0;;:90;;;40653:36;40677:11;40653:23;:36::i;:::-;40592:97;40473:224;-1:-1:-1;;40473:224:0:o;50724:73::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;;;;;;;;;50776:6:::1;:15:::0;;-1:-1:-1;;50776:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50724:73::o;27967:100::-;28021:13;28054:5;28047:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27967:100;:::o;29526:221::-;29602:7;32869:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32869:16:0;29622:73;;;;-1:-1:-1;;;29622:73:0;;15629:2:1;29622:73:0;;;15611:21:1;15668:2;15648:18;;;15641:30;15707:34;15687:18;;;15680:62;-1:-1:-1;;;15758:18:1;;;15751:42;15810:19;;29622:73:0;15427:408:1;29622:73:0;-1:-1:-1;29715:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29715:24:0;;29526:221::o;46924:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29049:411::-;29130:13;29146:23;29161:7;29146:14;:23::i;:::-;29130:39;;29194:5;-1:-1:-1;;;;;29188:11:0;:2;-1:-1:-1;;;;;29188:11:0;;;29180:57;;;;-1:-1:-1;;;29180:57:0;;17580:2:1;29180:57:0;;;17562:21:1;17619:2;17599:18;;;17592:30;17658:34;17638:18;;;17631:62;-1:-1:-1;;;17709:18:1;;;17702:31;17750:19;;29180:57:0;17378:397:1;29180:57:0;5090:10;-1:-1:-1;;;;;29272:21:0;;;;:62;;-1:-1:-1;29297:37:0;29314:5;5090:10;30045:164;:::i;29297:37::-;29250:168;;;;-1:-1:-1;;;29250:168:0;;13266:2:1;29250:168:0;;;13248:21:1;13305:2;13285:18;;;13278:30;13344:34;13324:18;;;13317:62;13415:26;13395:18;;;13388:54;13459:19;;29250:168:0;13064:420:1;29250:168:0;29431:21;29440:2;29444:7;29431:8;:21::i;:::-;29119:341;29049:411;;:::o;30276:339::-;30471:41;5090:10;30504:7;30471:18;:41::i;:::-;30463:103;;;;-1:-1:-1;;;30463:103:0;;;;;;;:::i;:::-;30579:28;30589:4;30595:2;30599:7;30579:9;:28::i;40781:256::-;40878:7;40914:23;40931:5;40914:16;:23::i;:::-;40906:5;:31;40898:87;;;;-1:-1:-1;;;40898:87:0;;9736:2:1;40898:87:0;;;9718:21:1;9775:2;9755:18;;;9748:30;9814:34;9794:18;;;9787:62;-1:-1:-1;;;9865:18:1;;;9858:41;9916:19;;40898:87:0;9534:407:1;40898:87:0;-1:-1:-1;;;;;;41003:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40781:256::o;50805:95::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50870:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50870:24:0;;::::1;::::0;;;::::1;::::0;;50805:95::o;50907:549::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;51278:7:::1;51299;6359:6:::0;;-1:-1:-1;;;;;6359:6:0;;6286:87;51299:7:::1;-1:-1:-1::0;;;;;51291:21:0::1;51320;51291:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51277:69;;;51361:2;51353:11;;;::::0;::::1;;50952:504;50907:549::o:0;30686:185::-;30824:39;30841:4;30847:2;30851:7;30824:39;;;;;;;;;;;;:16;:39::i;48646:348::-;48721:16;48749:23;48775:17;48785:6;48775:9;:17::i;:::-;48749:43;;48799:25;48841:15;48827:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48827:30:0;;48799:58;;48869:9;48864:103;48884:15;48880:1;:19;48864:103;;;48929:30;48949:6;48957:1;48929:19;:30::i;:::-;48915:8;48924:1;48915:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48901:3;;;;:::i;:::-;;;;48864:103;;;-1:-1:-1;48980:8:0;48646:348;-1:-1:-1;;;48646:348:0:o;50156:80::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50215:4:::1;:15:::0;50156:80::o;41303:233::-;41378:7;41414:30;41201:10;:17;;41113:113;41414:30;41406:5;:38;41398:95;;;;-1:-1:-1;;;41398:95:0;;18747:2:1;41398:95:0;;;18729:21:1;18786:2;18766:18;;;18759:30;18825:34;18805:18;;;18798:62;-1:-1:-1;;;18876:18:1;;;18869:42;18928:19;;41398:95:0;18545:408:1;41398:95:0;41511:10;41522:5;41511:17;;;;;;;;:::i;:::-;;;;;;;;;41504:24;;41303:233;;;:::o;50364:98::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50435:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50364:98:::0;:::o;27661:239::-;27733:7;27769:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27769:16:0;27804:19;27796:73;;;;-1:-1:-1;;;27796:73:0;;14102:2:1;27796:73:0;;;14084:21:1;14141:2;14121:18;;;14114:30;14180:34;14160:18;;;14153:62;-1:-1:-1;;;14231:18:1;;;14224:39;14280:19;;27796:73:0;13900:405:1;46824:21:0;;;;;;;:::i;27391:208::-;27463:7;-1:-1:-1;;;;;27491:19:0;;27483:74;;;;-1:-1:-1;;;27483:74:0;;13691:2:1;27483:74:0;;;13673:21:1;13730:2;13710:18;;;13703:30;13769:34;13749:18;;;13742:62;-1:-1:-1;;;13820:18:1;;;13813:40;13870:19;;27483:74:0;13489:406:1;27483:74:0;-1:-1:-1;;;;;;27575:16:0;;;;;:9;:16;;;;;;;27391:208::o;6937:103::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;7002:30:::1;7029:1;7002:18;:30::i;:::-;6937:103::o:0;50242:116::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50319:13:::1;:33:::0;50242:116::o;28136:104::-;28192:13;28225:7;28218:14;;;;;:::i;29819:155::-;29914:52;5090:10;29947:8;29957;29914:18;:52::i;49971:65::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50015:8:::1;:15:::0;;-1:-1:-1;;50015:15:0::1;;;::::0;;49971:65::o;30942:328::-;31117:41;5090:10;31150:7;31117:18;:41::i;:::-;31109:103;;;;-1:-1:-1;;;31109:103:0;;;;;;;:::i;:::-;31223:39;31237:4;31243:2;31247:7;31256:5;31223:13;:39::i;:::-;30942:328;;;;:::o;47722:918::-;47813:6;;;;47812:7;47804:42;;;;-1:-1:-1;;;47804:42:0;;16403:2:1;47804:42:0;;;16385:21:1;16442:2;16422:18;;;16415:30;-1:-1:-1;;;16461:18:1;;;16454:52;16523:18;;47804:42:0;16201:346:1;47804:42:0;47853:14;47870:13;41201:10;:17;;41113:113;47870:13;47853:30;;47912:1;47898:11;:15;47890:55;;;;-1:-1:-1;;;47890:55:0;;19160:2:1;47890:55:0;;;19142:21:1;19199:2;19179:18;;;19172:30;19238:29;19218:18;;;19211:57;19285:18;;47890:55:0;18958:351:1;47890:55:0;47975:13;;47960:11;:28;;47952:77;;;;-1:-1:-1;;;47952:77:0;;14863:2:1;47952:77:0;;;14845:21:1;14902:2;14882:18;;;14875:30;14941:34;14921:18;;;14914:62;-1:-1:-1;;;14992:18:1;;;14985:34;15036:19;;47952:77:0;14661:400:1;47952:77:0;48068:9;;48044:20;48053:11;48044:6;:20;:::i;:::-;:33;;48036:68;;;;-1:-1:-1;;;48036:68:0;;14512:2:1;48036:68:0;;;14494:21:1;14551:2;14531:18;;;14524:30;-1:-1:-1;;;14570:18:1;;;14563:52;14632:18;;48036:68:0;14310:346:1;48036:68:0;6359:6;;-1:-1:-1;;;;;6359:6:0;48117:10;:21;48113:378;;48154:15;;;;;;;:23;;48173:4;48154:23;48151:260;;;48194:23;48210:6;48194:15;:23::i;:::-;-1:-1:-1;48280:10:0;48232:24;48259:32;;;:20;:32;;;;;;48348:18;;48314:30;48333:11;48259:32;48314:30;:::i;:::-;:52;;48306:93;;;;-1:-1:-1;;;48306:93:0;;11737:2:1;48306:93:0;;;11719:21:1;11776:2;11756:18;;;11749:30;11815;11795:18;;;11788:58;11863:18;;48306:93:0;11535:352:1;48306:93:0;48179:232;48151:260;48449:11;48442:4;;:18;;;;:::i;:::-;48429:9;:31;;48421:62;;;;-1:-1:-1;;;48421:62:0;;17982:2:1;48421:62:0;;;17964:21:1;18021:2;18001:18;;;17994:30;-1:-1:-1;;;18040:18:1;;;18033:48;18098:18;;48421:62:0;17780:342:1;48421:62:0;48516:1;48499:136;48524:11;48519:1;:16;48499:136;;48572:10;48551:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;48594:33:0;;-1:-1:-1;48604:10:0;48616;48625:1;48616:6;:10;:::i;:::-;48594:9;:33::i;:::-;48537:3;;;;:::i;:::-;;;;48499:136;;46882:37;;;;;;;:::i;49000:497::-;32845:4;32869:16;;;:7;:16;;;;;;49098:13;;-1:-1:-1;;;;;32869:16:0;49123:97;;;;-1:-1:-1;;;49123:97:0;;17164:2:1;49123:97:0;;;17146:21:1;17203:2;17183:18;;;17176:30;17242:34;17222:18;;;17215:62;-1:-1:-1;;;17293:18:1;;;17286:45;17348:19;;49123:97:0;16962:411:1;49123:97:0;49236:8;;;;;;;49233:62;;49273:14;49266:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49000:497;;;:::o;49233:62::-;49303:28;49334:10;:8;:10::i;:::-;49303:41;;49389:1;49364:14;49358:28;:32;:133;;;;;;;;;;;;;;;;;49426:14;49442:18;:7;:16;:18::i;:::-;49462:13;49409:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49358:133;49351:140;49000:497;-1:-1:-1;;;49000:497:0:o;50044:104::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50115:18:::1;:27:::0;50044:104::o;50468:122::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50551:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49520:129::-:0;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;49617:11:::1;:24:::0;49520:129::o;50598:120::-;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;50680:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;7195:201::-:0;6359:6;;-1:-1:-1;;;;;6359:6:0;5090:10;6506:23;6498:68;;;;-1:-1:-1;;;6498:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7284:22:0;::::1;7276:73;;;::::0;-1:-1:-1;;;7276:73:0;;10973:2:1;7276:73:0::1;::::0;::::1;10955:21:1::0;11012:2;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;-1:-1:-1;;;11102:18:1;;;11095:36;11148:19;;7276:73:0::1;10771:402:1::0;7276:73:0::1;7360:28;7379:8;7360:18;:28::i;27022:305::-:0;27124:4;-1:-1:-1;;;;;;27161:40:0;;-1:-1:-1;;;27161:40:0;;:105;;-1:-1:-1;;;;;;;27218:48:0;;-1:-1:-1;;;27218:48:0;27161:105;:158;;;-1:-1:-1;;;;;;;;;;18827:40:0;;;27283:36;18718:157;36762:174;36837:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36837:29:0;-1:-1:-1;;;;;36837:29:0;;;;;;;;:24;;36891:23;36837:24;36891:14;:23::i;:::-;-1:-1:-1;;;;;36882:46:0;;;;;;;;;;;36762:174;;:::o;33074:348::-;33167:4;32869:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32869:16:0;33184:73;;;;-1:-1:-1;;;33184:73:0;;12853:2:1;33184:73:0;;;12835:21:1;12892:2;12872:18;;;12865:30;12931:34;12911:18;;;12904:62;-1:-1:-1;;;12982:18:1;;;12975:42;13034:19;;33184:73:0;12651:408:1;33184:73:0;33268:13;33284:23;33299:7;33284:14;:23::i;:::-;33268:39;;33337:5;-1:-1:-1;;;;;33326:16:0;:7;-1:-1:-1;;;;;33326:16:0;;:51;;;;33370:7;-1:-1:-1;;;;;33346:31:0;:20;33358:7;33346:11;:20::i;:::-;-1:-1:-1;;;;;33346:31:0;;33326:51;:87;;;-1:-1:-1;;;;;;30166:25:0;;;30142:4;30166:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33381:32;33318:96;33074:348;-1:-1:-1;;;;33074:348:0:o;36066:578::-;36225:4;-1:-1:-1;;;;;36198:31:0;:23;36213:7;36198:14;:23::i;:::-;-1:-1:-1;;;;;36198:31:0;;36190:85;;;;-1:-1:-1;;;36190:85:0;;16754:2:1;36190:85:0;;;16736:21:1;16793:2;16773:18;;;16766:30;16832:34;16812:18;;;16805:62;-1:-1:-1;;;16883:18:1;;;16876:39;16932:19;;36190:85:0;16552:405:1;36190:85:0;-1:-1:-1;;;;;36294:16:0;;36286:65;;;;-1:-1:-1;;;36286:65:0;;12094:2:1;36286:65:0;;;12076:21:1;12133:2;12113:18;;;12106:30;12172:34;12152:18;;;12145:62;-1:-1:-1;;;12223:18:1;;;12216:34;12267:19;;36286:65:0;11892:400:1;36286:65:0;36364:39;36385:4;36391:2;36395:7;36364:20;:39::i;:::-;36468:29;36485:1;36489:7;36468:8;:29::i;:::-;-1:-1:-1;;;;;36510:15:0;;;;;;:9;:15;;;;;:20;;36529:1;;36510:15;:20;;36529:1;;36510:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36541:13:0;;;;;;:9;:13;;;;;:18;;36558:1;;36541:13;:18;;36558:1;;36541:18;:::i;:::-;;;;-1:-1:-1;;36570:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36570:21:0;-1:-1:-1;;;;;36570:21:0;;;;;;;;;36609:27;;36570:16;;36609:27;;;;;;;36066:578;;;:::o;7556:191::-;7649:6;;;-1:-1:-1;;;;;7666:17:0;;;-1:-1:-1;;;;;;7666:17:0;;;;;;;7699:40;;7649:6;;;7666:17;7649:6;;7699:40;;7630:16;;7699:40;7619:128;7556:191;:::o;37078:315::-;37233:8;-1:-1:-1;;;;;37224:17:0;:5;-1:-1:-1;;;;;37224:17:0;;;37216:55;;;;-1:-1:-1;;;37216:55:0;;12499:2:1;37216:55:0;;;12481:21:1;12538:2;12518:18;;;12511:30;12577:27;12557:18;;;12550:55;12622:18;;37216:55:0;12297:349:1;37216:55:0;-1:-1:-1;;;;;37282:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37282:46:0;;;;;;;;;;37344:41;;9258::1;;;37344::0;;9231:18:1;37344:41:0;;;;;;;37078:315;;;:::o;32152:::-;32309:28;32319:4;32325:2;32329:7;32309:9;:28::i;:::-;32356:48;32379:4;32385:2;32389:7;32398:5;32356:22;:48::i;:::-;32348:111;;;;-1:-1:-1;;;32348:111:0;;;;;;;:::i;49655:294::-;49794:11;;49817:28;;-1:-1:-1;;49834:10:0;5701:2:1;5697:15;5693:53;49817:28:0;;;5681:66:1;49728:4:0;;49767:80;;49786:6;;49794:11;5763:12:1;;49817:28:0;;;;;;;;;;;;49807:39;;;;;;49767:18;:80::i;:::-;49745:174;;;;-1:-1:-1;;;49745:174:0;;10567:2:1;49745:174:0;;;10549:21:1;10606:2;10586:18;;;10579:30;10645:34;10625:18;;;10618:62;-1:-1:-1;;;10696:18:1;;;10689:35;10741:19;;49745:174:0;10365:401:1;49745:174:0;-1:-1:-1;49937:4:0;;49655:294;-1:-1:-1;49655:294:0:o;33764:110::-;33840:26;33850:2;33854:7;33840:26;;;;;;;;;;;;:9;:26::i;47601:102::-;47661:13;47690:7;47683:14;;;;;:::i;2572:723::-;2628:13;2849:10;2845:53;;-1:-1:-1;;2876:10:0;;;;;;;;;;;;-1:-1:-1;;;2876:10:0;;;;;2572:723::o;2845:53::-;2923:5;2908:12;2964:78;2971:9;;2964:78;;2997:8;;;;:::i;:::-;;-1:-1:-1;3020:10:0;;-1:-1:-1;3028:2:0;3020:10;;:::i;:::-;;;2964:78;;;3052:19;3084:6;3074:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3074:17:0;;3052:39;;3102:154;3109:10;;3102:154;;3136:11;3146:1;3136:11;;:::i;:::-;;-1:-1:-1;3205:10:0;3213:2;3205:5;:10;:::i;:::-;3192:24;;:2;:24;:::i;:::-;3179:39;;3162:6;3169;3162:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3162:56:0;;;;;;;;-1:-1:-1;3233:11:0;3242:2;3233:11;;:::i;:::-;;;3102:154;;42149:589;-1:-1:-1;;;;;42355:18:0;;42351:187;;42390:40;42422:7;43565:10;:17;;43538:24;;;;:15;:24;;;;;:44;;;43593:24;;;;;;;;;;;;43461:164;42390:40;42351:187;;;42460:2;-1:-1:-1;;;;;42452:10:0;:4;-1:-1:-1;;;;;42452:10:0;;42448:90;;42479:47;42512:4;42518:7;42479:32;:47::i;:::-;-1:-1:-1;;;;;42552:16:0;;42548:183;;42585:45;42622:7;42585:36;:45::i;42548:183::-;42658:4;-1:-1:-1;;;;;42652:10:0;:2;-1:-1:-1;;;;;42652:10:0;;42648:83;;42679:40;42707:2;42711:7;42679:27;:40::i;37958:799::-;38113:4;-1:-1:-1;;;;;38134:13:0;;8897:20;8945:8;38130:620;;38170:72;;-1:-1:-1;;;38170:72:0;;-1:-1:-1;;;;;38170:36:0;;;;;:72;;5090:10;;38221:4;;38227:7;;38236:5;;38170:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38170:72:0;;;;;;;;-1:-1:-1;;38170:72:0;;;;;;;;;;;;:::i;:::-;;;38166:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38412:13:0;;38408:272;;38455:60;;-1:-1:-1;;;38455:60:0;;;;;;;:::i;38408:272::-;38630:6;38624:13;38615:6;38611:2;38607:15;38600:38;38166:529;-1:-1:-1;;;;;;38293:51:0;-1:-1:-1;;;38293:51:0;;-1:-1:-1;38286:58:0;;38130:620;-1:-1:-1;38734:4:0;37958:799;;;;;;:::o;947:190::-;1072:4;1125;1096:25;1109:5;1116:4;1096:12;:25::i;:::-;:33;;947:190;-1:-1:-1;;;;947:190:0:o;34101:321::-;34231:18;34237:2;34241:7;34231:5;:18::i;:::-;34282:54;34313:1;34317:2;34321:7;34330:5;34282:22;:54::i;:::-;34260:154;;;;-1:-1:-1;;;34260:154:0;;;;;;;:::i;44252:988::-;44518:22;44568:1;44543:22;44560:4;44543:16;:22::i;:::-;:26;;;;:::i;:::-;44580:18;44601:26;;;:17;:26;;;;;;44518:51;;-1:-1:-1;44734:28:0;;;44730:328;;-1:-1:-1;;;;;44801:18:0;;44779:19;44801:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44852:30;;;;;;:44;;;44969:30;;:17;:30;;;;;:43;;;44730:328;-1:-1:-1;45154:26:0;;;;:17;:26;;;;;;;;45147:33;;;-1:-1:-1;;;;;45198:18:0;;;;;:12;:18;;;;;:34;;;;;;;45191:41;44252:988::o;45535:1079::-;45813:10;:17;45788:22;;45813:21;;45833:1;;45813:21;:::i;:::-;45845:18;45866:24;;;:15;:24;;;;;;46239:10;:26;;45788:46;;-1:-1:-1;45866:24:0;;45788:46;;46239:26;;;;;;:::i;:::-;;;;;;;;;46217:48;;46303:11;46278:10;46289;46278:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46383:28;;;:15;:28;;;;;;;:41;;;46555:24;;;;;46548:31;46590:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45606:1008;;;45535:1079;:::o;43039:221::-;43124:14;43141:20;43158:2;43141:16;:20::i;:::-;-1:-1:-1;;;;;43172:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43217:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43039:221:0:o;1499:701::-;1582:7;1625:4;1582:7;1640:523;1664:5;:12;1660:1;:16;1640:523;;;1698:20;1721:5;1727:1;1721:8;;;;;;;;:::i;:::-;;;;;;;1698:31;;1764:12;1748;:28;1744:408;;1901:44;;;;;;5943:19:1;;;5978:12;;;5971:28;;;6015:12;;1901:44:0;;;;;;;;;;;;1891:55;;;;;;1876:70;;1744:408;;;2091:44;;;;;;5943:19:1;;;5978:12;;;5971:28;;;6015:12;;2091:44:0;;;;;;;;;;;;2081:55;;;;;;2066:70;;1744:408;-1:-1:-1;1678:3:0;;;;:::i;:::-;;;;1640:523;;34758:382;-1:-1:-1;;;;;34838:16:0;;34830:61;;;;-1:-1:-1;;;34830:61:0;;15268:2:1;34830:61:0;;;15250:21:1;;;15287:18;;;15280:30;15346:34;15326:18;;;15319:62;15398:18;;34830:61:0;15066:356:1;34830:61:0;32845:4;32869:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32869:16:0;:30;34902:58;;;;-1:-1:-1;;;34902:58:0;;11380:2:1;34902:58:0;;;11362:21:1;11419:2;11399:18;;;11392:30;11458;11438:18;;;11431:58;11506:18;;34902:58:0;11178:352:1;34902:58:0;34973:45;35002:1;35006:2;35010:7;34973:20;:45::i;:::-;-1:-1:-1;;;;;35031:13:0;;;;;;:9;:13;;;;;:18;;35048:1;;35031:13;:18;;35048:1;;35031:18;:::i;:::-;;;;-1:-1:-1;;35060:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35060:21:0;-1:-1:-1;;;;;35060:21:0;;;;;;;;35099:33;;35060:16;;;35099:33;;35060:16;;35099:33;34758:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;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:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2894:26;2910:9;2894:26;:::i;2931:180::-;2990:6;3043:2;3031:9;3022:7;3018:23;3014:32;3011:52;;;3059:1;3056;3049:12;3011:52;-1:-1:-1;3082:23:1;;2931:180;-1:-1:-1;2931:180:1:o;3116:245::-;3174:6;3227:2;3215:9;3206:7;3202:23;3198:32;3195:52;;;3243:1;3240;3233:12;3195:52;3282:9;3269:23;3301:30;3325:5;3301:30;:::i;3366:249::-;3435:6;3488:2;3476:9;3467:7;3463:23;3459:32;3456:52;;;3504:1;3501;3494:12;3456:52;3536:9;3530:16;3555:30;3579:5;3555:30;:::i;3620:450::-;3689:6;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3798:9;3785:23;3831:18;3823:6;3820:30;3817:50;;;3863:1;3860;3853:12;3817:50;3886:22;;3939:4;3931:13;;3927:27;-1:-1:-1;3917:55:1;;3968:1;3965;3958:12;3917:55;3991:73;4056:7;4051:2;4038:16;4033:2;4029;4025:11;3991:73;:::i;4260:1025::-;4353:6;4361;4414:2;4402:9;4393:7;4389:23;4385:32;4382:52;;;4430:1;4427;4420:12;4382:52;4466:9;4453:23;4443:33;;4495:2;4548;4537:9;4533:18;4520:32;4571:18;4612:2;4604:6;4601:14;4598:34;;;4628:1;4625;4618:12;4598:34;4666:6;4655:9;4651:22;4641:32;;4711:7;4704:4;4700:2;4696:13;4692:27;4682:55;;4733:1;4730;4723:12;4682:55;4769:2;4756:16;4791:2;4787;4784:10;4781:36;;;4797:18;;:::i;:::-;4843:2;4840:1;4836:10;4826:20;;4866:28;4890:2;4886;4882:11;4866:28;:::i;:::-;4928:15;;;4959:12;;;;4991:11;;;5021;;;5017:20;;5014:33;-1:-1:-1;5011:53:1;;;5060:1;5057;5050:12;5011:53;5082:1;5073:10;;5092:163;5106:2;5103:1;5100:9;5092:163;;;5163:17;;5151:30;;5124:1;5117:9;;;;;5201:12;;;;5233;;5092:163;;;5096:3;5274:5;5264:15;;;;;;;;4260:1025;;;;;:::o;5290:257::-;5331:3;5369:5;5363:12;5396:6;5391:3;5384:19;5412:63;5468:6;5461:4;5456:3;5452:14;5445:4;5438:5;5434:16;5412:63;:::i;:::-;5529:2;5508:15;-1:-1:-1;;5504:29:1;5495:39;;;;5536:4;5491:50;;5290:257;-1:-1:-1;;5290:257:1:o;6038:1527::-;6262:3;6300:6;6294:13;6326:4;6339:51;6383:6;6378:3;6373:2;6365:6;6361:15;6339:51;:::i;:::-;6453:13;;6412:16;;;;6475:55;6453:13;6412:16;6497:15;;;6475:55;:::i;:::-;6619:13;;6552:20;;;6592:1;;6679;6701:18;;;;6754;;;;6781:93;;6859:4;6849:8;6845:19;6833:31;;6781:93;6922:2;6912:8;6909:16;6889:18;6886:40;6883:167;;;-1:-1:-1;;;6949:33:1;;7005:4;7002:1;6995:15;7035:4;6956:3;7023:17;6883:167;7066:18;7093:110;;;;7217:1;7212:328;;;;7059:481;;7093:110;-1:-1:-1;;7128:24:1;;7114:39;;7173:20;;;;-1:-1:-1;7093:110:1;;7212:328;19849:1;19842:14;;;19886:4;19873:18;;7307:1;7321:169;7335:8;7332:1;7329:15;7321:169;;;7417:14;;7402:13;;;7395:37;7460:16;;;;7352:10;;7321:169;;;7325:3;;7521:8;7514:5;7510:20;7503:27;;7059:481;-1:-1:-1;7556:3:1;;6038:1527;-1:-1:-1;;;;;;;;;;;6038:1527:1:o;7988:488::-;-1:-1:-1;;;;;8257:15:1;;;8239:34;;8309:15;;8304:2;8289:18;;8282:43;8356:2;8341:18;;8334:34;;;8404:3;8399:2;8384:18;;8377:31;;;8182:4;;8425:45;;8450:19;;8442:6;8425:45;:::i;:::-;8417:53;7988:488;-1:-1:-1;;;;;;7988:488:1:o;8481:632::-;8652:2;8704:21;;;8774:13;;8677:18;;;8796:22;;;8623:4;;8652:2;8875:15;;;;8849:2;8834:18;;;8623:4;8918:169;8932:6;8929:1;8926:13;8918:169;;;8993:13;;8981:26;;9062:15;;;;9027:12;;;;8954:1;8947:9;8918:169;;;-1:-1:-1;9104:3:1;;8481:632;-1:-1:-1;;;;;;8481:632:1:o;9310:219::-;9459:2;9448:9;9441:21;9422:4;9479:44;9519:2;9508:9;9504:18;9496:6;9479:44;:::i;9946:414::-;10148:2;10130:21;;;10187:2;10167:18;;;10160:30;10226:34;10221:2;10206:18;;10199:62;-1:-1:-1;;;10292:2:1;10277:18;;10270:48;10350:3;10335:19;;9946:414::o;15840:356::-;16042:2;16024:21;;;16061:18;;;16054:30;16120:34;16115:2;16100:18;;16093:62;16187:2;16172:18;;15840:356::o;18127:413::-;18329:2;18311:21;;;18368:2;18348:18;;;18341:30;18407:34;18402:2;18387:18;;18380:62;-1:-1:-1;;;18473:2:1;18458:18;;18451:47;18530:3;18515:19;;18127:413::o;19496:275::-;19567:2;19561:9;19632:2;19613:13;;-1:-1:-1;;19609:27:1;19597:40;;19667:18;19652:34;;19688:22;;;19649:62;19646:88;;;19714:18;;:::i;:::-;19750:2;19743:22;19496:275;;-1:-1:-1;19496:275:1:o;19902:128::-;19942:3;19973:1;19969:6;19966:1;19963:13;19960:39;;;19979:18;;:::i;:::-;-1:-1:-1;20015:9:1;;19902:128::o;20035:120::-;20075:1;20101;20091:35;;20106:18;;:::i;:::-;-1:-1:-1;20140:9:1;;20035:120::o;20160:168::-;20200:7;20266:1;20262;20258:6;20254:14;20251:1;20248:21;20243:1;20236:9;20229:17;20225:45;20222:71;;;20273:18;;:::i;:::-;-1:-1:-1;20313:9:1;;20160:168::o;20333:125::-;20373:4;20401:1;20398;20395:8;20392:34;;;20406:18;;:::i;:::-;-1:-1:-1;20443:9:1;;20333:125::o;20463:258::-;20535:1;20545:113;20559:6;20556:1;20553:13;20545:113;;;20635:11;;;20629:18;20616:11;;;20609:39;20581:2;20574:10;20545:113;;;20676:6;20673:1;20670:13;20667:48;;;-1:-1:-1;;20711:1:1;20693:16;;20686:27;20463:258::o;20726:380::-;20805:1;20801:12;;;;20848;;;20869:61;;20923:4;20915:6;20911:17;20901:27;;20869:61;20976:2;20968:6;20965:14;20945:18;20942:38;20939:161;;;21022:10;21017:3;21013:20;21010:1;21003:31;21057:4;21054:1;21047:15;21085:4;21082:1;21075:15;20939:161;;20726:380;;;:::o;21111:135::-;21150:3;-1:-1:-1;;21171:17:1;;21168:43;;;21191:18;;:::i;:::-;-1:-1:-1;21238:1:1;21227:13;;21111:135::o;21251:112::-;21283:1;21309;21299:35;;21314:18;;:::i;:::-;-1:-1:-1;21348:9:1;;21251:112::o;21368:127::-;21429:10;21424:3;21420:20;21417:1;21410:31;21460:4;21457:1;21450:15;21484:4;21481:1;21474:15;21500:127;21561:10;21556:3;21552:20;21549:1;21542:31;21592:4;21589:1;21582:15;21616:4;21613:1;21606:15;21632:127;21693:10;21688:3;21684:20;21681:1;21674:31;21724:4;21721:1;21714:15;21748:4;21745:1;21738:15;21764:127;21825:10;21820:3;21816:20;21813:1;21806:31;21856:4;21853:1;21846:15;21880:4;21877:1;21870:15;21896:127;21957:10;21952:3;21948:20;21945:1;21938:31;21988:4;21985:1;21978:15;22012:4;22009:1;22002:15;22028:131;-1:-1:-1;;;;;;22102:32:1;;22092:43;;22082:71;;22149:1;22146;22139:12
Swarm Source
ipfs://d2da9263babc6cce20cfe94232fc44f3472b52058ac0649be280421439d14cd9
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.