ETH Price: $2,640.99 (-2.77%)

Token

Overleague Car (OVL CAR)
 

Overview

Max Total Supply

51 OVL CAR

Holders

21

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
OVLCars

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract OVLCars is ERC721, Ownable {
    using Counters for Counters.Counter;
    using ECDSA for bytes32;

    uint256 public constant MAX_SUPPLY = 5396;
    Counters.Counter public totalSupply;

    string private baseURI = "https://metadata.overleague.io/eth/";
    string private baseContractURI =
        "https://metadata.overleague.io/eth/contract";

    mapping(address => uint256) public nonces;

    // Mapping from owner address to token ID
    mapping(address => uint256[]) private tokenIds;

    // Mapping from tokenId to ownerIndex
    mapping(uint256 => uint256) private tokenIdIndexs;

    // Mapping from owner address to token ID
    mapping(address => uint256[]) private claimedTokenIds;

    constructor() ERC721("Overleague Car", "OVL CAR") {
        //
    }

    function mint(
        uint256 _tokenId,
        uint256 _nonce,
        bytes calldata signature
    ) external {
        require(
            totalSupply.current() < MAX_SUPPLY,
            "Total supply limit reached"
        );
        address _sender = _msgSender();
        bytes32 _ethSignedMessageHash = keccak256(
            abi.encode(_tokenId, _sender, _nonce)
        ).toEthSignedMessageHash();
        nonces[_sender]++;
        // check signature
        require(
            _ethSignedMessageHash.recover(signature) == owner(),
            "OVLCar: unauthorize"
        );
        // mint car
        _safeMint(_sender, _tokenId);
        totalSupply.increment();
    }

    /**
     * Gets token ids claimed by owner
     */
    function getTokensClaimedByOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        return claimedTokenIds[_owner];
    }

    /**
     * Gets token ids for the specific owner
     */
    function getTokensByOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        return tokenIds[_owner];
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        baseURI = _baseUri;
    }

    function setContractURI(string memory _baseUri) public onlyOwner {
        baseContractURI = _baseUri;
    }

    /**
     * Opensea.io: contract-level metadata
     * https://docs.opensea.io/docs/contract-level-metadata
     */
    function contractURI() public view returns (string memory) {
        return baseContractURI;
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721) {
        super._beforeTokenTransfer(from, to, tokenId);
        // Mint.
        if (from == address(0)) {
            claimedTokenIds[to].push(tokenId);
        }
        // Transfer or burn.
        else {
            // Swap and pop.
            uint256[] storage ids = tokenIds[from];
            uint256 index = tokenIdIndexs[tokenId];
            uint256 lastId = ids[ids.length - 1];
            ids[index] = lastId;
            ids.pop();
            // Update index.
            tokenIdIndexs[lastId] = index;
        }

        // Burn.
        if (to == address(0)) {
            delete tokenIdIndexs[tokenId];
        }
        // Transfer or mint.
        else {
            uint256[] storage ids = tokenIds[to];
            tokenIdIndexs[tokenId] = ids.length;
            ids.push(tokenId);
        }
    }
}

