ETH Price: $3,315.82 (-3.44%)
Gas: 16 Gwei

Token

Neo Tokyo Part 4 Land Deeds (NTLD)
 

Overview

Max Total Supply

2,148 NTLD

Holders

19

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
NTLandDeploy

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 2021-11-13
*/

/*
* 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 NTLandDeploy is ERC721Enumerable, ReentrancyGuard, Ownable {

    bool landMintActive;
    address landMint;
    address vaultContract;
    address itemContract;
    address identityContract;
    address bytesContract;
    uint256 boughtLandCount;
    uint256 landCost = 500 ether;

    bytes32[] _rootHash;

    // Mapping for vault tokenIds that have previously claimed
    mapping(uint256 => uint256) private _vaultClaims;
    // Mapping for identity tokenIds that have previously claimed
    mapping(uint256 => uint256) private _identityClaims;
    // Mapping for item cache tokenIds that have previously claimed
    mapping(uint256 => uint256) private _itemCacheClaims;

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



    string[] private location = [
        "Ravager",
        "Slums",
        "Glitch District",
        "Mid Town",
        "Shibuya",
        "Byte Street",
        "Aries Compound",
        "Highland Core",
        "Citadel Park",
        "Citadel Tower",
        "Omnipresent",
        "Citadel Penthouse"
    ];

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

        NTLandDeploy dataContract = NTLandDeploy(landMint);
        output = dataContract.getLocation(tokenId);

        return output;
    }

    function getTokenClaimedByVaultTokenId(uint256 vaultTokenId) public view returns (uint256) {
        return _vaultClaims[vaultTokenId];
    }
    function getTokenClaimedByIdentityTokenId(uint256 identityTokenId) public view returns (uint256) {
        return _identityClaims[identityTokenId];
    }
    function getTokenClaimedByItemCacheTokenId(uint256 itemCacheTokenId) public view returns (uint256) {
        return _itemCacheClaims[itemCacheTokenId];
    }

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

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

        NTLandDeploy dataContract = NTLandDeploy(landMint);
        output = dataContract.tokenURI(tokenId);

        return output;
    }

    function landClaim(uint256 vaultTokenId, uint256 identityTokenId, uint256 itemCacheTokenId, uint256 spotOnLeaderboard, uint256 spotInWhitelist, bytes32[] memory proof) public nonReentrant {
        require(landMintActive, "Minting is not currently active");
        require(vaultTokenId > 0 && vaultTokenId < 2501, "That vault cannot claim land");
        require(whitelistValidated(toString(vaultTokenId), spotOnLeaderboard, spotInWhitelist, proof), "That vault cannot claim that item");
        require(vaultValidated(vaultTokenId), "You are not the owner of that vault box");
        require(identityValidated(identityTokenId), "You are not the owner of that identity");
        require(itemCacheValidated(itemCacheTokenId), "You are not the owner of that item cache");

        _safeMint(_msgSender(), spotOnLeaderboard);

        //Set the _vaultClaims value to spotOnLeaderboard for this vault so the vault cannot mint again
        _vaultClaims[vaultTokenId] = spotOnLeaderboard;
        //Set the _identityClaims value to spotOnLeaderboard for this identity so the identity cannot mint again
        _identityClaims[identityTokenId] = spotOnLeaderboard;
        //Set the _itemCacheClaims value to spotOnLeaderboard for this item cache so the item cache cannot mint again
        _itemCacheClaims[itemCacheTokenId] = spotOnLeaderboard;

        //Set the vault that minted this token for reverse lookup
        _tokenMintedByVault[spotOnLeaderboard] = vaultTokenId;
        //Set the identity that minted this token for reverse lookup
        _tokenMintedByIdentity[spotOnLeaderboard] = identityTokenId;
        //Set the itemCache that minted this token for reverse lookup
        _tokenMintedByItemCache[spotOnLeaderboard] = itemCacheTokenId;
    }

    function buyLand() public nonReentrant
    {
        require(address(bytesContract) != address(0), "Land cannot be bought yet");
        IByteContract iBytes = IByteContract(bytesContract);
        iBytes.burn(_msgSender(), landCost);
        _safeMint(_msgSender(), boughtLandCount + 2501);
        boughtLandCount++;
    }

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

        _safeMint(owner(), tokenId);
        _vaultClaims[vaultId] = tokenId;
    }

    function vaultValidated(uint256 vaultId) internal view returns (bool) {
        require(_vaultClaims[vaultId] == 0, "This vault has minted");
        ERC721Enumerable vaultEnumerable = ERC721Enumerable(vaultContract);
        return(vaultEnumerable.ownerOf(vaultId) == _msgSender());
    }

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

    function itemCacheValidated(uint256 itemCacheId) internal view returns (bool) {
        require(_itemCacheClaims[itemCacheId] == 0, "This item cache has minted");
        ERC721Enumerable itemCacheEnumerable = ERC721Enumerable(itemContract);
        return(itemCacheEnumerable.ownerOf(itemCacheId) == _msgSender());
    }

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

        // Compute the merkle root
        bytes32 node = keccak256(abi.encodePacked(index, vaultTokenId, 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 setLandMintActive() public onlyOwner {
        landMintActive = !landMintActive;
    }

    function setLandCost(uint256 _cost) public onlyOwner {
        landCost = _cost;
    }

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

    function setItemContract(address contractAddress) public onlyOwner {
        itemContract = contractAddress;
    }

    function setVaultAddress(address contractAddress) public onlyOwner {
        vaultContract = 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 Part 4 Land Deeds", "NTLD") Ownable() {
        _rootHash = new bytes32[](3);
        _rootHash[0] = 0xb5f5282ccae7803f1fa99dc1a7df949a948a4d5105e139acfe36eafd21369bcd;
        _rootHash[1] = 0x134e8a47f0d9c17019dc517e1d63a1e0f032bf6e955749c13c8cdb8cd35a5f5a;
        _rootHash[2] = 0xe8c04c946ca3e2f10b3af39165a04e39d5300869fc52b596997acd0498a09817;

        bytesContract = 0x7d647b1A0dcD5525e9C6B3D14BE58f27674f8c95;
        vaultContract = 0xab0b0dD7e4EaB0F9e31a539074a03f1C1Be80879;
        itemContract = 0x0938E3F7AC6D7f674FeD551c93f363109bda3AF9;
        identityContract = 0x86357A19E5537A8Fba9A004E555713BC943a66C0;
        landMint = 0xdA51871ae8720bfA16197a854914174C38812B81;
    }
}

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":"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":"buyLand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"vaultId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emergencyClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"getClaimantItemCacheIdByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getClaimantVaultIdByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLocation","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":"itemCacheTokenId","type":"uint256"}],"name":"getTokenClaimedByItemCacheTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"vaultTokenId","type":"uint256"}],"name":"getTokenClaimedByVaultTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"vaultTokenId","type":"uint256"},{"internalType":"uint256","name":"identityTokenId","type":"uint256"},{"internalType":"uint256","name":"itemCacheTokenId","type":"uint256"},{"internalType":"uint256","name":"spotOnLeaderboard","type":"uint256"},{"internalType":"uint256","name":"spotInWhitelist","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"landClaim","outputs":[],"stateMutability":"nonpayable","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":"setItemContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setLandCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLandMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setVaultAddress","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"}]

681b1ae4d6e2ef5000006012556007610200818152662930bb30b3b2b960c91b610220526080908152600561024090815264536c756d7360d81b6102605260a052600f6102809081526e11db1a5d18da08111a5cdd1c9a58dd608a1b6102a05260c05260086102c09081526726b4b2102a37bbb760c11b6102e05260e052610300918252665368696275796160c81b6103205261010091909152600b6103408181526a109e5d194814dd1c99595d60aa1b6103605261012052600e6103809081526d105c9a595cc810dbdb5c1bdd5b9960921b6103a05261014052600d6103c08181526c486967686c616e6420436f726560981b6103e05261016052600c6104008181526b4369746164656c205061726b60a01b61042052610180526104409182526c21b4ba30b232b6102a37bbb2b960991b610460526101a0919091526104809182526a13db5b9a5c1c995cd95b9d60aa1b6104a0526101c09190915261050060405260116104c0908152704369746164656c2050656e74686f75736560781b6104e0526101e0526200019691601a9162000435565b50348015620001a457600080fd5b50604080518082018252601b81527f4e656f20546f6b796f20506172742034204c616e6420446565647300000000006020808301918252835180850190945260048452631395131160e21b908401528151919291620002069160009162000499565b5080516200021c90600190602084019062000499565b50506001600a55506200022f33620003e3565b604080516003808252608082019092529060208201606080368337505081516200026192601392506020019062000524565b507fb5f5282ccae7803f1fa99dc1a7df949a948a4d5105e139acfe36eafd21369bcd60001b60136000815481106200029d576200029d62000618565b90600052602060002001819055507f134e8a47f0d9c17019dc517e1d63a1e0f032bf6e955749c13c8cdb8cd35a5f5a60001b6013600181548110620002e657620002e662000618565b90600052602060002001819055507fe8c04c946ca3e2f10b3af39165a04e39d5300869fc52b596997acd0498a0981760001b60136002815481106200032f576200032f62000618565b600091825260209091200155601080546001600160a01b0319908116737d647b1a0dcd5525e9c6b3d14be58f27674f8c9517909155600d8054821673ab0b0dd7e4eab0f9e31a539074a03f1c1be80879179055600e80548216730938e3f7ac6d7f674fed551c93f363109bda3af9179055600f805482167386357a19e5537a8fba9a004e555713bc943a66c0179055600c805490911673da51871ae8720bfa16197a854914174c38812b811790556200062e565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000487579160200282015b828111156200048757825180516200047691849160209091019062000499565b509160200191906001019062000456565b506200049592915062000561565b5090565b828054620004a790620005db565b90600052602060002090601f016020900481019282620004cb576000855562000516565b82601f10620004e657805160ff191683800117855562000516565b8280016001018555821562000516579182015b8281111562000516578251825591602001919060010190620004f9565b506200049592915062000582565b82805482825590600052602060002090810192821562000516579160200282018281111562000516578251825591602001919060010190620004f9565b808211156200049557600062000578828262000599565b5060010162000561565b5b8082111562000495576000815560010162000583565b508054620005a790620005db565b6000825580601f10620005b8575050565b601f016020900490600052602060002090810190620005d8919062000582565b50565b600181811c90821680620005f057607f821691505b602082108114156200061257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6128e9806200063e6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd14610486578063c8a9020614610499578063e985e9c5146104b9578063ec980a80146104f5578063f2fde38b1461051557600080fd5b8063a22cb4651461042d578063a712043314610440578063b88d4fde14610453578063bcbb6e351461046657600080fd5b80637f7b1393116100f45780637f7b1393146103db57806385535cc5146103ee5780638da5cb5b1461040157806393b43bdf1461041257806395d89b411461042557600080fd5b806370a082311461039a578063715018a6146103ad57806375f890ab146103b55780637a25a677146103c857600080fd5b80632f745c59116101a8578063469327dd11610177578063469327dd146103445780634f6ccce71461034c5780635949dc101461035f5780636352211e14610367578063672c7ae71461037a57600080fd5b80632f745c59146102de57806333724c25146102f157806340a9aba01461031157806342842e0e1461033157600080fd5b8063140c08a5116101e4578063140c08a51461029357806316beafb6146102a657806318160ddd146102b957806323b872dd146102cb57600080fd5b806301ffc9a71461021657806306fdde031461023e578063081812fc14610253578063095ea7b31461027e575b600080fd5b61022961022436600461232c565b610528565b60405190151581526020015b60405180910390f35b610246610553565b604051610235919061258c565b6102666102613660046123dd565b6105e5565b6040516001600160a01b039091168152602001610235565b61029161028c366004612300565b610672565b005b6102916102a1366004612163565b610788565b6102916102b43660046123f6565b6107d4565b6008545b604051908152602001610235565b6102916102d93660046121dd565b61092d565b6102bd6102ec366004612300565b61095e565b6102bd6102ff3660046123dd565b60009081526018602052604090205490565b6102bd61031f3660046123dd565b60009081526017602052604090205490565b61029161033f3660046121dd565b6109f4565b610291610a0f565b6102bd61035a3660046123dd565b610b6e565b610291610c01565b6102666103753660046123dd565b610c4c565b6102bd6103883660046123dd565b60009081526015602052604090205490565b6102bd6103a8366004612163565b610cc3565b610291610d4a565b6102916103c3366004612163565b610d80565b6102916103d63660046123dd565b610dcc565b6102466103e93660046123dd565b610dfb565b6102916103fc366004612163565b610eae565b600b546001600160a01b0316610266565b610291610420366004612418565b610efa565b610246611204565b61029161043b3660046122cd565b611213565b61029161044e366004612163565b6112d8565b61029161046136600461221e565b611324565b6102bd6104743660046123dd565b60009081526014602052604090205490565b6102466104943660046123dd565b61135c565b6102bd6104a73660046123dd565b60009081526016602052604090205490565b6102296104c73660046121a4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102bd6105033660046123dd565b60009081526019602052604090205490565b610291610523366004612163565b6113b7565b60006001600160e01b0319821663780e9d6360e01b148061054d575061054d82611452565b92915050565b6060600080546105629061278e565b80601f016020809104026020016040519081016040528092919081815260200182805461058e9061278e565b80156105db5780601f106105b0576101008083540402835291602001916105db565b820191906000526020600020905b8154815290600101906020018083116105be57829003601f168201915b5050505050905090565b60006105f0826114a2565b6106565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067d82610c4c565b9050806001600160a01b0316836001600160a01b031614156106eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064d565b336001600160a01b0382161480610707575061070781336104c7565b6107795760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064d565b61078383836114bf565b505050565b600b546001600160a01b031633146107b25760405162461bcd60e51b815260040161064d906125f1565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146107fe5760405162461bcd60e51b815260040161064d906125f1565b60008111801561080f57506109c581105b61084e5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161064d565b610857816114a2565b156108a45760405162461bcd60e51b815260206004820152601960248201527f5468617420746f6b656e20616c72656164792065786973747300000000000000604482015260640161064d565b600082815260146020526040902054156109005760405162461bcd60e51b815260206004820152601e60248201527f54686174207661756c742068617320616c726561647920636c61696d65640000604482015260640161064d565b61091b610915600b546001600160a01b031690565b8261152d565b60009182526014602052604090912055565b610937338261154b565b6109535760405162461bcd60e51b815260040161064d90612675565b610783838383611631565b600061096983610cc3565b82106109cb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161064d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61078383838360405180602001604052806000815250611324565b6002600a541415610a625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161064d565b6002600a556010546001600160a01b0316610abf5760405162461bcd60e51b815260206004820152601960248201527f4c616e642063616e6e6f7420626520626f756768742079657400000000000000604482015260640161064d565b6010546001600160a01b031680639dc29fac336012546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610b1b57600080fd5b505af1158015610b2f573d6000803e3d6000fd5b50505050610b51610b3d3390565b601154610b4c906109c561271f565b61152d565b60118054906000610b61836127eb565b90915550506001600a5550565b6000610b7960085490565b8210610bdc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161064d565b60088281548110610bef57610bef61285c565b90600052602060002001549050919050565b600b546001600160a01b03163314610c2b5760405162461bcd60e51b815260040161064d906125f1565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b03168061054d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064d565b60006001600160a01b038216610d2e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610d745760405162461bcd60e51b815260040161064d906125f1565b610d7e60006117dc565b565b600b546001600160a01b03163314610daa5760405162461bcd60e51b815260040161064d906125f1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314610df65760405162461bcd60e51b815260040161064d906125f1565b601255565b6060610e06826114a2565b610e225760405162461bcd60e51b815260040161064d90612626565b600c54604051637f7b139360e01b8152600481018490526060916001600160a01b0316908190637f7b1393906024015b60006040518083038186803b158015610e6a57600080fd5b505afa158015610e7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ea69190810190612366565b949350505050565b600b546001600160a01b03163314610ed85760405162461bcd60e51b815260040161064d906125f1565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a541415610f4d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161064d565b6002600a55600b54600160a01b900460ff16610fab5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e67206973206e6f742063757272656e746c792061637469766500604482015260640161064d565b600086118015610fbc57506109c586105b6110085760405162461bcd60e51b815260206004820152601c60248201527f54686174207661756c742063616e6e6f7420636c61696d206c616e6400000000604482015260640161064d565b61101c6110148761182e565b84848461192c565b6110725760405162461bcd60e51b815260206004820152602160248201527f54686174207661756c742063616e6e6f7420636c61696d2074686174206974656044820152606d60f81b606482015260840161064d565b61107b86611aa1565b6110d75760405162461bcd60e51b815260206004820152602760248201527f596f7520617265206e6f7420746865206f776e6572206f6620746861742076616044820152660ead8e840c4def60cb1b606482015260840161064d565b6110e085611b90565b61113b5760405162461bcd60e51b815260206004820152602660248201527f596f7520617265206e6f7420746865206f776e6572206f662074686174206964604482015265656e7469747960d01b606482015260840161064d565b61114484611bfe565b6111a15760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420746865206f776e6572206f662074686174206974604482015267656d20636163686560c01b606482015260840161064d565b6111ab338461152d565b505060008481526014602090815260408083208490558583526015825280832084905584835260168252808320849055928252601781528282209590955560188552818120939093556019909352919020556001600a55565b6060600180546105629061278e565b6001600160a01b03821633141561126c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b031633146113025760405162461bcd60e51b815260040161064d906125f1565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b61132e338361154b565b61134a5760405162461bcd60e51b815260040161064d90612675565b61135684848484611c6c565b50505050565b6060611367826114a2565b6113835760405162461bcd60e51b815260040161064d90612626565b600c5460405163c87b56dd60e01b8152600481018490526060916001600160a01b031690819063c87b56dd90602401610e52565b600b546001600160a01b031633146113e15760405162461bcd60e51b815260040161064d906125f1565b6001600160a01b0381166114465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064d565b61144f816117dc565b50565b60006001600160e01b031982166380ac58cd60e01b148061148357506001600160e01b03198216635b5e139f60e01b145b8061054d57506301ffc9a760e01b6001600160e01b031983161461054d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f482610c4c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611547828260405180602001604052806000815250611c9f565b5050565b6000611556826114a2565b6115b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064d565b60006115c283610c4c565b9050806001600160a01b0316846001600160a01b031614806115fd5750836001600160a01b03166115f2846105e5565b6001600160a01b0316145b80610ea657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610ea6565b826001600160a01b031661164482610c4c565b6001600160a01b0316146116ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064d565b6001600160a01b03821661170e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064d565b611719838383611cd2565b6117246000826114bf565b6001600160a01b038316600090815260036020526040812080546001929061174d90849061274b565b90915550506001600160a01b038216600090815260036020526040812080546001929061177b90849061271f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060816118525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561187c5780611866816127eb565b91506118759050600a83612737565b9150611856565b60008167ffffffffffffffff81111561189757611897612872565b6040519080825280601f01601f1916602001820160405280156118c1576020820181803683370190505b5090505b8415610ea6576118d660018361274b565b91506118e3600a86612806565b6118ee90603061271f565b60f81b8183815181106119035761190361285c565b60200101906001600160f81b031916908160001a905350611925600a86612737565b94506118c5565b60008083868660405160200161194493929190612522565b60408051601f19818403018152919052805160209091012090508360005b84518161ffff161015611a425781600116600114156119d157848161ffff16815181106119915761199161285c565b6020026020010151836040516020016119b4929190918252602082015260400190565b604051602081830303815290604052805190602001209250611a23565b82858261ffff16815181106119e8576119e861285c565b6020026020010151604051602001611a0a929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b611a2e600283612737565b915080611a3a816127c9565b915050611962565b5060005b601354811015611a935760138181548110611a6357611a6361285c565b9060005260206000200154831415611a815760019350505050610ea6565b80611a8b816127eb565b915050611a46565b506000979650505050505050565b60008181526014602052604081205415611af55760405162461bcd60e51b8152602060048201526015602482015274151a1a5cc81d985d5b1d081a185cc81b5a5b9d1959605a1b604482015260640161064d565b600d546001600160a01b0316335b6040516331a9108f60e11b8152600481018590526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611b4757600080fd5b505afa158015611b5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7f9190612187565b6001600160a01b0316149392505050565b60008181526015602052604081205415611bec5760405162461bcd60e51b815260206004820152601860248201527f54686973206964656e7469747920686173206d696e7465640000000000000000604482015260640161064d565b600f546001600160a01b031633611b03565b60008181526016602052604081205415611c5a5760405162461bcd60e51b815260206004820152601a60248201527f54686973206974656d20636163686520686173206d696e746564000000000000604482015260640161064d565b600e546001600160a01b031633611b03565b611c77848484611631565b611c8384848484611d8a565b6113565760405162461bcd60e51b815260040161064d9061259f565b611ca98383611e94565b611cb66000848484611d8a565b6107835760405162461bcd60e51b815260040161064d9061259f565b6001600160a01b038316611d2d57611d2881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d50565b816001600160a01b0316836001600160a01b031614611d5057611d508382611fd3565b6001600160a01b038216611d675761078381612070565b826001600160a01b0316826001600160a01b03161461078357610783828261211f565b60006001600160a01b0384163b15611e8c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dce90339089908890889060040161254f565b602060405180830381600087803b158015611de857600080fd5b505af1925050508015611e18575060408051601f3d908101601f19168201909252611e1591810190612349565b60015b611e72573d808015611e46576040519150601f19603f3d011682016040523d82523d6000602084013e611e4b565b606091505b508051611e6a5760405162461bcd60e51b815260040161064d9061259f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ea6565b506001610ea6565b6001600160a01b038216611eea5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064d565b611ef3816114a2565b15611f405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064d565b611f4c60008383611cd2565b6001600160a01b0382166000908152600360205260408120805460019290611f7590849061271f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611fe084610cc3565b611fea919061274b565b60008381526007602052604090205490915080821461203d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120829060019061274b565b600083815260096020526040812054600880549394509092849081106120aa576120aa61285c565b9060005260206000200154905080600883815481106120cb576120cb61285c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061210357612103612846565b6001900381819060005260206000200160009055905550505050565b600061212a83610cc3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561217557600080fd5b813561218081612888565b9392505050565b60006020828403121561219957600080fd5b815161218081612888565b600080604083850312156121b757600080fd5b82356121c281612888565b915060208301356121d281612888565b809150509250929050565b6000806000606084860312156121f257600080fd5b83356121fd81612888565b9250602084013561220d81612888565b929592945050506040919091013590565b6000806000806080858703121561223457600080fd5b843561223f81612888565b9350602085013561224f81612888565b925060408501359150606085013567ffffffffffffffff81111561227257600080fd5b8501601f8101871361228357600080fd5b8035612296612291826126f7565b6126c6565b8181528860208385010111156122ab57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156122e057600080fd5b82356122eb81612888565b9150602083013580151581146121d257600080fd5b6000806040838503121561231357600080fd5b823561231e81612888565b946020939093013593505050565b60006020828403121561233e57600080fd5b81356121808161289d565b60006020828403121561235b57600080fd5b81516121808161289d565b60006020828403121561237857600080fd5b815167ffffffffffffffff81111561238f57600080fd5b8201601f810184136123a057600080fd5b80516123ae612291826126f7565b8181528560208385010111156123c357600080fd5b6123d4826020830160208601612762565b95945050505050565b6000602082840312156123ef57600080fd5b5035919050565b6000806040838503121561240957600080fd5b50508035926020909101359150565b60008060008060008060c0878903121561243157600080fd5b86359550602080880135955060408801359450606088013593506080880135925060a088013567ffffffffffffffff8082111561246d57600080fd5b818a0191508a601f83011261248157600080fd5b81358181111561249357612493612872565b8060051b91506124a48483016126c6565b8181528481019084860184860187018f10156124bf57600080fd5b600095505b838610156124e25780358352600195909501949186019186016124c4565b508096505050505050509295509295509295565b6000815180845261250e816020860160208601612762565b601f01601f19169290920160200192915050565b8381526000835161253a816020850160208801612762565b60209201918201929092526040019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612582908301846124f6565b9695505050505050565b60208152600061218060208301846124f6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126ef576126ef612872565b604052919050565b600067ffffffffffffffff82111561271157612711612872565b50601f01601f191660200190565b600082198211156127325761273261281a565b500190565b60008261274657612746612830565b500490565b60008282101561275d5761275d61281a565b500390565b60005b8381101561277d578181015183820152602001612765565b838111156113565750506000910152565b600181811c908216806127a257607f821691505b602082108114156127c357634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156127e1576127e161281a565b6001019392505050565b60006000198214156127ff576127ff61281a565b5060010190565b60008261281557612815612830565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461144f57600080fd5b6001600160e01b03198116811461144f57600080fdfea2646970667358221220c97a93d75952db9d893e7cd26448896b6046f283c8259bfb2c0fad2477f79f4f64736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a22cb465116100ad578063c87b56dd1161007c578063c87b56dd14610486578063c8a9020614610499578063e985e9c5146104b9578063ec980a80146104f5578063f2fde38b1461051557600080fd5b8063a22cb4651461042d578063a712043314610440578063b88d4fde14610453578063bcbb6e351461046657600080fd5b80637f7b1393116100f45780637f7b1393146103db57806385535cc5146103ee5780638da5cb5b1461040157806393b43bdf1461041257806395d89b411461042557600080fd5b806370a082311461039a578063715018a6146103ad57806375f890ab146103b55780637a25a677146103c857600080fd5b80632f745c59116101a8578063469327dd11610177578063469327dd146103445780634f6ccce71461034c5780635949dc101461035f5780636352211e14610367578063672c7ae71461037a57600080fd5b80632f745c59146102de57806333724c25146102f157806340a9aba01461031157806342842e0e1461033157600080fd5b8063140c08a5116101e4578063140c08a51461029357806316beafb6146102a657806318160ddd146102b957806323b872dd146102cb57600080fd5b806301ffc9a71461021657806306fdde031461023e578063081812fc14610253578063095ea7b31461027e575b600080fd5b61022961022436600461232c565b610528565b60405190151581526020015b60405180910390f35b610246610553565b604051610235919061258c565b6102666102613660046123dd565b6105e5565b6040516001600160a01b039091168152602001610235565b61029161028c366004612300565b610672565b005b6102916102a1366004612163565b610788565b6102916102b43660046123f6565b6107d4565b6008545b604051908152602001610235565b6102916102d93660046121dd565b61092d565b6102bd6102ec366004612300565b61095e565b6102bd6102ff3660046123dd565b60009081526018602052604090205490565b6102bd61031f3660046123dd565b60009081526017602052604090205490565b61029161033f3660046121dd565b6109f4565b610291610a0f565b6102bd61035a3660046123dd565b610b6e565b610291610c01565b6102666103753660046123dd565b610c4c565b6102bd6103883660046123dd565b60009081526015602052604090205490565b6102bd6103a8366004612163565b610cc3565b610291610d4a565b6102916103c3366004612163565b610d80565b6102916103d63660046123dd565b610dcc565b6102466103e93660046123dd565b610dfb565b6102916103fc366004612163565b610eae565b600b546001600160a01b0316610266565b610291610420366004612418565b610efa565b610246611204565b61029161043b3660046122cd565b611213565b61029161044e366004612163565b6112d8565b61029161046136600461221e565b611324565b6102bd6104743660046123dd565b60009081526014602052604090205490565b6102466104943660046123dd565b61135c565b6102bd6104a73660046123dd565b60009081526016602052604090205490565b6102296104c73660046121a4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102bd6105033660046123dd565b60009081526019602052604090205490565b610291610523366004612163565b6113b7565b60006001600160e01b0319821663780e9d6360e01b148061054d575061054d82611452565b92915050565b6060600080546105629061278e565b80601f016020809104026020016040519081016040528092919081815260200182805461058e9061278e565b80156105db5780601f106105b0576101008083540402835291602001916105db565b820191906000526020600020905b8154815290600101906020018083116105be57829003601f168201915b5050505050905090565b60006105f0826114a2565b6106565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067d82610c4c565b9050806001600160a01b0316836001600160a01b031614156106eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064d565b336001600160a01b0382161480610707575061070781336104c7565b6107795760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064d565b61078383836114bf565b505050565b600b546001600160a01b031633146107b25760405162461bcd60e51b815260040161064d906125f1565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b031633146107fe5760405162461bcd60e51b815260040161064d906125f1565b60008111801561080f57506109c581105b61084e5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161064d565b610857816114a2565b156108a45760405162461bcd60e51b815260206004820152601960248201527f5468617420746f6b656e20616c72656164792065786973747300000000000000604482015260640161064d565b600082815260146020526040902054156109005760405162461bcd60e51b815260206004820152601e60248201527f54686174207661756c742068617320616c726561647920636c61696d65640000604482015260640161064d565b61091b610915600b546001600160a01b031690565b8261152d565b60009182526014602052604090912055565b610937338261154b565b6109535760405162461bcd60e51b815260040161064d90612675565b610783838383611631565b600061096983610cc3565b82106109cb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161064d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61078383838360405180602001604052806000815250611324565b6002600a541415610a625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161064d565b6002600a556010546001600160a01b0316610abf5760405162461bcd60e51b815260206004820152601960248201527f4c616e642063616e6e6f7420626520626f756768742079657400000000000000604482015260640161064d565b6010546001600160a01b031680639dc29fac336012546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015610b1b57600080fd5b505af1158015610b2f573d6000803e3d6000fd5b50505050610b51610b3d3390565b601154610b4c906109c561271f565b61152d565b60118054906000610b61836127eb565b90915550506001600a5550565b6000610b7960085490565b8210610bdc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161064d565b60088281548110610bef57610bef61285c565b90600052602060002001549050919050565b600b546001600160a01b03163314610c2b5760405162461bcd60e51b815260040161064d906125f1565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b03168061054d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064d565b60006001600160a01b038216610d2e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610d745760405162461bcd60e51b815260040161064d906125f1565b610d7e60006117dc565b565b600b546001600160a01b03163314610daa5760405162461bcd60e51b815260040161064d906125f1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314610df65760405162461bcd60e51b815260040161064d906125f1565b601255565b6060610e06826114a2565b610e225760405162461bcd60e51b815260040161064d90612626565b600c54604051637f7b139360e01b8152600481018490526060916001600160a01b0316908190637f7b1393906024015b60006040518083038186803b158015610e6a57600080fd5b505afa158015610e7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ea69190810190612366565b949350505050565b600b546001600160a01b03163314610ed85760405162461bcd60e51b815260040161064d906125f1565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a541415610f4d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161064d565b6002600a55600b54600160a01b900460ff16610fab5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e67206973206e6f742063757272656e746c792061637469766500604482015260640161064d565b600086118015610fbc57506109c586105b6110085760405162461bcd60e51b815260206004820152601c60248201527f54686174207661756c742063616e6e6f7420636c61696d206c616e6400000000604482015260640161064d565b61101c6110148761182e565b84848461192c565b6110725760405162461bcd60e51b815260206004820152602160248201527f54686174207661756c742063616e6e6f7420636c61696d2074686174206974656044820152606d60f81b606482015260840161064d565b61107b86611aa1565b6110d75760405162461bcd60e51b815260206004820152602760248201527f596f7520617265206e6f7420746865206f776e6572206f6620746861742076616044820152660ead8e840c4def60cb1b606482015260840161064d565b6110e085611b90565b61113b5760405162461bcd60e51b815260206004820152602660248201527f596f7520617265206e6f7420746865206f776e6572206f662074686174206964604482015265656e7469747960d01b606482015260840161064d565b61114484611bfe565b6111a15760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420746865206f776e6572206f662074686174206974604482015267656d20636163686560c01b606482015260840161064d565b6111ab338461152d565b505060008481526014602090815260408083208490558583526015825280832084905584835260168252808320849055928252601781528282209590955560188552818120939093556019909352919020556001600a55565b6060600180546105629061278e565b6001600160a01b03821633141561126c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b031633146113025760405162461bcd60e51b815260040161064d906125f1565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b61132e338361154b565b61134a5760405162461bcd60e51b815260040161064d90612675565b61135684848484611c6c565b50505050565b6060611367826114a2565b6113835760405162461bcd60e51b815260040161064d90612626565b600c5460405163c87b56dd60e01b8152600481018490526060916001600160a01b031690819063c87b56dd90602401610e52565b600b546001600160a01b031633146113e15760405162461bcd60e51b815260040161064d906125f1565b6001600160a01b0381166114465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064d565b61144f816117dc565b50565b60006001600160e01b031982166380ac58cd60e01b148061148357506001600160e01b03198216635b5e139f60e01b145b8061054d57506301ffc9a760e01b6001600160e01b031983161461054d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f482610c4c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611547828260405180602001604052806000815250611c9f565b5050565b6000611556826114a2565b6115b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064d565b60006115c283610c4c565b9050806001600160a01b0316846001600160a01b031614806115fd5750836001600160a01b03166115f2846105e5565b6001600160a01b0316145b80610ea657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610ea6565b826001600160a01b031661164482610c4c565b6001600160a01b0316146116ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064d565b6001600160a01b03821661170e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064d565b611719838383611cd2565b6117246000826114bf565b6001600160a01b038316600090815260036020526040812080546001929061174d90849061274b565b90915550506001600160a01b038216600090815260036020526040812080546001929061177b90849061271f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060816118525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561187c5780611866816127eb565b91506118759050600a83612737565b9150611856565b60008167ffffffffffffffff81111561189757611897612872565b6040519080825280601f01601f1916602001820160405280156118c1576020820181803683370190505b5090505b8415610ea6576118d660018361274b565b91506118e3600a86612806565b6118ee90603061271f565b60f81b8183815181106119035761190361285c565b60200101906001600160f81b031916908160001a905350611925600a86612737565b94506118c5565b60008083868660405160200161194493929190612522565b60408051601f19818403018152919052805160209091012090508360005b84518161ffff161015611a425781600116600114156119d157848161ffff16815181106119915761199161285c565b6020026020010151836040516020016119b4929190918252602082015260400190565b604051602081830303815290604052805190602001209250611a23565b82858261ffff16815181106119e8576119e861285c565b6020026020010151604051602001611a0a929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b611a2e600283612737565b915080611a3a816127c9565b915050611962565b5060005b601354811015611a935760138181548110611a6357611a6361285c565b9060005260206000200154831415611a815760019350505050610ea6565b80611a8b816127eb565b915050611a46565b506000979650505050505050565b60008181526014602052604081205415611af55760405162461bcd60e51b8152602060048201526015602482015274151a1a5cc81d985d5b1d081a185cc81b5a5b9d1959605a1b604482015260640161064d565b600d546001600160a01b0316335b6040516331a9108f60e11b8152600481018590526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015611b4757600080fd5b505afa158015611b5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7f9190612187565b6001600160a01b0316149392505050565b60008181526015602052604081205415611bec5760405162461bcd60e51b815260206004820152601860248201527f54686973206964656e7469747920686173206d696e7465640000000000000000604482015260640161064d565b600f546001600160a01b031633611b03565b60008181526016602052604081205415611c5a5760405162461bcd60e51b815260206004820152601a60248201527f54686973206974656d20636163686520686173206d696e746564000000000000604482015260640161064d565b600e546001600160a01b031633611b03565b611c77848484611631565b611c8384848484611d8a565b6113565760405162461bcd60e51b815260040161064d9061259f565b611ca98383611e94565b611cb66000848484611d8a565b6107835760405162461bcd60e51b815260040161064d9061259f565b6001600160a01b038316611d2d57611d2881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d50565b816001600160a01b0316836001600160a01b031614611d5057611d508382611fd3565b6001600160a01b038216611d675761078381612070565b826001600160a01b0316826001600160a01b03161461078357610783828261211f565b60006001600160a01b0384163b15611e8c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dce90339089908890889060040161254f565b602060405180830381600087803b158015611de857600080fd5b505af1925050508015611e18575060408051601f3d908101601f19168201909252611e1591810190612349565b60015b611e72573d808015611e46576040519150601f19603f3d011682016040523d82523d6000602084013e611e4b565b606091505b508051611e6a5760405162461bcd60e51b815260040161064d9061259f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ea6565b506001610ea6565b6001600160a01b038216611eea5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064d565b611ef3816114a2565b15611f405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064d565b611f4c60008383611cd2565b6001600160a01b0382166000908152600360205260408120805460019290611f7590849061271f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611fe084610cc3565b611fea919061274b565b60008381526007602052604090205490915080821461203d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120829060019061274b565b600083815260096020526040812054600880549394509092849081106120aa576120aa61285c565b9060005260206000200154905080600883815481106120cb576120cb61285c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061210357612103612846565b6001900381819060005260206000200160009055905550505050565b600061212a83610cc3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561217557600080fd5b813561218081612888565b9392505050565b60006020828403121561219957600080fd5b815161218081612888565b600080604083850312156121b757600080fd5b82356121c281612888565b915060208301356121d281612888565b809150509250929050565b6000806000606084860312156121f257600080fd5b83356121fd81612888565b9250602084013561220d81612888565b929592945050506040919091013590565b6000806000806080858703121561223457600080fd5b843561223f81612888565b9350602085013561224f81612888565b925060408501359150606085013567ffffffffffffffff81111561227257600080fd5b8501601f8101871361228357600080fd5b8035612296612291826126f7565b6126c6565b8181528860208385010111156122ab57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156122e057600080fd5b82356122eb81612888565b9150602083013580151581146121d257600080fd5b6000806040838503121561231357600080fd5b823561231e81612888565b946020939093013593505050565b60006020828403121561233e57600080fd5b81356121808161289d565b60006020828403121561235b57600080fd5b81516121808161289d565b60006020828403121561237857600080fd5b815167ffffffffffffffff81111561238f57600080fd5b8201601f810184136123a057600080fd5b80516123ae612291826126f7565b8181528560208385010111156123c357600080fd5b6123d4826020830160208601612762565b95945050505050565b6000602082840312156123ef57600080fd5b5035919050565b6000806040838503121561240957600080fd5b50508035926020909101359150565b60008060008060008060c0878903121561243157600080fd5b86359550602080880135955060408801359450606088013593506080880135925060a088013567ffffffffffffffff8082111561246d57600080fd5b818a0191508a601f83011261248157600080fd5b81358181111561249357612493612872565b8060051b91506124a48483016126c6565b8181528481019084860184860187018f10156124bf57600080fd5b600095505b838610156124e25780358352600195909501949186019186016124c4565b508096505050505050509295509295509295565b6000815180845261250e816020860160208601612762565b601f01601f19169290920160200192915050565b8381526000835161253a816020850160208801612762565b60209201918201929092526040019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612582908301846124f6565b9695505050505050565b60208152600061218060208301846124f6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126ef576126ef612872565b604052919050565b600067ffffffffffffffff82111561271157612711612872565b50601f01601f191660200190565b600082198211156127325761273261281a565b500190565b60008261274657612746612830565b500490565b60008282101561275d5761275d61281a565b500390565b60005b8381101561277d578181015183820152602001612765565b838111156113565750506000910152565b600181811c908216806127a257607f821691505b602082108114156127c357634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156127e1576127e161281a565b6001019392505050565b60006000198214156127ff576127ff61281a565b5060010190565b60008261281557612815612830565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461144f57600080fd5b6001600160e01b03198116811461144f57600080fdfea2646970667358221220c97a93d75952db9d893e7cd26448896b6046f283c8259bfb2c0fad2477f79f4f64736f6c63430008060033

Deployed Bytecode Sourcemap

44567:9686:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38419:224;;;;;;:::i;:::-;;:::i;:::-;;;8122:14:1;;8115:22;8097:41;;8085:2;8070:18;38419:224:0;;;;;;;;25541:100;;;:::i;:::-;;;;;;;:::i;27100:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7141:32:1;;;7123:51;;7111:2;7096:18;27100:221:0;7078:102:1;26623:411:0;;;;;;:::i;:::-;;:::i;:::-;;52651:117;;;;;;:::i;:::-;;:::i;49846:380::-;;;;;;:::i;:::-;;:::i;39059:113::-;39147:10;:17;39059:113;;;20899:25:1;;;20887:2;20872:18;39059:113:0;20854:76:1;27990:339:0;;;;;;:::i;:::-;;:::i;38727:256::-;;;;;;:::i;:::-;;:::i;46970:144::-;;;;;;:::i;:::-;47048:7;47075:31;;;:22;:31;;;;;;;46970:144;46826:138;;;;;;:::i;:::-;46901:7;46928:28;;;:19;:28;;;;;;;46826:138;28400:185;;;;;;:::i;:::-;;:::i;49426:331::-;;;:::i;39249:233::-;;;;;;:::i;:::-;;:::i;52085:97::-;;;:::i;25235:239::-;;;;;;:::i;:::-;;:::i;46498:155::-;;;;;;:::i;:::-;46586:7;46613:32;;;:15;:32;;;;;;;46498:155;24965:208;;;;;;:::i;:::-;;:::i;9987:94::-;;;:::i;52286:108::-;;;;;;:::i;:::-;;:::i;52190:88::-;;;;;;:::i;:::-;;:::i;45994:347::-;;;;;;:::i;:::-;;:::i;52526:117::-;;;;;;:::i;:::-;;:::i;9336:87::-;9409:6;;-1:-1:-1;;;;;9409:6:0;9336:87;;47637:1781;;;;;;:::i;:::-;;:::i;25710:104::-;;;:::i;27393:295::-;;;;;;:::i;:::-;;:::i;52402:116::-;;;;;;:::i;:::-;;:::i;28656:328::-;;;;;;:::i;:::-;;:::i;46349:143::-;;;;;;:::i;:::-;46431:7;46458:26;;;:12;:26;;;;;;;46349:143;47274:355;;;;;;:::i;:::-;;:::i;46659:159::-;;;;;;:::i;:::-;46749:7;46776:34;;;:16;:34;;;;;;;46659:159;27759:164;;;;;;:::i;:::-;-1:-1:-1;;;;;27880:25:0;;;27856:4;27880:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27759:164;47120:146;;;;;;:::i;:::-;47199:7;47226:32;;;:23;:32;;;;;;;47120:146;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;;15592:2:1;27196:73:0;;;15574:21:1;15631:2;15611:18;;;15604:30;15670:34;15650:18;;;15643:62;-1:-1:-1;;;15721:18:1;;;15714:42;15773: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;;18299:2:1;26754:57:0;;;18281:21:1;18338:2;18318:18;;;18311:30;18377:34;18357:18;;;18350:62;-1:-1:-1;;;18428:18:1;;;18421:31;18469:19;;26754:57:0;18271: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;;13228:2:1;26824:168:0;;;13210:21:1;13267:2;13247:18;;;13240:30;13306:34;13286:18;;;13279:62;13377:26;13357:18;;;13350:54;13421:19;;26824:168:0;13200:246:1;26824:168:0;27005:21;27014:2;27018:7;27005:8;:21::i;:::-;26693:341;26623:411;;:::o;52651:117::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;52729:13:::1;:31:::0;;-1:-1:-1;;;;;;52729:31:0::1;-1:-1:-1::0;;;;;52729:31:0;;;::::1;::::0;;;::::1;::::0;;52651:117::o;49846:380::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;49950:1:::1;49940:7;:11;:29;;;;;49965:4;49955:7;:14;49940:29;49932:58;;;::::0;-1:-1:-1;;;49932:58:0;;16366:2:1;49932:58:0::1;::::0;::::1;16348:21:1::0;16405:2;16385:18;;;16378:30;-1:-1:-1;;;16424:18:1;;;16417:46;16480:18;;49932:58:0::1;16338:166:1::0;49932:58:0::1;50010:16;50018:7;50010;:16::i;:::-;50009:17;50001:55;;;::::0;-1:-1:-1;;;50001:55:0;;10530:2:1;50001:55:0::1;::::0;::::1;10512:21:1::0;10569:2;10549:18;;;10542:30;10608:27;10588:18;;;10581:55;10653:18;;50001:55:0::1;10502:175:1::0;50001:55:0::1;50075:21;::::0;;;:12:::1;:21;::::0;;;;;:26;50067:69:::1;;;::::0;-1:-1:-1;;;50067:69:0;;19886:2:1;50067:69:0::1;::::0;::::1;19868:21:1::0;19925:2;19905:18;;;19898:30;19964:32;19944:18;;;19937:60;20014:18;;50067:69:0::1;19858:180:1::0;50067:69:0::1;50149:27;50159:7;9409:6:::0;;-1:-1:-1;;;;;9409:6:0;;9336:87;50159:7:::1;50168;50149:9;:27::i;:::-;50187:21;::::0;;;:12:::1;:21;::::0;;;;;:31;49846:380::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;;8935:2:1;38844:87:0;;;8917:21:1;8974:2;8954:18;;;8947:30;9013:34;8993:18;;;8986:62;-1:-1:-1;;;9064:18:1;;;9057:41;9115:19;;38844:87:0;8907:233:1;38844:87:0;-1:-1:-1;;;;;;38949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38727:256::o;28400:185::-;28538:39;28555:4;28561:2;28565:7;28538:39;;;;;;;;;;;;:16;:39::i;49426:331::-;12269:1;12865:7;;:19;;12857:63;;;;-1:-1:-1;;;12857:63:0;;20245:2:1;12857:63:0;;;20227:21:1;20284:2;20264:18;;;20257:30;20323:33;20303:18;;;20296:61;20374:18;;12857:63:0;20217:181:1;12857:63:0;12269:1;12998:7;:18;49497:13:::1;::::0;-1:-1:-1;;;;;49497:13:0::1;49481:74;;;::::0;-1:-1:-1;;;49481:74:0;;19119:2:1;49481:74:0::1;::::0;::::1;19101:21:1::0;19158:2;19138:18;;;19131:30;19197:27;19177:18;;;19170:55;19242:18;;49481:74:0::1;19091:175:1::0;49481:74:0::1;49603:13;::::0;-1:-1:-1;;;;;49603:13:0::1;::::0;49628:11:::1;8290:10:::0;49654:8:::1;::::0;49628:35:::1;::::0;-1:-1:-1;;;;;;49628:35:0::1;::::0;;;;;;-1:-1:-1;;;;;7870:32:1;;;49628:35:0::1;::::0;::::1;7852:51:1::0;7919:18;;;7912:34;7825:18;;49628:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49674:47;49684:12;8290:10:::0;;8210:98;49684:12:::1;49698:15;::::0;:22:::1;::::0;49716:4:::1;49698:22;:::i;:::-;49674:9;:47::i;:::-;49732:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;12225:1:0;13177:7;:22;-1:-1:-1;49426:331:0:o;39249:233::-;39324:7;39360:30;39147:10;:17;;39059:113;39360:30;39352:5;:38;39344:95;;;;-1:-1:-1;;;39344:95:0;;19473:2:1;39344:95:0;;;19455:21:1;19512:2;19492:18;;;19485:30;19551:34;19531:18;;;19524:62;-1:-1:-1;;;19602:18:1;;;19595:42;19654:19;;39344:95:0;19445:234:1;39344:95:0;39457:10;39468:5;39457:17;;;;;;;;:::i;:::-;;;;;;;;;39450:24;;39249:233;;;:::o;52085:97::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;52160:14:::1;::::0;;-1:-1:-1;;;;52142:32:0;::::1;-1:-1:-1::0;;;52160:14:0;;;::::1;;;52159:15;52142:32:::0;;::::1;;::::0;;52085:97::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;;14064:2:1;25370:73:0;;;14046:21:1;14103:2;14083:18;;;14076:30;14142:34;14122:18;;;14115:62;-1:-1:-1;;;14193:18:1;;;14186:39;14242:19;;25370:73:0;14036:231:1;24965:208:0;25037:7;-1:-1:-1;;;;;25065:19:0;;25057:74;;;;-1:-1:-1;;;25057:74:0;;13653:2:1;25057:74:0;;;13635:21:1;13692:2;13672:18;;;13665:30;13731:34;13711:18;;;13704:62;-1:-1:-1;;;13782:18:1;;;13775:40;13832:19;;25057:74:0;13625: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;52286:108::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;52360:8:::1;:26:::0;;-1:-1:-1;;;;;;52360:26:0::1;-1:-1:-1::0;;;;;52360:26:0;;;::::1;::::0;;;::::1;::::0;;52286:108::o;52190:88::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;52254:8:::1;:16:::0;52190:88::o;45994:347::-;46053:13;46092:16;46100:7;46092;:16::i;:::-;46084:76;;;;-1:-1:-1;;;46084:76:0;;;;;;;:::i;:::-;46245:8;;46274:33;;-1:-1:-1;;;46274:33:0;;;;;20899:25:1;;;46171:20:0;;-1:-1:-1;;;;;46245:8:0;;;;46274:24;;20872:18:1;;46274:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46274:33:0;;;;;;;;;;;;:::i;:::-;46265:42;45994:347;-1:-1:-1;;;;45994:347:0:o;52526:117::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;52604:13:::1;:31:::0;;-1:-1:-1;;;;;;52604:31:0::1;-1:-1:-1::0;;;;;52604:31:0;;;::::1;::::0;;;::::1;::::0;;52526:117::o;47637:1781::-;12269:1;12865:7;;:19;;12857:63;;;;-1:-1:-1;;;12857:63:0;;20245:2:1;12857:63:0;;;20227:21:1;20284:2;20264:18;;;20257:30;20323:33;20303:18;;;20296:61;20374:18;;12857:63:0;20217:181:1;12857:63:0;12269:1;12998:7;:18;47844:14:::1;::::0;-1:-1:-1;;;47844:14:0;::::1;;;47836:58;;;::::0;-1:-1:-1;;;47836:58:0;;8575:2:1;47836:58:0::1;::::0;::::1;8557:21:1::0;8614:2;8594:18;;;8587:30;8653:33;8633:18;;;8626:61;8704:18;;47836:58:0::1;8547:181:1::0;47836:58:0::1;47928:1;47913:12;:16;:39;;;;;47948:4;47933:12;:19;47913:39;47905:80;;;::::0;-1:-1:-1;;;47905:80:0;;12871:2:1;47905:80:0::1;::::0;::::1;12853:21:1::0;12910:2;12890:18;;;12883:30;12949;12929:18;;;12922:58;12997:18;;47905:80:0::1;12843:178:1::0;47905:80:0::1;48004:85;48023:22;48032:12;48023:8;:22::i;:::-;48047:17;48066:15;48083:5;48004:18;:85::i;:::-;47996:131;;;::::0;-1:-1:-1;;;47996:131:0;;14835:2:1;47996:131:0::1;::::0;::::1;14817:21:1::0;14874:2;14854:18;;;14847:30;14913:34;14893:18;;;14886:62;-1:-1:-1;;;14964:18:1;;;14957:31;15005:19;;47996:131:0::1;14807:223:1::0;47996:131:0::1;48146:28;48161:12;48146:14;:28::i;:::-;48138:80;;;::::0;-1:-1:-1;;;48138:80:0;;12050:2:1;48138:80:0::1;::::0;::::1;12032:21:1::0;12089:2;12069:18;;;12062:30;12128:34;12108:18;;;12101:62;-1:-1:-1;;;12179:18:1;;;12172:37;12226:19;;48138:80:0::1;12022:229:1::0;48138:80:0::1;48237:34;48255:15;48237:17;:34::i;:::-;48229:85;;;::::0;-1:-1:-1;;;48229:85:0;;10884:2:1;48229:85:0::1;::::0;::::1;10866:21:1::0;10923:2;10903:18;;;10896:30;10962:34;10942:18;;;10935:62;-1:-1:-1;;;11013:18:1;;;11006:36;11059:19;;48229:85:0::1;10856:228:1::0;48229:85:0::1;48333:36;48352:16;48333:18;:36::i;:::-;48325:89;;;::::0;-1:-1:-1;;;48325:89:0;;17121:2:1;48325:89:0::1;::::0;::::1;17103:21:1::0;17160:2;17140:18;;;17133:30;17199:34;17179:18;;;17172:62;-1:-1:-1;;;17250:18:1;;;17243:38;17298:19;;48325:89:0::1;17093:230:1::0;48325:89:0::1;48427:42;8290:10:::0;48451:17:::1;48427:9;:42::i;:::-;-1:-1:-1::0;;48587:26:0::1;::::0;;;:12:::1;:26;::::0;;;;;;;:46;;;48758:32;;;:15:::1;:32:::0;;;;;:52;;;48940:34;;;:16:::1;:34:::0;;;;;:54;;;49074:38;;;:19:::1;:38:::0;;;;;:53;;;;49208:22:::1;:41:::0;;;;;:59;;;;49349:23:::1;:42:::0;;;;;;:61;12225:1;13177:7;:22;47637:1781::o;25710:104::-;25766:13;25799:7;25792:14;;;;;:::i;27393:295::-;-1:-1:-1;;;;;27496:24:0;;8290:10;27496:24;;27488:62;;;;-1:-1:-1;;;27488:62:0;;11696:2:1;27488:62:0;;;11678:21:1;11735:2;11715:18;;;11708:30;11774:27;11754:18;;;11747:55;11819:18;;27488:62:0;11668: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;;8097:41:1;;;27563:42:0;;8290:10;27632:48;;8070:18:1;27632:48:0;;;;;;;27393:295;;:::o;52402:116::-;9409:6;;-1:-1:-1;;;;;9409:6:0;8290:10;9556:23;9548:68;;;;-1:-1:-1;;;9548:68:0;;;;;;;:::i;:::-;52480:12:::1;:30:::0;;-1:-1:-1;;;;;;52480:30:0::1;-1:-1:-1::0;;;;;52480:30:0;;;::::1;::::0;;;::::1;::::0;;52402:116::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;47274:355::-;47339:13;47373:16;47381:7;47373;:16::i;:::-;47365:76;;;;-1:-1:-1;;;47365:76:0;;;;;;;:::i;:::-;47536:8;;47565:30;;-1:-1:-1;;;47565:30:0;;;;;20899:25:1;;;47462:20:0;;-1:-1:-1;;;;;47536:8:0;;;;47565:21;;20872:18:1;;47565:30:0;20854: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;;9766:2:1;10317:73:0::1;::::0;::::1;9748:21:1::0;9805:2;9785:18;;;9778:30;9844:34;9824:18;;;9817:62;-1:-1:-1;;;9895:18:1;;;9888:36;9941:19;;10317:73:0::1;9738: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;;12458:2:1;30898:73:0;;;12440:21:1;12497:2;12477:18;;;12470:30;12536:34;12516:18;;;12509:62;-1:-1:-1;;;12587:18:1;;;12580:42;12639:19;;30898:73:0;12430: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;;16711:2:1;33904:85:0;;;16693:21:1;16750:2;16730:18;;;16723:30;16789:34;16769:18;;;16762:62;-1:-1:-1;;;16840:18:1;;;16833:39;16889:19;;33904:85:0;16683:231:1;33904:85:0;-1:-1:-1;;;;;34008:16:0;;34000:65;;;;-1:-1:-1;;;34000:65:0;;11291:2:1;34000:65:0;;;11273:21:1;11330:2;11310:18;;;11303:30;11369:34;11349:18;;;11342:62;-1:-1:-1;;;11420:18:1;;;11413:34;11464:19;;34000:65:0;11263: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;52786:715::-;52842:13;53055:10;53051:53;;-1:-1:-1;;53082:10:0;;;;;;;;;;;;-1:-1:-1;;;53082:10:0;;;;;52786:715::o;53051:53::-;53129:5;53114:12;53170:78;53177:9;;53170:78;;53203:8;;;;:::i;:::-;;-1:-1:-1;53226:10:0;;-1:-1:-1;53234:2:0;53226:10;;:::i;:::-;;;53170:78;;;53258:19;53290:6;53280:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53280:17:0;;53258:39;;53308:154;53315:10;;53308:154;;53342:11;53352:1;53342:11;;:::i;:::-;;-1:-1:-1;53411:10:0;53419:2;53411:5;:10;:::i;:::-;53398:24;;:2;:24;:::i;:::-;53385:39;;53368:6;53375;53368:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;53368:56:0;;;;;;;;-1:-1:-1;53439:11:0;53448:2;53439:11;;:::i;:::-;;;53308:154;;51196:881;51338:4;51393:12;51435:5;51442:12;51456:15;51418:54;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;51418:54:0;;;;;;;;;51408:65;;51418:54;51408:65;;;;;-1:-1:-1;51499:5:0;51484:12;51515:292;51538:5;:12;51534:1;:16;;;51515:292;;;51577:4;51584;51577:11;51593:1;51576:18;51572:200;;;51649:5;51655:1;51649:8;;;;;;;;;;:::i;:::-;;;;;;;51659:4;51632:32;;;;;;;;6444:19:1;;;6488:2;6479:12;;6472:28;6525:2;6516:12;;6434:100;51632:32:0;;;;;;;;;;;;;51622:43;;;;;;51615:50;;51572:200;;;51740:4;51746:5;51752:1;51746:8;;;;;;;;;;:::i;:::-;;;;;;;51723:32;;;;;;;;6444:19:1;;;6488:2;6479:12;;6472:28;6525:2;6516:12;;6434:100;51723:32:0;;;;;;;;;;;;;51713:43;;;;;;51706:50;;51572:200;51786:9;51794:1;51786:9;;:::i;:::-;;-1:-1:-1;51552:3:0;;;;:::i;:::-;;;;51515:292;;;;51886:6;51882:163;51902:9;:16;51898:20;;51882:163;;;51961:9;51971:1;51961:12;;;;;;;;:::i;:::-;;;;;;;;;51953:4;:20;51949:85;;;52014:4;52007:11;;;;;;;51949:85;51920:3;;;;:::i;:::-;;;;51882:163;;;-1:-1:-1;52064:5:0;;51196:881;-1:-1:-1;;;;;;;51196:881:0:o;50234:293::-;50298:4;50323:21;;;:12;:21;;;;;;:26;50315:60;;;;-1:-1:-1;;;50315:60:0;;20605:2:1;50315:60:0;;;20587:21:1;20644:2;20624:18;;;20617:30;-1:-1:-1;;;20663:18:1;;;20656:51;20724:18;;50315:60:0;20577:171:1;50315:60:0;50438:13;;-1:-1:-1;;;;;50438:13:0;8290:10;50506:12;50470:32;;-1:-1:-1;;;50470:32:0;;;;;20899:25:1;;;-1:-1:-1;;;;;50470:48:0;;;;:23;;;;;20872:18:1;;50470:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50470:48:0;;;50234:293;-1:-1:-1;;;50234:293:0:o;50535:320::-;50605:4;50630:27;;;:15;:27;;;;;;:32;50622:69;;;;-1:-1:-1;;;50622:69:0;;17946:2:1;50622:69:0;;;17928:21:1;17985:2;17965:18;;;17958:30;18024:26;18004:18;;;17997:54;18068:18;;50622:69:0;17918:174:1;50622:69:0;50757:16;;-1:-1:-1;;;;;50757:16:0;8290:10;50834:12;8210:98;50863:325;50935:4;50960:29;;;:16;:29;;;;;;:34;50952:73;;;;-1:-1:-1;;;50952:73:0;;15237:2:1;50952:73:0;;;15219:21:1;15276:2;15256:18;;;15249:30;15315:28;15295:18;;;15288:56;15361:18;;50952:73:0;15209:176:1;50952:73:0;51092:12;;-1:-1:-1;;;;;51092:12:0;8290:10;51167:12;8210:98;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;;14474:2:1;32544:61:0;;;14456:21:1;;;14493:18;;;14486:30;14552:34;14532:18;;;14525:62;14604:18;;32544:61:0;14446:182:1;32544:61:0;32625:16;32633:7;32625;:16::i;:::-;32624:17;32616:58;;;;-1:-1:-1;;;32616:58:0;;10173:2:1;32616:58:0;;;10155:21:1;10212:2;10192:18;;;10185:30;10251;10231:18;;;10224:58;10299:18;;32616:58:0;10145: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:245::-;3196:6;3249:2;3237:9;3228:7;3224:23;3220:32;3217:2;;;3265:1;3262;3255:12;3217:2;3304:9;3291:23;3323:30;3347:5;3323:30;:::i;3388:249::-;3457:6;3510:2;3498:9;3489:7;3485:23;3481:32;3478:2;;;3526:1;3523;3516:12;3478:2;3558:9;3552:16;3577:30;3601:5;3577:30;:::i;3642:635::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:2;;;3791:1;3788;3781:12;3743:2;3824:9;3818:16;3857:18;3849:6;3846:30;3843:2;;;3889:1;3886;3879:12;3843:2;3912:22;;3965:4;3957:13;;3953:27;-1:-1:-1;3943:2:1;;3994:1;3991;3984:12;3943:2;4023;4017:9;4048:48;4064:31;4092:2;4064:31;:::i;4048:48::-;4119:2;4112:5;4105:17;4159:7;4154:2;4149;4145;4141:11;4137:20;4134:33;4131:2;;;4180:1;4177;4170:12;4131:2;4193:54;4244:2;4239;4232:5;4228:14;4223:2;4219;4215:11;4193:54;:::i;:::-;4266:5;3733:544;-1:-1:-1;;;;;3733:544:1:o;4282:180::-;4341:6;4394:2;4382:9;4373:7;4369:23;4365:32;4362:2;;;4410:1;4407;4400:12;4362:2;-1:-1:-1;4433:23:1;;4352:110;-1:-1:-1;4352:110:1:o;4467:248::-;4535:6;4543;4596:2;4584:9;4575:7;4571:23;4567:32;4564:2;;;4612:1;4609;4602:12;4564:2;-1:-1:-1;;4635:23:1;;;4705:2;4690:18;;;4677:32;;-1:-1:-1;4554:161:1:o;4720:1300::-;4849:6;4857;4865;4873;4881;4889;4942:3;4930:9;4921:7;4917:23;4913:33;4910:2;;;4959:1;4956;4949:12;4910:2;4995:9;4982:23;4972:33;;5024:2;5073;5062:9;5058:18;5045:32;5035:42;;5124:2;5113:9;5109:18;5096:32;5086:42;;5175:2;5164:9;5160:18;5147:32;5137:42;;5226:3;5215:9;5211:19;5198:33;5188:43;;5282:3;5271:9;5267:19;5254:33;5306:18;5347:2;5339:6;5336:14;5333:2;;;5363:1;5360;5353:12;5333:2;5401:6;5390:9;5386:22;5376:32;;5446:7;5439:4;5435:2;5431:13;5427:27;5417:2;;5468:1;5465;5458:12;5417:2;5504;5491:16;5526:2;5522;5519:10;5516:2;;;5532:18;;:::i;:::-;5578:2;5575:1;5571:10;5561:20;;5601:28;5625:2;5621;5617:11;5601:28;:::i;:::-;5663:15;;;5694:12;;;;5726:11;;;5756;;;5752:20;;5749:33;-1:-1:-1;5746:2:1;;;5795:1;5792;5785:12;5746:2;5817:1;5808:10;;5827:163;5841:2;5838:1;5835:9;5827:163;;;5898:17;;5886:30;;5859:1;5852:9;;;;;5936:12;;;;5968;;5827:163;;;5831:3;6009:5;5999:15;;;;;;;;4900:1120;;;;;;;;:::o;6025:257::-;6066:3;6104:5;6098:12;6131:6;6126:3;6119:19;6147:63;6203:6;6196:4;6191:3;6187:14;6180:4;6173:5;6169:16;6147:63;:::i;:::-;6264:2;6243:15;-1:-1:-1;;6239:29:1;6230:39;;;;6271:4;6226:50;;6074:208;-1:-1:-1;;6074:208:1:o;6539:433::-;6756:6;6751:3;6744:19;6726:3;6792:6;6786:13;6808:60;6861:6;6856:2;6851:3;6847:12;6842:2;6834:6;6830:15;6808:60;:::i;:::-;6927:2;6887:16;;6919:11;;;6912:27;;;;6963:2;6955:11;;6734:238;-1:-1:-1;;;6734:238:1:o;7185:488::-;-1:-1:-1;;;;;7454:15:1;;;7436:34;;7506:15;;7501:2;7486:18;;7479:43;7553:2;7538:18;;7531:34;;;7601:3;7596:2;7581:18;;7574:31;;;7379:4;;7622:45;;7647:19;;7639:6;7622:45;:::i;:::-;7614:53;7388:285;-1:-1:-1;;;;;;7388:285:1:o;8149:219::-;8298:2;8287:9;8280:21;8261:4;8318:44;8358:2;8347:9;8343:18;8335:6;8318:44;:::i;9145:414::-;9347:2;9329:21;;;9386:2;9366:18;;;9359:30;9425:34;9420:2;9405:18;;9398:62;-1:-1:-1;;;9491:2:1;9476:18;;9469:48;9549:3;9534:19;;9319:240::o;15803:356::-;16005:2;15987:21;;;16024:18;;;16017:30;16083:34;16078:2;16063:18;;16056:62;16150:2;16135:18;;15977:182::o;17328:411::-;17530:2;17512:21;;;17569:2;17549:18;;;17542:30;17608:34;17603:2;17588:18;;17581:62;-1:-1:-1;;;17674:2:1;17659:18;;17652:45;17729:3;17714:19;;17502:237::o;18499:413::-;18701:2;18683:21;;;18740:2;18720:18;;;18713:30;18779:34;18774:2;18759:18;;18752:62;-1:-1:-1;;;18845:2:1;18830:18;;18823:47;18902:3;18887:19;;18673:239::o;20935:275::-;21006:2;21000:9;21071:2;21052:13;;-1:-1:-1;;21048:27:1;21036:40;;21106:18;21091:34;;21127:22;;;21088:62;21085:2;;;21153:18;;:::i;:::-;21189:2;21182:22;20980:230;;-1:-1:-1;20980:230:1:o;21215:186::-;21263:4;21296:18;21288:6;21285:30;21282:2;;;21318:18;;:::i;:::-;-1:-1:-1;21384:2:1;21363:15;-1:-1:-1;;21359:29:1;21390:4;21355:40;;21272:129::o;21406:128::-;21446:3;21477:1;21473:6;21470:1;21467:13;21464:2;;;21483:18;;:::i;:::-;-1:-1:-1;21519:9:1;;21454:80::o;21539:120::-;21579:1;21605;21595:2;;21610:18;;:::i;:::-;-1:-1:-1;21644:9:1;;21585:74::o;21664:125::-;21704:4;21732:1;21729;21726:8;21723:2;;;21737:18;;:::i;:::-;-1:-1:-1;21774:9:1;;21713:76::o;21794:258::-;21866:1;21876:113;21890:6;21887:1;21884:13;21876:113;;;21966:11;;;21960:18;21947:11;;;21940:39;21912:2;21905:10;21876:113;;;22007:6;22004:1;22001:13;21998:2;;;-1:-1:-1;;22042:1:1;22024:16;;22017:27;21847:205::o;22057:380::-;22136:1;22132:12;;;;22179;;;22200:2;;22254:4;22246:6;22242:17;22232:27;;22200:2;22307;22299:6;22296:14;22276:18;22273:38;22270:2;;;22353:10;22348:3;22344:20;22341:1;22334:31;22388:4;22385:1;22378:15;22416:4;22413:1;22406:15;22270:2;;22112:325;;;:::o;22442:197::-;22480:3;22508:6;22549:2;22542:5;22538:14;22576:2;22567:7;22564:15;22561:2;;;22582:18;;:::i;:::-;22631:1;22618:15;;22488:151;-1:-1:-1;;;22488:151:1:o;22644:135::-;22683:3;-1:-1:-1;;22704:17:1;;22701:2;;;22724:18;;:::i;:::-;-1:-1:-1;22771:1:1;22760:13;;22691:88::o;22784:112::-;22816:1;22842;22832:2;;22847:18;;:::i;:::-;-1:-1:-1;22881:9:1;;22822:74::o;22901:127::-;22962:10;22957:3;22953:20;22950:1;22943:31;22993:4;22990:1;22983:15;23017:4;23014:1;23007:15;23033:127;23094:10;23089:3;23085:20;23082:1;23075:31;23125:4;23122:1;23115:15;23149:4;23146:1;23139:15;23165:127;23226:10;23221:3;23217:20;23214:1;23207:31;23257:4;23254:1;23247:15;23281:4;23278:1;23271:15;23297:127;23358:10;23353:3;23349:20;23346:1;23339:31;23389:4;23386:1;23379:15;23413:4;23410:1;23403:15;23429:127;23490:10;23485:3;23481:20;23478:1;23471:31;23521:4;23518:1;23511:15;23545:4;23542:1;23535:15;23561:131;-1:-1:-1;;;;;23636:31:1;;23626:42;;23616:2;;23682:1;23679;23672:12;23697:131;-1:-1:-1;;;;;;23771:32:1;;23761:43;;23751:2;;23818:1;23815;23808:12

Swarm Source

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