ETH Price: $3,269.54 (+0.68%)
Gas: 2 Gwei

Token

Neo Tokyo Outer Item Caches (NTOITEM)
 

Overview

Max Total Supply

4,367 NTOITEM

Holders

206

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 NTOITEM
0xC948C6900F7A233A221cA9A74d9260A6D3D33aaF
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ciphers decoding.... Preparing bytestream headers [/*|] Memory linked list unpacked. Welcome to the New World.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NTS2Items

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

/*
* Generated by @Thrasher66099
* Email [email protected] for your NFT launch needs
*/

pragma solidity ^0.8.0;

interface IByteContract {
    function burn(address _from, uint256 _amount) external;
}

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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


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

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


/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}



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


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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




/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract NTS2Items is ERC721Enumerable, ReentrancyGuard, Ownable {

    bool itemMintActive;
    address identityContract;
    address itemMint;
    address bytesContract;
    uint256 boughtItemsCount;
    uint256 itemCost = 500 ether;

    bytes32[] _rootHash;

    // Mapping for identity tokenIds that have previously claimed
    mapping(uint256 => uint256) private _identityClaims;

    // Mapping to look up what identity minted a specific token
    mapping(uint256 => uint256) private _tokenMintedByIdentity;

    function setItemMint() external onlyOwner
    {
        itemMintActive = !itemMintActive;
    }

    function getWeapon(uint256 tokenId) public view returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory output;

        NTS2Items dataContract = NTS2Items(itemMint);
        output = dataContract.getWeapon(tokenId);

        return output;
    }

    function getVehicle(uint256 tokenId) external view returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory output;

        NTS2Items dataContract = NTS2Items(itemMint);
        output = dataContract.getVehicle(tokenId);

        return output;
    }
    
    function getApparel(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory output;
        
        NTS2Items dataContract = NTS2Items(itemMint);
        output = dataContract.getApparel(tokenId);

        return output;
    }

    function getHelm(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory output;
        
        NTS2Items dataContract = NTS2Items(itemMint);
        output = dataContract.getHelm(tokenId);

        return output;
    }

    function getTokenClaimedByIdentityTokenId(uint256 identityTokenId) public view returns (uint256) {
        return _identityClaims[identityTokenId];
    }

    function getClaimantIdentityIdByTokenId(uint256 tokenId) public view returns (uint256) {
        return _tokenMintedByIdentity[tokenId];
    }

    function addRootHash(bytes32 _hash) external onlyOwner {
        _rootHash.push(_hash);
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        string memory output;

        NTS2Items dataContract = NTS2Items(itemMint);
        output = dataContract.tokenURI(tokenId);


        return output;
    }

    function identityClaim(uint256 identityTokenId, uint256 spotOnLeaderboard, uint256 spotInWhitelist, bytes32[] memory proof) public nonReentrant {
        require(itemMintActive, "Minting is not currently active");
        require(identityTokenId > 0 && identityTokenId < 4501, "That is not a claimable item");
        require(whitelistValidated(identityTokenId, spotOnLeaderboard, spotInWhitelist, proof), "That identity cannot claim that item");
        require(identityValidated(identityTokenId), "You are not the owner of that identity ");

        _safeMint(_msgSender(), spotOnLeaderboard);

        //Set the identityMinters value to tokenId for this address so the identity cannot mint again
        _identityClaims[identityTokenId] = spotOnLeaderboard;

        //Set the s2 identity that minted this token for reverse lookup
        _tokenMintedByIdentity[spotOnLeaderboard] = identityTokenId;
    }

    function buyItems() public nonReentrant
    {
        require(address(bytesContract) != address(0), "Items cannot be bought yet");
        IByteContract iBytes = IByteContract(bytesContract);
        iBytes.burn(_msgSender(), itemCost);
        _safeMint(_msgSender(), boughtItemsCount + 4501);
        boughtItemsCount++;
    }

    //Used only in cases where the original identity owner does not or cannot claim an item
    function emergencyClaim(uint256 identityId, uint256 tokenId) public onlyOwner {
        require(tokenId > 0 && tokenId < 4501, "Token ID invalid");
        require(!_exists(tokenId), "That token already exists");
        require(_identityClaims[identityId] == 0, "That identity has already claimed");

        _safeMint(owner(), tokenId);
        _identityClaims[identityId] = tokenId;
    }

    function identityValidated(uint256 identityId) internal view returns (bool) {
        require(_identityClaims[identityId] == 0, "This ID has minted");
        ERC721Enumerable identityEnumerable = ERC721Enumerable(identityContract);
        return(identityEnumerable.ownerOf(identityId) == _msgSender());
    }

    function whitelistValidated(uint256 identityTokenId, uint256 leaderboardSpot,uint256 index, bytes32[] memory proof) internal view returns (bool) {

        // Compute the merkle root
        bytes32 node = keccak256(abi.encodePacked(index, identityTokenId, leaderboardSpot));
        uint256 path = index;
        for (uint16 i = 0; i < proof.length; i++) {
            if ((path & 0x01) == 1) {
                node = keccak256(abi.encodePacked(proof[i], node));
            } else {
                node = keccak256(abi.encodePacked(node, proof[i]));
            }
            path /= 2;
        }

        // Check the merkle proof against the root hash array
        for(uint i = 0; i < _rootHash.length; i++)
        {
            if (node == _rootHash[i])
            {
                return true;
            }
        }

        return false;
    }

    function setItemMintActive() public onlyOwner {
        itemMintActive = !itemMintActive;
    }

    function setItemCost(uint256 _cost) public onlyOwner {
        itemCost = _cost;
    }

    function setContract(address contractAddress) public onlyOwner {
        itemMint = contractAddress;
    }

    function setIdentityAddress(address contractAddress) public onlyOwner {
        identityContract = contractAddress;
    }

    function setBytesAddress(address contractAddress) public onlyOwner {
        bytesContract = contractAddress;
    }
    
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
    constructor() ERC721("Neo Tokyo Outer Item Caches", "NTOITEM") Ownable() {
        _rootHash = new bytes32[](3);
        _rootHash[0] = 0x86e4637379cb8024ef5fb0057ff9ac66a1e2cfdea857e885d06300e5d51ae422;
        _rootHash[1] = 0x57565c6c4f4d123ebbd263aec5abc4913540333fe0d0f320668cf61b603c5856;
        _rootHash[2] = 0x98125ab05cdded40d733f4dab397ddee91e0f183528945948fddf816f234d50a;

        bytesContract = 0x7d647b1A0dcD5525e9C6B3D14BE58f27674f8c95;
        identityContract = 0x698FbAACA64944376e2CDC4CAD86eaa91362cF54;
        itemMint = 0xAE3aBff59A0a0EC71c650364F59518D7af74d2eC;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"addRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"identityId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emergencyClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApparel","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getClaimantIdentityIdByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHelm","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"identityTokenId","type":"uint256"}],"name":"getTokenClaimedByIdentityTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getVehicle","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWeapon","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"identityTokenId","type":"uint256"},{"internalType":"uint256","name":"spotOnLeaderboard","type":"uint256"},{"internalType":"uint256","name":"spotInWhitelist","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"identityClaim","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setBytesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setIdentityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setItemCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setItemMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setItemMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052681b1ae4d6e2ef5000006010553480156200001e57600080fd5b50604080518082018252601b81527f4e656f20546f6b796f204f75746572204974656d2043616368657300000000006020808301918252835180850190945260078452664e544f4954454d60c81b908401528151919291620000839160009162000276565b5080516200009990600190602084019062000276565b50506001600a5550620000ac3362000224565b60408051600380825260808201909252906020820160608036833750508151620000de92601192506020019062000305565b507f86e4637379cb8024ef5fb0057ff9ac66a1e2cfdea857e885d06300e5d51ae42260001b60116000815481106200011a576200011a62000396565b90600052602060002001819055507f57565c6c4f4d123ebbd263aec5abc4913540333fe0d0f320668cf61b603c585660001b601160018154811062000163576200016362000396565b90600052602060002001819055507f98125ab05cdded40d733f4dab397ddee91e0f183528945948fddf816f234d50a60001b6011600281548110620001ac57620001ac62000396565b600091825260209091200155600e80546001600160a01b0319908116737d647b1a0dcd5525e9c6b3d14be58f27674f8c9517909155600c8054821673698fbaaca64944376e2cdc4cad86eaa91362cf54179055600d805490911673ae3abff59a0a0ec71c650364f59518d7af74d2ec179055620003ac565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002849062000359565b90600052602060002090601f016020900481019282620002a85760008555620002f3565b82601f10620002c357805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f3578251825591602001919060010190620002d6565b506200030192915062000342565b5090565b828054828255906000526020600020908101928215620002f35791602002820182811115620002f3578251825591602001919060010190620002d6565b5b8082111562000301576000815560010162000343565b600181811c908216806200036e57607f821691505b602082108114156200039057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b61269380620003bc6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd1461046c578063df7ebb7b1461047f578063e434310614610390578063e985e9c514610492578063f2fde38b146104ce57600080fd5b8063a22cb4651461042b578063b88d4fde1461043e578063bba051cc14610451578063c02581911461046457600080fd5b80637aa3fe96116100f45780637aa3fe96146103d957806381d195b4146103ec5780638da5cb5b146103ff57806395d89b41146104105780639e41b73f1461041857600080fd5b806370a0823114610398578063715018a6146103ab57806375f890ab146103b357806377b6dc6f146103c657600080fd5b80632f745c59116101a85780634f6ccce7116101775780634f6ccce7146103375780636352211e1461034a578063672c7ae71461035d57806368241af41461037d5780636ac1aa051461039057600080fd5b80632f745c59146102de57806333724c25146102f15780633f7a03f91461031157806342842e0e1461032457600080fd5b8063140c08a5116101e4578063140c08a51461029357806316beafb6146102a657806318160ddd146102b957806323b872dd146102cb57600080fd5b806301ffc9a71461021657806306fdde031461023e578063081812fc14610253578063095ea7b31461027e575b600080fd5b61022961022436600461214c565b6104e1565b60405190151581526020015b60405180910390f35b61024661050c565b6040516102359190612352565b610266610261366004612133565b61059e565b6040516001600160a01b039091168152602001610235565b61029161028c366004612107565b61062b565b005b6102916102a1366004611f6a565b610741565b6102916102b43660046121fd565b61078d565b6008545b604051908152602001610235565b6102916102d9366004611fe4565b6108f0565b6102bd6102ec366004612107565b610921565b6102bd6102ff366004612133565b60009081526013602052604090205490565b61029161031f366004612133565b6109b7565b610291610332366004611fe4565b6109e6565b6102bd610345366004612133565b610a01565b610266610358366004612133565b610a94565b6102bd61036b366004612133565b60009081526012602052604090205490565b61029161038b366004611f6a565b610b0b565b610291610b57565b6102bd6103a6366004611f6a565b610ba2565b610291610c29565b6102916103c1366004611f6a565b610c5f565b6102466103d4366004612133565b610cab565b6102916103e7366004612133565b610d5e565b6102916103fa36600461221f565b610dbd565b600b546001600160a01b0316610266565b610246610fc4565b610246610426366004612133565b610fd3565b6102916104393660046120d4565b61102e565b61029161044c366004612025565b6110f3565b61024661045f366004612133565b61112b565b610291611186565b61024661047a366004612133565b6112e5565b61024661048d366004612133565b611340565b6102296104a0366004611fab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102916104dc366004611f6a565b61139b565b60006001600160e01b0319821663780e9d6360e01b1480610506575061050682611436565b92915050565b60606000805461051b90612562565b80601f016020809104026020016040519081016040528092919081815260200182805461054790612562565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b60006105a982611486565b61060f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061063682610a94565b9050806001600160a01b0316836001600160a01b031614156106a45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610606565b336001600160a01b03821614806106c057506106c081336104a0565b6107325760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610606565b61073c83836114a3565b505050565b600b546001600160a01b0316331461076b5760405162461bcd60e51b8152600401610606906123b7565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146107b75760405162461bcd60e51b8152600401610606906123b7565b6000811180156107c8575061119581105b6108075760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610606565b61081081611486565b1561085d5760405162461bcd60e51b815260206004820152601960248201527f5468617420746f6b656e20616c726561647920657869737473000000000000006044820152606401610606565b600082815260126020526040902054156108c35760405162461bcd60e51b815260206004820152602160248201527f54686174206964656e746974792068617320616c726561647920636c61696d656044820152601960fa1b6064820152608401610606565b6108de6108d8600b546001600160a01b031690565b82611511565b60009182526012602052604090912055565b6108fa338261152f565b6109165760405162461bcd60e51b81526004016106069061243b565b61073c838383611615565b600061092c83610ba2565b821061098e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610606565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146109e15760405162461bcd60e51b8152600401610606906123b7565b601055565b61073c838383604051806020016040528060008152506110f3565b6000610a0c60085490565b8210610a6f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610606565b60088281548110610a8257610a82612606565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610606565b600b546001600160a01b03163314610b355760405162461bcd60e51b8152600401610606906123b7565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314610b815760405162461bcd60e51b8152600401610606906123b7565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160a01b038216610c0d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610606565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c535760405162461bcd60e51b8152600401610606906123b7565b610c5d60006117c0565b565b600b546001600160a01b03163314610c895760405162461bcd60e51b8152600401610606906123b7565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060610cb682611486565b610cd25760405162461bcd60e51b8152600401610606906123ec565b600d546040516377b6dc6f60e01b8152600481018490526060916001600160a01b03169081906377b6dc6f906024015b60006040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d569190810190612186565b949350505050565b600b546001600160a01b03163314610d885760405162461bcd60e51b8152600401610606906123b7565b601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680155565b6002600a541415610e105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610606565b6002600a55600b54600160a01b900460ff16610e6e5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e67206973206e6f742063757272656e746c7920616374697665006044820152606401610606565b600084118015610e7f575061119584105b610ecb5760405162461bcd60e51b815260206004820152601c60248201527f54686174206973206e6f74206120636c61696d61626c65206974656d000000006044820152606401610606565b610ed784848484611812565b610f2f5760405162461bcd60e51b8152602060048201526024808201527f54686174206964656e746974792063616e6e6f7420636c61696d2074686174206044820152636974656d60e01b6064820152608401610606565b610f3884611988565b610f945760405162461bcd60e51b815260206004820152602760248201527f596f7520617265206e6f7420746865206f776e6572206f662074686174206964604482015266032b73a34ba3c960cd1b6064820152608401610606565b610f9e3384611511565b505060008281526012602090815260408083208490559282526013905220556001600a55565b60606001805461051b90612562565b6060610fde82611486565b610ffa5760405162461bcd60e51b8152600401610606906123ec565b600d54604051639e41b73f60e01b8152600481018490526060916001600160a01b0316908190639e41b73f90602401610d02565b6001600160a01b0382163314156110875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610606565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110fd338361152f565b6111195760405162461bcd60e51b81526004016106069061243b565b61112584848484611a73565b50505050565b606061113682611486565b6111525760405162461bcd60e51b8152600401610606906123ec565b600d54604051632ee8147360e21b8152600481018490526060916001600160a01b031690819063bba051cc90602401610d02565b6002600a5414156111d95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610606565b6002600a55600e546001600160a01b03166112365760405162461bcd60e51b815260206004820152601a60248201527f4974656d732063616e6e6f7420626520626f75676874207965740000000000006044820152606401610606565b600e546001600160a01b031680639dc29fac336010546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561129257600080fd5b505af11580156112a6573d6000803e3d6000fd5b505050506112c86112b43390565b600f546112c3906111956124e5565b611511565b600f80549060006112d8836125bf565b90915550506001600a5550565b60606112f082611486565b61130c5760405162461bcd60e51b8152600401610606906123ec565b600d5460405163c87b56dd60e01b8152600481018490526060916001600160a01b031690819063c87b56dd90602401610d02565b606061134b82611486565b6113675760405162461bcd60e51b8152600401610606906123ec565b600d5460405163df7ebb7b60e01b8152600481018490526060916001600160a01b031690819063df7ebb7b90602401610d02565b600b546001600160a01b031633146113c55760405162461bcd60e51b8152600401610606906123b7565b6001600160a01b03811661142a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610606565b611433816117c0565b50565b60006001600160e01b031982166380ac58cd60e01b148061146757506001600160e01b03198216635b5e139f60e01b145b8061050657506301ffc9a760e01b6001600160e01b0319831614610506565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114d882610a94565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61152b828260405180602001604052806000815250611aa6565b5050565b600061153a82611486565b61159b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610606565b60006115a683610a94565b9050806001600160a01b0316846001600160a01b031614806115e15750836001600160a01b03166115d68461059e565b6001600160a01b0316145b80610d5657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610d56565b826001600160a01b031661162882610a94565b6001600160a01b0316146116905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610606565b6001600160a01b0382166116f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610606565b6116fd838383611ad9565b6117086000826114a3565b6001600160a01b038316600090815260036020526040812080546001929061173190849061251f565b90915550506001600160a01b038216600090815260036020526040812080546001929061175f9084906124e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160208082018590528183018790526060808301879052835180840390910181526080909201909252805191012060009083825b84518161ffff1610156119295781600116600114156118b857848161ffff168151811061187857611878612606565b60200260200101518360405160200161189b929190918252602082015260400190565b60405160208183030381529060405280519060200120925061190a565b82858261ffff16815181106118cf576118cf612606565b60200260200101516040516020016118f1929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b6119156002836124fd565b9150806119218161259d565b915050611849565b5060005b60115481101561197a576011818154811061194a5761194a612606565b90600052602060002001548314156119685760019350505050610d56565b80611972816125bf565b91505061192d565b506000979650505050505050565b600081815260126020526040812054156119d95760405162461bcd60e51b8152602060048201526012602482015271151a1a5cc81251081a185cc81b5a5b9d195960721b6044820152606401610606565b600c546001600160a01b0316336040516331a9108f60e11b8152600481018590526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611a2a57600080fd5b505afa158015611a3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a629190611f8e565b6001600160a01b0316149392505050565b611a7e848484611615565b611a8a84848484611b91565b6111255760405162461bcd60e51b815260040161060690612365565b611ab08383611c9b565b611abd6000848484611b91565b61073c5760405162461bcd60e51b815260040161060690612365565b6001600160a01b038316611b3457611b2f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b57565b816001600160a01b0316836001600160a01b031614611b5757611b578382611dda565b6001600160a01b038216611b6e5761073c81611e77565b826001600160a01b0316826001600160a01b03161461073c5761073c8282611f26565b60006001600160a01b0384163b15611c9357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd5903390899088908890600401612315565b602060405180830381600087803b158015611bef57600080fd5b505af1925050508015611c1f575060408051601f3d908101601f19168201909252611c1c91810190612169565b60015b611c79573d808015611c4d576040519150601f19603f3d011682016040523d82523d6000602084013e611c52565b606091505b508051611c715760405162461bcd60e51b815260040161060690612365565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d56565b506001610d56565b6001600160a01b038216611cf15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610606565b611cfa81611486565b15611d475760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610606565b611d5360008383611ad9565b6001600160a01b0382166000908152600360205260408120805460019290611d7c9084906124e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611de784610ba2565b611df1919061251f565b600083815260076020526040902054909150808214611e44576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e899060019061251f565b60008381526009602052604081205460088054939450909284908110611eb157611eb1612606565b906000526020600020015490508060088381548110611ed257611ed2612606565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f0a57611f0a6125f0565b6001900381819060005260206000200160009055905550505050565b6000611f3183610ba2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600060208284031215611f7c57600080fd5b8135611f8781612632565b9392505050565b600060208284031215611fa057600080fd5b8151611f8781612632565b60008060408385031215611fbe57600080fd5b8235611fc981612632565b91506020830135611fd981612632565b809150509250929050565b600080600060608486031215611ff957600080fd5b833561200481612632565b9250602084013561201481612632565b929592945050506040919091013590565b6000806000806080858703121561203b57600080fd5b843561204681612632565b9350602085013561205681612632565b925060408501359150606085013567ffffffffffffffff81111561207957600080fd5b8501601f8101871361208a57600080fd5b803561209d612098826124bd565b61248c565b8181528860208385010111156120b257600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156120e757600080fd5b82356120f281612632565b915060208301358015158114611fd957600080fd5b6000806040838503121561211a57600080fd5b823561212581612632565b946020939093013593505050565b60006020828403121561214557600080fd5b5035919050565b60006020828403121561215e57600080fd5b8135611f8781612647565b60006020828403121561217b57600080fd5b8151611f8781612647565b60006020828403121561219857600080fd5b815167ffffffffffffffff8111156121af57600080fd5b8201601f810184136121c057600080fd5b80516121ce612098826124bd565b8181528560208385010111156121e357600080fd5b6121f4826020830160208601612536565b95945050505050565b6000806040838503121561221057600080fd5b50508035926020909101359150565b6000806000806080858703121561223557600080fd5b84359350602080860135935060408601359250606086013567ffffffffffffffff8082111561226357600080fd5b818801915088601f83011261227757600080fd5b8135818111156122895761228961261c565b8060051b915061229a84830161248c565b8181528481019084860184860187018d10156122b557600080fd5b600095505b838610156122d85780358352600195909501949186019186016122ba565b50989b979a50959850505050505050565b60008151808452612301816020860160208601612536565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612348908301846122e9565b9695505050505050565b602081526000611f8760208301846122e9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124b5576124b561261c565b604052919050565b600067ffffffffffffffff8211156124d7576124d761261c565b50601f01601f191660200190565b600082198211156124f8576124f86125da565b500190565b60008261251a57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612531576125316125da565b500390565b60005b83811015612551578181015183820152602001612539565b838111156111255750506000910152565b600181811c9082168061257657607f821691505b6020821081141561259757634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156125b5576125b56125da565b6001019392505050565b60006000198214156125d3576125d36125da565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461143357600080fd5b6001600160e01b03198116811461143357600080fdfea26469706673582212204659312d6ab134f5639c7b8399b8ab2c568ae5ec9e32b9959c6820060d814fd764736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd1461046c578063df7ebb7b1461047f578063e434310614610390578063e985e9c514610492578063f2fde38b146104ce57600080fd5b8063a22cb4651461042b578063b88d4fde1461043e578063bba051cc14610451578063c02581911461046457600080fd5b80637aa3fe96116100f45780637aa3fe96146103d957806381d195b4146103ec5780638da5cb5b146103ff57806395d89b41146104105780639e41b73f1461041857600080fd5b806370a0823114610398578063715018a6146103ab57806375f890ab146103b357806377b6dc6f146103c657600080fd5b80632f745c59116101a85780634f6ccce7116101775780634f6ccce7146103375780636352211e1461034a578063672c7ae71461035d57806368241af41461037d5780636ac1aa051461039057600080fd5b80632f745c59146102de57806333724c25146102f15780633f7a03f91461031157806342842e0e1461032457600080fd5b8063140c08a5116101e4578063140c08a51461029357806316beafb6146102a657806318160ddd146102b957806323b872dd146102cb57600080fd5b806301ffc9a71461021657806306fdde031461023e578063081812fc14610253578063095ea7b31461027e575b600080fd5b61022961022436600461214c565b6104e1565b60405190151581526020015b60405180910390f35b61024661050c565b6040516102359190612352565b610266610261366004612133565b61059e565b6040516001600160a01b039091168152602001610235565b61029161028c366004612107565b61062b565b005b6102916102a1366004611f6a565b610741565b6102916102b43660046121fd565b61078d565b6008545b604051908152602001610235565b6102916102d9366004611fe4565b6108f0565b6102bd6102ec366004612107565b610921565b6102bd6102ff366004612133565b60009081526013602052604090205490565b61029161031f366004612133565b6109b7565b610291610332366004611fe4565b6109e6565b6102bd610345366004612133565b610a01565b610266610358366004612133565b610a94565b6102bd61036b366004612133565b60009081526012602052604090205490565b61029161038b366004611f6a565b610b0b565b610291610b57565b6102bd6103a6366004611f6a565b610ba2565b610291610c29565b6102916103c1366004611f6a565b610c5f565b6102466103d4366004612133565b610cab565b6102916103e7366004612133565b610d5e565b6102916103fa36600461221f565b610dbd565b600b546001600160a01b0316610266565b610246610fc4565b610246610426366004612133565b610fd3565b6102916104393660046120d4565b61102e565b61029161044c366004612025565b6110f3565b61024661045f366004612133565b61112b565b610291611186565b61024661047a366004612133565b6112e5565b61024661048d366004612133565b611340565b6102296104a0366004611fab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102916104dc366004611f6a565b61139b565b60006001600160e01b0319821663780e9d6360e01b1480610506575061050682611436565b92915050565b60606000805461051b90612562565b80601f016020809104026020016040519081016040528092919081815260200182805461054790612562565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b60006105a982611486565b61060f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061063682610a94565b9050806001600160a01b0316836001600160a01b031614156106a45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610606565b336001600160a01b03821614806106c057506106c081336104a0565b6107325760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610606565b61073c83836114a3565b505050565b600b546001600160a01b0316331461076b5760405162461bcd60e51b8152600401610606906123b7565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146107b75760405162461bcd60e51b8152600401610606906123b7565b6000811180156107c8575061119581105b6108075760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610606565b61081081611486565b1561085d5760405162461bcd60e51b815260206004820152601960248201527f5468617420746f6b656e20616c726561647920657869737473000000000000006044820152606401610606565b600082815260126020526040902054156108c35760405162461bcd60e51b815260206004820152602160248201527f54686174206964656e746974792068617320616c726561647920636c61696d656044820152601960fa1b6064820152608401610606565b6108de6108d8600b546001600160a01b031690565b82611511565b60009182526012602052604090912055565b6108fa338261152f565b6109165760405162461bcd60e51b81526004016106069061243b565b61073c838383611615565b600061092c83610ba2565b821061098e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610606565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146109e15760405162461bcd60e51b8152600401610606906123b7565b601055565b61073c838383604051806020016040528060008152506110f3565b6000610a0c60085490565b8210610a6f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610606565b60088281548110610a8257610a82612606565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610606565b600b546001600160a01b03163314610b355760405162461bcd60e51b8152600401610606906123b7565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314610b815760405162461bcd60e51b8152600401610606906123b7565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160a01b038216610c0d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610606565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c535760405162461bcd60e51b8152600401610606906123b7565b610c5d60006117c0565b565b600b546001600160a01b03163314610c895760405162461bcd60e51b8152600401610606906123b7565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060610cb682611486565b610cd25760405162461bcd60e51b8152600401610606906123ec565b600d546040516377b6dc6f60e01b8152600481018490526060916001600160a01b03169081906377b6dc6f906024015b60006040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d569190810190612186565b949350505050565b600b546001600160a01b03163314610d885760405162461bcd60e51b8152600401610606906123b7565b601180546001810182556000919091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680155565b6002600a541415610e105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610606565b6002600a55600b54600160a01b900460ff16610e6e5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e67206973206e6f742063757272656e746c7920616374697665006044820152606401610606565b600084118015610e7f575061119584105b610ecb5760405162461bcd60e51b815260206004820152601c60248201527f54686174206973206e6f74206120636c61696d61626c65206974656d000000006044820152606401610606565b610ed784848484611812565b610f2f5760405162461bcd60e51b8152602060048201526024808201527f54686174206964656e746974792063616e6e6f7420636c61696d2074686174206044820152636974656d60e01b6064820152608401610606565b610f3884611988565b610f945760405162461bcd60e51b815260206004820152602760248201527f596f7520617265206e6f7420746865206f776e6572206f662074686174206964604482015266032b73a34ba3c960cd1b6064820152608401610606565b610f9e3384611511565b505060008281526012602090815260408083208490559282526013905220556001600a55565b60606001805461051b90612562565b6060610fde82611486565b610ffa5760405162461bcd60e51b8152600401610606906123ec565b600d54604051639e41b73f60e01b8152600481018490526060916001600160a01b0316908190639e41b73f90602401610d02565b6001600160a01b0382163314156110875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610606565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110fd338361152f565b6111195760405162461bcd60e51b81526004016106069061243b565b61112584848484611a73565b50505050565b606061113682611486565b6111525760405162461bcd60e51b8152600401610606906123ec565b600d54604051632ee8147360e21b8152600481018490526060916001600160a01b031690819063bba051cc90602401610d02565b6002600a5414156111d95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610606565b6002600a55600e546001600160a01b03166112365760405162461bcd60e51b815260206004820152601a60248201527f4974656d732063616e6e6f7420626520626f75676874207965740000000000006044820152606401610606565b600e546001600160a01b031680639dc29fac336010546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561129257600080fd5b505af11580156112a6573d6000803e3d6000fd5b505050506112c86112b43390565b600f546112c3906111956124e5565b611511565b600f80549060006112d8836125bf565b90915550506001600a5550565b60606112f082611486565b61130c5760405162461bcd60e51b8152600401610606906123ec565b600d5460405163c87b56dd60e01b8152600481018490526060916001600160a01b031690819063c87b56dd90602401610d02565b606061134b82611486565b6113675760405162461bcd60e51b8152600401610606906123ec565b600d5460405163df7ebb7b60e01b8152600481018490526060916001600160a01b031690819063df7ebb7b90602401610d02565b600b546001600160a01b031633146113c55760405162461bcd60e51b8152600401610606906123b7565b6001600160a01b03811661142a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610606565b611433816117c0565b50565b60006001600160e01b031982166380ac58cd60e01b148061146757506001600160e01b03198216635b5e139f60e01b145b8061050657506301ffc9a760e01b6001600160e01b0319831614610506565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114d882610a94565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61152b828260405180602001604052806000815250611aa6565b5050565b600061153a82611486565b61159b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610606565b60006115a683610a94565b9050806001600160a01b0316846001600160a01b031614806115e15750836001600160a01b03166115d68461059e565b6001600160a01b0316145b80610d5657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610d56565b826001600160a01b031661162882610a94565b6001600160a01b0316146116905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610606565b6001600160a01b0382166116f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610606565b6116fd838383611ad9565b6117086000826114a3565b6001600160a01b038316600090815260036020526040812080546001929061173190849061251f565b90915550506001600160a01b038216600090815260036020526040812080546001929061175f9084906124e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160208082018590528183018790526060808301879052835180840390910181526080909201909252805191012060009083825b84518161ffff1610156119295781600116600114156118b857848161ffff168151811061187857611878612606565b60200260200101518360405160200161189b929190918252602082015260400190565b60405160208183030381529060405280519060200120925061190a565b82858261ffff16815181106118cf576118cf612606565b60200260200101516040516020016118f1929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b6119156002836124fd565b9150806119218161259d565b915050611849565b5060005b60115481101561197a576011818154811061194a5761194a612606565b90600052602060002001548314156119685760019350505050610d56565b80611972816125bf565b91505061192d565b506000979650505050505050565b600081815260126020526040812054156119d95760405162461bcd60e51b8152602060048201526012602482015271151a1a5cc81251081a185cc81b5a5b9d195960721b6044820152606401610606565b600c546001600160a01b0316336040516331a9108f60e11b8152600481018590526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611a2a57600080fd5b505afa158015611a3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a629190611f8e565b6001600160a01b0316149392505050565b611a7e848484611615565b611a8a84848484611b91565b6111255760405162461bcd60e51b815260040161060690612365565b611ab08383611c9b565b611abd6000848484611b91565b61073c5760405162461bcd60e51b815260040161060690612365565b6001600160a01b038316611b3457611b2f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b57565b816001600160a01b0316836001600160a01b031614611b5757611b578382611dda565b6001600160a01b038216611b6e5761073c81611e77565b826001600160a01b0316826001600160a01b03161461073c5761073c8282611f26565b60006001600160a01b0384163b15611c9357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd5903390899088908890600401612315565b602060405180830381600087803b158015611bef57600080fd5b505af1925050508015611c1f575060408051601f3d908101601f19168201909252611c1c91810190612169565b60015b611c79573d808015611c4d576040519150601f19603f3d011682016040523d82523d6000602084013e611c52565b606091505b508051611c715760405162461bcd60e51b815260040161060690612365565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d56565b506001610d56565b6001600160a01b038216611cf15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610606565b611cfa81611486565b15611d475760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610606565b611d5360008383611ad9565b6001600160a01b0382166000908152600360205260408120805460019290611d7c9084906124e5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611de784610ba2565b611df1919061251f565b600083815260076020526040902054909150808214611e44576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e899060019061251f565b60008381526009602052604081205460088054939450909284908110611eb157611eb1612606565b906000526020600020015490508060088381548110611ed257611ed2612606565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f0a57611f0a6125f0565b6001900381819060005260206000200160009055905550505050565b6000611f3183610ba2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600060208284031215611f7c57600080fd5b8135611f8781612632565b9392505050565b600060208284031215611fa057600080fd5b8151611f8781612632565b60008060408385031215611fbe57600080fd5b8235611fc981612632565b91506020830135611fd981612632565b809150509250929050565b600080600060608486031215611ff957600080fd5b833561200481612632565b9250602084013561201481612632565b929592945050506040919091013590565b6000806000806080858703121561203b57600080fd5b843561204681612632565b9350602085013561205681612632565b925060408501359150606085013567ffffffffffffffff81111561207957600080fd5b8501601f8101871361208a57600080fd5b803561209d612098826124bd565b61248c565b8181528860208385010111156120b257600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156120e757600080fd5b82356120f281612632565b915060208301358015158114611fd957600080fd5b6000806040838503121561211a57600080fd5b823561212581612632565b946020939093013593505050565b60006020828403121561214557600080fd5b5035919050565b60006020828403121561215e57600080fd5b8135611f8781612647565b60006020828403121561217b57600080fd5b8151611f8781612647565b60006020828403121561219857600080fd5b815167ffffffffffffffff8111156121af57600080fd5b8201601f810184136121c057600080fd5b80516121ce612098826124bd565b8181528560208385010111156121e357600080fd5b6121f4826020830160208601612536565b95945050505050565b6000806040838503121561221057600080fd5b50508035926020909101359150565b6000806000806080858703121561223557600080fd5b84359350602080860135935060408601359250606086013567ffffffffffffffff8082111561226357600080fd5b818801915088601f83011261227757600080fd5b8135818111156122895761228961261c565b8060051b915061229a84830161248c565b8181528481019084860184860187018d10156122b557600080fd5b600095505b838610156122d85780358352600195909501949186019186016122ba565b50989b979a50959850505050505050565b60008151808452612301816020860160208601612536565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612348908301846122e9565b9695505050505050565b602081526000611f8760208301846122e9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156124b5576124b561261c565b604052919050565b600067ffffffffffffffff8211156124d7576124d761261c565b50601f01601f191660200190565b600082198211156124f8576124f86125da565b500190565b60008261251a57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612531576125316125da565b500390565b60005b83811015612551578181015183820152602001612539565b838111156111255750506000910152565b600181811c9082168061257657607f821691505b6020821081141561259757634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156125b5576125b56125da565b6001019392505050565b60006000198214156125d3576125d36125da565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461143357600080fd5b6001600160e01b03198116811461143357600080fdfea26469706673582212204659312d6ab134f5639c7b8399b8ab2c568ae5ec9e32b9959c6820060d814fd764736f6c63430008060033

