ETH Price: $3,083.53 (-1.14%)
Gas: 2 Gwei

Token

MyMfers (MYMFER)
 

Overview

Max Total Supply

459 MYMFER

Holders

268

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MYMFER
0xfa31d0c8bd25cdfd456e6c3c11630ce6ed6fefef
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:
Collections

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Collections.sol
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.12;

import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Collections is ERC721Upgradeable {
    using ECDSA for bytes32;

    /**
     * Upgradable contract
     *   Should not change the type of a variable
     *   Or change the order in which they are declared
     *   Or introduce a new variable before existing ones
     *   If you need to introduce a new variable, make sure you always do so at the end
     */

    uint256 private _tokenId;
    address private _verificationAddress;

    address public owner;

    // should not use tokenId#0 as value
    // because mapping will be initialized by 0
    mapping(string => uint256) private _combinationToTokenId;
    mapping(uint256 => string) private _tokenIdToURI;

    // introduce a new variable here

    event OwnerUpdated(address indexed user, address indexed newOwner);

    modifier onlyOwner() {
        require(msg.sender == owner, "ONLY_OWNER");
        _;
    }

    function initialize(
        address owner_,
        address verificationAddress_,
        string memory name_,
        string memory symbol_
    ) external initializer {
        __ERC721_init(name_, symbol_);
        _verificationAddress = verificationAddress_;
        _tokenId++; // avoid 0 tokenId
        owner = owner_;
        emit OwnerUpdated(address(0), owner_);
    }

    function create(
        string memory combinationHash,
        string memory ipfsAddress,
        bytes memory signature
    ) public {
        require(
            _combinationToTokenId[combinationHash] == 0,
            "token has been minted"
        );
        require(
            _verify(combinationHash, ipfsAddress, signature),
            "invalid signature"
        );
        _tokenIdToURI[_tokenId] = ipfsAddress;
        _combinationToTokenId[combinationHash] = _tokenId;
        _safeMint(msg.sender, _tokenId);
        _tokenId++;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "nonexistent token");
        return _tokenIdToURI[tokenId];
    }

    function getTokenId(string memory combinationHash)
        public
        view
        returns (uint256)
    {
        return _combinationToTokenId[combinationHash];
    }

    function totalSupply() public view returns (uint256) {
        // minus 1 because we do not have #0 token
        return _tokenId - 1;
    }

    function _verify(
        string memory combinationHash,
        string memory ipfsAddress,
        bytes memory signature
    ) internal view returns (bool) {
        bytes memory s = bytes(string.concat(combinationHash, ipfsAddress));
        // follow EIP-191
        bytes32 messageHash = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n",
                Strings.toString(s.length),
                s
            )
        );
        return messageHash.recover(signature) == _verificationAddress;
    }

    function setOwner(address newOwner) public onlyOwner {
        owner = newOwner;
        emit OwnerUpdated(msg.sender, newOwner);
    }

    /**
     * contract can receive eth, e.g. from creator fee
     */
    receive() external payable {}

    function withdrawETH() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawERC20(IERC20 token) external onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }
}

interface IERC20 {
    function balanceOf(address) external view returns (uint256);
    function transfer(address, uint256) external returns (bool);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 3 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (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) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721Upgradeable.sol";
import "./IERC721ReceiverUpgradeable.sol";
import "./extensions/IERC721MetadataUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../utils/StringsUpgradeable.sol";
import "../../utils/introspection/ERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable {
    using AddressUpgradeable for address;
    using StringsUpgradeable 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.
     */
    function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) {
        return
            interfaceId == type(IERC721Upgradeable).interfaceId ||
            interfaceId == type(IERC721MetadataUpgradeable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721Upgradeable.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(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId);
    }

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[44] private __gap;
}

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

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
     * initialization step. This is essential to configure modules that are added through upgrades and that require
     * initialization.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 8 of 13 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

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