File 2 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @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 4 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 5 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 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.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensClaimedByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060238152602001620045116023913960089080519060200190620000359291906200020a565b506040518060600160405280602b8152602001620044e6602b913960099080519060200190620000679291906200020a565b503480156200007557600080fd5b506040518060400160405280600e81526020017f4f7665726c6561677565204361720000000000000000000000000000000000008152506040518060400160405280600781526020017f4f564c20434152000000000000000000000000000000000000000000000000008152508160009080519060200190620000fa9291906200020a565b508060019080519060200190620001139291906200020a565b505050620001366200012a6200013c60201b60201c565b6200014460201b60201c565b6200031f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021890620002ba565b90600052602060002090601f0160209004810192826200023c576000855562000288565b82601f106200025757805160ff191683800117855562000288565b8280016001018555821562000288579182015b82811115620002875782518255916020019190600101906200026a565b5b5090506200029791906200029b565b5090565b5b80821115620002b65760008160009055506001016200029c565b5090565b60006002820490506001821680620002d357607f821691505b60208210811415620002ea57620002e9620002f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6141b7806200032f6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de57806395d89b4111610097578063c87b56dd11610071578063c87b56dd14610448578063e8a3d48514610478578063e985e9c514610496578063f2fde38b146104c657610173565b806395d89b41146103f2578063a22cb46514610410578063b88d4fde1461042c57610173565b80636352211e1461031e57806370a082311461034e578063715018a61461037e5780637ecebe00146103885780638da5cb5b146103b8578063938e3d7b146103d657610173565b806323b872dd1161013057806323b872dd1461024c57806332cb6b0c1461026857806340398d671461028657806342842e0e146102b657806355f804b3146102d25780635f1f68de146102ee57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c657806308dc9f42146101f6578063095ea7b31461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d9190612ce5565b6104e2565b60405161019f919061338f565b60405180910390f35b6101b06105c4565b6040516101bd91906133ef565b60405180910390f35b6101e060048036038101906101db9190612d78565b610656565b6040516101ed9190613306565b60405180910390f35b610210600480360381019061020b9190612da1565b6106db565b005b61022c60048036038101906102279190612ca9565b6108a7565b005b6102366109bf565b60405161024391906136d1565b60405180910390f35b61026660048036038101906102619190612ba3565b6109cb565b005b610270610a2b565b60405161027d91906136d1565b60405180910390f35b6102a0600480360381019061029b9190612b3e565b610a31565b6040516102ad919061336d565b60405180910390f35b6102d060048036038101906102cb9190612ba3565b610ac8565b005b6102ec60048036038101906102e79190612d37565b610ae8565b005b61030860048036038101906103039190612b3e565b610b7e565b604051610315919061336d565b60405180910390f35b61033860048036038101906103339190612d78565b610c15565b6040516103459190613306565b60405180910390f35b61036860048036038101906103639190612b3e565b610cc7565b60405161037591906136d1565b60405180910390f35b610386610d7f565b005b6103a2600480360381019061039d9190612b3e565b610e07565b6040516103af91906136d1565b60405180910390f35b6103c0610e1f565b6040516103cd9190613306565b60405180910390f35b6103f060048036038101906103eb9190612d37565b610e49565b005b6103fa610edf565b60405161040791906133ef565b60405180910390f35b61042a60048036038101906104259190612c6d565b610f71565b005b61044660048036038101906104419190612bf2565b610f87565b005b610462600480360381019061045d9190612d78565b610fe9565b60405161046f91906133ef565b60405180910390f35b610480611090565b60405161048d91906133ef565b60405180910390f35b6104b060048036038101906104ab9190612b67565b611122565b6040516104bd919061338f565b60405180910390f35b6104e060048036038101906104db9190612b3e565b6111b6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bd57506105bc826112ae565b5b9050919050565b6060600080546105d3906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff906139ae565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b5050505050905090565b600061066182611318565b6106a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610697906135f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6115146106e86007611384565b10610728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071f90613651565b60405180910390fd5b6000610732611392565b9050600061076986838760405160200161074e939291906136ec565b6040516020818303038152906040528051906020012061139a565b9050600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906107bb90613a11565b91905055506107c8610e1f565b73ffffffffffffffffffffffffffffffffffffffff1661083585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050836113ca90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff161461088b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610882906136b1565b60405180910390fd5b61089582876113f1565b61089f600761140f565b505050505050565b60006108b282610c15565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613671565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610942611392565b73ffffffffffffffffffffffffffffffffffffffff16148061097157506109708161096b611392565b611122565b5b6109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790613551565b60405180910390fd5b6109ba8383611425565b505050565b60078060000154905081565b6109dc6109d6611392565b826114de565b610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290613691565b60405180910390fd5b610a268383836115bc565b505050565b61151481565b6060600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610abc57602002820191906000526020600020905b815481526020019060010190808311610aa8575b50505050509050919050565b610ae383838360405180602001604052806000815250610f87565b505050565b610af0611392565b73ffffffffffffffffffffffffffffffffffffffff16610b0e610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613611565b60405180910390fd5b8060089080519060200190610b7a929190612918565b5050565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c0957602002820191906000526020600020905b815481526020019060010190808311610bf5575b50505050509050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590613591565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613571565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d87611392565b73ffffffffffffffffffffffffffffffffffffffff16610da5610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290613611565b60405180910390fd5b610e056000611823565b565b600a6020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e51611392565b73ffffffffffffffffffffffffffffffffffffffff16610e6f610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90613611565b60405180910390fd5b8060099080519060200190610edb929190612918565b5050565b606060018054610eee906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a906139ae565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b5050505050905090565b610f83610f7c611392565b83836118e9565b5050565b610f98610f92611392565b836114de565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613691565b60405180910390fd5b610fe384848484611a56565b50505050565b6060610ff482611318565b611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613631565b60405180910390fd5b600061103d611ab2565b9050600081511161105d5760405180602001604052806000815250611088565b8061106784611b44565b6040516020016110789291906132bc565b6040516020818303038152906040525b915050919050565b60606009805461109f906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb906139ae565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111be611392565b73ffffffffffffffffffffffffffffffffffffffff166111dc610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613611565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613471565b60405180910390fd5b6112ab81611823565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b600033905090565b6000816040516020016113ad91906132e0565b604051602081830303815290604052805190602001209050919050565b60008060006113d98585611cf1565b915091506113e681611d74565b819250505092915050565b61140b8282604051806020016040528060008152506120c5565b5050565b6001816000016000828254019250508190555050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149883610c15565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114e982611318565b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90613531565b60405180910390fd5b600061153383610c15565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a257508373ffffffffffffffffffffffffffffffffffffffff1661158a84610656565b73ffffffffffffffffffffffffffffffffffffffff16145b806115b357506115b28185611122565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115dc82610c15565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611699906134d1565b60405180910390fd5b6116ad838383612120565b6116b8600082611425565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170891906138ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175f9190613826565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461181e83838361240e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f906134f1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a49919061338f565b60405180910390a3505050565b611a618484846115bc565b611a6d84848484612413565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613451565b60405180910390fd5b50505050565b606060088054611ac1906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611aed906139ae565b8015611b3a5780601f10611b0f57610100808354040283529160200191611b3a565b820191906000526020600020905b815481529060010190602001808311611b1d57829003601f168201915b5050505050905090565b60606000821415611b8c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cec565b600082905060005b60008214611bbe578080611ba790613a11565b915050600a82611bb7919061387c565b9150611b94565b60008167ffffffffffffffff811115611c00577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c325781602001600182028036833780820191505090505b5090505b60008514611ce557600182611c4b91906138ad565b9150600a85611c5a9190613a64565b6030611c669190613826565b60f81b818381518110611ca2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cde919061387c565b9450611c36565b8093505050505b919050565b600080604183511415611d335760008060006020860151925060408601519150606086015160001a9050611d27878285856125aa565b94509450505050611d6d565b604083511415611d64576000806020850151915060408501519050611d598683836126b7565b935093505050611d6d565b60006002915091505b9250929050565b60006004811115611dae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611de7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611df2576120c2565b60016004811115611e2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90613411565b60405180910390fd5b60026004811115611ee0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611f19577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613431565b60405180910390fd5b60036004811115611f94577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611fcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590613511565b60405180910390fd5b600480811115612047577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612080577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906135b1565b60405180910390fd5b5b50565b6120cf8383612716565b6120dc6000848484612413565b61211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211290613451565b60405180910390fd5b505050565b61212b8383836128f0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121cb57600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081908060018154018082558091505060019003906000526020600020016000909190919091505561232f565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000600c60008481526020019081526020016000205490506000826001848054905061223a91906138ad565b81548110612271577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808383815481106122b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550828054806122fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905581600c6000838152602001908152602001600020819055505050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238057600c600082815260200190815260200160002060009055612409565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508080549050600c60008481526020019081526020016000208190555080829080600181540180825580915050600190039060005260206000200160009091909190915055505b505050565b505050565b60006124348473ffffffffffffffffffffffffffffffffffffffff166128f5565b1561259d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245d611392565b8786866040518563ffffffff1660e01b815260040161247f9493929190613321565b602060405180830381600087803b15801561249957600080fd5b505af19250505080156124ca57506040513d601f19601f820116820180604052508101906124c79190612d0e565b60015b61254d573d80600081146124fa576040519150601f19603f3d011682016040523d82523d6000602084013e6124ff565b606091505b50600081511415612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90613451565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a2565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156125e55760006003915091506126ae565b601b8560ff16141580156125fd5750601c8560ff1614155b1561260f5760006004915091506126ae565b60006001878787876040516000815260200160405260405161263494939291906133aa565b6020604051602081039080840390855afa158015612656573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a5576000600192509250506126ae565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6126fa9190613826565b9050612708878288856125aa565b935093505050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d906135d1565b60405180910390fd5b61278f81611318565b156127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c6906134b1565b60405180910390fd5b6127db60008383612120565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282b9190613826565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ec6000838361240e565b5050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612924906139ae565b90600052602060002090601f016020900481019282612946576000855561298d565b82601f1061295f57805160ff191683800117855561298d565b8280016001018555821561298d579182015b8281111561298c578251825591602001919060010190612971565b5b50905061299a919061299e565b5090565b5b808211156129b757600081600090555060010161299f565b5090565b60006129ce6129c984613748565b613723565b9050828152602081018484840111156129e657600080fd5b6129f184828561396c565b509392505050565b6000612a0c612a0784613779565b613723565b905082815260208101848484011115612a2457600080fd5b612a2f84828561396c565b509392505050565b600081359050612a4681614125565b92915050565b600081359050612a5b8161413c565b92915050565b600081359050612a7081614153565b92915050565b600081519050612a8581614153565b92915050565b60008083601f840112612a9d57600080fd5b8235905067ffffffffffffffff811115612ab657600080fd5b602083019150836001820283011115612ace57600080fd5b9250929050565b600082601f830112612ae657600080fd5b8135612af68482602086016129bb565b91505092915050565b600082601f830112612b1057600080fd5b8135612b208482602086016129f9565b91505092915050565b600081359050612b388161416a565b92915050565b600060208284031215612b5057600080fd5b6000612b5e84828501612a37565b91505092915050565b60008060408385031215612b7a57600080fd5b6000612b8885828601612a37565b9250506020612b9985828601612a37565b9150509250929050565b600080600060608486031215612bb857600080fd5b6000612bc686828701612a37565b9350506020612bd786828701612a37565b9250506040612be886828701612b29565b9150509250925092565b60008060008060808587031215612c0857600080fd5b6000612c1687828801612a37565b9450506020612c2787828801612a37565b9350506040612c3887828801612b29565b925050606085013567ffffffffffffffff811115612c5557600080fd5b612c6187828801612ad5565b91505092959194509250565b60008060408385031215612c8057600080fd5b6000612c8e85828601612a37565b9250506020612c9f85828601612a4c565b9150509250929050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612a37565b9250506020612cdb85828601612b29565b9150509250929050565b600060208284031215612cf757600080fd5b6000612d0584828501612a61565b91505092915050565b600060208284031215612d2057600080fd5b6000612d2e84828501612a76565b91505092915050565b600060208284031215612d4957600080fd5b600082013567ffffffffffffffff811115612d6357600080fd5b612d6f84828501612aff565b91505092915050565b600060208284031215612d8a57600080fd5b6000612d9884828501612b29565b91505092915050565b60008060008060608587031215612db757600080fd5b6000612dc587828801612b29565b9450506020612dd687828801612b29565b935050604085013567ffffffffffffffff811115612df357600080fd5b612dff87828801612a8b565b925092505092959194509250565b6000612e19838361328f565b60208301905092915050565b612e2e816138e1565b82525050565b6000612e3f826137ba565b612e4981856137e8565b9350612e54836137aa565b8060005b83811015612e85578151612e6c8882612e0d565b9750612e77836137db565b925050600181019050612e58565b5085935050505092915050565b612e9b816138f3565b82525050565b612eaa816138ff565b82525050565b612ec1612ebc826138ff565b613a5a565b82525050565b6000612ed2826137c5565b612edc81856137f9565b9350612eec81856020860161397b565b612ef581613b51565b840191505092915050565b6000612f0b826137d0565b612f15818561380a565b9350612f2581856020860161397b565b612f2e81613b51565b840191505092915050565b6000612f44826137d0565b612f4e818561381b565b9350612f5e81856020860161397b565b80840191505092915050565b6000612f7760188361380a565b9150612f8282613b62565b602082019050919050565b6000612f9a601f8361380a565b9150612fa582613b8b565b602082019050919050565b6000612fbd601c8361381b565b9150612fc882613bb4565b601c82019050919050565b6000612fe060328361380a565b9150612feb82613bdd565b604082019050919050565b600061300360268361380a565b915061300e82613c2c565b604082019050919050565b600061302660258361380a565b915061303182613c7b565b604082019050919050565b6000613049601c8361380a565b915061305482613cca565b602082019050919050565b600061306c60248361380a565b915061307782613cf3565b604082019050919050565b600061308f60198361380a565b915061309a82613d42565b602082019050919050565b60006130b260228361380a565b91506130bd82613d6b565b604082019050919050565b60006130d5602c8361380a565b91506130e082613dba565b604082019050919050565b60006130f860388361380a565b915061310382613e09565b604082019050919050565b600061311b602a8361380a565b915061312682613e58565b604082019050919050565b600061313e60298361380a565b915061314982613ea7565b604082019050919050565b600061316160228361380a565b915061316c82613ef6565b604082019050919050565b600061318460208361380a565b915061318f82613f45565b602082019050919050565b60006131a7602c8361380a565b91506131b282613f6e565b604082019050919050565b60006131ca60208361380a565b91506131d582613fbd565b602082019050919050565b60006131ed602f8361380a565b91506131f882613fe6565b604082019050919050565b6000613210601a8361380a565b915061321b82614035565b602082019050919050565b600061323360218361380a565b915061323e8261405e565b604082019050919050565b600061325660318361380a565b9150613261826140ad565b604082019050919050565b600061327960138361380a565b9150613284826140fc565b602082019050919050565b61329881613955565b82525050565b6132a781613955565b82525050565b6132b68161395f565b82525050565b60006132c88285612f39565b91506132d48284612f39565b91508190509392505050565b60006132eb82612fb0565b91506132f78284612eb0565b60208201915081905092915050565b600060208201905061331b6000830184612e25565b92915050565b60006080820190506133366000830187612e25565b6133436020830186612e25565b613350604083018561329e565b81810360608301526133628184612ec7565b905095945050505050565b600060208201905081810360008301526133878184612e34565b905092915050565b60006020820190506133a46000830184612e92565b92915050565b60006080820190506133bf6000830187612ea1565b6133cc60208301866132ad565b6133d96040830185612ea1565b6133e66060830184612ea1565b95945050505050565b600060208201905081810360008301526134098184612f00565b905092915050565b6000602082019050818103600083015261342a81612f6a565b9050919050565b6000602082019050818103600083015261344a81612f8d565b9050919050565b6000602082019050818103600083015261346a81612fd3565b9050919050565b6000602082019050818103600083015261348a81612ff6565b9050919050565b600060208201905081810360008301526134aa81613019565b9050919050565b600060208201905081810360008301526134ca8161303c565b9050919050565b600060208201905081810360008301526134ea8161305f565b9050919050565b6000602082019050818103600083015261350a81613082565b9050919050565b6000602082019050818103600083015261352a816130a5565b9050919050565b6000602082019050818103600083015261354a816130c8565b9050919050565b6000602082019050818103600083015261356a816130eb565b9050919050565b6000602082019050818103600083015261358a8161310e565b9050919050565b600060208201905081810360008301526135aa81613131565b9050919050565b600060208201905081810360008301526135ca81613154565b9050919050565b600060208201905081810360008301526135ea81613177565b9050919050565b6000602082019050818103600083015261360a8161319a565b9050919050565b6000602082019050818103600083015261362a816131bd565b9050919050565b6000602082019050818103600083015261364a816131e0565b9050919050565b6000602082019050818103600083015261366a81613203565b9050919050565b6000602082019050818103600083015261368a81613226565b9050919050565b600060208201905081810360008301526136aa81613249565b9050919050565b600060208201905081810360008301526136ca8161326c565b9050919050565b60006020820190506136e6600083018461329e565b92915050565b6000606082019050613701600083018661329e565b61370e6020830185612e25565b61371b604083018461329e565b949350505050565b600061372d61373e565b905061373982826139e0565b919050565b6000604051905090565b600067ffffffffffffffff82111561376357613762613b22565b5b61376c82613b51565b9050602081019050919050565b600067ffffffffffffffff82111561379457613793613b22565b5b61379d82613b51565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061383182613955565b915061383c83613955565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387157613870613a95565b5b828201905092915050565b600061388782613955565b915061389283613955565b9250826138a2576138a1613ac4565b5b828204905092915050565b60006138b882613955565b91506138c383613955565b9250828210156138d6576138d5613a95565b5b828203905092915050565b60006138ec82613935565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561399957808201518184015260208101905061397e565b838111156139a8576000848401525b50505050565b600060028204905060018216806139c657607f821691505b602082108114156139da576139d9613af3565b5b50919050565b6139e982613b51565b810181811067ffffffffffffffff82111715613a0857613a07613b22565b5b80604052505050565b6000613a1c82613955565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a4f57613a4e613a95565b5b600182019050919050565b6000819050919050565b6000613a6f82613955565b9150613a7a83613955565b925082613a8a57613a89613ac4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546f74616c20737570706c79206c696d69742072656163686564000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f564c4361723a20756e617574686f72697a6500000000000000000000000000600082015250565b61412e816138e1565b811461413957600080fd5b50565b614145816138f3565b811461415057600080fd5b50565b61415c81613909565b811461416757600080fd5b50565b61417381613955565b811461417e57600080fd5b5056fea264697066735822122047925770de9e344981343e65ba92c6376f123e2e58dc3a7e3db224fb52a3c0fc64736f6c6343000804003368747470733a2f2f6d657461646174612e6f7665726c65616775652e696f2f6574682f636f6e747261637468747470733a2f2f6d657461646174612e6f7665726c65616775652e696f2f6574682f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de57806395d89b4111610097578063c87b56dd11610071578063c87b56dd14610448578063e8a3d48514610478578063e985e9c514610496578063f2fde38b146104c657610173565b806395d89b41146103f2578063a22cb46514610410578063b88d4fde1461042c57610173565b80636352211e1461031e57806370a082311461034e578063715018a61461037e5780637ecebe00146103885780638da5cb5b146103b8578063938e3d7b146103d657610173565b806323b872dd1161013057806323b872dd1461024c57806332cb6b0c1461026857806340398d671461028657806342842e0e146102b657806355f804b3146102d25780635f1f68de146102ee57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c657806308dc9f42146101f6578063095ea7b31461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d9190612ce5565b6104e2565b60405161019f919061338f565b60405180910390f35b6101b06105c4565b6040516101bd91906133ef565b60405180910390f35b6101e060048036038101906101db9190612d78565b610656565b6040516101ed9190613306565b60405180910390f35b610210600480360381019061020b9190612da1565b6106db565b005b61022c60048036038101906102279190612ca9565b6108a7565b005b6102366109bf565b60405161024391906136d1565b60405180910390f35b61026660048036038101906102619190612ba3565b6109cb565b005b610270610a2b565b60405161027d91906136d1565b60405180910390f35b6102a0600480360381019061029b9190612b3e565b610a31565b6040516102ad919061336d565b60405180910390f35b6102d060048036038101906102cb9190612ba3565b610ac8565b005b6102ec60048036038101906102e79190612d37565b610ae8565b005b61030860048036038101906103039190612b3e565b610b7e565b604051610315919061336d565b60405180910390f35b61033860048036038101906103339190612d78565b610c15565b6040516103459190613306565b60405180910390f35b61036860048036038101906103639190612b3e565b610cc7565b60405161037591906136d1565b60405180910390f35b610386610d7f565b005b6103a2600480360381019061039d9190612b3e565b610e07565b6040516103af91906136d1565b60405180910390f35b6103c0610e1f565b6040516103cd9190613306565b60405180910390f35b6103f060048036038101906103eb9190612d37565b610e49565b005b6103fa610edf565b60405161040791906133ef565b60405180910390f35b61042a60048036038101906104259190612c6d565b610f71565b005b61044660048036038101906104419190612bf2565b610f87565b005b610462600480360381019061045d9190612d78565b610fe9565b60405161046f91906133ef565b60405180910390f35b610480611090565b60405161048d91906133ef565b60405180910390f35b6104b060048036038101906104ab9190612b67565b611122565b6040516104bd919061338f565b60405180910390f35b6104e060048036038101906104db9190612b3e565b6111b6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105bd57506105bc826112ae565b5b9050919050565b6060600080546105d3906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff906139ae565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b5050505050905090565b600061066182611318565b6106a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610697906135f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6115146106e86007611384565b10610728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071f90613651565b60405180910390fd5b6000610732611392565b9050600061076986838760405160200161074e939291906136ec565b6040516020818303038152906040528051906020012061139a565b9050600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906107bb90613a11565b91905055506107c8610e1f565b73ffffffffffffffffffffffffffffffffffffffff1661083585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050836113ca90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff161461088b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610882906136b1565b60405180910390fd5b61089582876113f1565b61089f600761140f565b505050505050565b60006108b282610c15565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613671565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610942611392565b73ffffffffffffffffffffffffffffffffffffffff16148061097157506109708161096b611392565b611122565b5b6109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790613551565b60405180910390fd5b6109ba8383611425565b505050565b60078060000154905081565b6109dc6109d6611392565b826114de565b610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290613691565b60405180910390fd5b610a268383836115bc565b505050565b61151481565b6060600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610abc57602002820191906000526020600020905b815481526020019060010190808311610aa8575b50505050509050919050565b610ae383838360405180602001604052806000815250610f87565b505050565b610af0611392565b73ffffffffffffffffffffffffffffffffffffffff16610b0e610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613611565b60405180910390fd5b8060089080519060200190610b7a929190612918565b5050565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c0957602002820191906000526020600020905b815481526020019060010190808311610bf5575b50505050509050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590613591565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613571565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d87611392565b73ffffffffffffffffffffffffffffffffffffffff16610da5610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290613611565b60405180910390fd5b610e056000611823565b565b600a6020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e51611392565b73ffffffffffffffffffffffffffffffffffffffff16610e6f610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90613611565b60405180910390fd5b8060099080519060200190610edb929190612918565b5050565b606060018054610eee906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a906139ae565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b5050505050905090565b610f83610f7c611392565b83836118e9565b5050565b610f98610f92611392565b836114de565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613691565b60405180910390fd5b610fe384848484611a56565b50505050565b6060610ff482611318565b611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613631565b60405180910390fd5b600061103d611ab2565b9050600081511161105d5760405180602001604052806000815250611088565b8061106784611b44565b6040516020016110789291906132bc565b6040516020818303038152906040525b915050919050565b60606009805461109f906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb906139ae565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111be611392565b73ffffffffffffffffffffffffffffffffffffffff166111dc610e1f565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613611565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613471565b60405180910390fd5b6112ab81611823565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b600033905090565b6000816040516020016113ad91906132e0565b604051602081830303815290604052805190602001209050919050565b60008060006113d98585611cf1565b915091506113e681611d74565b819250505092915050565b61140b8282604051806020016040528060008152506120c5565b5050565b6001816000016000828254019250508190555050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149883610c15565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114e982611318565b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90613531565b60405180910390fd5b600061153383610c15565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a257508373ffffffffffffffffffffffffffffffffffffffff1661158a84610656565b73ffffffffffffffffffffffffffffffffffffffff16145b806115b357506115b28185611122565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115dc82610c15565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613491565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611699906134d1565b60405180910390fd5b6116ad838383612120565b6116b8600082611425565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170891906138ad565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175f9190613826565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461181e83838361240e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f906134f1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a49919061338f565b60405180910390a3505050565b611a618484846115bc565b611a6d84848484612413565b611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613451565b60405180910390fd5b50505050565b606060088054611ac1906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611aed906139ae565b8015611b3a5780601f10611b0f57610100808354040283529160200191611b3a565b820191906000526020600020905b815481529060010190602001808311611b1d57829003601f168201915b5050505050905090565b60606000821415611b8c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cec565b600082905060005b60008214611bbe578080611ba790613a11565b915050600a82611bb7919061387c565b9150611b94565b60008167ffffffffffffffff811115611c00577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c325781602001600182028036833780820191505090505b5090505b60008514611ce557600182611c4b91906138ad565b9150600a85611c5a9190613a64565b6030611c669190613826565b60f81b818381518110611ca2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cde919061387c565b9450611c36565b8093505050505b919050565b600080604183511415611d335760008060006020860151925060408601519150606086015160001a9050611d27878285856125aa565b94509450505050611d6d565b604083511415611d64576000806020850151915060408501519050611d598683836126b7565b935093505050611d6d565b60006002915091505b9250929050565b60006004811115611dae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611de7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611df2576120c2565b60016004811115611e2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90613411565b60405180910390fd5b60026004811115611ee0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611f19577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613431565b60405180910390fd5b60036004811115611f94577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115611fcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590613511565b60405180910390fd5b600480811115612047577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612080577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906135b1565b60405180910390fd5b5b50565b6120cf8383612716565b6120dc6000848484612413565b61211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211290613451565b60405180910390fd5b505050565b61212b8383836128f0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121cb57600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081908060018154018082558091505060019003906000526020600020016000909190919091505561232f565b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000600c60008481526020019081526020016000205490506000826001848054905061223a91906138ad565b81548110612271577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808383815481106122b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550828054806122fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905581600c6000838152602001908152602001600020819055505050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238057600c600082815260200190815260200160002060009055612409565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508080549050600c60008481526020019081526020016000208190555080829080600181540180825580915050600190039060005260206000200160009091909190915055505b505050565b505050565b60006124348473ffffffffffffffffffffffffffffffffffffffff166128f5565b1561259d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245d611392565b8786866040518563ffffffff1660e01b815260040161247f9493929190613321565b602060405180830381600087803b15801561249957600080fd5b505af19250505080156124ca57506040513d601f19601f820116820180604052508101906124c79190612d0e565b60015b61254d573d80600081146124fa576040519150601f19603f3d011682016040523d82523d6000602084013e6124ff565b606091505b50600081511415612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90613451565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a2565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156125e55760006003915091506126ae565b601b8560ff16141580156125fd5750601c8560ff1614155b1561260f5760006004915091506126ae565b60006001878787876040516000815260200160405260405161263494939291906133aa565b6020604051602081039080840390855afa158015612656573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a5576000600192509250506126ae565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6126fa9190613826565b9050612708878288856125aa565b935093505050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d906135d1565b60405180910390fd5b61278f81611318565b156127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c6906134b1565b60405180910390fd5b6127db60008383612120565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461282b9190613826565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ec6000838361240e565b5050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612924906139ae565b90600052602060002090601f016020900481019282612946576000855561298d565b82601f1061295f57805160ff191683800117855561298d565b8280016001018555821561298d579182015b8281111561298c578251825591602001919060010190612971565b5b50905061299a919061299e565b5090565b5b808211156129b757600081600090555060010161299f565b5090565b60006129ce6129c984613748565b613723565b9050828152602081018484840111156129e657600080fd5b6129f184828561396c565b509392505050565b6000612a0c612a0784613779565b613723565b905082815260208101848484011115612a2457600080fd5b612a2f84828561396c565b509392505050565b600081359050612a4681614125565b92915050565b600081359050612a5b8161413c565b92915050565b600081359050612a7081614153565b92915050565b600081519050612a8581614153565b92915050565b60008083601f840112612a9d57600080fd5b8235905067ffffffffffffffff811115612ab657600080fd5b602083019150836001820283011115612ace57600080fd5b9250929050565b600082601f830112612ae657600080fd5b8135612af68482602086016129bb565b91505092915050565b600082601f830112612b1057600080fd5b8135612b208482602086016129f9565b91505092915050565b600081359050612b388161416a565b92915050565b600060208284031215612b5057600080fd5b6000612b5e84828501612a37565b91505092915050565b60008060408385031215612b7a57600080fd5b6000612b8885828601612a37565b9250506020612b9985828601612a37565b9150509250929050565b600080600060608486031215612bb857600080fd5b6000612bc686828701612a37565b9350506020612bd786828701612a37565b9250506040612be886828701612b29565b9150509250925092565b60008060008060808587031215612c0857600080fd5b6000612c1687828801612a37565b9450506020612c2787828801612a37565b9350506040612c3887828801612b29565b925050606085013567ffffffffffffffff811115612c5557600080fd5b612c6187828801612ad5565b91505092959194509250565b60008060408385031215612c8057600080fd5b6000612c8e85828601612a37565b9250506020612c9f85828601612a4c565b9150509250929050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612a37565b9250506020612cdb85828601612b29565b9150509250929050565b600060208284031215612cf757600080fd5b6000612d0584828501612a61565b91505092915050565b600060208284031215612d2057600080fd5b6000612d2e84828501612a76565b91505092915050565b600060208284031215612d4957600080fd5b600082013567ffffffffffffffff811115612d6357600080fd5b612d6f84828501612aff565b91505092915050565b600060208284031215612d8a57600080fd5b6000612d9884828501612b29565b91505092915050565b60008060008060608587031215612db757600080fd5b6000612dc587828801612b29565b9450506020612dd687828801612b29565b935050604085013567ffffffffffffffff811115612df357600080fd5b612dff87828801612a8b565b925092505092959194509250565b6000612e19838361328f565b60208301905092915050565b612e2e816138e1565b82525050565b6000612e3f826137ba565b612e4981856137e8565b9350612e54836137aa565b8060005b83811015612e85578151612e6c8882612e0d565b9750612e77836137db565b925050600181019050612e58565b5085935050505092915050565b612e9b816138f3565b82525050565b612eaa816138ff565b82525050565b612ec1612ebc826138ff565b613a5a565b82525050565b6000612ed2826137c5565b612edc81856137f9565b9350612eec81856020860161397b565b612ef581613b51565b840191505092915050565b6000612f0b826137d0565b612f15818561380a565b9350612f2581856020860161397b565b612f2e81613b51565b840191505092915050565b6000612f44826137d0565b612f4e818561381b565b9350612f5e81856020860161397b565b80840191505092915050565b6000612f7760188361380a565b9150612f8282613b62565b602082019050919050565b6000612f9a601f8361380a565b9150612fa582613b8b565b602082019050919050565b6000612fbd601c8361381b565b9150612fc882613bb4565b601c82019050919050565b6000612fe060328361380a565b9150612feb82613bdd565b604082019050919050565b600061300360268361380a565b915061300e82613c2c565b604082019050919050565b600061302660258361380a565b915061303182613c7b565b604082019050919050565b6000613049601c8361380a565b915061305482613cca565b602082019050919050565b600061306c60248361380a565b915061307782613cf3565b604082019050919050565b600061308f60198361380a565b915061309a82613d42565b602082019050919050565b60006130b260228361380a565b91506130bd82613d6b565b604082019050919050565b60006130d5602c8361380a565b91506130e082613dba565b604082019050919050565b60006130f860388361380a565b915061310382613e09565b604082019050919050565b600061311b602a8361380a565b915061312682613e58565b604082019050919050565b600061313e60298361380a565b915061314982613ea7565b604082019050919050565b600061316160228361380a565b915061316c82613ef6565b604082019050919050565b600061318460208361380a565b915061318f82613f45565b602082019050919050565b60006131a7602c8361380a565b91506131b282613f6e565b604082019050919050565b60006131ca60208361380a565b91506131d582613fbd565b602082019050919050565b60006131ed602f8361380a565b91506131f882613fe6565b604082019050919050565b6000613210601a8361380a565b915061321b82614035565b602082019050919050565b600061323360218361380a565b915061323e8261405e565b604082019050919050565b600061325660318361380a565b9150613261826140ad565b604082019050919050565b600061327960138361380a565b9150613284826140fc565b602082019050919050565b61329881613955565b82525050565b6132a781613955565b82525050565b6132b68161395f565b82525050565b60006132c88285612f39565b91506132d48284612f39565b91508190509392505050565b60006132eb82612fb0565b91506132f78284612eb0565b60208201915081905092915050565b600060208201905061331b6000830184612e25565b92915050565b60006080820190506133366000830187612e25565b6133436020830186612e25565b613350604083018561329e565b81810360608301526133628184612ec7565b905095945050505050565b600060208201905081810360008301526133878184612e34565b905092915050565b60006020820190506133a46000830184612e92565b92915050565b60006080820190506133bf6000830187612ea1565b6133cc60208301866132ad565b6133d96040830185612ea1565b6133e66060830184612ea1565b95945050505050565b600060208201905081810360008301526134098184612f00565b905092915050565b6000602082019050818103600083015261342a81612f6a565b9050919050565b6000602082019050818103600083015261344a81612f8d565b9050919050565b6000602082019050818103600083015261346a81612fd3565b9050919050565b6000602082019050818103600083015261348a81612ff6565b9050919050565b600060208201905081810360008301526134aa81613019565b9050919050565b600060208201905081810360008301526134ca8161303c565b9050919050565b600060208201905081810360008301526134ea8161305f565b9050919050565b6000602082019050818103600083015261350a81613082565b9050919050565b6000602082019050818103600083015261352a816130a5565b9050919050565b6000602082019050818103600083015261354a816130c8565b9050919050565b6000602082019050818103600083015261356a816130eb565b9050919050565b6000602082019050818103600083015261358a8161310e565b9050919050565b600060208201905081810360008301526135aa81613131565b9050919050565b600060208201905081810360008301526135ca81613154565b9050919050565b600060208201905081810360008301526135ea81613177565b9050919050565b6000602082019050818103600083015261360a8161319a565b9050919050565b6000602082019050818103600083015261362a816131bd565b9050919050565b6000602082019050818103600083015261364a816131e0565b9050919050565b6000602082019050818103600083015261366a81613203565b9050919050565b6000602082019050818103600083015261368a81613226565b9050919050565b600060208201905081810360008301526136aa81613249565b9050919050565b600060208201905081810360008301526136ca8161326c565b9050919050565b60006020820190506136e6600083018461329e565b92915050565b6000606082019050613701600083018661329e565b61370e6020830185612e25565b61371b604083018461329e565b949350505050565b600061372d61373e565b905061373982826139e0565b919050565b6000604051905090565b600067ffffffffffffffff82111561376357613762613b22565b5b61376c82613b51565b9050602081019050919050565b600067ffffffffffffffff82111561379457613793613b22565b5b61379d82613b51565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061383182613955565b915061383c83613955565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387157613870613a95565b5b828201905092915050565b600061388782613955565b915061389283613955565b9250826138a2576138a1613ac4565b5b828204905092915050565b60006138b882613955565b91506138c383613955565b9250828210156138d6576138d5613a95565b5b828203905092915050565b60006138ec82613935565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561399957808201518184015260208101905061397e565b838111156139a8576000848401525b50505050565b600060028204905060018216806139c657607f821691505b602082108114156139da576139d9613af3565b5b50919050565b6139e982613b51565b810181811067ffffffffffffffff82111715613a0857613a07613b22565b5b80604052505050565b6000613a1c82613955565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a4f57613a4e613a95565b5b600182019050919050565b6000819050919050565b6000613a6f82613955565b9150613a7a83613955565b925082613a8a57613a89613ac4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546f74616c20737570706c79206c696d69742072656163686564000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f564c4361723a20756e617574686f72697a6500000000000000000000000000600082015250565b61412e816138e1565b811461413957600080fd5b50565b614145816138f3565b811461415057600080fd5b50565b61415c81613909565b811461416757600080fd5b50565b61417381613955565b811461417e57600080fd5b5056fea264697066735822122047925770de9e344981343e65ba92c6376f123e2e58dc3a7e3db224fb52a3c0fc64736f6c63430008040033

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.