ETH Price: $2,292.86 (+1.26%)

Token

Placeholder NFT (ERC721) (PNFT-ERC721)
 

Overview

Max Total Supply

0 PNFT-ERC721

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 PNFT-ERC721
0xcdcd63b9a16346dfe242c9ff81c5ba4bf17894f1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PlaceholderNFTERC721

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : PlaceholderNFTERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";

contract PlaceholderNFTERC721 is ERC721URIStorage {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    constructor() ERC721("Placeholder NFT (ERC721)", "PNFT-ERC721") {}

    function mint(uint256 quantity) public {
        for (uint256 i; i < quantity; i++) {
            // Get the current tokenId, this starts at 0.
            uint256 newItemId = _tokenIds.current();

            // Mint the NFT to the sender using msg.sender.
            _safeMint(msg.sender, newItemId);

            // Increment the counter for when the next NFT is minted.
            _tokenIds.increment();
        }
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        _requireMinted(tokenId);

        // Get all the JSON metadata in place and base64 encode it.
        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "',
                        string(
                            abi.encodePacked(
                                "Placeholder NFT (ERC721) #",
                                Strings.toString(tokenId)
                            )
                        ),
                        '", "description": "Placeholder NFT is an unlimited supply, fully on-chain, NFT collection available on any EVM-compatible chain. You may mint it freely, and use it for testing, or your own satisfaction.", "image": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzExIDExIDUwIDUwJz48Zz48cmVjdCB4PScxMicgeT0nMTInIHdpZHRoPSc0OCcgaGVpZ2h0PSc0OCcgZmlsbD0nI0E1NzkzOScgc3Ryb2tlPSdub25lJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJz48L3JlY3Q+PHJlY3QgeD0nMTgnIHk9JzE4JyB3aWR0aD0nMzYnIGhlaWdodD0nMzYnIGZpbGw9JyM5MkQzRjUnIHN0cm9rZT0nbm9uZScgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBzdHJva2UtbWl0ZXJsaW1pdD0nMTAnIHN0cm9rZS13aWR0aD0nMic+PC9yZWN0PjxjaXJjbGUgY3g9JzI2JyBjeT0nMzAnIHI9JzQnIGZpbGw9JyNGQ0VBMkInIHN0cm9rZT0nbm9uZScgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBzdHJva2UtbWl0ZXJsaW1pdD0nMTAnIHN0cm9rZS13aWR0aD0nMic+PC9jaXJjbGU+PHBhdGggZmlsbD0nIzVDOUUzMScgc3Ryb2tlPScjNUM5RTMxJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJyBkPSdNNTAsMzVjLTIuODk1OC0wLjg1NDItNi4yNzk1LTcuOTg4Ni04LThjLTQuMjA4LTAuMDI3OC02LjI1NCw1LjgzNi0xMSw5Yy0zLDItMy4zNzQ1LDIuODQ5Ny02LDRjLTIuMjgyNCwxLTMsMy0zLjI1LDMuNjQwNiBjLTAuMzAzMSwwLjc3NjYtMS40NzUxLDIuNTIxNC0wLjk1ODMsMy4xMDk0YzEuMjA4MywxLjM3NSwyLjQ1ODMsMS41LDUsMC43MTc5YzIuMTQ3LTAuNjYwNiw0Ljk3NjktNC44MDc0LDYuODc1LTYuMjE3OSBjMi4yNzA4LTEuNjg3NSw0LjY0NTgtMi41LDguMDgzMy0yYzIuNDc5NSwwLjM2MDYsNi42NiwzLjE3MjMsNy44MTI1LDMuMDYyNWMxLjMxMjUtMC4xMjUtMS41OTM3LTIuNTYyNS0wLjUzMTItNC4xODc1IGMxLjEzMjctMS43MzI1LDIuOTEwMiwwLjE1MjksMy42MzU0LTEuMDgzM0M1MS45ODQ0LDM2LjUsNTAuNjMyLDM1LjE4NjQsNTAsMzV6Jz48L3BhdGg+PC9nPjxnPjxyZWN0IHg9JzEyJyB5PScxMicgd2lkdGg9JzQ4JyBoZWlnaHQ9JzQ4JyBmaWxsPSdub25lJyBzdHJva2U9JyMwMDAwMDAnIHN0cm9rZS1saW5lY2FwPSdyb3VuZCcgc3Ryb2tlLWxpbmVqb2luPSdyb3VuZCcgc3Ryb2tlLW1pdGVybGltaXQ9JzEwJyBzdHJva2Utd2lkdGg9JzInPjwvcmVjdD48cmVjdCB4PScxOCcgeT0nMTgnIHdpZHRoPSczNicgaGVpZ2h0PSczNicgZmlsbD0nbm9uZScgc3Ryb2tlPScjMDAwMDAwJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJz48L3JlY3Q+PGNpcmNsZSBjeD0nMjYnIGN5PSczMCcgcj0nNCcgZmlsbD0nbm9uZScgc3Ryb2tlPScjMDAwMDAwJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJz48L2NpcmNsZT48cmVjdCB4PScxOCcgeT0nMTgnIHdpZHRoPSczNicgaGVpZ2h0PSczNicgZmlsbD0nbm9uZScgc3Ryb2tlPScjMDAwMDAwJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJz48L3JlY3Q+PHBhdGggZmlsbD0nbm9uZScgc3Ryb2tlPScjMDAwMDAwJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJyBkPSdNMjIsNDNjMC41MjU5LTEuMDE5OCwwLjcyNzUtMS45NjcyLDMtM2MyLjYwOTYtMS4xODU5LDMtMiw2LTRjNC43NDYtMy4xNjQsNi43OTItOS4wMjc4LDExLTljMS43MjA1LDAuMDExNCw1LDcsOCw4Jz48L3BhdGg+PC9nPjwvc3ZnPg=="}'
                    )
                )
            )
        );

        // Prepend data:application/json;base64, to our data.
        string memory finalTokenUri = string(
            abi.encodePacked("data:application/json;base64,", json)
        );

        return finalTokenUri;
    }
}