pragma solidity ^0.8.1;

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

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

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721MetadataUpgradeable is IERC721Upgradeable {
    /**
     * @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 11 of 13 : IERC721ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 13 : IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"combinationHash","type":"string"},{"internalType":"string","name":"ipfsAddress","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"create","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"combinationHash","type":"string"}],"name":"getTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"verificationAddress_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50613e71806100206000396000f3fe60806040526004361061012e5760003560e01c806342842e0e116100ab578063a22cb4651161006f578063a22cb4651461040d578063b88d4fde14610436578063c87b56dd1461045f578063e086e5ec1461049c578063e985e9c5146104b3578063f4f3b200146104f057610135565b806342842e0e146103145780636352211e1461033d57806370a082311461037a5780638da5cb5b146103b757806395d89b41146103e257610135565b806318160ddd116100f257806318160ddd146102315780631e7663bc1461025c5780632016a0d21461029957806323b872dd146102c25780632f237e82146102eb57610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806313af40351461020857610135565b3661013557005b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906125e1565b610519565b60405161016e9190612629565b60405180910390f35b34801561018357600080fd5b5061018c6105fb565b60405161019991906126dd565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612735565b61068d565b6040516101d691906127a3565b60405180910390f35b3480156101eb57600080fd5b50610206600480360381019061020191906127ea565b6106d3565b005b34801561021457600080fd5b5061022f600480360381019061022a919061282a565b6107eb565b005b34801561023d57600080fd5b50610246610919565b6040516102539190612866565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906129b6565b61092f565b6040516102909190612866565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb91906129ff565b610957565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190612a9e565b610b90565b005b3480156102f757600080fd5b50610312600480360381019061030d9190612b92565b610bf0565b005b34801561032057600080fd5b5061033b60048036038101906103369190612a9e565b610d13565b005b34801561034957600080fd5b50610364600480360381019061035f9190612735565b610d33565b60405161037191906127a3565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061282a565b610de5565b6040516103ae9190612866565b60405180910390f35b3480156103c357600080fd5b506103cc610e9d565b6040516103d991906127a3565b60405180910390f35b3480156103ee57600080fd5b506103f7610ec3565b60405161040491906126dd565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190612c65565b610f55565b005b34801561044257600080fd5b5061045d60048036038101906104589190612ca5565b610f6b565b005b34801561046b57600080fd5b5061048660048036038101906104819190612735565b610fcd565b60405161049391906126dd565b60405180910390f35b3480156104a857600080fd5b506104b16110ba565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612d28565b611199565b6040516104e79190612629565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612da6565b61122d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f457506105f3826113be565b5b9050919050565b60606065805461060a90612e02565b80601f016020809104026020016040519081016040528092919081815260200182805461063690612e02565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b600061069882611428565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106de82610d33565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561074f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074690612ea6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076e611473565b73ffffffffffffffffffffffffffffffffffffffff16148061079d575061079c81610797611473565b611199565b5b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390612f38565b60405180910390fd5b6107e6838361147b565b505050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290612fa4565b60405180910390fd5b80609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7660405160405180910390a350565b6000600160975461092a9190612ff3565b905090565b6000609a826040516109419190613063565b9081526020016040518091039020549050919050565b60008060019054906101000a900460ff161590508080156109885750600160008054906101000a900460ff1660ff16105b806109b5575061099730611534565b1580156109b45750600160008054906101000a900460ff1660ff16145b5b6109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb906130ec565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610a31576001600060016101000a81548160ff0219169083151502179055505b610a3b8383611557565b83609860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060976000815480929190610a8f9061310c565b919050555084609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7660405160405180910390a38015610b895760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610b8091906131a7565b60405180910390a15b5050505050565b610ba1610b9b611473565b826115b4565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790613234565b60405180910390fd5b610beb838383611649565b505050565b6000609a84604051610c029190613063565b90815260200160405180910390205414610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c48906132a0565b60405180910390fd5b610c5c8383836118b0565b610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061330c565b60405180910390fd5b81609b600060975481526020019081526020016000209080519060200190610cc49291906124d2565b50609754609a84604051610cd89190613063565b908152602001604051809103902081905550610cf63360975461197b565b60976000815480929190610d099061310c565b9190505550505050565b610d2e83838360405180602001604052806000815250610f6b565b505050565b6000806067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613378565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061340a565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060668054610ed290612e02565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe90612e02565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050905090565b610f67610f60611473565b8383611999565b5050565b610f7c610f76611473565b836115b4565b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613234565b60405180910390fd5b610fc784848484611b06565b50505050565b6060610fd882611b62565b611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613476565b60405180910390fd5b609b6000838152602001908152602001600020805461103590612e02565b80601f016020809104026020016040519081016040528092919081815260200182805461106190612e02565b80156110ae5780601f10611083576101008083540402835291602001916110ae565b820191906000526020600020905b81548152906001019060200180831161109157829003601f168201915b50505050509050919050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190612fa4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611195573d6000803e3d6000fd5b5050565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612fa4565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112f891906127a3565b602060405180830381865afa158015611315573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133991906134ab565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113769291906134d8565b6020604051808303816000875af1158015611395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b99190613516565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61143181611b62565b611470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146790613378565b60405180910390fd5b50565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114ee83610d33565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906135b5565b60405180910390fd5b6115b08282611bce565b5050565b6000806115c083610d33565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160257506116018185611199565b5b8061164057508373ffffffffffffffffffffffffffffffffffffffff166116288461068d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166982610d33565b73ffffffffffffffffffffffffffffffffffffffff16146116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690613647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611726906136d9565b60405180910390fd5b61173a838383611c4f565b61174560008261147b565b6001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117959190612ff3565b925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ec91906136f9565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118ab838383611c54565b505050565b60008084846040516020016118c692919061374f565b604051602081830303815290604052905060006118e38251611c59565b826040516020016118f5929190613806565b604051602081830303815290604052805190602001209050609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119598583611dba90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b611995828260405180602001604052806000815250611de1565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90613881565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af99190612629565b60405180910390a3505050565b611b11848484611649565b611b1d84848484611e3c565b611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613913565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600060019054906101000a900460ff16611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c14906135b5565b60405180910390fd5b8160659080519060200190611c339291906124d2565b508060669080519060200190611c4a9291906124d2565b505050565b505050565b505050565b60606000821415611ca1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611db5565b600082905060005b60008214611cd3578080611cbc9061310c565b915050600a82611ccc9190613962565b9150611ca9565b60008167ffffffffffffffff811115611cef57611cee61288b565b5b6040519080825280601f01601f191660200182016040528015611d215781602001600182028036833780820191505090505b5090505b60008514611dae57600182611d3a9190612ff3565b9150600a85611d499190613993565b6030611d5591906136f9565b60f81b818381518110611d6b57611d6a6139c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611da79190613962565b9450611d25565b8093505050505b919050565b6000806000611dc98585611fc4565b91509150611dd681612016565b819250505092915050565b611deb83836121eb565b611df86000848484611e3c565b611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90613913565b60405180910390fd5b505050565b6000611e5d8473ffffffffffffffffffffffffffffffffffffffff16611534565b15611fb7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e86611473565b8786866040518563ffffffff1660e01b8152600401611ea89493929190613a3d565b6020604051808303816000875af1925050508015611ee457506040513d601f19601f82011682018060405250810190611ee19190613a9e565b60015b611f67573d8060008114611f14576040519150601f19603f3d011682016040523d82523d6000602084013e611f19565b606091505b50600081511415611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690613913565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fbc565b600190505b949350505050565b6000806041835114156120065760008060006020860151925060408601519150606086015160001a9050611ffa878285856123c5565b9450945050505061200f565b60006002915091505b9250929050565b6000600481111561202a57612029613acb565b5b81600481111561203d5761203c613acb565b5b1415612048576121e8565b6001600481111561205c5761205b613acb565b5b81600481111561206f5761206e613acb565b5b14156120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790613b46565b60405180910390fd5b600260048111156120c4576120c3613acb565b5b8160048111156120d7576120d6613acb565b5b1415612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613bb2565b60405180910390fd5b6003600481111561212c5761212b613acb565b5b81600481111561213f5761213e613acb565b5b1415612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790613c44565b60405180910390fd5b60048081111561219357612192613acb565b5b8160048111156121a6576121a5613acb565b5b14156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90613cd6565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613d42565b60405180910390fd5b61226481611b62565b156122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b90613dae565b60405180910390fd5b6122b060008383611c4f565b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230091906136f9565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c160008383611c54565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156124005760006003915091506124c9565b601b8560ff16141580156124185750601c8560ff1614155b1561242a5760006004915091506124c9565b60006001878787876040516000815260200160405260405161244f9493929190613df6565b6020604051602081039080840390855afa158015612471573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c0576000600192509250506124c9565b80600092509250505b94509492505050565b8280546124de90612e02565b90600052602060002090601f0160209004810192826125005760008555612547565b82601f1061251957805160ff1916838001178555612547565b82800160010185558215612547579182015b8281111561254657825182559160200191906001019061252b565b5b5090506125549190612558565b5090565b5b80821115612571576000816000905550600101612559565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125be81612589565b81146125c957600080fd5b50565b6000813590506125db816125b5565b92915050565b6000602082840312156125f7576125f661257f565b5b6000612605848285016125cc565b91505092915050565b60008115159050919050565b6126238161260e565b82525050565b600060208201905061263e600083018461261a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561267e578082015181840152602081019050612663565b8381111561268d576000848401525b50505050565b6000601f19601f8301169050919050565b60006126af82612644565b6126b9818561264f565b93506126c9818560208601612660565b6126d281612693565b840191505092915050565b600060208201905081810360008301526126f781846126a4565b905092915050565b6000819050919050565b612712816126ff565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a61257f565b5b600061275984828501612720565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278d82612762565b9050919050565b61279d81612782565b82525050565b60006020820190506127b86000830184612794565b92915050565b6127c781612782565b81146127d257600080fd5b50565b6000813590506127e4816127be565b92915050565b600080604083850312156128015761280061257f565b5b600061280f858286016127d5565b925050602061282085828601612720565b9150509250929050565b6000602082840312156128405761283f61257f565b5b600061284e848285016127d5565b91505092915050565b612860816126ff565b82525050565b600060208201905061287b6000830184612857565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128c382612693565b810181811067ffffffffffffffff821117156128e2576128e161288b565b5b80604052505050565b60006128f5612575565b905061290182826128ba565b919050565b600067ffffffffffffffff8211156129215761292061288b565b5b61292a82612693565b9050602081019050919050565b82818337600083830152505050565b600061295961295484612906565b6128eb565b90508281526020810184848401111561297557612974612886565b5b612980848285612937565b509392505050565b600082601f83011261299d5761299c612881565b5b81356129ad848260208601612946565b91505092915050565b6000602082840312156129cc576129cb61257f565b5b600082013567ffffffffffffffff8111156129ea576129e9612584565b5b6129f684828501612988565b91505092915050565b60008060008060808587031215612a1957612a1861257f565b5b6000612a27878288016127d5565b9450506020612a38878288016127d5565b935050604085013567ffffffffffffffff811115612a5957612a58612584565b5b612a6587828801612988565b925050606085013567ffffffffffffffff811115612a8657612a85612584565b5b612a9287828801612988565b91505092959194509250565b600080600060608486031215612ab757612ab661257f565b5b6000612ac5868287016127d5565b9350506020612ad6868287016127d5565b9250506040612ae786828701612720565b9150509250925092565b600067ffffffffffffffff821115612b0c57612b0b61288b565b5b612b1582612693565b9050602081019050919050565b6000612b35612b3084612af1565b6128eb565b905082815260208101848484011115612b5157612b50612886565b5b612b5c848285612937565b509392505050565b600082601f830112612b7957612b78612881565b5b8135612b89848260208601612b22565b91505092915050565b600080600060608486031215612bab57612baa61257f565b5b600084013567ffffffffffffffff811115612bc957612bc8612584565b5b612bd586828701612988565b935050602084013567ffffffffffffffff811115612bf657612bf5612584565b5b612c0286828701612988565b925050604084013567ffffffffffffffff811115612c2357612c22612584565b5b612c2f86828701612b64565b9150509250925092565b612c428161260e565b8114612c4d57600080fd5b50565b600081359050612c5f81612c39565b92915050565b60008060408385031215612c7c57612c7b61257f565b5b6000612c8a858286016127d5565b9250506020612c9b85828601612c50565b9150509250929050565b60008060008060808587031215612cbf57612cbe61257f565b5b6000612ccd878288016127d5565b9450506020612cde878288016127d5565b9350506040612cef87828801612720565b925050606085013567ffffffffffffffff811115612d1057612d0f612584565b5b612d1c87828801612b64565b91505092959194509250565b60008060408385031215612d3f57612d3e61257f565b5b6000612d4d858286016127d5565b9250506020612d5e858286016127d5565b9150509250929050565b6000612d7382612782565b9050919050565b612d8381612d68565b8114612d8e57600080fd5b50565b600081359050612da081612d7a565b92915050565b600060208284031215612dbc57612dbb61257f565b5b6000612dca84828501612d91565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e1a57607f821691505b60208210811415612e2e57612e2d612dd3565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e9060218361264f565b9150612e9b82612e34565b604082019050919050565b60006020820190508181036000830152612ebf81612e83565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f22603e8361264f565b9150612f2d82612ec6565b604082019050919050565b60006020820190508181036000830152612f5181612f15565b9050919050565b7f4f4e4c595f4f574e455200000000000000000000000000000000000000000000600082015250565b6000612f8e600a8361264f565b9150612f9982612f58565b602082019050919050565b60006020820190508181036000830152612fbd81612f81565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ffe826126ff565b9150613009836126ff565b92508282101561301c5761301b612fc4565b5b828203905092915050565b600081905092915050565b600061303d82612644565b6130478185613027565b9350613057818560208601612660565b80840191505092915050565b600061306f8284613032565b915081905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006130d6602e8361264f565b91506130e18261307a565b604082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b6000613117826126ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561314a57613149612fc4565b5b600182019050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600061319161318c61318784613155565b61316c565b61315f565b9050919050565b6131a181613176565b82525050565b60006020820190506131bc6000830184613198565b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061321e602e8361264f565b9150613229826131c2565b604082019050919050565b6000602082019050818103600083015261324d81613211565b9050919050565b7f746f6b656e20686173206265656e206d696e7465640000000000000000000000600082015250565b600061328a60158361264f565b915061329582613254565b602082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006132f660118361264f565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061336260188361264f565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006133f460298361264f565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b600061346060118361264f565b915061346b8261342a565b602082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b6000815190506134a581612709565b92915050565b6000602082840312156134c1576134c061257f565b5b60006134cf84828501613496565b91505092915050565b60006040820190506134ed6000830185612794565b6134fa6020830184612857565b9392505050565b60008151905061351081612c39565b92915050565b60006020828403121561352c5761352b61257f565b5b600061353a84828501613501565b91505092915050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b600061359f602b8361264f565b91506135aa82613543565b604082019050919050565b600060208201905081810360008301526135ce81613592565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061363160258361264f565b915061363c826135d5565b604082019050919050565b6000602082019050818103600083015261366081613624565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c360248361264f565b91506136ce82613667565b604082019050919050565b600060208201905081810360008301526136f2816136b6565b9050919050565b6000613704826126ff565b915061370f836126ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561374457613743612fc4565b5b828201905092915050565b600061375b8285613032565b91506137678284613032565b91508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000600082015250565b60006137a9601a83613027565b91506137b482613773565b601a82019050919050565b600081519050919050565b600081905092915050565b60006137e0826137bf565b6137ea81856137ca565b93506137fa818560208601612660565b80840191505092915050565b60006138118261379c565b915061381d8285613032565b915061382982846137d5565b91508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061386b60198361264f565b915061387682613835565b602082019050919050565b6000602082019050818103600083015261389a8161385e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138fd60328361264f565b9150613908826138a1565b604082019050919050565b6000602082019050818103600083015261392c816138f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061396d826126ff565b9150613978836126ff565b92508261398857613987613933565b5b828204905092915050565b600061399e826126ff565b91506139a9836126ff565b9250826139b9576139b8613933565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b6000613a0f826137bf565b613a1981856139f3565b9350613a29818560208601612660565b613a3281612693565b840191505092915050565b6000608082019050613a526000830187612794565b613a5f6020830186612794565b613a6c6040830185612857565b8181036060830152613a7e8184613a04565b905095945050505050565b600081519050613a98816125b5565b92915050565b600060208284031215613ab457613ab361257f565b5b6000613ac284828501613a89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613b3060188361264f565b9150613b3b82613afa565b602082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613b9c601f8361264f565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c2e60228361264f565b9150613c3982613bd2565b604082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cc060228361264f565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613d2c60208361264f565b9150613d3782613cf6565b602082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d98601c8361264f565b9150613da382613d62565b602082019050919050565b60006020820190508181036000830152613dc781613d8b565b9050919050565b6000819050919050565b613de181613dce565b82525050565b613df08161315f565b82525050565b6000608082019050613e0b6000830187613dd8565b613e186020830186613de7565b613e256040830185613dd8565b613e326060830184613dd8565b9594505050505056fea26469706673582212207f20d999ffd4481bf093ad0cf3182595fbebd470a16ae6e511226e852373035664736f6c634300080c0033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c806342842e0e116100ab578063a22cb4651161006f578063a22cb4651461040d578063b88d4fde14610436578063c87b56dd1461045f578063e086e5ec1461049c578063e985e9c5146104b3578063f4f3b200146104f057610135565b806342842e0e146103145780636352211e1461033d57806370a082311461037a5780638da5cb5b146103b757806395d89b41146103e257610135565b806318160ddd116100f257806318160ddd146102315780631e7663bc1461025c5780632016a0d21461029957806323b872dd146102c25780632f237e82146102eb57610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806313af40351461020857610135565b3661013557005b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906125e1565b610519565b60405161016e9190612629565b60405180910390f35b34801561018357600080fd5b5061018c6105fb565b60405161019991906126dd565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612735565b61068d565b6040516101d691906127a3565b60405180910390f35b3480156101eb57600080fd5b50610206600480360381019061020191906127ea565b6106d3565b005b34801561021457600080fd5b5061022f600480360381019061022a919061282a565b6107eb565b005b34801561023d57600080fd5b50610246610919565b6040516102539190612866565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906129b6565b61092f565b6040516102909190612866565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb91906129ff565b610957565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190612a9e565b610b90565b005b3480156102f757600080fd5b50610312600480360381019061030d9190612b92565b610bf0565b005b34801561032057600080fd5b5061033b60048036038101906103369190612a9e565b610d13565b005b34801561034957600080fd5b50610364600480360381019061035f9190612735565b610d33565b60405161037191906127a3565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061282a565b610de5565b6040516103ae9190612866565b60405180910390f35b3480156103c357600080fd5b506103cc610e9d565b6040516103d991906127a3565b60405180910390f35b3480156103ee57600080fd5b506103f7610ec3565b60405161040491906126dd565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190612c65565b610f55565b005b34801561044257600080fd5b5061045d60048036038101906104589190612ca5565b610f6b565b005b34801561046b57600080fd5b5061048660048036038101906104819190612735565b610fcd565b60405161049391906126dd565b60405180910390f35b3480156104a857600080fd5b506104b16110ba565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190612d28565b611199565b6040516104e79190612629565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612da6565b61122d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f457506105f3826113be565b5b9050919050565b60606065805461060a90612e02565b80601f016020809104026020016040519081016040528092919081815260200182805461063690612e02565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b600061069882611428565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106de82610d33565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561074f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074690612ea6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076e611473565b73ffffffffffffffffffffffffffffffffffffffff16148061079d575061079c81610797611473565b611199565b5b6107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390612f38565b60405180910390fd5b6107e6838361147b565b505050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290612fa4565b60405180910390fd5b80609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7660405160405180910390a350565b6000600160975461092a9190612ff3565b905090565b6000609a826040516109419190613063565b9081526020016040518091039020549050919050565b60008060019054906101000a900460ff161590508080156109885750600160008054906101000a900460ff1660ff16105b806109b5575061099730611534565b1580156109b45750600160008054906101000a900460ff1660ff16145b5b6109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb906130ec565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610a31576001600060016101000a81548160ff0219169083151502179055505b610a3b8383611557565b83609860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060976000815480929190610a8f9061310c565b919050555084609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7660405160405180910390a38015610b895760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610b8091906131a7565b60405180910390a15b5050505050565b610ba1610b9b611473565b826115b4565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790613234565b60405180910390fd5b610beb838383611649565b505050565b6000609a84604051610c029190613063565b90815260200160405180910390205414610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c48906132a0565b60405180910390fd5b610c5c8383836118b0565b610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061330c565b60405180910390fd5b81609b600060975481526020019081526020016000209080519060200190610cc49291906124d2565b50609754609a84604051610cd89190613063565b908152602001604051809103902081905550610cf63360975461197b565b60976000815480929190610d099061310c565b9190505550505050565b610d2e83838360405180602001604052806000815250610f6b565b505050565b6000806067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613378565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061340a565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060668054610ed290612e02565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe90612e02565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050905090565b610f67610f60611473565b8383611999565b5050565b610f7c610f76611473565b836115b4565b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613234565b60405180910390fd5b610fc784848484611b06565b50505050565b6060610fd882611b62565b611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613476565b60405180910390fd5b609b6000838152602001908152602001600020805461103590612e02565b80601f016020809104026020016040519081016040528092919081815260200182805461106190612e02565b80156110ae5780601f10611083576101008083540402835291602001916110ae565b820191906000526020600020905b81548152906001019060200180831161109157829003601f168201915b50505050509050919050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190612fa4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611195573d6000803e3d6000fd5b5050565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612fa4565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112f891906127a3565b602060405180830381865afa158015611315573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133991906134ab565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113769291906134d8565b6020604051808303816000875af1158015611395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b99190613516565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61143181611b62565b611470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146790613378565b60405180910390fd5b50565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114ee83610d33565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906135b5565b60405180910390fd5b6115b08282611bce565b5050565b6000806115c083610d33565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160257506116018185611199565b5b8061164057508373ffffffffffffffffffffffffffffffffffffffff166116288461068d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166982610d33565b73ffffffffffffffffffffffffffffffffffffffff16146116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690613647565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611726906136d9565b60405180910390fd5b61173a838383611c4f565b61174560008261147b565b6001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117959190612ff3565b925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ec91906136f9565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118ab838383611c54565b505050565b60008084846040516020016118c692919061374f565b604051602081830303815290604052905060006118e38251611c59565b826040516020016118f5929190613806565b604051602081830303815290604052805190602001209050609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119598583611dba90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b611995828260405180602001604052806000815250611de1565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90613881565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af99190612629565b60405180910390a3505050565b611b11848484611649565b611b1d84848484611e3c565b611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613913565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166067600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600060019054906101000a900460ff16611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c14906135b5565b60405180910390fd5b8160659080519060200190611c339291906124d2565b508060669080519060200190611c4a9291906124d2565b505050565b505050565b505050565b60606000821415611ca1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611db5565b600082905060005b60008214611cd3578080611cbc9061310c565b915050600a82611ccc9190613962565b9150611ca9565b60008167ffffffffffffffff811115611cef57611cee61288b565b5b6040519080825280601f01601f191660200182016040528015611d215781602001600182028036833780820191505090505b5090505b60008514611dae57600182611d3a9190612ff3565b9150600a85611d499190613993565b6030611d5591906136f9565b60f81b818381518110611d6b57611d6a6139c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611da79190613962565b9450611d25565b8093505050505b919050565b6000806000611dc98585611fc4565b91509150611dd681612016565b819250505092915050565b611deb83836121eb565b611df86000848484611e3c565b611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90613913565b60405180910390fd5b505050565b6000611e5d8473ffffffffffffffffffffffffffffffffffffffff16611534565b15611fb7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e86611473565b8786866040518563ffffffff1660e01b8152600401611ea89493929190613a3d565b6020604051808303816000875af1925050508015611ee457506040513d601f19601f82011682018060405250810190611ee19190613a9e565b60015b611f67573d8060008114611f14576040519150601f19603f3d011682016040523d82523d6000602084013e611f19565b606091505b50600081511415611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690613913565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fbc565b600190505b949350505050565b6000806041835114156120065760008060006020860151925060408601519150606086015160001a9050611ffa878285856123c5565b9450945050505061200f565b60006002915091505b9250929050565b6000600481111561202a57612029613acb565b5b81600481111561203d5761203c613acb565b5b1415612048576121e8565b6001600481111561205c5761205b613acb565b5b81600481111561206f5761206e613acb565b5b14156120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790613b46565b60405180910390fd5b600260048111156120c4576120c3613acb565b5b8160048111156120d7576120d6613acb565b5b1415612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90613bb2565b60405180910390fd5b6003600481111561212c5761212b613acb565b5b81600481111561213f5761213e613acb565b5b1415612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790613c44565b60405180910390fd5b60048081111561219357612192613acb565b5b8160048111156121a6576121a5613acb565b5b14156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90613cd6565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613d42565b60405180910390fd5b61226481611b62565b156122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b90613dae565b60405180910390fd5b6122b060008383611c4f565b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230091906136f9565b92505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c160008383611c54565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156124005760006003915091506124c9565b601b8560ff16141580156124185750601c8560ff1614155b1561242a5760006004915091506124c9565b60006001878787876040516000815260200160405260405161244f9493929190613df6565b6020604051602081039080840390855afa158015612471573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c0576000600192509250506124c9565b80600092509250505b94509492505050565b8280546124de90612e02565b90600052602060002090601f0160209004810192826125005760008555612547565b82601f1061251957805160ff1916838001178555612547565b82800160010185558215612547579182015b8281111561254657825182559160200191906001019061252b565b5b5090506125549190612558565b5090565b5b80821115612571576000816000905550600101612559565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125be81612589565b81146125c957600080fd5b50565b6000813590506125db816125b5565b92915050565b6000602082840312156125f7576125f661257f565b5b6000612605848285016125cc565b91505092915050565b60008115159050919050565b6126238161260e565b82525050565b600060208201905061263e600083018461261a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561267e578082015181840152602081019050612663565b8381111561268d576000848401525b50505050565b6000601f19601f8301169050919050565b60006126af82612644565b6126b9818561264f565b93506126c9818560208601612660565b6126d281612693565b840191505092915050565b600060208201905081810360008301526126f781846126a4565b905092915050565b6000819050919050565b612712816126ff565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a61257f565b5b600061275984828501612720565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061278d82612762565b9050919050565b61279d81612782565b82525050565b60006020820190506127b86000830184612794565b92915050565b6127c781612782565b81146127d257600080fd5b50565b6000813590506127e4816127be565b92915050565b600080604083850312156128015761280061257f565b5b600061280f858286016127d5565b925050602061282085828601612720565b9150509250929050565b6000602082840312156128405761283f61257f565b5b600061284e848285016127d5565b91505092915050565b612860816126ff565b82525050565b600060208201905061287b6000830184612857565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128c382612693565b810181811067ffffffffffffffff821117156128e2576128e161288b565b5b80604052505050565b60006128f5612575565b905061290182826128ba565b919050565b600067ffffffffffffffff8211156129215761292061288b565b5b61292a82612693565b9050602081019050919050565b82818337600083830152505050565b600061295961295484612906565b6128eb565b90508281526020810184848401111561297557612974612886565b5b612980848285612937565b509392505050565b600082601f83011261299d5761299c612881565b5b81356129ad848260208601612946565b91505092915050565b6000602082840312156129cc576129cb61257f565b5b600082013567ffffffffffffffff8111156129ea576129e9612584565b5b6129f684828501612988565b91505092915050565b60008060008060808587031215612a1957612a1861257f565b5b6000612a27878288016127d5565b9450506020612a38878288016127d5565b935050604085013567ffffffffffffffff811115612a5957612a58612584565b5b612a6587828801612988565b925050606085013567ffffffffffffffff811115612a8657612a85612584565b5b612a9287828801612988565b91505092959194509250565b600080600060608486031215612ab757612ab661257f565b5b6000612ac5868287016127d5565b9350506020612ad6868287016127d5565b9250506040612ae786828701612720565b9150509250925092565b600067ffffffffffffffff821115612b0c57612b0b61288b565b5b612b1582612693565b9050602081019050919050565b6000612b35612b3084612af1565b6128eb565b905082815260208101848484011115612b5157612b50612886565b5b612b5c848285612937565b509392505050565b600082601f830112612b7957612b78612881565b5b8135612b89848260208601612b22565b91505092915050565b600080600060608486031215612bab57612baa61257f565b5b600084013567ffffffffffffffff811115612bc957612bc8612584565b5b612bd586828701612988565b935050602084013567ffffffffffffffff811115612bf657612bf5612584565b5b612c0286828701612988565b925050604084013567ffffffffffffffff811115612c2357612c22612584565b5b612c2f86828701612b64565b9150509250925092565b612c428161260e565b8114612c4d57600080fd5b50565b600081359050612c5f81612c39565b92915050565b60008060408385031215612c7c57612c7b61257f565b5b6000612c8a858286016127d5565b9250506020612c9b85828601612c50565b9150509250929050565b60008060008060808587031215612cbf57612cbe61257f565b5b6000612ccd878288016127d5565b9450506020612cde878288016127d5565b9350506040612cef87828801612720565b925050606085013567ffffffffffffffff811115612d1057612d0f612584565b5b612d1c87828801612b64565b91505092959194509250565b60008060408385031215612d3f57612d3e61257f565b5b6000612d4d858286016127d5565b9250506020612d5e858286016127d5565b9150509250929050565b6000612d7382612782565b9050919050565b612d8381612d68565b8114612d8e57600080fd5b50565b600081359050612da081612d7a565b92915050565b600060208284031215612dbc57612dbb61257f565b5b6000612dca84828501612d91565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e1a57607f821691505b60208210811415612e2e57612e2d612dd3565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e9060218361264f565b9150612e9b82612e34565b604082019050919050565b60006020820190508181036000830152612ebf81612e83565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f22603e8361264f565b9150612f2d82612ec6565b604082019050919050565b60006020820190508181036000830152612f5181612f15565b9050919050565b7f4f4e4c595f4f574e455200000000000000000000000000000000000000000000600082015250565b6000612f8e600a8361264f565b9150612f9982612f58565b602082019050919050565b60006020820190508181036000830152612fbd81612f81565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ffe826126ff565b9150613009836126ff565b92508282101561301c5761301b612fc4565b5b828203905092915050565b600081905092915050565b600061303d82612644565b6130478185613027565b9350613057818560208601612660565b80840191505092915050565b600061306f8284613032565b915081905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006130d6602e8361264f565b91506130e18261307a565b604082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b6000613117826126ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561314a57613149612fc4565b5b600182019050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600061319161318c61318784613155565b61316c565b61315f565b9050919050565b6131a181613176565b82525050565b60006020820190506131bc6000830184613198565b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061321e602e8361264f565b9150613229826131c2565b604082019050919050565b6000602082019050818103600083015261324d81613211565b9050919050565b7f746f6b656e20686173206265656e206d696e7465640000000000000000000000600082015250565b600061328a60158361264f565b915061329582613254565b602082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006132f660118361264f565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061336260188361264f565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006133f460298361264f565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b600061346060118361264f565b915061346b8261342a565b602082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b6000815190506134a581612709565b92915050565b6000602082840312156134c1576134c061257f565b5b60006134cf84828501613496565b91505092915050565b60006040820190506134ed6000830185612794565b6134fa6020830184612857565b9392505050565b60008151905061351081612c39565b92915050565b60006020828403121561352c5761352b61257f565b5b600061353a84828501613501565b91505092915050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b600061359f602b8361264f565b91506135aa82613543565b604082019050919050565b600060208201905081810360008301526135ce81613592565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061363160258361264f565b915061363c826135d5565b604082019050919050565b6000602082019050818103600083015261366081613624565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c360248361264f565b91506136ce82613667565b604082019050919050565b600060208201905081810360008301526136f2816136b6565b9050919050565b6000613704826126ff565b915061370f836126ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561374457613743612fc4565b5b828201905092915050565b600061375b8285613032565b91506137678284613032565b91508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000600082015250565b60006137a9601a83613027565b91506137b482613773565b601a82019050919050565b600081519050919050565b600081905092915050565b60006137e0826137bf565b6137ea81856137ca565b93506137fa818560208601612660565b80840191505092915050565b60006138118261379c565b915061381d8285613032565b915061382982846137d5565b91508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061386b60198361264f565b915061387682613835565b602082019050919050565b6000602082019050818103600083015261389a8161385e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138fd60328361264f565b9150613908826138a1565b604082019050919050565b6000602082019050818103600083015261392c816138f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061396d826126ff565b9150613978836126ff565b92508261398857613987613933565b5b828204905092915050565b600061399e826126ff565b91506139a9836126ff565b9250826139b9576139b8613933565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b6000613a0f826137bf565b613a1981856139f3565b9350613a29818560208601612660565b613a3281612693565b840191505092915050565b6000608082019050613a526000830187612794565b613a5f6020830186612794565b613a6c6040830185612857565b8181036060830152613a7e8184613a04565b905095945050505050565b600081519050613a98816125b5565b92915050565b600060208284031215613ab457613ab361257f565b5b6000613ac284828501613a89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613b3060188361264f565b9150613b3b82613afa565b602082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613b9c601f8361264f565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c2e60228361264f565b9150613c3982613bd2565b604082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cc060228361264f565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613d2c60208361264f565b9150613d3782613cf6565b602082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d98601c8361264f565b9150613da382613d62565b602082019050919050565b60006020820190508181036000830152613dc781613d8b565b9050919050565b6000819050919050565b613de181613dce565b82525050565b613df08161315f565b82525050565b6000608082019050613e0b6000830187613dd8565b613e186020830186613de7565b613e256040830185613dd8565b613e326060830184613dd8565b9594505050505056fea26469706673582212207f20d999ffd4481bf093ad0cf3182595fbebd470a16ae6e511226e852373035664736f6c634300080c0033

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.