Deployed Bytecode Sourcemap

44567:7710:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38419:224;;;;;;:::i;:::-;;:::i;:::-;;;8048:14:1;;8041:22;8023:41;;8011:2;7996:18;38419:224:0;;;;;;;;25541:100;;;:::i;:::-;;;;;;;:::i;27100:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7067:32:1;;;7049:51;;7037:2;7022:18;27100:221:0;7004:102:1;26623:411:0;;;;;;:::i;:::-;;:::i;:::-;;50809:117;;;;;;:::i;:::-;;:::i;48744:398::-;;;;;;:::i;:::-;;:::i;39059:113::-;39147:10;:17;39059:113;;;19345:25:1;;;19333:2;19318:18;39059:113:0;19300:76:1;27990:339:0;;;;;;:::i;:::-;;:::i;38727:256::-;;;;;;:::i;:::-;;:::i;46765:144::-;;;;;;:::i;:::-;46843:7;46870:31;;;:22;:31;;;;;;;46765:144;50466:88;;;;;;:::i;:::-;;:::i;28400:185::-;;;;;;:::i;:::-;;:::i;39249:233::-;;;;;;:::i;:::-;;:::i;25235:239::-;;;;;;:::i;:::-;;:::i;46602:155::-;;;;;;:::i;:::-;46690:7;46717:32;;;:15;:32;;;;;;;46602:155;50678:123;;;;;;:::i;:::-;;:::i;50361:97::-;;;:::i;24965:208::-;;;;;;:::i;:::-;;:::i;9987:94::-;;;:::i;50562:108::-;;;;;;:::i;:::-;;:::i;45908:342::-;;;;;;:::i;:::-;;:::i;46917:95::-;;;;;;:::i;:::-;;:::i;47379:921::-;;;;;;:::i;:::-;;:::i;9336:87::-;9409:6;;-1:-1:-1;;;;;9409:6:0;9336:87;;25710:104;;;:::i;45210:337::-;;;;;;:::i;:::-;;:::i;27393:295::-;;;;;;:::i;:::-;;:::i;28656:328::-;;;;;;:::i;:::-;;:::i;46258:336::-;;;;;;:::i;:::-;;:::i;48308:335::-;;;:::i;47020:351::-;;;;;;:::i;:::-;;:::i;45555:341::-;;;;;;:::i;:::-;;:::i;27759:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27880:25:0;;;27856:4;27880:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27759:164;10236:192;;;;;;:::i;:::-;;:::i;38419:224::-;38521:4;-1:-1:-1;;;;;;38545:50:0;;-1:-1:-1;;;38545:50:0;;:90;;;38599:36;38623:11;38599:23;:36::i;:::-;38538:97;38419:224;-1:-1:-1;;38419:224:0:o;25541:100::-;25595:13;25628:5;25621:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25541:100;:::o;27100:221::-;27176:7;27204:16;27212:7;27204;:16::i;:::-;27196:73;;;;-1:-1:-1;;;27196:73:0;;14701:2:1;27196:73:0;;;14683:21:1;14740:2;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;-1:-1:-1;;;14830:18:1;;;14823:42;14882:19;;27196:73:0;;;;;;;;;-1:-1:-1;27289:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27289:24:0;;27100:221::o;26623:411::-;26704:13;26720:23;26735:7;26720:14;:23::i;:::-;26704:39;;26768:5;-1:-1:-1;;;;;26762:11:0;:2;-1:-1:-1;;;;;26762:11:0;;;26754:57;;;;-1:-1:-1;;;26754:57:0;;17048:2:1;26754:57:0;;;17030:21:1;17087:2;17067:18;;;17060:30;17126:34;17106:18;;;17099:62;-1:-1:-1;;;17177:18:1;;;17170:31;17218:19;;26754:57:0;17020:223:1;26754:57:0;8290:10;-1:-1:-1;;;;;26846:21:0;;;;:62;;-1:-1:-1;26871:37:0;26888:5;8290:10;27759:164;:::i;26871:37::-;26824:168;;;;-1:-1:-1;;;26824:168:0;;12686:2:1;26824:168:0;;;12668:21:1;12725:2;12705:18;;;12698:30;12764:34;12744:18;;;12737:62;12835:26;12815:18;;;12808:54;12879:19;;26824:168:0;12658:246:1;26824:168:0;27005:21;27014:2;27018:7;27005:8;:21::i;:::-;26693:341;26623:411;;:::o;50809:117::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;50887:13:::1;:31:::0;;-1:-1:-1;;;;;;50887:31:0::1;-1:-1:-1::0;;;;;50887:31:0;;;::::1;::::0;;;::::1;::::0;;50809:117::o;48744:398::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;48851:1:::1;48841:7;:11;:29;;;;;48866:4;48856:7;:14;48841:29;48833:58;;;::::0;-1:-1:-1;;;48833:58:0;;15877:2:1;48833:58:0::1;::::0;::::1;15859:21:1::0;15916:2;15896:18;;;15889:30;-1:-1:-1;;;15935:18:1;;;15928:46;15991:18;;48833:58:0::1;15849:166:1::0;48833:58:0::1;48911:16;48919:7;48911;:16::i;:::-;48910:17;48902:55;;;::::0;-1:-1:-1;;;48902:55:0;;11160:2:1;48902:55:0::1;::::0;::::1;11142:21:1::0;11199:2;11179:18;;;11172:30;11238:27;11218:18;;;11211:55;11283:18;;48902:55:0::1;11132:175:1::0;48902:55:0::1;48976:27;::::0;;;:15:::1;:27;::::0;;;;;:32;48968:78:::1;;;::::0;-1:-1:-1;;;48968:78:0;;15114:2:1;48968:78:0::1;::::0;::::1;15096:21:1::0;15153:2;15133:18;;;15126:30;15192:34;15172:18;;;15165:62;-1:-1:-1;;;15243:18:1;;;15236:31;15284:19;;48968:78:0::1;15086:223:1::0;48968:78:0::1;49059:27;49069:7;9409:6:::0;;-1:-1:-1;;;;;9409:6:0;;9336:87;49069:7:::1;49078;49059:9;:27::i;:::-;49097;::::0;;;:15:::1;:27;::::0;;;;;:37;48744:398::o;27990:339::-;28185:41;8290:10;28218:7;28185:18;:41::i;:::-;28177:103;;;;-1:-1:-1;;;28177:103:0;;;;;;;:::i;:::-;28293:28;28303:4;28309:2;28313:7;28293:9;:28::i;38727:256::-;38824:7;38860:23;38877:5;38860:16;:23::i;:::-;38852:5;:31;38844:87;;;;-1:-1:-1;;;38844:87:0;;9218:2:1;38844:87:0;;;9200:21:1;9257:2;9237:18;;;9230:30;9296:34;9276:18;;;9269:62;-1:-1:-1;;;9347:18:1;;;9340:41;9398:19;;38844:87:0;9190:233:1;38844:87:0;-1:-1:-1;;;;;;38949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38727:256::o;50466:88::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;50530:8:::1;:16:::0;50466:88::o;28400:185::-;28538:39;28555:4;28561:2;28565:7;28538:39;;;;;;;;;;;;:16;:39::i;39249:233::-;39324:7;39360:30;39147:10;:17;;39059:113;39360:30;39352:5;:38;39344:95;;;;-1:-1:-1;;;39344:95:0;;18223:2:1;39344:95:0;;;18205:21:1;18262:2;18242:18;;;18235:30;18301:34;18281:18;;;18274:62;-1:-1:-1;;;18352:18:1;;;18345:42;18404:19;;39344:95:0;18195:234:1;39344:95:0;39457:10;39468:5;39457:17;;;;;;;;:::i;:::-;;;;;;;;;39450:24;;39249:233;;;:::o;25235:239::-;25307:7;25343:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25343:16:0;25378:19;25370:73;;;;-1:-1:-1;;;25370:73:0;;13522:2:1;25370:73:0;;;13504:21:1;13561:2;13541:18;;;13534:30;13600:34;13580:18;;;13573:62;-1:-1:-1;;;13651:18:1;;;13644:39;13700:19;;25370:73:0;13494:231:1;50678:123:0;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;50759:16:::1;:34:::0;;-1:-1:-1;;;;;;50759:34:0::1;-1:-1:-1::0;;;;;50759:34:0;;;::::1;::::0;;;::::1;::::0;;50678:123::o;50361:97::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;50436:14:::1;::::0;;-1:-1:-1;;;;50418:32:0;::::1;-1:-1:-1::0;;;50436:14:0;;;::::1;;;50435:15;50418:32:::0;;::::1;;::::0;;50361:97::o;24965:208::-;25037:7;-1:-1:-1;;;;;25065:19:0;;25057:74;;;;-1:-1:-1;;;25057:74:0;;13111:2:1;25057:74:0;;;13093:21:1;13150:2;13130:18;;;13123:30;13189:34;13169:18;;;13162:62;-1:-1:-1;;;13240:18:1;;;13233:40;13290:19;;25057:74:0;13083:232:1;25057:74:0;-1:-1:-1;;;;;;25149:16:0;;;;;:9;:16;;;;;;;24965:208::o;9987:94::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;10052:21:::1;10070:1;10052:9;:21::i;:::-;9987:94::o:0;50562:108::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;50636:8:::1;:26:::0;;-1:-1:-1;;;;;;50636:26:0::1;-1:-1:-1::0;;;;;50636:26:0;;;::::1;::::0;;;::::1;::::0;;50562:108::o;45908:342::-;45966:13;46000:16;46008:7;46000;:16::i;:::-;45992:76;;;;-1:-1:-1;;;45992:76:0;;;;;;;:::i;:::-;46155:8;;46184:32;;-1:-1:-1;;;46184:32:0;;;;;19345:25:1;;;46079:20:0;;-1:-1:-1;;;;;46155:8:0;;;;46184:23;;19318:18:1;;46184:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46184:32:0;;;;;;;;;;;;:::i;:::-;46175:41;45908:342;-1:-1:-1;;;;45908:342:0:o;46917:95::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;46983:9:::1;:21:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;46983:21:0;;;;;::::1;::::0;46917:95::o;47379:921::-;12269:1;12865:7;;:19;;12857:63;;;;-1:-1:-1;;;12857:63:0;;18636:2:1;12857:63:0;;;18618:21:1;18675:2;18655:18;;;18648:30;18714:33;18694:18;;;18687:61;18765:18;;12857:63:0;18608:181:1;12857:63:0;12269:1;12998:7;:18;47542:14:::1;::::0;-1:-1:-1;;;47542:14:0;::::1;;;47534:58;;;::::0;-1:-1:-1;;;47534:58:0;;8858:2:1;47534:58:0::1;::::0;::::1;8840:21:1::0;8897:2;8877:18;;;8870:30;8936:33;8916:18;;;8909:61;8987:18;;47534:58:0::1;8830:181:1::0;47534:58:0::1;47629:1;47611:15;:19;:45;;;;;47652:4;47634:15;:22;47611:45;47603:86;;;::::0;-1:-1:-1;;;47603:86:0;;8501:2:1;47603:86:0::1;::::0;::::1;8483:21:1::0;8540:2;8520:18;;;8513:30;8579;8559:18;;;8552:58;8627:18;;47603:86:0::1;8473:178:1::0;47603:86:0::1;47708:78;47727:15;47744:17;47763:15;47780:5;47708:18;:78::i;:::-;47700:127;;;::::0;-1:-1:-1;;;47700:127:0;;18996:2:1;47700:127:0::1;::::0;::::1;18978:21:1::0;19035:2;19015:18;;;19008:30;19074:34;19054:18;;;19047:62;-1:-1:-1;;;19125:18:1;;;19118:34;19169:19;;47700:127:0::1;18968:226:1::0;47700:127:0::1;47846:34;47864:15;47846:17;:34::i;:::-;47838:86;;;::::0;-1:-1:-1;;;47838:86:0;;13932:2:1;47838:86:0::1;::::0;::::1;13914:21:1::0;13971:2;13951:18;;;13944:30;14010:34;13990:18;;;13983:62;-1:-1:-1;;;14061:18:1;;;14054:37;14108:19;;47838:86:0::1;13904:229:1::0;47838:86:0::1;47937:42;8290:10:::0;47961:17:::1;47937:9;:42::i;:::-;-1:-1:-1::0;;48095:32:0::1;::::0;;;:15:::1;:32;::::0;;;;;;;:52;;;48233:41;;;:22:::1;:41:::0;;;:59;12225:1;13177:7;:22;47379:921::o;25710:104::-;25766:13;25799:7;25792:14;;;;;:::i;45210:337::-;45267:13;45306:16;45314:7;45306;:16::i;:::-;45298:76;;;;-1:-1:-1;;;45298:76:0;;;;;;;:::i;:::-;45453:8;;45482:31;;-1:-1:-1;;;45482:31:0;;;;;19345:25:1;;;45385:20:0;;-1:-1:-1;;;;;45453:8:0;;;;45482:22;;19318:18:1;;45482:31:0;19300:76:1;27393:295:0;-1:-1:-1;;;;;27496:24:0;;8290:10;27496:24;;27488:62;;;;-1:-1:-1;;;27488:62:0;;11919:2:1;27488:62:0;;;11901:21:1;11958:2;11938:18;;;11931:30;11997:27;11977:18;;;11970:55;12042:18;;27488:62:0;11891:175:1;27488:62:0;8290:10;27563:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27563:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27563:53:0;;;;;;;;;;27632:48;;8023:41:1;;;27563:42:0;;8290:10;27632:48;;7996:18:1;27632:48:0;;;;;;;27393:295;;:::o;28656:328::-;28831:41;8290:10;28864:7;28831:18;:41::i;:::-;28823:103;;;;-1:-1:-1;;;28823:103:0;;;;;;;:::i;:::-;28937:39;28951:4;28957:2;28961:7;28970:5;28937:13;:39::i;:::-;28656:328;;;;:::o;46258:336::-;46313:13;46347:16;46355:7;46347;:16::i;:::-;46339:76;;;;-1:-1:-1;;;46339:76:0;;;;;;;:::i;:::-;46502:8;;46531:29;;-1:-1:-1;;;46531:29:0;;;;;19345:25:1;;;46426:20:0;;-1:-1:-1;;;;;46502:8:0;;;;46531:20;;19318:18:1;;46531:29:0;19300:76:1;48308:335:0;12269:1;12865:7;;:19;;12857:63;;;;-1:-1:-1;;;12857:63:0;;18636:2:1;12857:63:0;;;18618:21:1;18675:2;18655:18;;;18648:30;18714:33;18694:18;;;18687:61;18765:18;;12857:63:0;18608:181:1;12857:63:0;12269:1;12998:7;:18;48380:13:::1;::::0;-1:-1:-1;;;;;48380:13:0::1;48364:75;;;::::0;-1:-1:-1;;;48364:75:0;;17868:2:1;48364:75:0::1;::::0;::::1;17850:21:1::0;17907:2;17887:18;;;17880:30;17946:28;17926:18;;;17919:56;17992:18;;48364:75:0::1;17840:176:1::0;48364:75:0::1;48487:13;::::0;-1:-1:-1;;;;;48487:13:0::1;::::0;48512:11:::1;8290:10:::0;48538:8:::1;::::0;48512:35:::1;::::0;-1:-1:-1;;;;;;48512:35:0::1;::::0;;;;;;-1:-1:-1;;;;;7796:32:1;;;48512:35:0::1;::::0;::::1;7778:51:1::0;7845:18;;;7838:34;7751:18;;48512:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48558:48;48568:12;8290:10:::0;;8210:98;48568:12:::1;48582:16;::::0;:23:::1;::::0;48601:4:::1;48582:23;:::i;:::-;48558:9;:48::i;:::-;48617:16;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;12225:1:0;13177:7;:22;-1:-1:-1;48308:335:0:o;47020:351::-;47085:13;47119:16;47127:7;47119;:16::i;:::-;47111:76;;;;-1:-1:-1;;;47111:76:0;;;;;;;:::i;:::-;47276:8;;47305:30;;-1:-1:-1;;;47305:30:0;;;;;19345:25:1;;;47208:20:0;;-1:-1:-1;;;;;47276:8:0;;;;47305:21;;19318:18:1;;47305:30:0;19300:76:1;45555:341:0;45615:13;45654:16;45662:7;45654;:16::i;:::-;45646:76;;;;-1:-1:-1;;;45646:76:0;;;;;;;:::i;:::-;45801:8;;45830:32;;-1:-1:-1;;;45830:32:0;;;;;19345:25:1;;;45733:20:0;;-1:-1:-1;;;;;45801:8:0;;;;45830:23;;19318:18:1;;45830:32:0;19300:76:1;10236:192:0;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10325:22:0;::::1;10317:73;;;::::0;-1:-1:-1;;;10317:73:0;;10396:2:1;10317:73:0::1;::::0;::::1;10378:21:1::0;10435:2;10415:18;;;10408:30;10474:34;10454:18;;;10447:62;-1:-1:-1;;;10525:18:1;;;10518:36;10571:19;;10317:73:0::1;10368:228:1::0;10317:73:0::1;10401:19;10411:8;10401:9;:19::i;:::-;10236:192:::0;:::o;24596:305::-;24698:4;-1:-1:-1;;;;;;24735:40:0;;-1:-1:-1;;;24735:40:0;;:105;;-1:-1:-1;;;;;;;24792:48:0;;-1:-1:-1;;;24792:48:0;24735:105;:158;;;-1:-1:-1;;;;;;;;;;23312:40:0;;;24857:36;23203:157;30494:127;30559:4;30583:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30583:16:0;:30;;;30494:127::o;34476:174::-;34551:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34551:29:0;-1:-1:-1;;;;;34551:29:0;;;;;;;;:24;;34605:23;34551:24;34605:14;:23::i;:::-;-1:-1:-1;;;;;34596:46:0;;;;;;;;;;;34476:174;;:::o;31478:110::-;31554:26;31564:2;31568:7;31554:26;;;;;;;;;;;;:9;:26::i;:::-;31478:110;;:::o;30788:348::-;30881:4;30906:16;30914:7;30906;:16::i;:::-;30898:73;;;;-1:-1:-1;;;30898:73:0;;12273:2:1;30898:73:0;;;12255:21:1;12312:2;12292:18;;;12285:30;12351:34;12331:18;;;12324:62;-1:-1:-1;;;12402:18:1;;;12395:42;12454:19;;30898:73:0;12245:234:1;30898:73:0;30982:13;30998:23;31013:7;30998:14;:23::i;:::-;30982:39;;31051:5;-1:-1:-1;;;;;31040:16:0;:7;-1:-1:-1;;;;;31040:16:0;;:51;;;;31084:7;-1:-1:-1;;;;;31060:31:0;:20;31072:7;31060:11;:20::i;:::-;-1:-1:-1;;;;;31060:31:0;;31040:51;:87;;;-1:-1:-1;;;;;;27880:25:0;;;27856:4;27880:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31095:32;27759:164;33780:578;33939:4;-1:-1:-1;;;;;33912:31:0;:23;33927:7;33912:14;:23::i;:::-;-1:-1:-1;;;;;33912:31:0;;33904:85;;;;-1:-1:-1;;;33904:85:0;;16222:2:1;33904:85:0;;;16204:21:1;16261:2;16241:18;;;16234:30;16300:34;16280:18;;;16273:62;-1:-1:-1;;;16351:18:1;;;16344:39;16400:19;;33904:85:0;16194:231:1;33904:85:0;-1:-1:-1;;;;;34008:16:0;;34000:65;;;;-1:-1:-1;;;34000:65:0;;11514:2:1;34000:65:0;;;11496:21:1;11553:2;11533:18;;;11526:30;11592:34;11572:18;;;11565:62;-1:-1:-1;;;11643:18:1;;;11636:34;11687:19;;34000:65:0;11486:226:1;34000:65:0;34078:39;34099:4;34105:2;34109:7;34078:20;:39::i;:::-;34182:29;34199:1;34203:7;34182:8;:29::i;:::-;-1:-1:-1;;;;;34224:15:0;;;;;;:9;:15;;;;;:20;;34243:1;;34224:15;:20;;34243:1;;34224:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34255:13:0;;;;;;:9;:13;;;;;:18;;34272:1;;34255:13;:18;;34272:1;;34255:18;:::i;:::-;;;;-1:-1:-1;;34284:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34284:21:0;-1:-1:-1;;;;;34284:21:0;;;;;;;;;34323:27;;34284:16;;34323:27;;;;;;;33780:578;;;:::o;10436:173::-;10511:6;;;-1:-1:-1;;;;;10528:17:0;;;-1:-1:-1;;;;;;10528:17:0;;;;;;;10561:40;;10511:6;;;10528:17;10511:6;;10561:40;;10492:16;;10561:40;10481:128;10436:173;:::o;49472:881::-;49691:57;;;;;;;6771:19:1;;;6806:12;;;6799:28;;;6843:12;;;;6836:28;;;49691:57:0;;;;;;;;;;6880:12:1;;;;49691:57:0;;;49681:68;;;;;-1:-1:-1;;6771:19:1;-1:-1:-1;49791:292:0;49814:5;:12;49810:1;:16;;;49791:292;;;49853:4;49860;49853:11;49869:1;49852:18;49848:200;;;49925:5;49931:1;49925:8;;;;;;;;;;:::i;:::-;;;;;;;49935:4;49908:32;;;;;;;;6491:19:1;;;6535:2;6526:12;;6519:28;6572:2;6563:12;;6481:100;49908:32:0;;;;;;;;;;;;;49898:43;;;;;;49891:50;;49848:200;;;50016:4;50022:5;50028:1;50022:8;;;;;;;;;;:::i;:::-;;;;;;;49999:32;;;;;;;;6491:19:1;;;6535:2;6526:12;;6519:28;6572:2;6563:12;;6481:100;49999:32:0;;;;;;;;;;;;;49989:43;;;;;;49982:50;;49848:200;50062:9;50070:1;50062:9;;:::i;:::-;;-1:-1:-1;49828:3:0;;;;:::i;:::-;;;;49791:292;;;;50162:6;50158:163;50178:9;:16;50174:20;;50158:163;;;50237:9;50247:1;50237:12;;;;;;;;:::i;:::-;;;;;;;;;50229:4;:20;50225:85;;;50290:4;50283:11;;;;;;;50225:85;50196:3;;;;:::i;:::-;;;;50158:163;;;-1:-1:-1;50340:5:0;;49472:881;-1:-1:-1;;;;;;;49472:881:0:o;49150:314::-;49220:4;49245:27;;;:15;:27;;;;;;:32;49237:63;;;;-1:-1:-1;;;49237:63:0;;10049:2:1;49237:63:0;;;10031:21:1;10088:2;10068:18;;;10061:30;-1:-1:-1;;;10107:18:1;;;10100:48;10165:18;;49237:63:0;10021:168:1;49237:63:0;49366:16;;-1:-1:-1;;;;;49366:16:0;8290:10;49401:38;;-1:-1:-1;;;49401:38:0;;;;;19345:25:1;;;-1:-1:-1;;;;;49401:54:0;;;;:26;;;;;19318:18:1;;49401:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49401:54:0;;;49150:314;-1:-1:-1;;;49150:314:0:o;29866:315::-;30023:28;30033:4;30039:2;30043:7;30023:9;:28::i;:::-;30070:48;30093:4;30099:2;30103:7;30112:5;30070:22;:48::i;:::-;30062:111;;;;-1:-1:-1;;;30062:111:0;;;;;;;:::i;31815:321::-;31945:18;31951:2;31955:7;31945:5;:18::i;:::-;31996:54;32027:1;32031:2;32035:7;32044:5;31996:22;:54::i;:::-;31974:154;;;;-1:-1:-1;;;31974:154:0;;;;;;;:::i;40095:589::-;-1:-1:-1;;;;;40301:18:0;;40297:187;;40336:40;40368:7;41511:10;:17;;41484:24;;;;:15;:24;;;;;:44;;;41539:24;;;;;;;;;;;;41407:164;40336:40;40297:187;;;40406:2;-1:-1:-1;;;;;40398:10:0;:4;-1:-1:-1;;;;;40398:10:0;;40394:90;;40425:47;40458:4;40464:7;40425:32;:47::i;:::-;-1:-1:-1;;;;;40498:16:0;;40494:183;;40531:45;40568:7;40531:36;:45::i;40494:183::-;40604:4;-1:-1:-1;;;;;40598:10:0;:2;-1:-1:-1;;;;;40598:10:0;;40594:83;;40625:40;40653:2;40657:7;40625:27;:40::i;35215:803::-;35370:4;-1:-1:-1;;;;;35391:13:0;;15708:20;15756:8;35387:624;;35427:72;;-1:-1:-1;;;35427:72:0;;-1:-1:-1;;;;;35427:36:0;;;;;:72;;8290:10;;35478:4;;35484:7;;35493:5;;35427:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35427:72:0;;;;;;;;-1:-1:-1;;35427:72:0;;;;;;;;;;;;:::i;:::-;;;35423:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35673:13:0;;35669:272;;35716:60;;-1:-1:-1;;;35716:60:0;;;;;;;:::i;35669:272::-;35891:6;35885:13;35876:6;35872:2;35868:15;35861:38;35423:533;-1:-1:-1;;;;;;35550:55:0;-1:-1:-1;;;35550:55:0;;-1:-1:-1;35543:62:0;;35387:624;-1:-1:-1;35995:4:0;35988:11;;32472:382;-1:-1:-1;;;;;32552:16:0;;32544:61;;;;-1:-1:-1;;;32544:61:0;;14340:2:1;32544:61:0;;;14322:21:1;;;14359:18;;;14352:30;14418:34;14398:18;;;14391:62;14470:18;;32544:61:0;14312:182:1;32544:61:0;32625:16;32633:7;32625;:16::i;:::-;32624:17;32616:58;;;;-1:-1:-1;;;32616:58:0;;10803:2:1;32616:58:0;;;10785:21:1;10842:2;10822:18;;;10815:30;10881;10861:18;;;10854:58;10929:18;;32616:58:0;10775:178:1;32616:58:0;32687:45;32716:1;32720:2;32724:7;32687:20;:45::i;:::-;-1:-1:-1;;;;;32745:13:0;;;;;;:9;:13;;;;;:18;;32762:1;;32745:13;:18;;32762:1;;32745:18;:::i;:::-;;;;-1:-1:-1;;32774:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32774:21:0;-1:-1:-1;;;;;32774:21:0;;;;;;;;32813:33;;32774:16;;;32813:33;;32774:16;;32813:33;32472:382;;:::o;42198:988::-;42464:22;42514:1;42489:22;42506:4;42489:16;:22::i;:::-;:26;;;;:::i;:::-;42526:18;42547:26;;;:17;:26;;;;;;42464:51;;-1:-1:-1;42680:28:0;;;42676:328;;-1:-1:-1;;;;;42747:18:0;;42725:19;42747:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42798:30;;;;;;:44;;;42915:30;;:17;:30;;;;;:43;;;42676:328;-1:-1:-1;43100:26:0;;;;:17;:26;;;;;;;;43093:33;;;-1:-1:-1;;;;;43144:18:0;;;;;:12;:18;;;;;:34;;;;;;;43137:41;42198:988::o;43481:1079::-;43759:10;:17;43734:22;;43759:21;;43779:1;;43759:21;:::i;:::-;43791:18;43812:24;;;:15;:24;;;;;;44185:10;:26;;43734:46;;-1:-1:-1;43812:24:0;;43734:46;;44185:26;;;;;;:::i;:::-;;;;;;;;;44163:48;;44249:11;44224:10;44235;44224:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44329:28;;;:15;:28;;;;;;;:41;;;44501:24;;;;;44494:31;44536:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43552:1008;;;43481:1079;:::o;40985:221::-;41070:14;41087:20;41104:2;41087:16;:20::i;:::-;-1:-1:-1;;;;;41118:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41163:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40985:221:0:o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;84:177;-1:-1:-1;;;84:177:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:2;;;405:1;402;395:12;357:2;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:2;;;667:1;664;657:12;619:2;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;609:301;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:2;;;1077:1;1074;1067:12;1029:2;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;1019:352;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;1019:352::o;1376:1016::-;1471:6;1479;1487;1495;1548:3;1536:9;1527:7;1523:23;1519:33;1516:2;;;1565:1;1562;1555:12;1516:2;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1730:2:1;1715:18;;1702:32;1743:33;1702:32;1743:33;:::i;:::-;1795:7;-1:-1:-1;1849:2:1;1834:18;;1821:32;;-1:-1:-1;1904:2:1;1889:18;;1876:32;1931:18;1920:30;;1917:2;;;1963:1;1960;1953:12;1917:2;1986:22;;2039:4;2031:13;;2027:27;-1:-1:-1;2017:2:1;;2068:1;2065;2058:12;2017:2;2104;2091:16;2129:48;2145:31;2173:2;2145:31;:::i;:::-;2129:48;:::i;:::-;2200:2;2193:5;2186:17;2240:7;2235:2;2230;2226;2222:11;2218:20;2215:33;2212:2;;;2261:1;2258;2251:12;2212:2;2316;2311;2307;2303:11;2298:2;2291:5;2287:14;2274:45;2360:1;2355:2;2350;2343:5;2339:14;2335:23;2328:34;2381:5;2371:15;;;;;1506:886;;;;;;;:::o;2397:416::-;2462:6;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:2;;;2539:1;2536;2529:12;2491:2;2578:9;2565:23;2597:31;2622:5;2597:31;:::i;:::-;2647:5;-1:-1:-1;2704:2:1;2689:18;;2676:32;2746:15;;2739:23;2727:36;;2717:2;;2777:1;2774;2767:12;2818:315;2886:6;2894;2947:2;2935:9;2926:7;2922:23;2918:32;2915:2;;;2963:1;2960;2953:12;2915:2;3002:9;2989:23;3021:31;3046:5;3021:31;:::i;:::-;3071:5;3123:2;3108:18;;;;3095:32;;-1:-1:-1;;;2905:228:1:o;3138:180::-;3197:6;3250:2;3238:9;3229:7;3225:23;3221:32;3218:2;;;3266:1;3263;3256:12;3218:2;-1:-1:-1;3289:23:1;;3208:110;-1:-1:-1;3208:110:1:o;3323:245::-;3381:6;3434:2;3422:9;3413:7;3409:23;3405:32;3402:2;;;3450:1;3447;3440:12;3402:2;3489:9;3476:23;3508:30;3532:5;3508:30;:::i;3573:249::-;3642:6;3695:2;3683:9;3674:7;3670:23;3666:32;3663:2;;;3711:1;3708;3701:12;3663:2;3743:9;3737:16;3762:30;3786:5;3762:30;:::i;3827:635::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:2;;;3976:1;3973;3966:12;3928:2;4009:9;4003:16;4042:18;4034:6;4031:30;4028:2;;;4074:1;4071;4064:12;4028:2;4097:22;;4150:4;4142:13;;4138:27;-1:-1:-1;4128:2:1;;4179:1;4176;4169:12;4128:2;4208;4202:9;4233:48;4249:31;4277:2;4249:31;:::i;4233:48::-;4304:2;4297:5;4290:17;4344:7;4339:2;4334;4330;4326:11;4322:20;4319:33;4316:2;;;4365:1;4362;4355:12;4316:2;4378:54;4429:2;4424;4417:5;4413:14;4408:2;4404;4400:11;4378:54;:::i;:::-;4451:5;3918:544;-1:-1:-1;;;;;3918:544:1:o;4652:248::-;4720:6;4728;4781:2;4769:9;4760:7;4756:23;4752:32;4749:2;;;4797:1;4794;4787:12;4749:2;-1:-1:-1;;4820:23:1;;;4890:2;4875:18;;;4862:32;;-1:-1:-1;4739:161:1:o;4905:1162::-;5016:6;5024;5032;5040;5093:3;5081:9;5072:7;5068:23;5064:33;5061:2;;;5110:1;5107;5100:12;5061:2;5146:9;5133:23;5123:33;;5175:2;5224;5213:9;5209:18;5196:32;5186:42;;5275:2;5264:9;5260:18;5247:32;5237:42;;5330:2;5319:9;5315:18;5302:32;5353:18;5394:2;5386:6;5383:14;5380:2;;;5410:1;5407;5400:12;5380:2;5448:6;5437:9;5433:22;5423:32;;5493:7;5486:4;5482:2;5478:13;5474:27;5464:2;;5515:1;5512;5505:12;5464:2;5551;5538:16;5573:2;5569;5566:10;5563:2;;;5579:18;;:::i;:::-;5625:2;5622:1;5618:10;5608:20;;5648:28;5672:2;5668;5664:11;5648:28;:::i;:::-;5710:15;;;5741:12;;;;5773:11;;;5803;;;5799:20;;5796:33;-1:-1:-1;5793:2:1;;;5842:1;5839;5832:12;5793:2;5864:1;5855:10;;5874:163;5888:2;5885:1;5882:9;5874:163;;;5945:17;;5933:30;;5906:1;5899:9;;;;;5983:12;;;;6015;;5874:163;;;-1:-1:-1;5051:1016:1;;;;-1:-1:-1;5051:1016:1;;-1:-1:-1;;;;;;;5051:1016:1:o;6072:257::-;6113:3;6151:5;6145:12;6178:6;6173:3;6166:19;6194:63;6250:6;6243:4;6238:3;6234:14;6227:4;6220:5;6216:16;6194:63;:::i;:::-;6311:2;6290:15;-1:-1:-1;;6286:29:1;6277:39;;;;6318:4;6273:50;;6121:208;-1:-1:-1;;6121:208:1:o;7111:488::-;-1:-1:-1;;;;;7380:15:1;;;7362:34;;7432:15;;7427:2;7412:18;;7405:43;7479:2;7464:18;;7457:34;;;7527:3;7522:2;7507:18;;7500:31;;;7305:4;;7548:45;;7573:19;;7565:6;7548:45;:::i;:::-;7540:53;7314:285;-1:-1:-1;;;;;;7314:285:1:o;8075:219::-;8224:2;8213:9;8206:21;8187:4;8244:44;8284:2;8273:9;8269:18;8261:6;8244:44;:::i;9428:414::-;9630:2;9612:21;;;9669:2;9649:18;;;9642:30;9708:34;9703:2;9688:18;;9681:62;-1:-1:-1;;;9774:2:1;9759:18;;9752:48;9832:3;9817:19;;9602:240::o;15314:356::-;15516:2;15498:21;;;15535:18;;;15528:30;15594:34;15589:2;15574:18;;15567:62;15661:2;15646:18;;15488:182::o;16430:411::-;16632:2;16614:21;;;16671:2;16651:18;;;16644:30;16710:34;16705:2;16690:18;;16683:62;-1:-1:-1;;;16776:2:1;16761:18;;16754:45;16831:3;16816:19;;16604:237::o;17248:413::-;17450:2;17432:21;;;17489:2;17469:18;;;17462:30;17528:34;17523:2;17508:18;;17501:62;-1:-1:-1;;;17594:2:1;17579:18;;17572:47;17651:3;17636:19;;17422:239::o;19381:275::-;19452:2;19446:9;19517:2;19498:13;;-1:-1:-1;;19494:27:1;19482:40;;19552:18;19537:34;;19573:22;;;19534:62;19531:2;;;19599:18;;:::i;:::-;19635:2;19628:22;19426:230;;-1:-1:-1;19426:230:1:o;19661:186::-;19709:4;19742:18;19734:6;19731:30;19728:2;;;19764:18;;:::i;:::-;-1:-1:-1;19830:2:1;19809:15;-1:-1:-1;;19805:29:1;19836:4;19801:40;;19718:129::o;19852:128::-;19892:3;19923:1;19919:6;19916:1;19913:13;19910:2;;;19929:18;;:::i;:::-;-1:-1:-1;19965:9:1;;19900:80::o;19985:217::-;20025:1;20051;20041:2;;20095:10;20090:3;20086:20;20083:1;20076:31;20130:4;20127:1;20120:15;20158:4;20155:1;20148:15;20041:2;-1:-1:-1;20187:9:1;;20031:171::o;20207:125::-;20247:4;20275:1;20272;20269:8;20266:2;;;20280:18;;:::i;:::-;-1:-1:-1;20317:9:1;;20256:76::o;20337:258::-;20409:1;20419:113;20433:6;20430:1;20427:13;20419:113;;;20509:11;;;20503:18;20490:11;;;20483:39;20455:2;20448:10;20419:113;;;20550:6;20547:1;20544:13;20541:2;;;-1:-1:-1;;20585:1:1;20567:16;;20560:27;20390:205::o;20600:380::-;20679:1;20675:12;;;;20722;;;20743:2;;20797:4;20789:6;20785:17;20775:27;;20743:2;20850;20842:6;20839:14;20819:18;20816:38;20813:2;;;20896:10;20891:3;20887:20;20884:1;20877:31;20931:4;20928:1;20921:15;20959:4;20956:1;20949:15;20813:2;;20655:325;;;:::o;20985:197::-;21023:3;21051:6;21092:2;21085:5;21081:14;21119:2;21110:7;21107:15;21104:2;;;21125:18;;:::i;:::-;21174:1;21161:15;;21031:151;-1:-1:-1;;;21031:151:1:o;21187:135::-;21226:3;-1:-1:-1;;21247:17:1;;21244:2;;;21267:18;;:::i;:::-;-1:-1:-1;21314:1:1;21303:13;;21234:88::o;21327:127::-;21388:10;21383:3;21379:20;21376:1;21369:31;21419:4;21416:1;21409:15;21443:4;21440:1;21433:15;21459:127;21520:10;21515:3;21511:20;21508:1;21501:31;21551:4;21548:1;21541:15;21575:4;21572:1;21565:15;21591:127;21652:10;21647:3;21643:20;21640:1;21633:31;21683:4;21680:1;21673:15;21707:4;21704:1;21697:15;21723:127;21784:10;21779:3;21775:20;21772:1;21765:31;21815:4;21812:1;21805:15;21839:4;21836:1;21829:15;21855:131;-1:-1:-1;;;;;21930:31:1;;21920:42;;21910:2;;21976:1;21973;21966:12;21991:131;-1:-1:-1;;;;;;22065:32:1;;22055:43;;22045:2;;22112:1;22109;22102:12

Swarm Source

ipfs://4659312d6ab134f5639c7b8399b8ab2c568ae5ec9e32b9959c6820060d814fd7
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.