File 2 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 3 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 5 of 13 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 6 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// 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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601881526020017f506c616365686f6c646572204e465420284552433732312900000000000000008152506040518060400160405280600b81526020017f504e46542d455243373231000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000197565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001b057607f821691505b60208210811415620001c757620001c662000168565b5b50919050565b6136e880620001dd6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a22cb46511610066578063a22cb4651461025b578063b88d4fde14610277578063c87b56dd14610293578063e985e9c5146102c3576100ea565b806370a08231146101f157806395d89b4114610221578063a0712d681461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780636352211e146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611831565b6102f3565b6040516101169190611879565b60405180910390f35b6101276103d5565b604051610134919061192d565b60405180910390f35b61015760048036038101906101529190611985565b610467565b60405161016491906119f3565b60405180910390f35b61018760048036038101906101829190611a3a565b6104ad565b005b6101a3600480360381019061019e9190611a7a565b6105c5565b005b6101bf60048036038101906101ba9190611a7a565b610625565b005b6101db60048036038101906101d69190611985565b610645565b6040516101e891906119f3565b60405180910390f35b61020b60048036038101906102069190611acd565b6106f7565b6040516102189190611b09565b60405180910390f35b6102296107af565b604051610236919061192d565b60405180910390f35b61025960048036038101906102549190611985565b610841565b005b61027560048036038101906102709190611b50565b610886565b005b610291600480360381019061028c9190611cc5565b61089c565b005b6102ad60048036038101906102a89190611985565b6108fe565b6040516102ba919061192d565b60405180910390f35b6102dd60048036038101906102d89190611d48565b61098a565b6040516102ea9190611879565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103ce57506103cd82610a1e565b5b9050919050565b6060600080546103e490611db7565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611db7565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610a88565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104b882610645565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052090611e5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610548610ad3565b73ffffffffffffffffffffffffffffffffffffffff161480610577575061057681610571610ad3565b61098a565b5b6105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad90611eed565b60405180910390fd5b6105c08383610adb565b505050565b6105d66105d0610ad3565b82610b94565b610615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060c90611f7f565b60405180910390fd5b610620838383610c29565b505050565b6106408383836040518060200160405280600081525061089c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590611feb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f9061207d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107be90611db7565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea90611db7565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b60005b818110156108825760006108586007610e90565b90506108643382610e9e565b61086e6007610ebc565b50808061087a906120cc565b915050610844565b5050565b610898610891610ad3565b8383610ed2565b5050565b6108ad6108a7610ad3565b83610b94565b6108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390611f7f565b60405180910390fd5b6108f88484848461103f565b50505050565b606061090982610a88565b600061095a6109178461109b565b604051602001610927919061219d565b6040516020818303038152906040526040516020016109469190613056565b6040516020818303038152906040526111fc565b905060008160405160200161096f91906130cf565b60405160208183030381529060405290508092505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610a9181611360565b610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790611feb565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b4e83610645565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ba083610645565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610be25750610be1818561098a565b5b80610c2057508373ffffffffffffffffffffffffffffffffffffffff16610c0884610467565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610c4982610645565b73ffffffffffffffffffffffffffffffffffffffff1614610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613163565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d06906131f5565b60405180910390fd5b610d1a8383836113cc565b610d25600082610adb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d759190613215565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dcc9190613249565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e8b8383836113d1565b505050565b600081600001549050919050565b610eb88282604051806020016040528060008152506113d6565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f38906132eb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110329190611879565b60405180910390a3505050565b61104a848484610c29565b61105684848484611431565b611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c9061337d565b60405180910390fd5b50505050565b606060008214156110e3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506111f7565b600082905060005b600082146111155780806110fe906120cc565b915050600a8261110e91906133cc565b91506110eb565b60008167ffffffffffffffff81111561113157611130611b9a565b5b6040519080825280601f01601f1916602001820160405280156111635781602001600182028036833780820191505090505b5090505b600085146111f05760018261117c9190613215565b9150600a8561118b91906133fd565b60306111979190613249565b60f81b8183815181106111ad576111ac61342e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856111e991906133cc565b9450611167565b8093505050505b919050565b606060008251141561121f5760405180602001604052806000815250905061135b565b6000604051806060016040528060408152602001613673604091399050600060036002855161124e9190613249565b61125891906133cc565b6004611264919061345d565b67ffffffffffffffff81111561127d5761127c611b9a565b5b6040519080825280601f01601f1916602001820160405280156112af5781602001600182028036833780820191505090505b509050600182016020820185865187015b8082101561131b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506112c0565b5050600386510660018114611337576002811461134a57611352565b603d6001830353603d6002830353611352565b603d60018303535b50505080925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6113e083836115c8565b6113ed6000848484611431565b61142c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114239061337d565b60405180910390fd5b505050565b60006114528473ffffffffffffffffffffffffffffffffffffffff166117a2565b156115bb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261147b610ad3565b8786866040518563ffffffff1660e01b815260040161149d949392919061350c565b602060405180830381600087803b1580156114b757600080fd5b505af19250505080156114e857506040513d601f19601f820116820180604052508101906114e5919061356d565b60015b61156b573d8060008114611518576040519150601f19603f3d011682016040523d82523d6000602084013e61151d565b606091505b50600081511415611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a9061337d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506115c0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906135e6565b60405180910390fd5b61164181611360565b15611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890613652565b60405180910390fd5b61168d600083836113cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116dd9190613249565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461179e600083836113d1565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61180e816117d9565b811461181957600080fd5b50565b60008135905061182b81611805565b92915050565b600060208284031215611847576118466117cf565b5b60006118558482850161181c565b91505092915050565b60008115159050919050565b6118738161185e565b82525050565b600060208201905061188e600083018461186a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118ce5780820151818401526020810190506118b3565b838111156118dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006118ff82611894565b611909818561189f565b93506119198185602086016118b0565b611922816118e3565b840191505092915050565b6000602082019050818103600083015261194781846118f4565b905092915050565b6000819050919050565b6119628161194f565b811461196d57600080fd5b50565b60008135905061197f81611959565b92915050565b60006020828403121561199b5761199a6117cf565b5b60006119a984828501611970565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119dd826119b2565b9050919050565b6119ed816119d2565b82525050565b6000602082019050611a0860008301846119e4565b92915050565b611a17816119d2565b8114611a2257600080fd5b50565b600081359050611a3481611a0e565b92915050565b60008060408385031215611a5157611a506117cf565b5b6000611a5f85828601611a25565b9250506020611a7085828601611970565b9150509250929050565b600080600060608486031215611a9357611a926117cf565b5b6000611aa186828701611a25565b9350506020611ab286828701611a25565b9250506040611ac386828701611970565b9150509250925092565b600060208284031215611ae357611ae26117cf565b5b6000611af184828501611a25565b91505092915050565b611b038161194f565b82525050565b6000602082019050611b1e6000830184611afa565b92915050565b611b2d8161185e565b8114611b3857600080fd5b50565b600081359050611b4a81611b24565b92915050565b60008060408385031215611b6757611b666117cf565b5b6000611b7585828601611a25565b9250506020611b8685828601611b3b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bd2826118e3565b810181811067ffffffffffffffff82111715611bf157611bf0611b9a565b5b80604052505050565b6000611c046117c5565b9050611c108282611bc9565b919050565b600067ffffffffffffffff821115611c3057611c2f611b9a565b5b611c39826118e3565b9050602081019050919050565b82818337600083830152505050565b6000611c68611c6384611c15565b611bfa565b905082815260208101848484011115611c8457611c83611b95565b5b611c8f848285611c46565b509392505050565b600082601f830112611cac57611cab611b90565b5b8135611cbc848260208601611c55565b91505092915050565b60008060008060808587031215611cdf57611cde6117cf565b5b6000611ced87828801611a25565b9450506020611cfe87828801611a25565b9350506040611d0f87828801611970565b925050606085013567ffffffffffffffff811115611d3057611d2f6117d4565b5b611d3c87828801611c97565b91505092959194509250565b60008060408385031215611d5f57611d5e6117cf565b5b6000611d6d85828601611a25565b9250506020611d7e85828601611a25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dcf57607f821691505b60208210811415611de357611de2611d88565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4560218361189f565b9150611e5082611de9565b604082019050919050565b60006020820190508181036000830152611e7481611e38565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000611ed7603e8361189f565b9150611ee282611e7b565b604082019050919050565b60006020820190508181036000830152611f0681611eca565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000611f69602e8361189f565b9150611f7482611f0d565b604082019050919050565b60006020820190508181036000830152611f9881611f5c565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000611fd560188361189f565b9150611fe082611f9f565b602082019050919050565b6000602082019050818103600083015261200481611fc8565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061206760298361189f565b91506120728261200b565b604082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120d78261194f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561210a5761210961209d565b5b600182019050919050565b600081905092915050565b7f506c616365686f6c646572204e46542028455243373231292023000000000000600082015250565b6000612156601a83612115565b915061216182612120565b601a82019050919050565b600061217782611894565b6121818185612115565b93506121918185602086016118b0565b80840191505092915050565b60006121a882612149565b91506121b4828461216c565b915081905092915050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b60006121f5600a83612115565b9150612200826121bf565b600a82019050919050565b7f222c20226465736372697074696f6e223a2022506c616365686f6c646572204e60008201527f465420697320616e20756e6c696d6974656420737570706c792c2066756c6c7960208201527f206f6e2d636861696e2c204e465420636f6c6c656374696f6e20617661696c6160408201527f626c65206f6e20616e792045564d2d636f6d70617469626c6520636861696e2e60608201527f20596f75206d6179206d696e7420697420667265656c792c20616e642075736560808201527f20697420666f722074657374696e672c206f7220796f7572206f776e2073617460a08201527f697366616374696f6e2e222c2022696d616765223a2022646174613a696d616760c08201527f652f7376672b786d6c3b6261736536342c50484e325a79423462577875637a3060e08201527f6e6148523063446f764c336433647935334d793576636d63764d6a41774d43396101008201527f7a646d636e49485a705a586443623367394a7a457849444578494455774944556101208201527f774a7a34385a7a3438636d566a64434234505363784d6963676554306e4d54496101408201527f6e494864705a48526f505363304f436367614756705a326830505363304f43636101608201527f675a6d6c736244306e493045314e7a6b7a4f536367633352796232746c5053646101808201527f756232356c4a79427a64484a766132557462476c755a574e686344306e636d396101a08201527f31626d516e49484e30636d39725a5331736157356c616d3970626a306e636d396101c08201527f31626d516e49484e30636d39725a5331746158526c636d787062576c305053636101e08201527f784d436367633352796232746c4c5864705a48526f505363794a7a34384c334a6102008201527f6c5933512b50484a6c593351676544306e4d54676e49486b394a7a45344a79426102208201527f33615752306144306e4d7a596e4947686c6157646f6444306e4d7a596e49475a6102408201527f70624777394a794d354d6b517a526a556e49484e30636d39725a54306e626d396102608201527f755a536367633352796232746c4c577870626d566a595841394a334a766457356102808201527f6b4a79427a64484a766132557462476c755a577076615734394a334a766457356102a08201527f6b4a79427a64484a766132557462576c305a584a73615731706444306e4d54416102c08201527f6e49484e30636d39725a533133615752306144306e4d69632b504339795a574e6102e08201527f30506a786a61584a6a62475567593367394a7a49324a79426a6554306e4d7a416103008201527f6e494849394a7a516e49475a70624777394a794e47513056424d6b496e49484e6103208201527f30636d39725a54306e626d39755a536367633352796232746c4c577870626d566103408201527f6a595841394a334a766457356b4a79427a64484a766132557462476c755a57706103608201527f76615734394a334a766457356b4a79427a64484a766132557462576c305a584a6103808201527f73615731706444306e4d54416e49484e30636d39725a533133615752306144306103a08201527f6e4d69632b5043396a61584a6a6247552b50484268644767675a6d6c736244306103c08201527f6e497a56444f55557a4d536367633352796232746c5053636a4e554d3552544d6103e08201527f784a79427a64484a766132557462476c755a574e686344306e636d3931626d516104008201527f6e49484e30636d39725a5331736157356c616d3970626a306e636d3931626d516104208201527f6e49484e30636d39725a5331746158526c636d787062576c30505363784d43636104408201527f67633352796232746c4c5864705a48526f505363794a79426b5053644e4e54416104608201527f734d7a566a4c5449754f446b314f4330774c6a67314e4449744e6934794e7a6b6104808201527f314c5463754f5467344e6930344c54686a4c5451754d6a41344c5441754d44496104a08201527f334f4330324c6a49314e4377314c6a677a4e6930784d5377355979307a4c44496104c08201527f744d79347a4e7a51314c4449754f4451354e7930324c44526a4c5449754d6a676104e08201527f794e4377784c544d734d79307a4c6a49314c444d754e6a51774e69426a4c54416105008201527f754d7a417a4d5377774c6a63334e6a59744d5334304e7a55784c4449754e54496105208201527f784e4330774c6a6b314f444d734d7934784d446b30597a45754d6a41344d79776105408201527f784c6a4d334e5377794c6a51314f444d734d5334314c4455734d4334334d54636105608201527f35597a49754d5451334c5441754e6a59774e6977304c6a6b334e6a6b744e43346105808201527f344d4463304c4459754f4463314c5459754d6a45334f53426a4d6934794e7a416105a08201527f344c5445754e6a67334e5377304c6a59304e5467744d6934314c4467754d44676105c08201527f7a4d793079597a49754e4463354e5377774c6a4d324d4459734e6934324e69776105e08201527f7a4c6a45334d6a4d734e7934344d5449314c444d754d4459794e574d784c6a4d6106008201527f784d6a55744d4334784d6a55744d5334314f544d334c5449754e5459794e53306106208201527f774c6a557a4d5449744e4334784f44633149474d784c6a457a4d6a63744d53346106408201527f334d7a49314c4449754f5445774d6977774c6a45314d6a6b734d7934324d7a556106608201527f304c5445754d44677a4d304d314d5334354f4451304c444d324c6a55734e54416106808201527f754e6a4d794c444d314c6a45344e6a51734e5441734d7a56364a7a34384c33426106a08201527f686447672b5043396e506a786e506a78795a574e30494867394a7a45794a79426106c08201527f35505363784d69636764326c6b644767394a7a51344a79426f5a576c6e6148516106e08201527f394a7a51344a79426d61577873505364756232356c4a79427a64484a766132556107008201527f394a794d774d4441774d44416e49484e30636d39725a5331736157356c5932466107208201527f7750536479623356755a436367633352796232746c4c577870626d567162326c6107408201527f7550536479623356755a436367633352796232746c4c5731706447567962476c6107608201527f74615851394a7a45774a79427a64484a766132557464326c6b644767394a7a496107808201527f6e506a7776636d566a64443438636d566a64434234505363784f4363676554306107a08201527f6e4d54676e494864705a48526f5053637a4e696367614756705a3268305053636107c08201527f7a4e6963675a6d6c736244306e626d39755a536367633352796232746c5053636107e08201527f6a4d4441774d4441774a79427a64484a766132557462476c755a574e686344306108008201527f6e636d3931626d516e49484e30636d39725a5331736157356c616d3970626a306108208201527f6e636d3931626d516e49484e30636d39725a5331746158526c636d787062576c6108408201527f30505363784d436367633352796232746c4c5864705a48526f505363794a7a346108608201527f384c334a6c5933512b50474e70636d4e735a53426a6544306e4d6a596e49474e6108808201527f355053637a4d436367636a306e4e4363675a6d6c736244306e626d39755a53636108a08201527f67633352796232746c5053636a4d4441774d4441774a79427a64484a766132556108c08201527f7462476c755a574e686344306e636d3931626d516e49484e30636d39725a53316108e08201527f736157356c616d3970626a306e636d3931626d516e49484e30636d39725a53316109008201527f746158526c636d787062576c30505363784d436367633352796232746c4c58646109208201527f705a48526f505363794a7a34384c324e70636d4e735a543438636d566a6443426109408201527f34505363784f4363676554306e4d54676e494864705a48526f5053637a4e69636109608201527f67614756705a3268305053637a4e6963675a6d6c736244306e626d39755a53636109808201527f67633352796232746c5053636a4d4441774d4441774a79427a64484a766132556109a08201527f7462476c755a574e686344306e636d3931626d516e49484e30636d39725a53316109c08201527f736157356c616d3970626a306e636d3931626d516e49484e30636d39725a53316109e08201527f746158526c636d787062576c30505363784d436367633352796232746c4c5864610a008201527f705a48526f505363794a7a34384c334a6c5933512b50484268644767675a6d6c610a208201527f736244306e626d39755a536367633352796232746c5053636a4d4441774d4441610a408201527f774a79427a64484a766132557462476c755a574e686344306e636d3931626d51610a608201527f6e49484e30636d39725a5331736157356c616d3970626a306e636d3931626d51610a808201527f6e49484e30636d39725a5331746158526c636d787062576c30505363784d4363610aa08201527f67633352796232746c4c5864705a48526f505363794a79426b5053644e4d6a49610ac08201527f734e444e6a4d4334314d6a55354c5445754d4445354f4377774c6a63794e7a55610ae08201527f744d5334354e6a63794c444d744d324d794c6a59774f5459744d5334784f4455610b008201527f354c444d744d6977324c54526a4e4334334e4459744d7934784e6a51734e6934610b208201527f334f5449744f5334774d6a63344c4445784c546c6a4d5334334d6a41314c4441610b408201527f754d4445784e4377314c4463734f4377344a7a34384c3342686447672b504339610b608201527f6e506a777663335a6e50673d3d227d0000000000000000000000000000000000610b8082015250565b600061303f610b8f83612115565b915061304a8261220b565b610b8f82019050919050565b6000613061826121e8565b915061306d828461216c565b915061307882613031565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006130b9601d83612115565b91506130c482613083565b601d82019050919050565b60006130da826130ac565b91506130e6828461216c565b915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061314d60258361189f565b9150613158826130f1565b604082019050919050565b6000602082019050818103600083015261317c81613140565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131df60248361189f565b91506131ea82613183565b604082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b60006132208261194f565b915061322b8361194f565b92508282101561323e5761323d61209d565b5b828203905092915050565b60006132548261194f565b915061325f8361194f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132945761329361209d565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006132d560198361189f565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061336760328361189f565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133d78261194f565b91506133e28361194f565b9250826133f2576133f161339d565b5b828204905092915050565b60006134088261194f565b91506134138361194f565b9250826134235761342261339d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134688261194f565b91506134738361194f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134ac576134ab61209d565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b60006134de826134b7565b6134e881856134c2565b93506134f88185602086016118b0565b613501816118e3565b840191505092915050565b600060808201905061352160008301876119e4565b61352e60208301866119e4565b61353b6040830185611afa565b818103606083015261354d81846134d3565b905095945050505050565b60008151905061356781611805565b92915050565b600060208284031215613583576135826117cf565b5b600061359184828501613558565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135d060208361189f565b91506135db8261359a565b602082019050919050565b600060208201905081810360008301526135ff816135c3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061363c601c8361189f565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212200ee44d8f24dfc05bdda80eb8e5d6d06ed149c0bc53c5ab7be7ee9e2dad568d5764736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a22cb46511610066578063a22cb4651461025b578063b88d4fde14610277578063c87b56dd14610293578063e985e9c5146102c3576100ea565b806370a08231146101f157806395d89b4114610221578063a0712d681461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a55780636352211e146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611831565b6102f3565b6040516101169190611879565b60405180910390f35b6101276103d5565b604051610134919061192d565b60405180910390f35b61015760048036038101906101529190611985565b610467565b60405161016491906119f3565b60405180910390f35b61018760048036038101906101829190611a3a565b6104ad565b005b6101a3600480360381019061019e9190611a7a565b6105c5565b005b6101bf60048036038101906101ba9190611a7a565b610625565b005b6101db60048036038101906101d69190611985565b610645565b6040516101e891906119f3565b60405180910390f35b61020b60048036038101906102069190611acd565b6106f7565b6040516102189190611b09565b60405180910390f35b6102296107af565b604051610236919061192d565b60405180910390f35b61025960048036038101906102549190611985565b610841565b005b61027560048036038101906102709190611b50565b610886565b005b610291600480360381019061028c9190611cc5565b61089c565b005b6102ad60048036038101906102a89190611985565b6108fe565b6040516102ba919061192d565b60405180910390f35b6102dd60048036038101906102d89190611d48565b61098a565b6040516102ea9190611879565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103ce57506103cd82610a1e565b5b9050919050565b6060600080546103e490611db7565b80601f016020809104026020016040519081016040528092919081815260200182805461041090611db7565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610a88565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104b882610645565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052090611e5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610548610ad3565b73ffffffffffffffffffffffffffffffffffffffff161480610577575061057681610571610ad3565b61098a565b5b6105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad90611eed565b60405180910390fd5b6105c08383610adb565b505050565b6105d66105d0610ad3565b82610b94565b610615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060c90611f7f565b60405180910390fd5b610620838383610c29565b505050565b6106408383836040518060200160405280600081525061089c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590611feb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f9061207d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107be90611db7565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea90611db7565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b60005b818110156108825760006108586007610e90565b90506108643382610e9e565b61086e6007610ebc565b50808061087a906120cc565b915050610844565b5050565b610898610891610ad3565b8383610ed2565b5050565b6108ad6108a7610ad3565b83610b94565b6108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390611f7f565b60405180910390fd5b6108f88484848461103f565b50505050565b606061090982610a88565b600061095a6109178461109b565b604051602001610927919061219d565b6040516020818303038152906040526040516020016109469190613056565b6040516020818303038152906040526111fc565b905060008160405160200161096f91906130cf565b60405160208183030381529060405290508092505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610a9181611360565b610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac790611feb565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b4e83610645565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ba083610645565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610be25750610be1818561098a565b5b80610c2057508373ffffffffffffffffffffffffffffffffffffffff16610c0884610467565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610c4982610645565b73ffffffffffffffffffffffffffffffffffffffff1614610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9690613163565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d06906131f5565b60405180910390fd5b610d1a8383836113cc565b610d25600082610adb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d759190613215565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dcc9190613249565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e8b8383836113d1565b505050565b600081600001549050919050565b610eb88282604051806020016040528060008152506113d6565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f38906132eb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110329190611879565b60405180910390a3505050565b61104a848484610c29565b61105684848484611431565b611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c9061337d565b60405180910390fd5b50505050565b606060008214156110e3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506111f7565b600082905060005b600082146111155780806110fe906120cc565b915050600a8261110e91906133cc565b91506110eb565b60008167ffffffffffffffff81111561113157611130611b9a565b5b6040519080825280601f01601f1916602001820160405280156111635781602001600182028036833780820191505090505b5090505b600085146111f05760018261117c9190613215565b9150600a8561118b91906133fd565b60306111979190613249565b60f81b8183815181106111ad576111ac61342e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856111e991906133cc565b9450611167565b8093505050505b919050565b606060008251141561121f5760405180602001604052806000815250905061135b565b6000604051806060016040528060408152602001613673604091399050600060036002855161124e9190613249565b61125891906133cc565b6004611264919061345d565b67ffffffffffffffff81111561127d5761127c611b9a565b5b6040519080825280601f01601f1916602001820160405280156112af5781602001600182028036833780820191505090505b509050600182016020820185865187015b8082101561131b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506112c0565b5050600386510660018114611337576002811461134a57611352565b603d6001830353603d6002830353611352565b603d60018303535b50505080925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6113e083836115c8565b6113ed6000848484611431565b61142c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114239061337d565b60405180910390fd5b505050565b60006114528473ffffffffffffffffffffffffffffffffffffffff166117a2565b156115bb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261147b610ad3565b8786866040518563ffffffff1660e01b815260040161149d949392919061350c565b602060405180830381600087803b1580156114b757600080fd5b505af19250505080156114e857506040513d601f19601f820116820180604052508101906114e5919061356d565b60015b61156b573d8060008114611518576040519150601f19603f3d011682016040523d82523d6000602084013e61151d565b606091505b50600081511415611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a9061337d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506115c0565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906135e6565b60405180910390fd5b61164181611360565b15611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890613652565b60405180910390fd5b61168d600083836113cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116dd9190613249565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461179e600083836113d1565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61180e816117d9565b811461181957600080fd5b50565b60008135905061182b81611805565b92915050565b600060208284031215611847576118466117cf565b5b60006118558482850161181c565b91505092915050565b60008115159050919050565b6118738161185e565b82525050565b600060208201905061188e600083018461186a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118ce5780820151818401526020810190506118b3565b838111156118dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006118ff82611894565b611909818561189f565b93506119198185602086016118b0565b611922816118e3565b840191505092915050565b6000602082019050818103600083015261194781846118f4565b905092915050565b6000819050919050565b6119628161194f565b811461196d57600080fd5b50565b60008135905061197f81611959565b92915050565b60006020828403121561199b5761199a6117cf565b5b60006119a984828501611970565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119dd826119b2565b9050919050565b6119ed816119d2565b82525050565b6000602082019050611a0860008301846119e4565b92915050565b611a17816119d2565b8114611a2257600080fd5b50565b600081359050611a3481611a0e565b92915050565b60008060408385031215611a5157611a506117cf565b5b6000611a5f85828601611a25565b9250506020611a7085828601611970565b9150509250929050565b600080600060608486031215611a9357611a926117cf565b5b6000611aa186828701611a25565b9350506020611ab286828701611a25565b9250506040611ac386828701611970565b9150509250925092565b600060208284031215611ae357611ae26117cf565b5b6000611af184828501611a25565b91505092915050565b611b038161194f565b82525050565b6000602082019050611b1e6000830184611afa565b92915050565b611b2d8161185e565b8114611b3857600080fd5b50565b600081359050611b4a81611b24565b92915050565b60008060408385031215611b6757611b666117cf565b5b6000611b7585828601611a25565b9250506020611b8685828601611b3b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bd2826118e3565b810181811067ffffffffffffffff82111715611bf157611bf0611b9a565b5b80604052505050565b6000611c046117c5565b9050611c108282611bc9565b919050565b600067ffffffffffffffff821115611c3057611c2f611b9a565b5b611c39826118e3565b9050602081019050919050565b82818337600083830152505050565b6000611c68611c6384611c15565b611bfa565b905082815260208101848484011115611c8457611c83611b95565b5b611c8f848285611c46565b509392505050565b600082601f830112611cac57611cab611b90565b5b8135611cbc848260208601611c55565b91505092915050565b60008060008060808587031215611cdf57611cde6117cf565b5b6000611ced87828801611a25565b9450506020611cfe87828801611a25565b9350506040611d0f87828801611970565b925050606085013567ffffffffffffffff811115611d3057611d2f6117d4565b5b611d3c87828801611c97565b91505092959194509250565b60008060408385031215611d5f57611d5e6117cf565b5b6000611d6d85828601611a25565b9250506020611d7e85828601611a25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dcf57607f821691505b60208210811415611de357611de2611d88565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4560218361189f565b9150611e5082611de9565b604082019050919050565b60006020820190508181036000830152611e7481611e38565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000611ed7603e8361189f565b9150611ee282611e7b565b604082019050919050565b60006020820190508181036000830152611f0681611eca565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000611f69602e8361189f565b9150611f7482611f0d565b604082019050919050565b60006020820190508181036000830152611f9881611f5c565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000611fd560188361189f565b9150611fe082611f9f565b602082019050919050565b6000602082019050818103600083015261200481611fc8565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061206760298361189f565b91506120728261200b565b604082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120d78261194f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561210a5761210961209d565b5b600182019050919050565b600081905092915050565b7f506c616365686f6c646572204e46542028455243373231292023000000000000600082015250565b6000612156601a83612115565b915061216182612120565b601a82019050919050565b600061217782611894565b6121818185612115565b93506121918185602086016118b0565b80840191505092915050565b60006121a882612149565b91506121b4828461216c565b915081905092915050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b60006121f5600a83612115565b9150612200826121bf565b600a82019050919050565b7f222c20226465736372697074696f6e223a2022506c616365686f6c646572204e60008201527f465420697320616e20756e6c696d6974656420737570706c792c2066756c6c7960208201527f206f6e2d636861696e2c204e465420636f6c6c656374696f6e20617661696c6160408201527f626c65206f6e20616e792045564d2d636f6d70617469626c6520636861696e2e60608201527f20596f75206d6179206d696e7420697420667265656c792c20616e642075736560808201527f20697420666f722074657374696e672c206f7220796f7572206f776e2073617460a08201527f697366616374696f6e2e222c2022696d616765223a2022646174613a696d616760c08201527f652f7376672b786d6c3b6261736536342c50484e325a79423462577875637a3060e08201527f6e6148523063446f764c336433647935334d793576636d63764d6a41774d43396101008201527f7a646d636e49485a705a586443623367394a7a457849444578494455774944556101208201527f774a7a34385a7a3438636d566a64434234505363784d6963676554306e4d54496101408201527f6e494864705a48526f505363304f436367614756705a326830505363304f43636101608201527f675a6d6c736244306e493045314e7a6b7a4f536367633352796232746c5053646101808201527f756232356c4a79427a64484a766132557462476c755a574e686344306e636d396101a08201527f31626d516e49484e30636d39725a5331736157356c616d3970626a306e636d396101c08201527f31626d516e49484e30636d39725a5331746158526c636d787062576c305053636101e08201527f784d436367633352796232746c4c5864705a48526f505363794a7a34384c334a6102008201527f6c5933512b50484a6c593351676544306e4d54676e49486b394a7a45344a79426102208201527f33615752306144306e4d7a596e4947686c6157646f6444306e4d7a596e49475a6102408201527f70624777394a794d354d6b517a526a556e49484e30636d39725a54306e626d396102608201527f755a536367633352796232746c4c577870626d566a595841394a334a766457356102808201527f6b4a79427a64484a766132557462476c755a577076615734394a334a766457356102a08201527f6b4a79427a64484a766132557462576c305a584a73615731706444306e4d54416102c08201527f6e49484e30636d39725a533133615752306144306e4d69632b504339795a574e6102e08201527f30506a786a61584a6a62475567593367394a7a49324a79426a6554306e4d7a416103008201527f6e494849394a7a516e49475a70624777394a794e47513056424d6b496e49484e6103208201527f30636d39725a54306e626d39755a536367633352796232746c4c577870626d566103408201527f6a595841394a334a766457356b4a79427a64484a766132557462476c755a57706103608201527f76615734394a334a766457356b4a79427a64484a766132557462576c305a584a6103808201527f73615731706444306e4d54416e49484e30636d39725a533133615752306144306103a08201527f6e4d69632b5043396a61584a6a6247552b50484268644767675a6d6c736244306103c08201527f6e497a56444f55557a4d536367633352796232746c5053636a4e554d3552544d6103e08201527f784a79427a64484a766132557462476c755a574e686344306e636d3931626d516104008201527f6e49484e30636d39725a5331736157356c616d3970626a306e636d3931626d516104208201527f6e49484e30636d39725a5331746158526c636d787062576c30505363784d43636104408201527f67633352796232746c4c5864705a48526f505363794a79426b5053644e4e54416104608201527f734d7a566a4c5449754f446b314f4330774c6a67314e4449744e6934794e7a6b6104808201527f314c5463754f5467344e6930344c54686a4c5451754d6a41344c5441754d44496104a08201527f334f4330324c6a49314e4377314c6a677a4e6930784d5377355979307a4c44496104c08201527f744d79347a4e7a51314c4449754f4451354e7930324c44526a4c5449754d6a676104e08201527f794e4377784c544d734d79307a4c6a49314c444d754e6a51774e69426a4c54416105008201527f754d7a417a4d5377774c6a63334e6a59744d5334304e7a55784c4449754e54496105208201527f784e4330774c6a6b314f444d734d7934784d446b30597a45754d6a41344d79776105408201527f784c6a4d334e5377794c6a51314f444d734d5334314c4455734d4334334d54636105608201527f35597a49754d5451334c5441754e6a59774e6977304c6a6b334e6a6b744e43346105808201527f344d4463304c4459754f4463314c5459754d6a45334f53426a4d6934794e7a416105a08201527f344c5445754e6a67334e5377304c6a59304e5467744d6934314c4467754d44676105c08201527f7a4d793079597a49754e4463354e5377774c6a4d324d4459734e6934324e69776105e08201527f7a4c6a45334d6a4d734e7934344d5449314c444d754d4459794e574d784c6a4d6106008201527f784d6a55744d4334784d6a55744d5334314f544d334c5449754e5459794e53306106208201527f774c6a557a4d5449744e4334784f44633149474d784c6a457a4d6a63744d53346106408201527f334d7a49314c4449754f5445774d6977774c6a45314d6a6b734d7934324d7a556106608201527f304c5445754d44677a4d304d314d5334354f4451304c444d324c6a55734e54416106808201527f754e6a4d794c444d314c6a45344e6a51734e5441734d7a56364a7a34384c33426106a08201527f686447672b5043396e506a786e506a78795a574e30494867394a7a45794a79426106c08201527f35505363784d69636764326c6b644767394a7a51344a79426f5a576c6e6148516106e08201527f394a7a51344a79426d61577873505364756232356c4a79427a64484a766132556107008201527f394a794d774d4441774d44416e49484e30636d39725a5331736157356c5932466107208201527f7750536479623356755a436367633352796232746c4c577870626d567162326c6107408201527f7550536479623356755a436367633352796232746c4c5731706447567962476c6107608201527f74615851394a7a45774a79427a64484a766132557464326c6b644767394a7a496107808201527f6e506a7776636d566a64443438636d566a64434234505363784f4363676554306107a08201527f6e4d54676e494864705a48526f5053637a4e696367614756705a3268305053636107c08201527f7a4e6963675a6d6c736244306e626d39755a536367633352796232746c5053636107e08201527f6a4d4441774d4441774a79427a64484a766132557462476c755a574e686344306108008201527f6e636d3931626d516e49484e30636d39725a5331736157356c616d3970626a306108208201527f6e636d3931626d516e49484e30636d39725a5331746158526c636d787062576c6108408201527f30505363784d436367633352796232746c4c5864705a48526f505363794a7a346108608201527f384c334a6c5933512b50474e70636d4e735a53426a6544306e4d6a596e49474e6108808201527f355053637a4d436367636a306e4e4363675a6d6c736244306e626d39755a53636108a08201527f67633352796232746c5053636a4d4441774d4441774a79427a64484a766132556108c08201527f7462476c755a574e686344306e636d3931626d516e49484e30636d39725a53316108e08201527f736157356c616d3970626a306e636d3931626d516e49484e30636d39725a53316109008201527f746158526c636d787062576c30505363784d436367633352796232746c4c58646109208201527f705a48526f505363794a7a34384c324e70636d4e735a543438636d566a6443426109408201527f34505363784f4363676554306e4d54676e494864705a48526f5053637a4e69636109608201527f67614756705a3268305053637a4e6963675a6d6c736244306e626d39755a53636109808201527f67633352796232746c5053636a4d4441774d4441774a79427a64484a766132556109a08201527f7462476c755a574e686344306e636d3931626d516e49484e30636d39725a53316109c08201527f736157356c616d3970626a306e636d3931626d516e49484e30636d39725a53316109e08201527f746158526c636d787062576c30505363784d436367633352796232746c4c5864610a008201527f705a48526f505363794a7a34384c334a6c5933512b50484268644767675a6d6c610a208201527f736244306e626d39755a536367633352796232746c5053636a4d4441774d4441610a408201527f774a79427a64484a766132557462476c755a574e686344306e636d3931626d51610a608201527f6e49484e30636d39725a5331736157356c616d3970626a306e636d3931626d51610a808201527f6e49484e30636d39725a5331746158526c636d787062576c30505363784d4363610aa08201527f67633352796232746c4c5864705a48526f505363794a79426b5053644e4d6a49610ac08201527f734e444e6a4d4334314d6a55354c5445754d4445354f4377774c6a63794e7a55610ae08201527f744d5334354e6a63794c444d744d324d794c6a59774f5459744d5334784f4455610b008201527f354c444d744d6977324c54526a4e4334334e4459744d7934784e6a51734e6934610b208201527f334f5449744f5334774d6a63344c4445784c546c6a4d5334334d6a41314c4441610b408201527f754d4445784e4377314c4463734f4377344a7a34384c3342686447672b504339610b608201527f6e506a777663335a6e50673d3d227d0000000000000000000000000000000000610b8082015250565b600061303f610b8f83612115565b915061304a8261220b565b610b8f82019050919050565b6000613061826121e8565b915061306d828461216c565b915061307882613031565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006130b9601d83612115565b91506130c482613083565b601d82019050919050565b60006130da826130ac565b91506130e6828461216c565b915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061314d60258361189f565b9150613158826130f1565b604082019050919050565b6000602082019050818103600083015261317c81613140565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131df60248361189f565b91506131ea82613183565b604082019050919050565b6000602082019050818103600083015261320e816131d2565b9050919050565b60006132208261194f565b915061322b8361194f565b92508282101561323e5761323d61209d565b5b828203905092915050565b60006132548261194f565b915061325f8361194f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132945761329361209d565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006132d560198361189f565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061336760328361189f565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133d78261194f565b91506133e28361194f565b9250826133f2576133f161339d565b5b828204905092915050565b60006134088261194f565b91506134138361194f565b9250826134235761342261339d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006134688261194f565b91506134738361194f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134ac576134ab61209d565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b60006134de826134b7565b6134e881856134c2565b93506134f88185602086016118b0565b613501816118e3565b840191505092915050565b600060808201905061352160008301876119e4565b61352e60208301866119e4565b61353b6040830185611afa565b818103606083015261354d81846134d3565b905095945050505050565b60008151905061356781611805565b92915050565b600060208284031215613583576135826117cf565b5b600061359184828501613558565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135d060208361189f565b91506135db8261359a565b602082019050919050565b600060208201905081810360008301526135ff816135c3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061363c601c8361189f565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212200ee44d8f24dfc05bdda80eb8e5d6d06ed149c0bc53c5ab7be7ee9e2dad568d5764736f6c63430008090033

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.