ETH Price: $3,502.72 (-0.19%)
Gas: 2 Gwei

Token

MetaIdol Limited (MIL)
 

Overview

Max Total Supply

208 MIL

Holders

190

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MIL
0x394b9f09c4e0cf8138016bc4cea8d87011b2be5d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Limited

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-12
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.7 <0.9.0;

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

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

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

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

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

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


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

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


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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


//import "./IERC165.sol";
/**
 * @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);
}


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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



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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


//import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
/**
 * @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 making 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;
    }
}


// import "./Common/IAirdrop.sol";
//--------------------------------------------
// AIRDROP intterface
//--------------------------------------------
interface IAirdrop {
    //--------------------
    // function
    //--------------------
    function getTotal() external view returns (uint256);
    function getAt( uint256 at ) external view returns (address);
}



// import "./Common/Base64Lib.sol";
//--------------------------
// Base64 ライブラリ
//--------------------------
library Base64Lib {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// 渡されたバイト配列をBase64エンコードする
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // エンコードサイズ
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // 出力配列の確保
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}


//------------------------------------------------------------
// Limited(ERC721)
//------------------------------------------------------------
contract Limited is Ownable, ERC721 {
    //--------------------------------------------------------
    // 定数
    //--------------------------------------------------------
    string constant private TOKEN_NAME = "MetaIdol Limited";
    string constant private TOKEN_SYMBOL = "MIL";
    address constant private OWNER_ADDRESS = 0xE2E577A889f2EB52C84c34E4539D33798987B6d2;
    uint256 private TOKEN_ID_OFS = 1;

    //--------------------------------------------------------
    // 管理
    //--------------------------------------------------------
    // 管理者
    address private _manager;

    //--------------------------------------------------------
    // ストレージ
    //--------------------------------------------------------
    // エアドロップ対象
    IAirdrop private _airdrop;

    // エアドロップ設定
    uint256 private _airdrop_start;         // 配布するトークンの開始位置
    uint256 private _airdrop_total;         // 配布するトークンの数
    uint256 private _trait_value_start;     // 配布する限定NFTの種類の開始位置
    uint256 private _trait_value_total;     // 配布する限定NFTの種類の数(ループする)
    uint256 private _gen_value;             // 配布する現地NFTの世代

    // メタデータ
    string private _metadata_name;          // 名前(共通)
    string private _metadata_description;   // 説明(共通)
    string private _metadata_external_url;  // 外部リンク(共通)
    mapping(uint256 => string) private _map_metadata_image_hash;    // 画像のハッシュ(限定NFTの種類でアクセス)
    mapping(uint256 => string) private _map_metadata_trait_name;    // 属性の名前(限定NFTの種類でアクセス)
    mapping(uint256 => string) private _map_metadata_gen_name;      // 世代の名前(限定NFTの世代でアクセス) 

    // 配布状況
    uint256 private _total_supply;          // 配布数
    mapping( uint256 => uint256) private _map_trait_value;          // 配布した属性の値(tokenIdでアクセス)
    mapping( uint256 => uint256) private _map_gen_value;            // 配布した世代の値(tokenIdでアクセス)

    //--------------------------------------------------------
    // [modifier] onlyOwnerOrManager
    //--------------------------------------------------------
    modifier onlyOwnerOrManager() {
        require( msg.sender == owner() || msg.sender == manager(), "caller is not the owner neither manager" );
        _;
    }

    //--------------------------------------------------------
    // コンストラクタ
    //--------------------------------------------------------
    constructor() Ownable() ERC721( TOKEN_NAME, TOKEN_SYMBOL ) {
        transferOwnership( OWNER_ADDRESS );
        _manager = msg.sender;
    }

    //--------------------------------------------------------
    // [public] manager
    //--------------------------------------------------------
    function manager() public view returns (address) {
        return( _manager );
    }

    //--------------------------------------------------------
    // [external/onlyOwner] setManager
    //--------------------------------------------------------
    function setManager( address target ) external onlyOwner {
        _manager = target;
    }

    //--------------------------------------------------------
    // [external] get
    //--------------------------------------------------------
    function airdrop() external view returns (address) { return( address(_airdrop) ); }

    function airdropStart() external view returns (uint256) { return( _airdrop_start ); }
    function airdropTotal() external view returns (uint256) { return( _airdrop_total ); }
    function taritValueStart() external view returns (uint256) { return( _trait_value_start ); }
    function taritValueTotal() external view returns (uint256) { return( _trait_value_total ); }
    function genValue() external view returns (uint256) { return( _gen_value ); }

    function metadataName() external view returns (string memory) { return( _metadata_name ); }
    function metadataDescription() external view returns (string memory) { return( _metadata_description ); }
    function metadataExternalUrl() external view returns (string memory) { return( _metadata_external_url ); }
    function metadataImageHashOf( uint256 trait ) external view returns (string memory) { return( _map_metadata_image_hash[trait] ); }
    function metadataTraitNameOf( uint256 trait ) external view returns (string memory) { return( _map_metadata_trait_name[trait] ); }
    function metadataGenNameOf( uint256 gen ) external view returns (string memory) { return( _map_metadata_gen_name[gen] ); }

    function totalSupply() external view returns (uint256) { return( _total_supply ); }
    function traritValueOf( uint256 tokenId ) external view returns (uint256) { return( _map_trait_value[tokenId] ); }
    function genValueOf( uint256 tokenId ) external view returns (uint256) {return( _map_gen_value[tokenId] );  }

    //--------------------------------------------------------
    // [external/onlyOwnerOrManager] set
    //--------------------------------------------------------
    // エアドロップ対象
    function setAirdrop( address target ) external onlyOwnerOrManager { _airdrop = IAirdrop(target); }

    // エアドロップ設定
    function setAirdropTarget( uint256 start, uint256 total, uint256 traitStart, uint256 traitTotal, uint256 gen ) external onlyOwnerOrManager {
        _airdrop_start = start;
        _airdrop_total = total;
        _trait_value_start= traitStart;
        _trait_value_total = traitTotal;
        _gen_value = gen;
    }

    // メタデータ設定
    function setMetadataName( string calldata name ) external onlyOwnerOrManager { _metadata_name = name; }
    function setMetadataDescription( string calldata desc ) external onlyOwnerOrManager { _metadata_description = desc; }
    function setMetadataExternalUrl( string calldata url ) external onlyOwnerOrManager { _metadata_external_url = url; }
    function setMetadataTraitOf( uint256 trait, string calldata imageHash, string calldata traitName ) external onlyOwnerOrManager {
        _map_metadata_image_hash[trait] = imageHash;
        _map_metadata_trait_name[trait] = traitName;
    }
    function setMetadataGenOf( uint256 gen, string calldata genName ) external onlyOwnerOrManager { _map_metadata_gen_name[gen] = genName; }

    // 修復
    function repairTraitValueOf( uint256 tokenId, uint256 trait ) external onlyOwnerOrManager { _map_trait_value[tokenId] = trait; }
    function repairGenValueOf( uint256 tokenId, uint256 gen ) external onlyOwnerOrManager{ _map_gen_value[tokenId] = gen; }

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

        uint256 trait = _map_trait_value[tokenId];
        uint256 gen = _map_gen_value[tokenId];

        bytes memory bytesName = abi.encodePacked( '"name":"', _metadata_name, ' #', Strings.toString( tokenId ), '",' );
        bytes memory bytesDescription = abi.encodePacked( '"description":"', _metadata_description, '",' );
        bytes memory bytesExternalUrl = abi.encodePacked( '"external_url":"', _metadata_external_url, '",' );
        bytes memory bytesImage = abi.encodePacked( '"image":"', _map_metadata_image_hash[trait], '",' );
        bytes memory bytesAttributes = abi.encodePacked( '"attributes":[{"trait_type":"Limited","value":"', _map_metadata_trait_name[trait], '"},{"trait_type":"Version","value":"', _map_metadata_gen_name[gen], '"}]' );

        string memory encoded = Base64Lib.encode( abi.encodePacked( '{', bytesName, bytesDescription, bytesExternalUrl, bytesImage, bytesAttributes, '}' ) );
        return( string( abi.encodePacked( 'data:application/json;base64,', encoded ) ) );       
    }

    //--------------------------------------------------------
    // [external/onlyOwnerOrManager] airdropTokens
    //--------------------------------------------------------
    function airdropTokens( uint256 num ) external onlyOwnerOrManager {
        require( _airdrop_start <= _total_supply, "invalid airdrop start" );
        require( _airdrop_total == _airdrop.getTotal(), "invalid airdrop total" );
        require( (_airdrop_start+_airdrop_total) >= (_total_supply+num), "invalid airdrop num" );

        uint256 curAt = _total_supply - _airdrop_start;

        for( uint256 i=0; i<num; i++ ){
            address target = _airdrop.getAt( curAt );
            uint256 tokenId = _airdrop_start + curAt + TOKEN_ID_OFS;
            _mint( target, tokenId );

            uint256 trait = _trait_value_start + (curAt%_trait_value_total);
            _map_trait_value[tokenId] = trait;
            _map_gen_value[tokenId] = _gen_value;

            curAt++;
        }

        _total_supply += num;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"airdrop","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"genValueOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataExternalUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gen","type":"uint256"}],"name":"metadataGenNameOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"trait","type":"uint256"}],"name":"metadataImageHashOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"trait","type":"uint256"}],"name":"metadataTraitNameOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"gen","type":"uint256"}],"name":"repairGenValueOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"trait","type":"uint256"}],"name":"repairTraitValueOf","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":"target","type":"address"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"traitStart","type":"uint256"},{"internalType":"uint256","name":"traitTotal","type":"uint256"},{"internalType":"uint256","name":"gen","type":"uint256"}],"name":"setAirdropTarget","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":"target","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"desc","type":"string"}],"name":"setMetadataDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setMetadataExternalUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gen","type":"uint256"},{"internalType":"string","name":"genName","type":"string"}],"name":"setMetadataGenOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"setMetadataName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"trait","type":"uint256"},{"internalType":"string","name":"imageHash","type":"string"},{"internalType":"string","name":"traitName","type":"string"}],"name":"setMetadataTraitOf","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":[],"name":"taritValueStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taritValueTotal","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"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traritValueOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260016007553480156200001657600080fd5b506040518060400160405280601081526020016f13595d1852591bdb08131a5b5a5d195960821b8152506040518060400160405280600381526020016213525360ea1b8152506200007662000070620000e160201b60201c565b620000e5565b81516200008b90600190602085019062000216565b508051620000a190600290602084019062000216565b505050620000c973e2e577a889f2eb52c84c34e4539d33798987b6d26200013560201b60201c565b600880546001600160a01b03191633179055620002f9565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200013f620001b8565b6001600160a01b038116620001aa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b620001b581620000e5565b50565b6000546001600160a01b03163314620002145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001a1565b565b8280546200022490620002bc565b90600052602060002090601f01602090048101928262000248576000855562000293565b82601f106200026357805160ff191683800117855562000293565b8280016001018555821562000293579182015b828111156200029357825182559160200191906001019062000276565b50620002a1929150620002a5565b5090565b5b80821115620002a15760008155600101620002a6565b600181811c90821680620002d157607f821691505b60208210811415620002f357634e487b7160e01b600052602260045260246000fd5b50919050565b6126ea80620003096000396000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c806370a0823111610151578063b88d4fde116100c3578063d0ebdbe711610087578063d0ebdbe7146104f6578063d4731c9c14610509578063d724e12a1461051c578063e985e9c51461052f578063f2fde38b1461056b578063fe0e05c61461057e57600080fd5b8063b88d4fde146104ad578063c2f1292e146104c0578063c7cddee0146104c8578063c87b56dd146104db578063cde68031146104ee57600080fd5b8063901d531a11610115578063901d531a146104445780639333965114610457578063942c92731461046a57806395d89b4114610472578063a22cb4651461047a578063a55f226d1461048d57600080fd5b806370a08231146103f2578063715018a61461040557806372820dbc1461040d57806385b3cbd6146104205780638da5cb5b1461043357600080fd5b80633884d635116101ea578063599487c3116101ae578063599487c31461038b5780636352211e1461039e57806363fdcf82146103b157806363fff103146103b95780636c78d2e9146103cc578063708cda18146103df57600080fd5b80633884d6351461033b5780633ed9988c1461034c578063405604641461035f57806342842e0e14610367578063481c6a751461037a57600080fd5b806318160ddd1161023157806318160ddd146102fd5780631bcd63151461030557806323b872dd146103185780632b9fce471461032b578063354bd1fc1461033357600080fd5b806301ffc9a71461026e57806306fdde0314610296578063081812fc146102ab578063095ea7b3146102d6578063180371fc146102eb575b600080fd5b61028161027c366004611ef3565b61059e565b60405190151581526020015b60405180910390f35b61029e6105f0565b60405161028d91906123ff565b6102be6102b9366004611f6f565b610682565b6040516001600160a01b03909116815260200161028d565b6102e96102e4366004611ec7565b6106a9565b005b600c545b60405190815260200161028d565b6015546102ef565b6102e9610313366004611fa1565b6107c4565b6102e9610326366004611d73565b610822565b600a546102ef565b600b546102ef565b6009546001600160a01b03166102be565b61029e61035a366004611f6f565b610853565b61029e6108f5565b6102e9610375366004611d73565b610904565b6008546001600160a01b03166102be565b6102e9610399366004611f2d565b61091f565b6102be6103ac366004611f6f565b61096a565b61029e6109ca565b6102e96103c7366004612089565b6109d9565b61029e6103da366004611f6f565b610a2f565b6102e96103ed366004611f2d565b610a4c565b6102ef610400366004611cf9565b610a97565b6102e9610b1d565b6102e961041b366004611cf9565b610b31565b6102e961042e366004611f2d565b610b92565b6000546001600160a01b03166102be565b6102e9610452366004611f6f565b610bdd565b61029e610465366004611f6f565b610edd565b61029e610efa565b61029e610f09565b6102e9610488366004611e94565b610f18565b6102ef61049b366004611f6f565b60009081526017602052604090205490565b6102e96104bb366004611db4565b610f27565b600e546102ef565b6102e96104d6366004612067565b610f59565b61029e6104e9366004611f6f565b610faa565b600d546102ef565b6102e9610504366004611cf9565b611162565b6102e9610517366004611fed565b61118c565b6102e961052a366004612067565b611206565b61028161053d366004611d3a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102e9610579366004611cf9565b611257565b6102ef61058c366004611f6f565b60009081526016602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806105cf57506001600160e01b03198216635b5e139f60e01b145b806105ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ff90612587565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90612587565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d826112d0565b506000908152600560205260409020546001600160a01b031690565b60006106b48261096a565b9050806001600160a01b0316836001600160a01b031614156107275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107435750610743813361053d565b6107b55760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161071e565b6107bf838361132f565b505050565b6000546001600160a01b03163314806107e757506008546001600160a01b031633145b6108035760405162461bcd60e51b815260040161071e90612464565b600083815260146020526040902061081c908383611c17565b50505050565b61082c338261139d565b6108485760405162461bcd60e51b815260040161071e906124ab565b6107bf83838361141c565b600081815260136020526040902080546060919061087090612587565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90612587565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b50505050509050919050565b6060600f80546105ff90612587565b6107bf83838360405180602001604052806000815250610f27565b6000546001600160a01b031633148061094257506008546001600160a01b031633145b61095e5760405162461bcd60e51b815260040161071e90612464565b6107bf60108383611c17565b6000818152600360205260408120546001600160a01b0316806105ea5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161071e565b6060601180546105ff90612587565b6000546001600160a01b03163314806109fc57506008546001600160a01b031633145b610a185760405162461bcd60e51b815260040161071e90612464565b600a94909455600b92909255600c55600d55600e55565b600081815260146020526040902080546060919061087090612587565b6000546001600160a01b0316331480610a6f57506008546001600160a01b031633145b610a8b5760405162461bcd60e51b815260040161071e90612464565b6107bf60118383611c17565b60006001600160a01b038216610b015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161071e565b506001600160a01b031660009081526004602052604090205490565b610b256115b8565b610b2f6000611612565b565b6000546001600160a01b0316331480610b5457506008546001600160a01b031633145b610b705760405162461bcd60e51b815260040161071e90612464565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480610bb557506008546001600160a01b031633145b610bd15760405162461bcd60e51b815260040161071e90612464565b6107bf600f8383611c17565b6000546001600160a01b0316331480610c0057506008546001600160a01b031633145b610c1c5760405162461bcd60e51b815260040161071e90612464565b601554600a541115610c685760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a5908185a5c991c9bdc081cdd185c9d605a1b604482015260640161071e565b600960009054906101000a90046001600160a01b03166001600160a01b031663775a25e36040518163ffffffff1660e01b815260040160206040518083038186803b158015610cb657600080fd5b505afa158015610cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cee9190611f88565b600b5414610d365760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a5908185a5c991c9bdc081d1bdd185b605a1b604482015260640161071e565b80601554610d4491906124f9565b600b54600a54610d5491906124f9565b1015610d985760405162461bcd60e51b8152602060048201526013602482015272696e76616c69642061697264726f70206e756d60681b604482015260640161071e565b6000600a54601554610daa9190612544565b905060005b82811015610ec15760095460405163303eaeed60e01b8152600481018490526000916001600160a01b03169063303eaeed9060240160206040518083038186803b158015610dfc57600080fd5b505afa158015610e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e349190611d1d565b9050600060075484600a54610e4991906124f9565b610e5391906124f9565b9050610e5f8282611662565b6000600d5485610e6f91906125dd565b600c54610e7c91906124f9565b6000838152601660209081526040808320849055600e54601790925290912055905084610ea8816125c2565b9550505050508080610eb9906125c2565b915050610daf565b508160156000828254610ed491906124f9565b90915550505050565b600081815260126020526040902080546060919061087090612587565b6060601080546105ff90612587565b6060600280546105ff90612587565b610f233383836117a4565b5050565b610f31338361139d565b610f4d5760405162461bcd60e51b815260040161071e906124ab565b61081c84848484611873565b6000546001600160a01b0316331480610f7c57506008546001600160a01b031633145b610f985760405162461bcd60e51b815260040161071e90612464565b60009182526016602052604090912055565b6000818152600360205260409020546060906001600160a01b03166110055760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161071e565b60008281526016602090815260408083205460179092528220549091600f61102c866118a6565b60405160200161103d9291906121e5565b60405160208183030381529060405290506000601060405160200161106291906121c1565b604051602081830303815290604052905060006011604051602001611087919061218a565b60408051601f19818403018152828252600088815260126020908152928120919450926110b49201612238565b60408051601f198184030181528282526000898152601360209081528382208a83526014825293822092955090936110ee93929101612256565b60405160208183030381529060405290506000611131868686868660405160200161111d9594939291906122f2565b6040516020818303038152906040526119a4565b905080604051602001611144919061237d565b60405160208183030381529060405298505050505050505050919050565b61116a6115b8565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314806111af57506008546001600160a01b031633145b6111cb5760405162461bcd60e51b815260040161071e90612464565b60008581526012602052604090206111e4908585611c17565b5060008581526013602052604090206111fe908383611c17565b505050505050565b6000546001600160a01b031633148061122957506008546001600160a01b031633145b6112455760405162461bcd60e51b815260040161071e90612464565b60009182526017602052604090912055565b61125f6115b8565b6001600160a01b0381166112c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071e565b6112cd81611612565b50565b6000818152600360205260409020546001600160a01b03166112cd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161071e565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113648261096a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113a98361096a565b9050806001600160a01b0316846001600160a01b031614806113f057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806114145750836001600160a01b031661140984610682565b6001600160a01b0316145b949350505050565b826001600160a01b031661142f8261096a565b6001600160a01b0316146114935760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161071e565b6001600160a01b0382166114f55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071e565b61150060008261132f565b6001600160a01b0383166000908152600460205260408120805460019290611529908490612544565b90915550506001600160a01b03821660009081526004602052604081208054600192906115579084906124f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b03163314610b2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116b85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071e565b6000818152600360205260409020546001600160a01b03161561171d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071e565b6001600160a01b03821660009081526004602052604081208054600192906117469084906124f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156118065760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071e565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61187e84848461141c565b61188a84848484611b0a565b61081c5760405162461bcd60e51b815260040161071e90612412565b6060816118ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118f457806118de816125c2565b91506118ed9050600a83612511565b91506118ce565b60008167ffffffffffffffff81111561190f5761190f612633565b6040519080825280601f01601f191660200182016040528015611939576020820181803683370190505b5090505b84156114145761194e600183612544565b915061195b600a866125dd565b6119669060306124f9565b60f81b81838151811061197b5761197b61261d565b60200101906001600160f81b031916908160001a90535061199d600a86612511565b945061193d565b8051606090806119c4575050604080516020810190915260008152919050565b600060036119d38360026124f9565b6119dd9190612511565b6119e8906004612525565b905060006119f78260206124f9565b67ffffffffffffffff811115611a0f57611a0f612633565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090506000604051806060016040528060408152602001612675604091399050600181016020830160005b86811015611ac5576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611a64565b506003860660018114611adf5760028114611af057611afc565b613d3d60f01b600119830152611afc565b603d60f81b6000198301525b505050918152949350505050565b60006001600160a01b0384163b15611c0c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b4e9033908990889088906004016123c2565b602060405180830381600087803b158015611b6857600080fd5b505af1925050508015611b98575060408051601f3d908101601f19168201909252611b9591810190611f10565b60015b611bf2573d808015611bc6576040519150601f19603f3d011682016040523d82523d6000602084013e611bcb565b606091505b508051611bea5760405162461bcd60e51b815260040161071e90612412565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611414565b506001949350505050565b828054611c2390612587565b90600052602060002090601f016020900481019282611c455760008555611c8b565b82601f10611c5e5782800160ff19823516178555611c8b565b82800160010185558215611c8b579182015b82811115611c8b578235825591602001919060010190611c70565b50611c97929150611c9b565b5090565b5b80821115611c975760008155600101611c9c565b60008083601f840112611cc257600080fd5b50813567ffffffffffffffff811115611cda57600080fd5b602083019150836020828501011115611cf257600080fd5b9250929050565b600060208284031215611d0b57600080fd5b8135611d1681612649565b9392505050565b600060208284031215611d2f57600080fd5b8151611d1681612649565b60008060408385031215611d4d57600080fd5b8235611d5881612649565b91506020830135611d6881612649565b809150509250929050565b600080600060608486031215611d8857600080fd5b8335611d9381612649565b92506020840135611da381612649565b929592945050506040919091013590565b60008060008060808587031215611dca57600080fd5b8435611dd581612649565b93506020850135611de581612649565b925060408501359150606085013567ffffffffffffffff80821115611e0957600080fd5b818701915087601f830112611e1d57600080fd5b813581811115611e2f57611e2f612633565b604051601f8201601f19908116603f01168101908382118183101715611e5757611e57612633565b816040528281528a6020848701011115611e7057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ea757600080fd5b8235611eb281612649565b915060208301358015158114611d6857600080fd5b60008060408385031215611eda57600080fd5b8235611ee581612649565b946020939093013593505050565b600060208284031215611f0557600080fd5b8135611d168161265e565b600060208284031215611f2257600080fd5b8151611d168161265e565b60008060208385031215611f4057600080fd5b823567ffffffffffffffff811115611f5757600080fd5b611f6385828601611cb0565b90969095509350505050565b600060208284031215611f8157600080fd5b5035919050565b600060208284031215611f9a57600080fd5b5051919050565b600080600060408486031215611fb657600080fd5b83359250602084013567ffffffffffffffff811115611fd457600080fd5b611fe086828701611cb0565b9497909650939450505050565b60008060008060006060868803121561200557600080fd5b85359450602086013567ffffffffffffffff8082111561202457600080fd5b61203089838a01611cb0565b9096509450604088013591508082111561204957600080fd5b5061205688828901611cb0565b969995985093965092949392505050565b6000806040838503121561207a57600080fd5b50508035926020909101359150565b600080600080600060a086880312156120a157600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600081518084526120dc81602086016020860161255b565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061210a57607f831692505b602080841082141561212c57634e487b7160e01b600052602260045260246000fd5b81801561214057600181146121515761217e565b60ff1986168952848901965061217e565b60008881526020902060005b868110156121765781548b82015290850190830161215d565b505084890196505b50505050505092915050565b6f1132bc3a32b93730b62fbab936111d1160811b815260006121af60108301846120f0565b61088b60f21b81526002019392505050565b6e113232b9b1b934b83a34b7b7111d1160891b815260006121af600f8301846120f0565b67113730b6b2911d1160c11b8152600061220260088301856120f0565b61202360f01b8152835161221d81600284016020880161255b565b61088b60f21b60029290910191820152600401949350505050565b681134b6b0b3b2911d1160b91b815260006121af60098301846120f0565b7f2261747472696275746573223a5b7b2274726169745f74797065223a224c696d81526e34ba32b21116113b30b63ab2911d1160891b602082015260006122a0602f8301856120f0565b7f227d2c7b2274726169745f74797065223a2256657273696f6e222c2276616c7581526332911d1160e11b60208201526122dd60248201856120f0565b62227d5d60e81b815260030195945050505050565b607b60f81b815260006001875161230f8183860160208c0161255b565b8751908401906123258184840160208c0161255b565b875191019061233a8184840160208b0161255b565b865191019061234f8184840160208a0161255b565b8551910190612364818484016020890161255b565b607d60f81b910191820152600201979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516123b581601d85016020870161255b565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f5908301846120c4565b9695505050505050565b602081526000611d1660208301846120c4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f63616c6c6572206973206e6f7420746865206f776e6572206e6569746865722060408201526636b0b730b3b2b960c91b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6000821982111561250c5761250c6125f1565b500190565b60008261252057612520612607565b500490565b600081600019048311821515161561253f5761253f6125f1565b500290565b600082821015612556576125566125f1565b500390565b60005b8381101561257657818101518382015260200161255e565b8381111561081c5750506000910152565b600181811c9082168061259b57607f821691505b602082108114156125bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d6576125d66125f1565b5060010190565b6000826125ec576125ec612607565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112cd57600080fd5b6001600160e01b0319811681146112cd57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220cd510677b86cef89f415ab9df52d5045bf93eefbaf9b240506e5182db3ebbcc664736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102695760003560e01c806370a0823111610151578063b88d4fde116100c3578063d0ebdbe711610087578063d0ebdbe7146104f6578063d4731c9c14610509578063d724e12a1461051c578063e985e9c51461052f578063f2fde38b1461056b578063fe0e05c61461057e57600080fd5b8063b88d4fde146104ad578063c2f1292e146104c0578063c7cddee0146104c8578063c87b56dd146104db578063cde68031146104ee57600080fd5b8063901d531a11610115578063901d531a146104445780639333965114610457578063942c92731461046a57806395d89b4114610472578063a22cb4651461047a578063a55f226d1461048d57600080fd5b806370a08231146103f2578063715018a61461040557806372820dbc1461040d57806385b3cbd6146104205780638da5cb5b1461043357600080fd5b80633884d635116101ea578063599487c3116101ae578063599487c31461038b5780636352211e1461039e57806363fdcf82146103b157806363fff103146103b95780636c78d2e9146103cc578063708cda18146103df57600080fd5b80633884d6351461033b5780633ed9988c1461034c578063405604641461035f57806342842e0e14610367578063481c6a751461037a57600080fd5b806318160ddd1161023157806318160ddd146102fd5780631bcd63151461030557806323b872dd146103185780632b9fce471461032b578063354bd1fc1461033357600080fd5b806301ffc9a71461026e57806306fdde0314610296578063081812fc146102ab578063095ea7b3146102d6578063180371fc146102eb575b600080fd5b61028161027c366004611ef3565b61059e565b60405190151581526020015b60405180910390f35b61029e6105f0565b60405161028d91906123ff565b6102be6102b9366004611f6f565b610682565b6040516001600160a01b03909116815260200161028d565b6102e96102e4366004611ec7565b6106a9565b005b600c545b60405190815260200161028d565b6015546102ef565b6102e9610313366004611fa1565b6107c4565b6102e9610326366004611d73565b610822565b600a546102ef565b600b546102ef565b6009546001600160a01b03166102be565b61029e61035a366004611f6f565b610853565b61029e6108f5565b6102e9610375366004611d73565b610904565b6008546001600160a01b03166102be565b6102e9610399366004611f2d565b61091f565b6102be6103ac366004611f6f565b61096a565b61029e6109ca565b6102e96103c7366004612089565b6109d9565b61029e6103da366004611f6f565b610a2f565b6102e96103ed366004611f2d565b610a4c565b6102ef610400366004611cf9565b610a97565b6102e9610b1d565b6102e961041b366004611cf9565b610b31565b6102e961042e366004611f2d565b610b92565b6000546001600160a01b03166102be565b6102e9610452366004611f6f565b610bdd565b61029e610465366004611f6f565b610edd565b61029e610efa565b61029e610f09565b6102e9610488366004611e94565b610f18565b6102ef61049b366004611f6f565b60009081526017602052604090205490565b6102e96104bb366004611db4565b610f27565b600e546102ef565b6102e96104d6366004612067565b610f59565b61029e6104e9366004611f6f565b610faa565b600d546102ef565b6102e9610504366004611cf9565b611162565b6102e9610517366004611fed565b61118c565b6102e961052a366004612067565b611206565b61028161053d366004611d3a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102e9610579366004611cf9565b611257565b6102ef61058c366004611f6f565b60009081526016602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806105cf57506001600160e01b03198216635b5e139f60e01b145b806105ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ff90612587565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90612587565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d826112d0565b506000908152600560205260409020546001600160a01b031690565b60006106b48261096a565b9050806001600160a01b0316836001600160a01b031614156107275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107435750610743813361053d565b6107b55760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161071e565b6107bf838361132f565b505050565b6000546001600160a01b03163314806107e757506008546001600160a01b031633145b6108035760405162461bcd60e51b815260040161071e90612464565b600083815260146020526040902061081c908383611c17565b50505050565b61082c338261139d565b6108485760405162461bcd60e51b815260040161071e906124ab565b6107bf83838361141c565b600081815260136020526040902080546060919061087090612587565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90612587565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b50505050509050919050565b6060600f80546105ff90612587565b6107bf83838360405180602001604052806000815250610f27565b6000546001600160a01b031633148061094257506008546001600160a01b031633145b61095e5760405162461bcd60e51b815260040161071e90612464565b6107bf60108383611c17565b6000818152600360205260408120546001600160a01b0316806105ea5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161071e565b6060601180546105ff90612587565b6000546001600160a01b03163314806109fc57506008546001600160a01b031633145b610a185760405162461bcd60e51b815260040161071e90612464565b600a94909455600b92909255600c55600d55600e55565b600081815260146020526040902080546060919061087090612587565b6000546001600160a01b0316331480610a6f57506008546001600160a01b031633145b610a8b5760405162461bcd60e51b815260040161071e90612464565b6107bf60118383611c17565b60006001600160a01b038216610b015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161071e565b506001600160a01b031660009081526004602052604090205490565b610b256115b8565b610b2f6000611612565b565b6000546001600160a01b0316331480610b5457506008546001600160a01b031633145b610b705760405162461bcd60e51b815260040161071e90612464565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480610bb557506008546001600160a01b031633145b610bd15760405162461bcd60e51b815260040161071e90612464565b6107bf600f8383611c17565b6000546001600160a01b0316331480610c0057506008546001600160a01b031633145b610c1c5760405162461bcd60e51b815260040161071e90612464565b601554600a541115610c685760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a5908185a5c991c9bdc081cdd185c9d605a1b604482015260640161071e565b600960009054906101000a90046001600160a01b03166001600160a01b031663775a25e36040518163ffffffff1660e01b815260040160206040518083038186803b158015610cb657600080fd5b505afa158015610cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cee9190611f88565b600b5414610d365760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a5908185a5c991c9bdc081d1bdd185b605a1b604482015260640161071e565b80601554610d4491906124f9565b600b54600a54610d5491906124f9565b1015610d985760405162461bcd60e51b8152602060048201526013602482015272696e76616c69642061697264726f70206e756d60681b604482015260640161071e565b6000600a54601554610daa9190612544565b905060005b82811015610ec15760095460405163303eaeed60e01b8152600481018490526000916001600160a01b03169063303eaeed9060240160206040518083038186803b158015610dfc57600080fd5b505afa158015610e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e349190611d1d565b9050600060075484600a54610e4991906124f9565b610e5391906124f9565b9050610e5f8282611662565b6000600d5485610e6f91906125dd565b600c54610e7c91906124f9565b6000838152601660209081526040808320849055600e54601790925290912055905084610ea8816125c2565b9550505050508080610eb9906125c2565b915050610daf565b508160156000828254610ed491906124f9565b90915550505050565b600081815260126020526040902080546060919061087090612587565b6060601080546105ff90612587565b6060600280546105ff90612587565b610f233383836117a4565b5050565b610f31338361139d565b610f4d5760405162461bcd60e51b815260040161071e906124ab565b61081c84848484611873565b6000546001600160a01b0316331480610f7c57506008546001600160a01b031633145b610f985760405162461bcd60e51b815260040161071e90612464565b60009182526016602052604090912055565b6000818152600360205260409020546060906001600160a01b03166110055760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161071e565b60008281526016602090815260408083205460179092528220549091600f61102c866118a6565b60405160200161103d9291906121e5565b60405160208183030381529060405290506000601060405160200161106291906121c1565b604051602081830303815290604052905060006011604051602001611087919061218a565b60408051601f19818403018152828252600088815260126020908152928120919450926110b49201612238565b60408051601f198184030181528282526000898152601360209081528382208a83526014825293822092955090936110ee93929101612256565b60405160208183030381529060405290506000611131868686868660405160200161111d9594939291906122f2565b6040516020818303038152906040526119a4565b905080604051602001611144919061237d565b60405160208183030381529060405298505050505050505050919050565b61116a6115b8565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314806111af57506008546001600160a01b031633145b6111cb5760405162461bcd60e51b815260040161071e90612464565b60008581526012602052604090206111e4908585611c17565b5060008581526013602052604090206111fe908383611c17565b505050505050565b6000546001600160a01b031633148061122957506008546001600160a01b031633145b6112455760405162461bcd60e51b815260040161071e90612464565b60009182526017602052604090912055565b61125f6115b8565b6001600160a01b0381166112c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071e565b6112cd81611612565b50565b6000818152600360205260409020546001600160a01b03166112cd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161071e565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113648261096a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113a98361096a565b9050806001600160a01b0316846001600160a01b031614806113f057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806114145750836001600160a01b031661140984610682565b6001600160a01b0316145b949350505050565b826001600160a01b031661142f8261096a565b6001600160a01b0316146114935760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161071e565b6001600160a01b0382166114f55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071e565b61150060008261132f565b6001600160a01b0383166000908152600460205260408120805460019290611529908490612544565b90915550506001600160a01b03821660009081526004602052604081208054600192906115579084906124f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b03163314610b2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116b85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071e565b6000818152600360205260409020546001600160a01b03161561171d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071e565b6001600160a01b03821660009081526004602052604081208054600192906117469084906124f9565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156118065760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071e565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61187e84848461141c565b61188a84848484611b0a565b61081c5760405162461bcd60e51b815260040161071e90612412565b6060816118ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118f457806118de816125c2565b91506118ed9050600a83612511565b91506118ce565b60008167ffffffffffffffff81111561190f5761190f612633565b6040519080825280601f01601f191660200182016040528015611939576020820181803683370190505b5090505b84156114145761194e600183612544565b915061195b600a866125dd565b6119669060306124f9565b60f81b81838151811061197b5761197b61261d565b60200101906001600160f81b031916908160001a90535061199d600a86612511565b945061193d565b8051606090806119c4575050604080516020810190915260008152919050565b600060036119d38360026124f9565b6119dd9190612511565b6119e8906004612525565b905060006119f78260206124f9565b67ffffffffffffffff811115611a0f57611a0f612633565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090506000604051806060016040528060408152602001612675604091399050600181016020830160005b86811015611ac5576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611a64565b506003860660018114611adf5760028114611af057611afc565b613d3d60f01b600119830152611afc565b603d60f81b6000198301525b505050918152949350505050565b60006001600160a01b0384163b15611c0c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b4e9033908990889088906004016123c2565b602060405180830381600087803b158015611b6857600080fd5b505af1925050508015611b98575060408051601f3d908101601f19168201909252611b9591810190611f10565b60015b611bf2573d808015611bc6576040519150601f19603f3d011682016040523d82523d6000602084013e611bcb565b606091505b508051611bea5760405162461bcd60e51b815260040161071e90612412565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611414565b506001949350505050565b828054611c2390612587565b90600052602060002090601f016020900481019282611c455760008555611c8b565b82601f10611c5e5782800160ff19823516178555611c8b565b82800160010185558215611c8b579182015b82811115611c8b578235825591602001919060010190611c70565b50611c97929150611c9b565b5090565b5b80821115611c975760008155600101611c9c565b60008083601f840112611cc257600080fd5b50813567ffffffffffffffff811115611cda57600080fd5b602083019150836020828501011115611cf257600080fd5b9250929050565b600060208284031215611d0b57600080fd5b8135611d1681612649565b9392505050565b600060208284031215611d2f57600080fd5b8151611d1681612649565b60008060408385031215611d4d57600080fd5b8235611d5881612649565b91506020830135611d6881612649565b809150509250929050565b600080600060608486031215611d8857600080fd5b8335611d9381612649565b92506020840135611da381612649565b929592945050506040919091013590565b60008060008060808587031215611dca57600080fd5b8435611dd581612649565b93506020850135611de581612649565b925060408501359150606085013567ffffffffffffffff80821115611e0957600080fd5b818701915087601f830112611e1d57600080fd5b813581811115611e2f57611e2f612633565b604051601f8201601f19908116603f01168101908382118183101715611e5757611e57612633565b816040528281528a6020848701011115611e7057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ea757600080fd5b8235611eb281612649565b915060208301358015158114611d6857600080fd5b60008060408385031215611eda57600080fd5b8235611ee581612649565b946020939093013593505050565b600060208284031215611f0557600080fd5b8135611d168161265e565b600060208284031215611f2257600080fd5b8151611d168161265e565b60008060208385031215611f4057600080fd5b823567ffffffffffffffff811115611f5757600080fd5b611f6385828601611cb0565b90969095509350505050565b600060208284031215611f8157600080fd5b5035919050565b600060208284031215611f9a57600080fd5b5051919050565b600080600060408486031215611fb657600080fd5b83359250602084013567ffffffffffffffff811115611fd457600080fd5b611fe086828701611cb0565b9497909650939450505050565b60008060008060006060868803121561200557600080fd5b85359450602086013567ffffffffffffffff8082111561202457600080fd5b61203089838a01611cb0565b9096509450604088013591508082111561204957600080fd5b5061205688828901611cb0565b969995985093965092949392505050565b6000806040838503121561207a57600080fd5b50508035926020909101359150565b600080600080600060a086880312156120a157600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600081518084526120dc81602086016020860161255b565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061210a57607f831692505b602080841082141561212c57634e487b7160e01b600052602260045260246000fd5b81801561214057600181146121515761217e565b60ff1986168952848901965061217e565b60008881526020902060005b868110156121765781548b82015290850190830161215d565b505084890196505b50505050505092915050565b6f1132bc3a32b93730b62fbab936111d1160811b815260006121af60108301846120f0565b61088b60f21b81526002019392505050565b6e113232b9b1b934b83a34b7b7111d1160891b815260006121af600f8301846120f0565b67113730b6b2911d1160c11b8152600061220260088301856120f0565b61202360f01b8152835161221d81600284016020880161255b565b61088b60f21b60029290910191820152600401949350505050565b681134b6b0b3b2911d1160b91b815260006121af60098301846120f0565b7f2261747472696275746573223a5b7b2274726169745f74797065223a224c696d81526e34ba32b21116113b30b63ab2911d1160891b602082015260006122a0602f8301856120f0565b7f227d2c7b2274726169745f74797065223a2256657273696f6e222c2276616c7581526332911d1160e11b60208201526122dd60248201856120f0565b62227d5d60e81b815260030195945050505050565b607b60f81b815260006001875161230f8183860160208c0161255b565b8751908401906123258184840160208c0161255b565b875191019061233a8184840160208b0161255b565b865191019061234f8184840160208a0161255b565b8551910190612364818484016020890161255b565b607d60f81b910191820152600201979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516123b581601d85016020870161255b565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f5908301846120c4565b9695505050505050565b602081526000611d1660208301846120c4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f63616c6c6572206973206e6f7420746865206f776e6572206e6569746865722060408201526636b0b730b3b2b960c91b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6000821982111561250c5761250c6125f1565b500190565b60008261252057612520612607565b500490565b600081600019048311821515161561253f5761253f6125f1565b500290565b600082821015612556576125566125f1565b500390565b60005b8381101561257657818101518382015260200161255e565b8381111561081c5750506000910152565b600181811c9082168061259b57607f821691505b602082108114156125bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d6576125d66125f1565b5060010190565b6000826125ec576125ec612607565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112cd57600080fd5b6001600160e01b0319811681146112cd57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220cd510677b86cef89f415ab9df52d5045bf93eefbaf9b240506e5182db3ebbcc664736f6c63430008070033

Deployed Bytecode Sourcemap

41895:9273:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23587:305;;;;;;:::i;:::-;;:::i;:::-;;;14397:14:1;;14390:22;14372:41;;14360:2;14345:18;23587:305:0;;;;;;;;24514:100;;;:::i;:::-;;;;;;;:::i;26027:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;13695:32:1;;;13677:51;;13665:2;13650:18;26027:171:0;13531:203:1;25544:417:0;;;;;;:::i;:::-;;:::i;:::-;;45725:92;45794:18;;45725:92;;;21677:25:1;;;21665:2;21650:18;45725:92:0;21531:177:1;46728:83:0;46793:13;;46728:83;;48360:136;;;;;;:::i;:::-;;:::i;26727:336::-;;;;;;:::i;:::-;;:::i;45543:85::-;45609:14;;45543:85;;45634;45700:14;;45634:85;;45452:83;45521:8;;-1:-1:-1;;;;;45521:8:0;45452:83;;46462:130;;;;;;:::i;:::-;;:::i;46006:91::-;;;:::i;27134:185::-;;;;;;:::i;:::-;;:::i;44938:86::-;45006:8;;-1:-1:-1;;;;;45006:8:0;44938:86;;47866:117;;;;;;:::i;:::-;;:::i;24225:222::-;;;;;;:::i;:::-;;:::i;46214:106::-;;;:::i;47396:323::-;;;;;;:::i;:::-;;:::i;46598:122::-;;;;;;:::i;:::-;;:::i;47989:116::-;;;;;;:::i;:::-;;:::i;23956:207::-;;;;;;:::i;:::-;;:::i;13477:103::-;;;:::i;47257:98::-;;;;;;:::i;:::-;;:::i;47757:103::-;;;;;;:::i;:::-;;:::i;12829:87::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;12829:87;;50315:848;;;;;;:::i;:::-;;:::i;46326:130::-;;;;;;:::i;:::-;;:::i;46103:105::-;;;:::i;24683:104::-;;;:::i;26270:155::-;;;;;;:::i;:::-;;:::i;46937:109::-;;;;;;:::i;:::-;46999:7;47017:23;;;:14;:23;;;;;;;46937:109;27390:323;;;;;;:::i;:::-;;:::i;45921:77::-;45983:10;;45921:77;;48519:128;;;;;;:::i;:::-;;:::i;48943:1184::-;;;;;;:::i;:::-;;:::i;45823:92::-;45892:18;;45823:92;;45200:93;;;;;;:::i;:::-;;:::i;48111:243::-;;;;;;:::i;:::-;;:::i;48653:119::-;;;;;;:::i;:::-;;:::i;26496:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26617:25:0;;;26593:4;26617:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26496:164;13735:201;;;;;;:::i;:::-;;:::i;46817:114::-;;;;;;:::i;:::-;46882:7;46901:25;;;:16;:25;;;;;;;46817:114;23587:305;23689:4;-1:-1:-1;;;;;;23726:40:0;;-1:-1:-1;;;23726:40:0;;:105;;-1:-1:-1;;;;;;;23783:48:0;;-1:-1:-1;;;23783:48:0;23726:105;:158;;;-1:-1:-1;;;;;;;;;;22242:40:0;;;23848:36;23706:178;23587:305;-1:-1:-1;;23587:305:0:o;24514:100::-;24568:13;24601:5;24594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24514:100;:::o;26027:171::-;26103:7;26123:23;26138:7;26123:14;:23::i;:::-;-1:-1:-1;26166:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26166:24:0;;26027:171::o;25544:417::-;25625:13;25641:23;25656:7;25641:14;:23::i;:::-;25625:39;;25689:5;-1:-1:-1;;;;;25683:11:0;:2;-1:-1:-1;;;;;25683:11:0;;;25675:57;;;;-1:-1:-1;;;25675:57:0;;20508:2:1;25675:57:0;;;20490:21:1;20547:2;20527:18;;;20520:30;20586:34;20566:18;;;20559:62;-1:-1:-1;;;20637:18:1;;;20630:31;20678:19;;25675:57:0;;;;;;;;;3122:10;-1:-1:-1;;;;;25767:21:0;;;;:62;;-1:-1:-1;25792:37:0;25809:5;3122:10;26496:164;:::i;25792:37::-;25745:174;;;;-1:-1:-1;;;25745:174:0;;18306:2:1;25745:174:0;;;18288:21:1;18345:2;18325:18;;;18318:30;18384:34;18364:18;;;18357:62;18455:32;18435:18;;;18428:60;18505:19;;25745:174:0;18104:426:1;25745:174:0;25932:21;25941:2;25945:7;25932:8;:21::i;:::-;25614:347;25544:417;;:::o;48360:136::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;48456:27:::1;::::0;;;:22:::1;:27;::::0;;;;:37:::1;::::0;48486:7;;48456:37:::1;:::i;:::-;;48360:136:::0;;;:::o;26727:336::-;26922:41;3122:10;26955:7;26922:18;:41::i;:::-;26914:100;;;;-1:-1:-1;;;26914:100:0;;;;;;;:::i;:::-;27027:28;27037:4;27043:2;27047:7;27027:9;:28::i;46462:130::-;46556:31;;;;:24;:31;;;;;46548:41;;46531:13;;46556:31;46548:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46462:130;;;:::o;46006:91::-;46053:13;46078:14;46070:24;;;;;:::i;27134:185::-;27272:39;27289:4;27295:2;27299:7;27272:39;;;;;;;;;;;;:16;:39::i;47866:117::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;47952:28:::1;:21;47976:4:::0;;47952:28:::1;:::i;24225:222::-:0;24297:7;24333:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24333:16:0;24368:19;24360:56;;;;-1:-1:-1;;;24360:56:0;;20155:2:1;24360:56:0;;;20137:21:1;20194:2;20174:18;;;20167:30;-1:-1:-1;;;20213:18:1;;;20206:54;20277:18;;24360:56:0;19953:348:1;46214:106:0;46268:13;46293:22;46285:32;;;;;:::i;47396:323::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;47546:14:::1;:22:::0;;;;47579:14:::1;:22:::0;;;;47612:18:::1;:30:::0;47653:18:::1;:31:::0;47695:10:::1;:16:::0;47396:323::o;46598:122::-;46688:27;;;;:22;:27;;;;;46680:37;;46663:13;;46688:27;46680:37;;;:::i;47989:116::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;48074:28:::1;:22;48099:3:::0;;48074:28:::1;:::i;23956:207::-:0;24028:7;-1:-1:-1;;;;;24056:19:0;;24048:73;;;;-1:-1:-1;;;24048:73:0;;17896:2:1;24048:73:0;;;17878:21:1;17935:2;17915:18;;;17908:30;17974:34;17954:18;;;17947:62;-1:-1:-1;;;18025:18:1;;;18018:39;18074:19;;24048:73:0;17694:405:1;24048:73:0;-1:-1:-1;;;;;;24139:16:0;;;;;:9;:16;;;;;;;23956:207::o;13477:103::-;12715:13;:11;:13::i;:::-;13542:30:::1;13569:1;13542:18;:30::i;:::-;13477:103::o:0;47257:98::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;47325:8:::1;:27:::0;;-1:-1:-1;;;;;;47325:27:0::1;-1:-1:-1::0;;;;;47325:27:0;;;::::1;::::0;;;::::1;::::0;;47257:98::o;47757:103::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;47836:21:::1;:14;47853:4:::0;;47836:21:::1;:::i;50315:848::-:0;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;50419:13:::1;;50401:14;;:31;;50392:67;;;::::0;-1:-1:-1;;;50392:67:0;;15269:2:1;50392:67:0::1;::::0;::::1;15251:21:1::0;15308:2;15288:18;;;15281:30;-1:-1:-1;;;15327:18:1;;;15320:51;15388:18;;50392:67:0::1;15067:345:1::0;50392:67:0::1;50497:8;;;;;;;;;-1:-1:-1::0;;;;;50497:8:0::1;-1:-1:-1::0;;;;;50497:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50479:14;;:37;50470:73;;;::::0;-1:-1:-1;;;50470:73:0;;19805:2:1;50470:73:0::1;::::0;::::1;19787:21:1::0;19844:2;19824:18;;;19817:30;-1:-1:-1;;;19863:18:1;;;19856:51;19924:18;;50470:73:0::1;19603:345:1::0;50470:73:0::1;50613:3;50599:13;;:17;;;;:::i;:::-;50579:14;;50564;;:29;;;;:::i;:::-;50563:54;;50554:88;;;::::0;-1:-1:-1;;;50554:88:0;;16789:2:1;50554:88:0::1;::::0;::::1;16771:21:1::0;16828:2;16808:18;;;16801:30;-1:-1:-1;;;16847:18:1;;;16840:49;16906:18;;50554:88:0::1;16587:343:1::0;50554:88:0::1;50655:13;50687:14;;50671:13;;:30;;;;:::i;:::-;50655:46;;50719:9;50714:409;50734:3;50732:1;:5;50714:409;;;50776:8;::::0;:23:::1;::::0;-1:-1:-1;;;50776:23:0;;::::1;::::0;::::1;21677:25:1::0;;;50759:14:0::1;::::0;-1:-1:-1;;;;;50776:8:0::1;::::0;:14:::1;::::0;21650:18:1;;50776:23:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50759:40;;50814:15;50857:12;;50849:5;50832:14;;:22;;;;:::i;:::-;:37;;;;:::i;:::-;50814:55;;50884:24;50891:6;50899:7;50884:5;:24::i;:::-;50925:13;50969:18;;50963:5;:24;;;;:::i;:::-;50941:18;;:47;;;;:::i;:::-;51003:25;::::0;;;:16:::1;:25;::::0;;;;;;;:33;;;51077:10:::1;::::0;51051:14:::1;:23:::0;;;;;;:36;50925:63;-1:-1:-1;51104:7:0;::::1;::::0;::::1;:::i;:::-;;;;50744:379;;;50739:3;;;;;:::i;:::-;;;;50714:409;;;;51152:3;51135:13;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;50315:848:0:o;46326:130::-;46420:31;;;;:24;:31;;;;;46412:41;;46395:13;;46420:31;46412:41;;;:::i;46103:105::-;46157:13;46182:21;46174:31;;;;;:::i;24683:104::-;24739:13;24772:7;24765:14;;;;;:::i;26270:155::-;26365:52;3122:10;26398:8;26408;26365:18;:52::i;:::-;26270:155;;:::o;27390:323::-;27564:41;3122:10;27597:7;27564:18;:41::i;:::-;27556:100;;;;-1:-1:-1;;;27556:100:0;;;;;;;:::i;:::-;27667:38;27681:4;27687:2;27691:7;27700:4;27667:13;:38::i;48519:128::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;48611:25:::1;::::0;;;:16:::1;:25;::::0;;;;;:33;48519:128::o;48943:1184::-;29285:4;29309:16;;;:7;:16;;;;;;49010:13;;-1:-1:-1;;;;;29309:16:0;49036:50;;;;-1:-1:-1;;;49036:50:0;;19098:2:1;49036:50:0;;;19080:21:1;19137:2;19117:18;;;19110:30;-1:-1:-1;;;19156:18:1;;;19149:47;19213:18;;49036:50:0;18896:341:1;49036:50:0;49099:13;49115:25;;;:16;:25;;;;;;;;;49165:14;:23;;;;;;49115:25;;49256:14;49278:27;49132:7;49278:16;:27::i;:::-;49226:87;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49201:112;;49324:29;49393:21;49356:66;;;;;;;;:::i;:::-;;;;;;;;;;;;;49324:98;;49433:29;49503:22;49465:68;;;;;;;;:::i;:::-;;;;-1:-1:-1;;49465:68:0;;;;;;;;;49544:23;49601:31;;;:24;49465:68;49601:31;;;;;;49465:68;;-1:-1:-1;49544:23:0;49570:70;;;;:::i;:::-;;;;-1:-1:-1;;49570:70:0;;;;;;;;;49651:28;49751:31;;;:24;49570:70;49751:31;;;;;;49824:27;;;:22;:27;;;;;49570:70;;-1:-1:-1;49651:28:0;;49682:178;;49751:31;49824:27;49682:178;;:::i;:::-;;;;;;;;;;;;;49651:209;;49873:21;49897:124;49938:9;49949:16;49967;49985:10;49997:15;49915:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49897:16;:124::i;:::-;49873:148;;50099:7;50048:60;;;;;;;;:::i;:::-;;;;;;;;;;;;;50032:80;;;;;;;;;;48943:1184;;;:::o;45200:93::-;12715:13;:11;:13::i;:::-;45268:8:::1;:17:::0;;-1:-1:-1;;;;;;45268:17:0::1;-1:-1:-1::0;;;;;45268:17:0;;;::::1;::::0;;;::::1;::::0;;45200:93::o;48111:243::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;48249:31:::1;::::0;;;:24:::1;:31;::::0;;;;:43:::1;::::0;48283:9;;48249:43:::1;:::i;:::-;-1:-1:-1::0;48303:31:0::1;::::0;;;:24:::1;:31;::::0;;;;:43:::1;::::0;48337:9;;48303:43:::1;:::i;:::-;;48111:243:::0;;;;;:::o;48653:119::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;44354:10;:21;;:48;;-1:-1:-1;45006:8:0;;-1:-1:-1;;;;;45006:8:0;44379:10;:23;44354:48;44345:102;;;;-1:-1:-1;;;44345:102:0;;;;;;;:::i;:::-;48740:23:::1;::::0;;;:14:::1;:23;::::0;;;;;:29;48653:119::o;13735:201::-;12715:13;:11;:13::i;:::-;-1:-1:-1;;;;;13824:22:0;::::1;13816:73;;;::::0;-1:-1:-1;;;13816:73:0;;15619:2:1;13816:73:0::1;::::0;::::1;15601:21:1::0;15658:2;15638:18;;;15631:30;15697:34;15677:18;;;15670:62;-1:-1:-1;;;15748:18:1;;;15741:36;15794:19;;13816:73:0::1;15417:402:1::0;13816:73:0::1;13900:28;13919:8;13900:18;:28::i;:::-;13735:201:::0;:::o;34002:135::-;29285:4;29309:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29309:16:0;34076:53;;;;-1:-1:-1;;;34076:53:0;;20155:2:1;34076:53:0;;;20137:21:1;20194:2;20174:18;;;20167:30;-1:-1:-1;;;20213:18:1;;;20206:54;20277:18;;34076:53:0;19953:348:1;33281:174:0;33356:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33356:29:0;-1:-1:-1;;;;;33356:29:0;;;;;;;;:24;;33410:23;33356:24;33410:14;:23::i;:::-;-1:-1:-1;;;;;33401:46:0;;;;;;;;;;;33281:174;;:::o;29514:264::-;29607:4;29624:13;29640:23;29655:7;29640:14;:23::i;:::-;29624:39;;29693:5;-1:-1:-1;;;;;29682:16:0;:7;-1:-1:-1;;;;;29682:16:0;;:52;;;-1:-1:-1;;;;;;26617:25:0;;;26593:4;26617:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29702:32;29682:87;;;;29762:7;-1:-1:-1;;;;;29738:31:0;:20;29750:7;29738:11;:20::i;:::-;-1:-1:-1;;;;;29738:31:0;;29682:87;29674:96;29514:264;-1:-1:-1;;;;29514:264:0:o;32537:625::-;32696:4;-1:-1:-1;;;;;32669:31:0;:23;32684:7;32669:14;:23::i;:::-;-1:-1:-1;;;;;32669:31:0;;32661:81;;;;-1:-1:-1;;;32661:81:0;;16026:2:1;32661:81:0;;;16008:21:1;16065:2;16045:18;;;16038:30;16104:34;16084:18;;;16077:62;-1:-1:-1;;;16155:18:1;;;16148:35;16200:19;;32661:81:0;15824:401:1;32661:81:0;-1:-1:-1;;;;;32761:16:0;;32753:65;;;;-1:-1:-1;;;32753:65:0;;17137:2:1;32753:65:0;;;17119:21:1;17176:2;17156:18;;;17149:30;17215:34;17195:18;;;17188:62;-1:-1:-1;;;17266:18:1;;;17259:34;17310:19;;32753:65:0;16935:400:1;32753:65:0;32935:29;32952:1;32956:7;32935:8;:29::i;:::-;-1:-1:-1;;;;;32977:15:0;;;;;;:9;:15;;;;;:20;;32996:1;;32977:15;:20;;32996:1;;32977:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33008:13:0;;;;;;:9;:13;;;;;:18;;33025:1;;33008:13;:18;;33025:1;;33008:18;:::i;:::-;;;;-1:-1:-1;;33037:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33037:21:0;-1:-1:-1;;;;;33037:21:0;;;;;;;;;33076:27;;33037:16;;33076:27;;;;;;;25614:347;25544:417;;:::o;12994:132::-;12875:7;12902:6;-1:-1:-1;;;;;12902:6:0;3122:10;13058:23;13050:68;;;;-1:-1:-1;;;13050:68:0;;19444:2:1;13050:68:0;;;19426:21:1;;;19463:18;;;19456:30;19522:34;19502:18;;;19495:62;19574:18;;13050:68:0;19242:356:1;14096:191:0;14170:16;14189:6;;-1:-1:-1;;;;;14206:17:0;;;-1:-1:-1;;;;;;14206:17:0;;;;;;14239:40;;14189:6;;;;;;;14239:40;;14170:16;14239:40;14159:128;14096:191;:::o;31112:439::-;-1:-1:-1;;;;;31192:16:0;;31184:61;;;;-1:-1:-1;;;31184:61:0;;18737:2:1;31184:61:0;;;18719:21:1;;;18756:18;;;18749:30;18815:34;18795:18;;;18788:62;18867:18;;31184:61:0;18535:356:1;31184:61:0;29285:4;29309:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29309:16:0;:30;31256:58;;;;-1:-1:-1;;;31256:58:0;;16432:2:1;31256:58:0;;;16414:21:1;16471:2;16451:18;;;16444:30;16510;16490:18;;;16483:58;16558:18;;31256:58:0;16230:352:1;31256:58:0;-1:-1:-1;;;;;31385:13:0;;;;;;:9;:13;;;;;:18;;31402:1;;31385:13;:18;;31402:1;;31385:18;:::i;:::-;;;;-1:-1:-1;;31414:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31414:21:0;-1:-1:-1;;;;;31414:21:0;;;;;;;;31453:33;;31414:16;;;31453:33;;31414:16;;31453:33;26270:155;;:::o;33598:315::-;33753:8;-1:-1:-1;;;;;33744:17:0;:5;-1:-1:-1;;;;;33744:17:0;;;33736:55;;;;-1:-1:-1;;;33736:55:0;;17542:2:1;33736:55:0;;;17524:21:1;17581:2;17561:18;;;17554:30;17620:27;17600:18;;;17593:55;17665:18;;33736:55:0;17340:349:1;33736:55:0;-1:-1:-1;;;;;33802:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33802:46:0;;;;;;;;;;33864:41;;14372::1;;;33864::0;;14345:18:1;33864:41:0;;;;;;;33598:315;;;:::o;28594:313::-;28750:28;28760:4;28766:2;28770:7;28750:9;:28::i;:::-;28797:47;28820:4;28826:2;28830:7;28839:4;28797:22;:47::i;:::-;28789:110;;;;-1:-1:-1;;;28789:110:0;;;;;;;:::i;399:723::-;455:13;676:10;672:53;;-1:-1:-1;;703:10:0;;;;;;;;;;;;-1:-1:-1;;;703:10:0;;;;;399:723::o;672:53::-;750:5;735:12;791:78;798:9;;791:78;;824:8;;;;:::i;:::-;;-1:-1:-1;847:10:0;;-1:-1:-1;855:2:0;847:10;;:::i;:::-;;;791:78;;;879:19;911:6;901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;901:17:0;;879:39;;929:154;936:10;;929:154;;963:11;973:1;963:11;;:::i;:::-;;-1:-1:-1;1032:10:0;1040:2;1032:5;:10;:::i;:::-;1019:24;;:2;:24;:::i;:::-;1006:39;;989:6;996;989:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;989:56:0;;;;;;;;-1:-1:-1;1060:11:0;1069:2;1060:11;;:::i;:::-;;;929:154;;40144:1594;40242:11;;40202:13;;40268:8;40264:23;;-1:-1:-1;;40278:9:0;;;;;;;;;-1:-1:-1;40278:9:0;;;40144:1594;-1:-1:-1;40144:1594:0:o;40264:23::-;40337:18;40375:1;40364:7;:3;40370:1;40364:7;:::i;:::-;40363:13;;;;:::i;:::-;40358:19;;:1;:19;:::i;:::-;40337:40;-1:-1:-1;40424:19:0;40456:15;40337:40;40469:2;40456:15;:::i;:::-;40446:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40446:26:0;;40424:48;;40485:18;40506:5;;;;;;;;;;;;;;;;;40485:26;;40575:1;40568:5;40564:13;40620:2;40612:6;40608:15;40671:1;40639:777;40694:3;40691:1;40688:10;40639:777;;;40749:1;40792:12;;;;;40786:19;40887:4;40875:2;40871:14;;;;;40853:40;;40847:47;40996:2;40992:14;;;40988:25;;40974:40;;40968:47;41125:1;41121:13;;;41117:24;;41103:39;;41097:46;41245:16;;;;41231:31;;41225:38;40923:1;40919:11;;;41017:4;40964:58;;;40955:68;41048:11;;41093:57;;;41084:67;;;;41176:11;;41221:49;;41212:59;41300:3;41296:13;41329:22;;41399:1;41384:17;;;;40742:9;40639:777;;;40643:44;41448:1;41443:3;41439:11;41469:1;41464:84;;;;41567:1;41562:82;;;;41432:212;;41464:84;-1:-1:-1;;;;;41497:17:0;;41490:43;41464:84;;41562:82;-1:-1:-1;;;;;41595:17:0;;41588:41;41432:212;-1:-1:-1;;;41660:26:0;;;41667:6;40144:1594;-1:-1:-1;;;;40144:1594:0:o;34701:853::-;34855:4;-1:-1:-1;;;;;34876:13:0;;4669:19;:23;34872:675;;34912:71;;-1:-1:-1;;;34912:71:0;;-1:-1:-1;;;;;34912:36:0;;;;;:71;;3122:10;;34963:4;;34969:7;;34978:4;;34912:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34912:71:0;;;;;;;;-1:-1:-1;;34912:71:0;;;;;;;;;;;;:::i;:::-;;;34908:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35153:13:0;;35149:328;;35196:60;;-1:-1:-1;;;35196:60:0;;;;;;;:::i;35149:328::-;35427:6;35421:13;35412:6;35408:2;35404:15;35397:38;34908:584;-1:-1:-1;;;;;;35034:51:0;-1:-1:-1;;;35034:51:0;;-1:-1:-1;35027:58:0;;34872:675;-1:-1:-1;35531:4:0;34701:853;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:348:1;66:8;76:6;130:3;123:4;115:6;111:17;107:27;97:55;;148:1;145;138:12;97:55;-1:-1:-1;171:20:1;;214:18;203:30;;200:50;;;246:1;243;236:12;200:50;283:4;275:6;271:17;259:29;;335:3;328:4;319:6;311;307:19;303:30;300:39;297:59;;;352:1;349;342:12;297:59;14:348;;;;;:::o;367:247::-;426:6;479:2;467:9;458:7;454:23;450:32;447:52;;;495:1;492;485:12;447:52;534:9;521:23;553:31;578:5;553:31;:::i;:::-;603:5;367:247;-1:-1:-1;;;367:247:1:o;619:251::-;689:6;742:2;730:9;721:7;717:23;713:32;710:52;;;758:1;755;748:12;710:52;790:9;784:16;809:31;834:5;809:31;:::i;875:388::-;943:6;951;1004:2;992:9;983:7;979:23;975:32;972:52;;;1020:1;1017;1010:12;972:52;1059:9;1046:23;1078:31;1103:5;1078:31;:::i;:::-;1128:5;-1:-1:-1;1185:2:1;1170:18;;1157:32;1198:33;1157:32;1198:33;:::i;:::-;1250:7;1240:17;;;875:388;;;;;:::o;1268:456::-;1345:6;1353;1361;1414:2;1402:9;1393:7;1389:23;1385:32;1382:52;;;1430:1;1427;1420:12;1382:52;1469:9;1456:23;1488:31;1513:5;1488:31;:::i;:::-;1538:5;-1:-1:-1;1595:2:1;1580:18;;1567:32;1608:33;1567:32;1608:33;:::i;:::-;1268:456;;1660:7;;-1:-1:-1;;;1714:2:1;1699:18;;;;1686:32;;1268:456::o;1729:1266::-;1824:6;1832;1840;1848;1901:3;1889:9;1880:7;1876:23;1872:33;1869:53;;;1918:1;1915;1908:12;1869:53;1957:9;1944:23;1976:31;2001:5;1976:31;:::i;:::-;2026:5;-1:-1:-1;2083:2:1;2068:18;;2055:32;2096:33;2055:32;2096:33;:::i;:::-;2148:7;-1:-1:-1;2202:2:1;2187:18;;2174:32;;-1:-1:-1;2257:2:1;2242:18;;2229:32;2280:18;2310:14;;;2307:34;;;2337:1;2334;2327:12;2307:34;2375:6;2364:9;2360:22;2350:32;;2420:7;2413:4;2409:2;2405:13;2401:27;2391:55;;2442:1;2439;2432:12;2391:55;2478:2;2465:16;2500:2;2496;2493:10;2490:36;;;2506:18;;:::i;:::-;2581:2;2575:9;2549:2;2635:13;;-1:-1:-1;;2631:22:1;;;2655:2;2627:31;2623:40;2611:53;;;2679:18;;;2699:22;;;2676:46;2673:72;;;2725:18;;:::i;:::-;2765:10;2761:2;2754:22;2800:2;2792:6;2785:18;2840:7;2835:2;2830;2826;2822:11;2818:20;2815:33;2812:53;;;2861:1;2858;2851:12;2812:53;2917:2;2912;2908;2904:11;2899:2;2891:6;2887:15;2874:46;2962:1;2957:2;2952;2944:6;2940:15;2936:24;2929:35;2983:6;2973:16;;;;;;;1729:1266;;;;;;;:::o;3000:416::-;3065:6;3073;3126:2;3114:9;3105:7;3101:23;3097:32;3094:52;;;3142:1;3139;3132:12;3094:52;3181:9;3168:23;3200:31;3225:5;3200:31;:::i;:::-;3250:5;-1:-1:-1;3307:2:1;3292:18;;3279:32;3349:15;;3342:23;3330:36;;3320:64;;3380:1;3377;3370:12;3421:315;3489:6;3497;3550:2;3538:9;3529:7;3525:23;3521:32;3518:52;;;3566:1;3563;3556:12;3518:52;3605:9;3592:23;3624:31;3649:5;3624:31;:::i;:::-;3674:5;3726:2;3711:18;;;;3698:32;;-1:-1:-1;;;3421:315:1:o;3741:245::-;3799:6;3852:2;3840:9;3831:7;3827:23;3823:32;3820:52;;;3868:1;3865;3858:12;3820:52;3907:9;3894:23;3926:30;3950:5;3926:30;:::i;3991:249::-;4060:6;4113:2;4101:9;4092:7;4088:23;4084:32;4081:52;;;4129:1;4126;4119:12;4081:52;4161:9;4155:16;4180:30;4204:5;4180:30;:::i;4245:411::-;4316:6;4324;4377:2;4365:9;4356:7;4352:23;4348:32;4345:52;;;4393:1;4390;4383:12;4345:52;4433:9;4420:23;4466:18;4458:6;4455:30;4452:50;;;4498:1;4495;4488:12;4452:50;4537:59;4588:7;4579:6;4568:9;4564:22;4537:59;:::i;:::-;4615:8;;4511:85;;-1:-1:-1;4245:411:1;-1:-1:-1;;;;4245:411:1:o;4661:180::-;4720:6;4773:2;4761:9;4752:7;4748:23;4744:32;4741:52;;;4789:1;4786;4779:12;4741:52;-1:-1:-1;4812:23:1;;4661:180;-1:-1:-1;4661:180:1:o;4846:184::-;4916:6;4969:2;4957:9;4948:7;4944:23;4940:32;4937:52;;;4985:1;4982;4975:12;4937:52;-1:-1:-1;5008:16:1;;4846:184;-1:-1:-1;4846:184:1:o;5035:479::-;5115:6;5123;5131;5184:2;5172:9;5163:7;5159:23;5155:32;5152:52;;;5200:1;5197;5190:12;5152:52;5236:9;5223:23;5213:33;;5297:2;5286:9;5282:18;5269:32;5324:18;5316:6;5313:30;5310:50;;;5356:1;5353;5346:12;5310:50;5395:59;5446:7;5437:6;5426:9;5422:22;5395:59;:::i;:::-;5035:479;;5473:8;;-1:-1:-1;5369:85:1;;-1:-1:-1;;;;5035:479:1:o;5519:789::-;5620:6;5628;5636;5644;5652;5705:2;5693:9;5684:7;5680:23;5676:32;5673:52;;;5721:1;5718;5711:12;5673:52;5757:9;5744:23;5734:33;;5818:2;5807:9;5803:18;5790:32;5841:18;5882:2;5874:6;5871:14;5868:34;;;5898:1;5895;5888:12;5868:34;5937:59;5988:7;5979:6;5968:9;5964:22;5937:59;:::i;:::-;6015:8;;-1:-1:-1;5911:85:1;-1:-1:-1;6103:2:1;6088:18;;6075:32;;-1:-1:-1;6119:16:1;;;6116:36;;;6148:1;6145;6138:12;6116:36;;6187:61;6240:7;6229:8;6218:9;6214:24;6187:61;:::i;:::-;5519:789;;;;-1:-1:-1;5519:789:1;;-1:-1:-1;6267:8:1;;6161:87;5519:789;-1:-1:-1;;;5519:789:1:o;6313:248::-;6381:6;6389;6442:2;6430:9;6421:7;6417:23;6413:32;6410:52;;;6458:1;6455;6448:12;6410:52;-1:-1:-1;;6481:23:1;;;6551:2;6536:18;;;6523:32;;-1:-1:-1;6313:248:1:o;6566:454::-;6661:6;6669;6677;6685;6693;6746:3;6734:9;6725:7;6721:23;6717:33;6714:53;;;6763:1;6760;6753:12;6714:53;-1:-1:-1;;6786:23:1;;;6856:2;6841:18;;6828:32;;-1:-1:-1;6907:2:1;6892:18;;6879:32;;6958:2;6943:18;;6930:32;;-1:-1:-1;7009:3:1;6994:19;6981:33;;-1:-1:-1;6566:454:1;-1:-1:-1;6566:454:1:o;7025:257::-;7066:3;7104:5;7098:12;7131:6;7126:3;7119:19;7147:63;7203:6;7196:4;7191:3;7187:14;7180:4;7173:5;7169:16;7147:63;:::i;:::-;7264:2;7243:15;-1:-1:-1;;7239:29:1;7230:39;;;;7271:4;7226:50;;7025:257;-1:-1:-1;;7025:257:1:o;7287:973::-;7372:12;;7337:3;;7427:1;7447:18;;;;7500;;;;7527:61;;7581:4;7573:6;7569:17;7559:27;;7527:61;7607:2;7655;7647:6;7644:14;7624:18;7621:38;7618:161;;;7701:10;7696:3;7692:20;7689:1;7682:31;7736:4;7733:1;7726:15;7764:4;7761:1;7754:15;7618:161;7795:18;7822:104;;;;7940:1;7935:319;;;;7788:466;;7822:104;-1:-1:-1;;7855:24:1;;7843:37;;7900:16;;;;-1:-1:-1;7822:104:1;;7935:319;21786:1;21779:14;;;21823:4;21810:18;;8029:1;8043:165;8057:6;8054:1;8051:13;8043:165;;;8135:14;;8122:11;;;8115:35;8178:16;;;;8072:10;;8043:165;;;8047:3;;8237:6;8232:3;8228:16;8221:23;;7788:466;;;;;;;7287:973;;;;:::o;8265:538::-;-1:-1:-1;;;8613:57:1;;8595:3;8689:47;8732:2;8723:12;;8715:6;8689:47;:::i;:::-;-1:-1:-1;;;8745:26:1;;8795:1;8787:10;;8265:538;-1:-1:-1;;;8265:538:1:o;8808:536::-;-1:-1:-1;;;9156:55:1;;9138:3;9230:47;9273:2;9264:12;;9256:6;9230:47;:::i;9349:842::-;-1:-1:-1;;;9846:41:1;;9828:3;9906:46;9949:1;9940:11;;9932:6;9906:46;:::i;:::-;-1:-1:-1;;;9968:2:1;9961:16;10006:6;10000:13;10022:60;10075:6;10071:1;10067:2;10063:10;10056:4;10048:6;10044:17;10022:60;:::i;:::-;-1:-1:-1;;;10140:1:1;10101:15;;;;10132:10;;;10125:34;10183:1;10175:10;;9349:842;-1:-1:-1;;;;9349:842:1:o;10196:523::-;-1:-1:-1;;;10544:43:1;;10526:3;10606:46;10649:1;10640:11;;10632:6;10606:46;:::i;10724:984::-;11230:66;11218:79;;-1:-1:-1;;;11322:2:1;11313:12;;11306:64;-1:-1:-1;11389:47:1;11432:2;11423:12;;11415:6;11389:47;:::i;:::-;11456:66;11445:78;;-1:-1:-1;;;11547:2:1;11539:11;;11532:41;11592:46;11634:2;11626:11;;11618:6;11592:46;:::i;:::-;-1:-1:-1;;;11647:29:1;;11700:1;11692:10;;10724:984;-1:-1:-1;;;;;10724:984:1:o;11713:1360::-;-1:-1:-1;;;12253:3:1;12246:16;12228:3;12281:1;12311:6;12305:13;12327:62;12382:6;12377:2;12372:3;12368:12;12361:4;12353:6;12349:17;12327:62;:::i;:::-;12449:13;;12408:16;;;;12471:63;12449:13;12512:11;;;12505:4;12493:17;;12471:63;:::i;:::-;12595:13;;12553:17;;;12617:63;12595:13;12658:11;;;12651:4;12639:17;;12617:63;:::i;:::-;12741:13;;12699:17;;;12763:63;12741:13;12804:11;;;12797:4;12785:17;;12763:63;:::i;:::-;12887:13;;12845:17;;;12909:63;12887:13;12950:11;;;12943:4;12931:17;;12909:63;:::i;:::-;-1:-1:-1;;;12991:17:1;;13024:11;;;13017:24;13065:1;13057:10;;11713:1360;-1:-1:-1;;;;;;;11713:1360:1:o;13078:448::-;13340:31;13335:3;13328:44;13310:3;13401:6;13395:13;13417:62;13472:6;13467:2;13462:3;13458:12;13451:4;13443:6;13439:17;13417:62;:::i;:::-;13499:16;;;;13517:2;13495:25;;13078:448;-1:-1:-1;;13078:448:1:o;13739:488::-;-1:-1:-1;;;;;14008:15:1;;;13990:34;;14060:15;;14055:2;14040:18;;14033:43;14107:2;14092:18;;14085:34;;;14155:3;14150:2;14135:18;;14128:31;;;13933:4;;14176:45;;14201:19;;14193:6;14176:45;:::i;:::-;14168:53;13739:488;-1:-1:-1;;;;;;13739:488:1:o;14424:219::-;14573:2;14562:9;14555:21;14536:4;14593:44;14633:2;14622:9;14618:18;14610:6;14593:44;:::i;14648:414::-;14850:2;14832:21;;;14889:2;14869:18;;;14862:30;14928:34;14923:2;14908:18;;14901:62;-1:-1:-1;;;14994:2:1;14979:18;;14972:48;15052:3;15037:19;;14648:414::o;20708:403::-;20910:2;20892:21;;;20949:2;20929:18;;;20922:30;20988:34;20983:2;20968:18;;20961:62;-1:-1:-1;;;21054:2:1;21039:18;;21032:37;21101:3;21086:19;;20708:403::o;21116:410::-;21318:2;21300:21;;;21357:2;21337:18;;;21330:30;21396:34;21391:2;21376:18;;21369:62;-1:-1:-1;;;21462:2:1;21447:18;;21440:44;21516:3;21501:19;;21116:410::o;21839:128::-;21879:3;21910:1;21906:6;21903:1;21900:13;21897:39;;;21916:18;;:::i;:::-;-1:-1:-1;21952:9:1;;21839:128::o;21972:120::-;22012:1;22038;22028:35;;22043:18;;:::i;:::-;-1:-1:-1;22077:9:1;;21972:120::o;22097:168::-;22137:7;22203:1;22199;22195:6;22191:14;22188:1;22185:21;22180:1;22173:9;22166:17;22162:45;22159:71;;;22210:18;;:::i;:::-;-1:-1:-1;22250:9:1;;22097:168::o;22270:125::-;22310:4;22338:1;22335;22332:8;22329:34;;;22343:18;;:::i;:::-;-1:-1:-1;22380:9:1;;22270:125::o;22400:258::-;22472:1;22482:113;22496:6;22493:1;22490:13;22482:113;;;22572:11;;;22566:18;22553:11;;;22546:39;22518:2;22511:10;22482:113;;;22613:6;22610:1;22607:13;22604:48;;;-1:-1:-1;;22648:1:1;22630:16;;22623:27;22400:258::o;22663:380::-;22742:1;22738:12;;;;22785;;;22806:61;;22860:4;22852:6;22848:17;22838:27;;22806:61;22913:2;22905:6;22902:14;22882:18;22879:38;22876:161;;;22959:10;22954:3;22950:20;22947:1;22940:31;22994:4;22991:1;22984:15;23022:4;23019:1;23012:15;22876:161;;22663:380;;;:::o;23048:135::-;23087:3;-1:-1:-1;;23108:17:1;;23105:43;;;23128:18;;:::i;:::-;-1:-1:-1;23175:1:1;23164:13;;23048:135::o;23188:112::-;23220:1;23246;23236:35;;23251:18;;:::i;:::-;-1:-1:-1;23285:9:1;;23188:112::o;23305:127::-;23366:10;23361:3;23357:20;23354:1;23347:31;23397:4;23394:1;23387:15;23421:4;23418:1;23411:15;23437:127;23498:10;23493:3;23489:20;23486:1;23479:31;23529:4;23526:1;23519:15;23553:4;23550:1;23543:15;23569:127;23630:10;23625:3;23621:20;23618:1;23611:31;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;23701:127;23762:10;23757:3;23753:20;23750:1;23743:31;23793:4;23790:1;23783:15;23817:4;23814:1;23807:15;23833:131;-1:-1:-1;;;;;23908:31:1;;23898:42;;23888:70;;23954:1;23951;23944:12;23969:131;-1:-1:-1;;;;;;24043:32:1;;24033:43;;24023:71;;24090:1;24087;24080:12

Swarm Source

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