ETH Price: $3,386.69 (-1.48%)
Gas: 2 Gwei

Token

NAIAGenesis (NG)
 

Overview

Max Total Supply

999 NG

Holders

597

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 NG
0x7f3988ea0275cf4741bbf9080fbad248805f9956
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:
NAIA

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/NAIA.sol




pragma solidity >=0.7.0 <0.9.0;



contract NAIA is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.1 ether;
  uint256 public maxSupply = 999;
  uint256 public maxMintAmount = 40;
  uint256 public nftPerAddressLimit = 40;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;
  mapping(address => uint256) public allowlist;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
	mint(30);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _address) public view returns (uint256)  {
      return allowlist[_address];
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function WhitelistUsers(address[] memory addresses, uint256 numSlots)
    external
    onlyOwner
  {
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots;
    }
  }
 
 
  function withdraw() public payable onlyOwner {
    // This will pay MyutaCirus 15% of the initial sale.
    // =============================================================================
    (bool hs, ) = payable(0xfe358947A5Da55F60f349Fb0dFD5b4eb47349058).call{value: address(this).balance * 15 / 100}("");
    require(hs);
    // =============================================================================
    
    // This will payout the owner 85% of the contract balance.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"numSlots","type":"uint256"}],"name":"WhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000ba5565b5067016345785d8a0000600e556103e7600f55602860108190556011556012805462ffffff1916620100001790553480156200006357600080fd5b5060405162003a4938038062003a49833981016040819052620000869162000d25565b8351849084906200009f90600090602085019062000ba5565b508051620000b590600190602084019062000ba5565b505050620000d2620000cc620000fe60201b60201c565b62000102565b620000dd8262000154565b620000e881620001bc565b620000f4601e6200021c565b5050505062000f5b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a35760405162461bcd60e51b8152602060048201819052602482015260008051602062003a2983398151915260448201526064015b60405180910390fd5b8051620001b890600b90602084019062000ba5565b5050565b600a546001600160a01b03163314620002075760405162461bcd60e51b8152602060048201819052602482015260008051602062003a2983398151915260448201526064016200019a565b8051620001b890600d90602084019062000ba5565b60125460ff1615620002715760405162461bcd60e51b815260206004820152601660248201527f74686520636f6e7472616374206973207061757365640000000000000000000060448201526064016200019a565b60006200027d60085490565b905060008211620002d15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016200019a565b601054821115620003315760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016200019a565b600f5462000340838362000df4565b1115620003905760405162461bcd60e51b815260206004820152601660248201527f6d6178204e4654206c696d69742065786365656465640000000000000000000060448201526064016200019a565b600a546001600160a01b03163314620004df5760125462010000900460ff16151560011415620004895733600090815260156020526040902054620004185760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016200019a565b3360009081526014602052604090205460115462000437848362000df4565b1115620004875760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016200019a565b505b81600e5462000499919062000e0f565b341015620004df5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016200019a565b60015b8281116200053957336000908152601460205260408120805491620005078362000e31565b90915550620005249050336200051e838562000df4565b6200053e565b80620005308162000e31565b915050620004e2565b505050565b620001b88282604051806020016040528060008152506200056060201b60201c565b6200056c8383620005d3565b6200057b600084848462000729565b620005395760405162461bcd60e51b8152602060048201526032602482015260008051602062003a0983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019a565b6001600160a01b0382166200062b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200019a565b6000818152600260205260409020546001600160a01b031615620006925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200019a565b620006a06000838362000882565b6001600160a01b0382166000908152600360205260408120805460019290620006cb90849062000df4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200074a846001600160a01b03166200095e60201b620017d61760201c565b156200087657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200078490339089908890889060040162000e4f565b6020604051808303816000875af1925050508015620007c2575060408051601f3d908101601f19168201909252620007bf9181019062000ea5565b60015b6200085b573d808015620007f3576040519150601f19603f3d011682016040523d82523d6000602084013e620007f8565b606091505b508051620008535760405162461bcd60e51b8152602060048201526032602482015260008051602062003a0983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200087a565b5060015b949350505050565b6200089a8383836200053960201b62000b7b1760201c565b6001600160a01b038316620008f857620008f281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6200091e565b816001600160a01b0316836001600160a01b0316146200091e576200091e838262000964565b6001600160a01b0382166200093857620005398162000a11565b826001600160a01b0316826001600160a01b031614620005395762000539828262000acb565b3b151590565b600060016200097e8462000b1c60201b620010751760201c565b6200098a919062000ed8565b600083815260076020526040902054909150808214620009de576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000a259060019062000ed8565b6000838152600960205260408120546008805493945090928490811062000a505762000a5062000ef2565b90600052602060002001549050806008838154811062000a745762000a7462000ef2565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000aaf5762000aaf62000f08565b6001900381819060005260206000200160009055905550505050565b600062000ae38362000b1c60201b620010751760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000b895760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200019a565b506001600160a01b031660009081526003602052604090205490565b82805462000bb39062000f1e565b90600052602060002090601f01602090048101928262000bd7576000855562000c22565b82601f1062000bf257805160ff191683800117855562000c22565b8280016001018555821562000c22579182015b8281111562000c2257825182559160200191906001019062000c05565b5062000c3092915062000c34565b5090565b5b8082111562000c30576000815560010162000c35565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000c7e57818101518382015260200162000c64565b8381111562000c8e576000848401525b50505050565b600082601f83011262000ca657600080fd5b81516001600160401b038082111562000cc35762000cc362000c4b565b604051601f8301601f19908116603f0116810190828211818310171562000cee5762000cee62000c4b565b8160405283815286602085880101111562000d0857600080fd5b62000d1b84602083016020890162000c61565b9695505050505050565b6000806000806080858703121562000d3c57600080fd5b84516001600160401b038082111562000d5457600080fd5b62000d628883890162000c94565b9550602087015191508082111562000d7957600080fd5b62000d878883890162000c94565b9450604087015191508082111562000d9e57600080fd5b62000dac8883890162000c94565b9350606087015191508082111562000dc357600080fd5b5062000dd28782880162000c94565b91505092959194509250565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000e0a5762000e0a62000dde565b500190565b600081600019048311821515161562000e2c5762000e2c62000dde565b500290565b600060001982141562000e485762000e4862000dde565b5060010190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000e8e8160a085016020870162000c61565b601f01601f19169190910160a00195945050505050565b60006020828403121562000eb857600080fd5b81516001600160e01b03198116811462000ed157600080fd5b9392505050565b60008282101562000eed5762000eed62000dde565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c9082168062000f3357607f821691505b6020821081141562000f5557634e487b7160e01b600052602260045260246000fd5b50919050565b612a9e8062000f6b6000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063a7cd52cb116100c1578063d0eb26b01161007a578063d0eb26b014610765578063d5abeb0114610785578063da3ef23f1461079b578063e985e9c5146107bb578063f2c4ce1e14610804578063f2fde38b1461082457600080fd5b8063a7cd52cb146106ad578063b88d4fde146106da578063ba4e5c49146106fa578063ba7d2c761461071a578063c668286214610730578063c87b56dd1461074557600080fd5b80638da5cb5b116101135780638da5cb5b1461061257806395d89b41146106305780639c70b51214610645578063a0712d6814610665578063a22cb46514610678578063a475b5dd1461069857600080fd5b80636352211e146105885780636c0360eb146105a857806370a08231146105bd578063715018a6146105dd5780637f00c7a6146105f257600080fd5b80632f745c59116101f3578063438b6300116101ac578063438b6300146104c257806344a0d68a146104ef5780634f6ccce71461050f578063518302271461052f57806355f804b31461054e5780635c975abb1461056e57600080fd5b80632f745c59146104045780633af32abf146104245780633c9527641461045a5780633ccfd60b1461047a578063415219f31461048257806342842e0e146104a257600080fd5b8063095ea7b311610245578063095ea7b31461034857806313faede61461036857806318160ddd1461038c57806318cae269146103a1578063239c70ae146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461232d565b610844565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461235f565b61086f565b005b3480156102e557600080fd5b506102ee6108b5565b6040516102ae91906123d2565b34801561030757600080fd5b5061031b6103163660046123e5565b610947565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee6109dc565b34801561035457600080fd5b506102d7610363366004612415565b610a6a565b34801561037457600080fd5b5061037e600e5481565b6040519081526020016102ae565b34801561039857600080fd5b5060085461037e565b3480156103ad57600080fd5b5061037e6103bc36600461243f565b60146020526000908152604090205481565b3480156103da57600080fd5b5061037e60105481565b3480156103f057600080fd5b506102d76103ff36600461245a565b610b80565b34801561041057600080fd5b5061037e61041f366004612415565b610bb1565b34801561043057600080fd5b5061037e61043f36600461243f565b6001600160a01b031660009081526015602052604090205490565b34801561046657600080fd5b506102d761047536600461235f565b610c47565b6102d7610c8d565b34801561048e57600080fd5b506102d761049d3660046124dd565b610da9565b3480156104ae57600080fd5b506102d76104bd36600461245a565b610e35565b3480156104ce57600080fd5b506104e26104dd36600461243f565b610e50565b6040516102ae9190612590565b3480156104fb57600080fd5b506102d761050a3660046123e5565b610ef2565b34801561051b57600080fd5b5061037e61052a3660046123e5565b610f21565b34801561053b57600080fd5b506012546102a290610100900460ff1681565b34801561055a57600080fd5b506102d761056936600461262c565b610fb4565b34801561057a57600080fd5b506012546102a29060ff1681565b34801561059457600080fd5b5061031b6105a33660046123e5565b610ff1565b3480156105b457600080fd5b506102ee611068565b3480156105c957600080fd5b5061037e6105d836600461243f565b611075565b3480156105e957600080fd5b506102d76110fc565b3480156105fe57600080fd5b506102d761060d3660046123e5565b611132565b34801561061e57600080fd5b50600a546001600160a01b031661031b565b34801561063c57600080fd5b506102ee611161565b34801561065157600080fd5b506012546102a29062010000900460ff1681565b6102d76106733660046123e5565b611170565b34801561068457600080fd5b506102d7610693366004612675565b61145e565b3480156106a457600080fd5b506102d7611469565b3480156106b957600080fd5b5061037e6106c836600461243f565b60156020526000908152604090205481565b3480156106e657600080fd5b506102d76106f53660046126a8565b6114a4565b34801561070657600080fd5b5061031b6107153660046123e5565b6114dc565b34801561072657600080fd5b5061037e60115481565b34801561073c57600080fd5b506102ee611506565b34801561075157600080fd5b506102ee6107603660046123e5565b611513565b34801561077157600080fd5b506102d76107803660046123e5565b611692565b34801561079157600080fd5b5061037e600f5481565b3480156107a757600080fd5b506102d76107b636600461262c565b6116c1565b3480156107c757600080fd5b506102a26107d6366004612724565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081057600080fd5b506102d761081f36600461262c565b6116fe565b34801561083057600080fd5b506102d761083f36600461243f565b61173b565b60006001600160e01b0319821663780e9d6360e01b14806108695750610869826117dc565b92915050565b600a546001600160a01b031633146108a25760405162461bcd60e51b81526004016108999061274e565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108c490612783565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090612783565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109c05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610899565b506000908152600460205260409020546001600160a01b031690565b600d80546109e990612783565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590612783565b8015610a625780601f10610a3757610100808354040283529160200191610a62565b820191906000526020600020905b815481529060010190602001808311610a4557829003601f168201915b505050505081565b6000610a7582610ff1565b9050806001600160a01b0316836001600160a01b03161415610ae35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610899565b336001600160a01b0382161480610aff5750610aff81336107d6565b610b715760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610899565b610b7b838361182c565b505050565b610b8a338261189a565b610ba65760405162461bcd60e51b8152600401610899906127be565b610b7b838383611991565b6000610bbc83611075565b8210610c1e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610899565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c715760405162461bcd60e51b81526004016108999061274e565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610cb75760405162461bcd60e51b81526004016108999061274e565b600073fe358947a5da55f60f349fb0dfd5b4eb473490586064610cdb47600f612825565b610ce5919061285a565b604051600081818185875af1925050503d8060008114610d21576040519150601f19603f3d011682016040523d82523d6000602084013e610d26565b606091505b5050905080610d3457600080fd5b6000610d48600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610da557600080fd5b5050565b600a546001600160a01b03163314610dd35760405162461bcd60e51b81526004016108999061274e565b60005b8251811015610b7b578160156000858481518110610df657610df661286e565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610e2d90612884565b915050610dd6565b610b7b838383604051806020016040528060008152506114a4565b60606000610e5d83611075565b905060008167ffffffffffffffff811115610e7a57610e7a612496565b604051908082528060200260200182016040528015610ea3578160200160208202803683370190505b50905060005b82811015610eea57610ebb8582610bb1565b828281518110610ecd57610ecd61286e565b602090810291909101015280610ee281612884565b915050610ea9565b509392505050565b600a546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016108999061274e565b600e55565b6000610f2c60085490565b8210610f8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610899565b60088281548110610fa257610fa261286e565b90600052602060002001549050919050565b600a546001600160a01b03163314610fde5760405162461bcd60e51b81526004016108999061274e565b8051610da590600b90602084019061227e565b6000818152600260205260408120546001600160a01b0316806108695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610899565b600b80546109e990612783565b60006001600160a01b0382166110e05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610899565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111265760405162461bcd60e51b81526004016108999061274e565b6111306000611b3c565b565b600a546001600160a01b0316331461115c5760405162461bcd60e51b81526004016108999061274e565b601055565b6060600180546108c490612783565b60125460ff16156111bc5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610899565b60006111c760085490565b9050600082116112195760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610899565b6010548211156112775760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610899565b600f54611284838361289f565b11156112cb5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610899565b600a546001600160a01b0316331461140e5760125462010000900460ff161515600114156113bc573360009081526015602052604090205461134f5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610899565b3360009081526014602052604090205460115461136c848361289f565b11156113ba5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610899565b505b81600e546113ca9190612825565b34101561140e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610899565b60015b828111610b7b5733600090815260146020526040812080549161143383612884565b9091555061144c905033611447838561289f565b611b8e565b8061145681612884565b915050611411565b610da5338383611ba8565b600a546001600160a01b031633146114935760405162461bcd60e51b81526004016108999061274e565b6012805461ff001916610100179055565b6114ae338361189a565b6114ca5760405162461bcd60e51b8152600401610899906127be565b6114d684848484611c77565b50505050565b601381815481106114ec57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c80546109e990612783565b6000818152600260205260409020546060906001600160a01b03166115925760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610899565b601254610100900460ff1661163357600d80546115ae90612783565b80601f01602080910402602001604051908101604052809291908181526020018280546115da90612783565b80156116275780601f106115fc57610100808354040283529160200191611627565b820191906000526020600020905b81548152906001019060200180831161160a57829003601f168201915b50505050509050919050565b600061163d611caa565b9050600081511161165d576040518060200160405280600081525061168b565b8061166784611cb9565b600c60405160200161167b939291906128b7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116bc5760405162461bcd60e51b81526004016108999061274e565b601155565b600a546001600160a01b031633146116eb5760405162461bcd60e51b81526004016108999061274e565b8051610da590600c90602084019061227e565b600a546001600160a01b031633146117285760405162461bcd60e51b81526004016108999061274e565b8051610da590600d90602084019061227e565b600a546001600160a01b031633146117655760405162461bcd60e51b81526004016108999061274e565b6001600160a01b0381166117ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610899565b6117d381611b3c565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061180d57506001600160e01b03198216635b5e139f60e01b145b8061086957506301ffc9a760e01b6001600160e01b0319831614610869565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186182610ff1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610899565b600061191e83610ff1565b9050806001600160a01b0316846001600160a01b031614806119595750836001600160a01b031661194e84610947565b6001600160a01b0316145b8061198957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119a482610ff1565b6001600160a01b031614611a0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610899565b6001600160a01b038216611a6e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610899565b611a79838383611db7565b611a8460008261182c565b6001600160a01b0383166000908152600360205260408120805460019290611aad90849061297b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611adb90849061289f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610da5828260405180602001604052806000815250611e6f565b816001600160a01b0316836001600160a01b03161415611c0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610899565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c82848484611991565b611c8e84848484611ea2565b6114d65760405162461bcd60e51b815260040161089990612992565b6060600b80546108c490612783565b606081611cdd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d075780611cf181612884565b9150611d009050600a8361285a565b9150611ce1565b60008167ffffffffffffffff811115611d2257611d22612496565b6040519080825280601f01601f191660200182016040528015611d4c576020820181803683370190505b5090505b841561198957611d6160018361297b565b9150611d6e600a866129e4565b611d7990603061289f565b60f81b818381518110611d8e57611d8e61286e565b60200101906001600160f81b031916908160001a905350611db0600a8661285a565b9450611d50565b6001600160a01b038316611e1257611e0d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e35565b816001600160a01b0316836001600160a01b031614611e3557611e358382611fa0565b6001600160a01b038216611e4c57610b7b8161203d565b826001600160a01b0316826001600160a01b031614610b7b57610b7b82826120ec565b611e798383612130565b611e866000848484611ea2565b610b7b5760405162461bcd60e51b815260040161089990612992565b60006001600160a01b0384163b15611f9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee69033908990889088906004016129f8565b6020604051808303816000875af1925050508015611f21575060408051601f3d908101601f19168201909252611f1e91810190612a35565b60015b611f7b573d808015611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b508051611f735760405162461bcd60e51b815260040161089990612992565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611989565b506001949350505050565b60006001611fad84611075565b611fb7919061297b565b60008381526007602052604090205490915080821461200a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061204f9060019061297b565b600083815260096020526040812054600880549394509092849081106120775761207761286e565b9060005260206000200154905080600883815481106120985761209861286e565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120d0576120d0612a52565b6001900381819060005260206000200160009055905550505050565b60006120f783611075565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610899565b6000818152600260205260409020546001600160a01b0316156121eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610899565b6121f760008383611db7565b6001600160a01b038216600090815260036020526040812080546001929061222090849061289f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461228a90612783565b90600052602060002090601f0160209004810192826122ac57600085556122f2565b82601f106122c557805160ff19168380011785556122f2565b828001600101855582156122f2579182015b828111156122f25782518255916020019190600101906122d7565b506122fe929150612302565b5090565b5b808211156122fe5760008155600101612303565b6001600160e01b0319811681146117d357600080fd5b60006020828403121561233f57600080fd5b813561168b81612317565b8035801515811461235a57600080fd5b919050565b60006020828403121561237157600080fd5b61168b8261234a565b60005b8381101561239557818101518382015260200161237d565b838111156114d65750506000910152565b600081518084526123be81602086016020860161237a565b601f01601f19169290920160200192915050565b60208152600061168b60208301846123a6565b6000602082840312156123f757600080fd5b5035919050565b80356001600160a01b038116811461235a57600080fd5b6000806040838503121561242857600080fd5b612431836123fe565b946020939093013593505050565b60006020828403121561245157600080fd5b61168b826123fe565b60008060006060848603121561246f57600080fd5b612478846123fe565b9250612486602085016123fe565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124d5576124d5612496565b604052919050565b600080604083850312156124f057600080fd5b823567ffffffffffffffff8082111561250857600080fd5b818501915085601f83011261251c57600080fd5b813560208282111561253057612530612496565b8160051b92506125418184016124ac565b828152928401810192818101908985111561255b57600080fd5b948201945b8486101561258057612571866123fe565b82529482019490820190612560565b9997909101359750505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125c8578351835292840192918401916001016125ac565b50909695505050505050565b600067ffffffffffffffff8311156125ee576125ee612496565b612601601f8401601f19166020016124ac565b905082815283838301111561261557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561263e57600080fd5b813567ffffffffffffffff81111561265557600080fd5b8201601f8101841361266657600080fd5b611989848235602084016125d4565b6000806040838503121561268857600080fd5b612691836123fe565b915061269f6020840161234a565b90509250929050565b600080600080608085870312156126be57600080fd5b6126c7856123fe565b93506126d5602086016123fe565b925060408501359150606085013567ffffffffffffffff8111156126f857600080fd5b8501601f8101871361270957600080fd5b612718878235602084016125d4565b91505092959194509250565b6000806040838503121561273757600080fd5b612740836123fe565b915061269f602084016123fe565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061279757607f821691505b602082108114156127b857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561283f5761283f61280f565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261286957612869612844565b500490565b634e487b7160e01b600052603260045260246000fd5b60006000198214156128985761289861280f565b5060010190565b600082198211156128b2576128b261280f565b500190565b6000845160206128ca8285838a0161237a565b8551918401916128dd8184848a0161237a565b8554920191600090600181811c90808316806128fa57607f831692505b85831081141561291857634e487b7160e01b85526022600452602485fd5b80801561292c576001811461293d5761296a565b60ff1985168852838801955061296a565b60008b81526020902060005b858110156129625781548a820152908401908801612949565b505083880195505b50939b9a5050505050505050505050565b60008282101561298d5761298d61280f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826129f3576129f3612844565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a2b908301846123a6565b9695505050505050565b600060208284031215612a4757600080fd5b815161168b81612317565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b3fd59235a9007dceca5cbc49de0b6a3fc65bda25fff231555d3f5ef97f03f8d64736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b4e41494147656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024e470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66425a37734d79736a334c7769387258437a64444d384b6b6938356739706d7570753153325647706d7869672f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d613262756663424a4c4a4a425251674b64786d415850455539576544365744756d324b4e385838504a58706d2f50726572657665616c2e6a736f6e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063a7cd52cb116100c1578063d0eb26b01161007a578063d0eb26b014610765578063d5abeb0114610785578063da3ef23f1461079b578063e985e9c5146107bb578063f2c4ce1e14610804578063f2fde38b1461082457600080fd5b8063a7cd52cb146106ad578063b88d4fde146106da578063ba4e5c49146106fa578063ba7d2c761461071a578063c668286214610730578063c87b56dd1461074557600080fd5b80638da5cb5b116101135780638da5cb5b1461061257806395d89b41146106305780639c70b51214610645578063a0712d6814610665578063a22cb46514610678578063a475b5dd1461069857600080fd5b80636352211e146105885780636c0360eb146105a857806370a08231146105bd578063715018a6146105dd5780637f00c7a6146105f257600080fd5b80632f745c59116101f3578063438b6300116101ac578063438b6300146104c257806344a0d68a146104ef5780634f6ccce71461050f578063518302271461052f57806355f804b31461054e5780635c975abb1461056e57600080fd5b80632f745c59146104045780633af32abf146104245780633c9527641461045a5780633ccfd60b1461047a578063415219f31461048257806342842e0e146104a257600080fd5b8063095ea7b311610245578063095ea7b31461034857806313faede61461036857806318160ddd1461038c57806318cae269146103a1578063239c70ae146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461232d565b610844565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461235f565b61086f565b005b3480156102e557600080fd5b506102ee6108b5565b6040516102ae91906123d2565b34801561030757600080fd5b5061031b6103163660046123e5565b610947565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee6109dc565b34801561035457600080fd5b506102d7610363366004612415565b610a6a565b34801561037457600080fd5b5061037e600e5481565b6040519081526020016102ae565b34801561039857600080fd5b5060085461037e565b3480156103ad57600080fd5b5061037e6103bc36600461243f565b60146020526000908152604090205481565b3480156103da57600080fd5b5061037e60105481565b3480156103f057600080fd5b506102d76103ff36600461245a565b610b80565b34801561041057600080fd5b5061037e61041f366004612415565b610bb1565b34801561043057600080fd5b5061037e61043f36600461243f565b6001600160a01b031660009081526015602052604090205490565b34801561046657600080fd5b506102d761047536600461235f565b610c47565b6102d7610c8d565b34801561048e57600080fd5b506102d761049d3660046124dd565b610da9565b3480156104ae57600080fd5b506102d76104bd36600461245a565b610e35565b3480156104ce57600080fd5b506104e26104dd36600461243f565b610e50565b6040516102ae9190612590565b3480156104fb57600080fd5b506102d761050a3660046123e5565b610ef2565b34801561051b57600080fd5b5061037e61052a3660046123e5565b610f21565b34801561053b57600080fd5b506012546102a290610100900460ff1681565b34801561055a57600080fd5b506102d761056936600461262c565b610fb4565b34801561057a57600080fd5b506012546102a29060ff1681565b34801561059457600080fd5b5061031b6105a33660046123e5565b610ff1565b3480156105b457600080fd5b506102ee611068565b3480156105c957600080fd5b5061037e6105d836600461243f565b611075565b3480156105e957600080fd5b506102d76110fc565b3480156105fe57600080fd5b506102d761060d3660046123e5565b611132565b34801561061e57600080fd5b50600a546001600160a01b031661031b565b34801561063c57600080fd5b506102ee611161565b34801561065157600080fd5b506012546102a29062010000900460ff1681565b6102d76106733660046123e5565b611170565b34801561068457600080fd5b506102d7610693366004612675565b61145e565b3480156106a457600080fd5b506102d7611469565b3480156106b957600080fd5b5061037e6106c836600461243f565b60156020526000908152604090205481565b3480156106e657600080fd5b506102d76106f53660046126a8565b6114a4565b34801561070657600080fd5b5061031b6107153660046123e5565b6114dc565b34801561072657600080fd5b5061037e60115481565b34801561073c57600080fd5b506102ee611506565b34801561075157600080fd5b506102ee6107603660046123e5565b611513565b34801561077157600080fd5b506102d76107803660046123e5565b611692565b34801561079157600080fd5b5061037e600f5481565b3480156107a757600080fd5b506102d76107b636600461262c565b6116c1565b3480156107c757600080fd5b506102a26107d6366004612724565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081057600080fd5b506102d761081f36600461262c565b6116fe565b34801561083057600080fd5b506102d761083f36600461243f565b61173b565b60006001600160e01b0319821663780e9d6360e01b14806108695750610869826117dc565b92915050565b600a546001600160a01b031633146108a25760405162461bcd60e51b81526004016108999061274e565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108c490612783565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090612783565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109c05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610899565b506000908152600460205260409020546001600160a01b031690565b600d80546109e990612783565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590612783565b8015610a625780601f10610a3757610100808354040283529160200191610a62565b820191906000526020600020905b815481529060010190602001808311610a4557829003601f168201915b505050505081565b6000610a7582610ff1565b9050806001600160a01b0316836001600160a01b03161415610ae35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610899565b336001600160a01b0382161480610aff5750610aff81336107d6565b610b715760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610899565b610b7b838361182c565b505050565b610b8a338261189a565b610ba65760405162461bcd60e51b8152600401610899906127be565b610b7b838383611991565b6000610bbc83611075565b8210610c1e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610899565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c715760405162461bcd60e51b81526004016108999061274e565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610cb75760405162461bcd60e51b81526004016108999061274e565b600073fe358947a5da55f60f349fb0dfd5b4eb473490586064610cdb47600f612825565b610ce5919061285a565b604051600081818185875af1925050503d8060008114610d21576040519150601f19603f3d011682016040523d82523d6000602084013e610d26565b606091505b5050905080610d3457600080fd5b6000610d48600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610da557600080fd5b5050565b600a546001600160a01b03163314610dd35760405162461bcd60e51b81526004016108999061274e565b60005b8251811015610b7b578160156000858481518110610df657610df661286e565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610e2d90612884565b915050610dd6565b610b7b838383604051806020016040528060008152506114a4565b60606000610e5d83611075565b905060008167ffffffffffffffff811115610e7a57610e7a612496565b604051908082528060200260200182016040528015610ea3578160200160208202803683370190505b50905060005b82811015610eea57610ebb8582610bb1565b828281518110610ecd57610ecd61286e565b602090810291909101015280610ee281612884565b915050610ea9565b509392505050565b600a546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016108999061274e565b600e55565b6000610f2c60085490565b8210610f8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610899565b60088281548110610fa257610fa261286e565b90600052602060002001549050919050565b600a546001600160a01b03163314610fde5760405162461bcd60e51b81526004016108999061274e565b8051610da590600b90602084019061227e565b6000818152600260205260408120546001600160a01b0316806108695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610899565b600b80546109e990612783565b60006001600160a01b0382166110e05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610899565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111265760405162461bcd60e51b81526004016108999061274e565b6111306000611b3c565b565b600a546001600160a01b0316331461115c5760405162461bcd60e51b81526004016108999061274e565b601055565b6060600180546108c490612783565b60125460ff16156111bc5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610899565b60006111c760085490565b9050600082116112195760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610899565b6010548211156112775760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610899565b600f54611284838361289f565b11156112cb5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610899565b600a546001600160a01b0316331461140e5760125462010000900460ff161515600114156113bc573360009081526015602052604090205461134f5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610899565b3360009081526014602052604090205460115461136c848361289f565b11156113ba5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610899565b505b81600e546113ca9190612825565b34101561140e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610899565b60015b828111610b7b5733600090815260146020526040812080549161143383612884565b9091555061144c905033611447838561289f565b611b8e565b8061145681612884565b915050611411565b610da5338383611ba8565b600a546001600160a01b031633146114935760405162461bcd60e51b81526004016108999061274e565b6012805461ff001916610100179055565b6114ae338361189a565b6114ca5760405162461bcd60e51b8152600401610899906127be565b6114d684848484611c77565b50505050565b601381815481106114ec57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c80546109e990612783565b6000818152600260205260409020546060906001600160a01b03166115925760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610899565b601254610100900460ff1661163357600d80546115ae90612783565b80601f01602080910402602001604051908101604052809291908181526020018280546115da90612783565b80156116275780601f106115fc57610100808354040283529160200191611627565b820191906000526020600020905b81548152906001019060200180831161160a57829003601f168201915b50505050509050919050565b600061163d611caa565b9050600081511161165d576040518060200160405280600081525061168b565b8061166784611cb9565b600c60405160200161167b939291906128b7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116bc5760405162461bcd60e51b81526004016108999061274e565b601155565b600a546001600160a01b031633146116eb5760405162461bcd60e51b81526004016108999061274e565b8051610da590600c90602084019061227e565b600a546001600160a01b031633146117285760405162461bcd60e51b81526004016108999061274e565b8051610da590600d90602084019061227e565b600a546001600160a01b031633146117655760405162461bcd60e51b81526004016108999061274e565b6001600160a01b0381166117ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610899565b6117d381611b3c565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061180d57506001600160e01b03198216635b5e139f60e01b145b8061086957506301ffc9a760e01b6001600160e01b0319831614610869565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186182610ff1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610899565b600061191e83610ff1565b9050806001600160a01b0316846001600160a01b031614806119595750836001600160a01b031661194e84610947565b6001600160a01b0316145b8061198957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119a482610ff1565b6001600160a01b031614611a0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610899565b6001600160a01b038216611a6e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610899565b611a79838383611db7565b611a8460008261182c565b6001600160a01b0383166000908152600360205260408120805460019290611aad90849061297b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611adb90849061289f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610da5828260405180602001604052806000815250611e6f565b816001600160a01b0316836001600160a01b03161415611c0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610899565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c82848484611991565b611c8e84848484611ea2565b6114d65760405162461bcd60e51b815260040161089990612992565b6060600b80546108c490612783565b606081611cdd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d075780611cf181612884565b9150611d009050600a8361285a565b9150611ce1565b60008167ffffffffffffffff811115611d2257611d22612496565b6040519080825280601f01601f191660200182016040528015611d4c576020820181803683370190505b5090505b841561198957611d6160018361297b565b9150611d6e600a866129e4565b611d7990603061289f565b60f81b818381518110611d8e57611d8e61286e565b60200101906001600160f81b031916908160001a905350611db0600a8661285a565b9450611d50565b6001600160a01b038316611e1257611e0d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e35565b816001600160a01b0316836001600160a01b031614611e3557611e358382611fa0565b6001600160a01b038216611e4c57610b7b8161203d565b826001600160a01b0316826001600160a01b031614610b7b57610b7b82826120ec565b611e798383612130565b611e866000848484611ea2565b610b7b5760405162461bcd60e51b815260040161089990612992565b60006001600160a01b0384163b15611f9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee69033908990889088906004016129f8565b6020604051808303816000875af1925050508015611f21575060408051601f3d908101601f19168201909252611f1e91810190612a35565b60015b611f7b573d808015611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b508051611f735760405162461bcd60e51b815260040161089990612992565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611989565b506001949350505050565b60006001611fad84611075565b611fb7919061297b565b60008381526007602052604090205490915080821461200a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061204f9060019061297b565b600083815260096020526040812054600880549394509092849081106120775761207761286e565b9060005260206000200154905080600883815481106120985761209861286e565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120d0576120d0612a52565b6001900381819060005260206000200160009055905550505050565b60006120f783611075565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610899565b6000818152600260205260409020546001600160a01b0316156121eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610899565b6121f760008383611db7565b6001600160a01b038216600090815260036020526040812080546001929061222090849061289f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461228a90612783565b90600052602060002090601f0160209004810192826122ac57600085556122f2565b82601f106122c557805160ff19168380011785556122f2565b828001600101855582156122f2579182015b828111156122f25782518255916020019190600101906122d7565b506122fe929150612302565b5090565b5b808211156122fe5760008155600101612303565b6001600160e01b0319811681146117d357600080fd5b60006020828403121561233f57600080fd5b813561168b81612317565b8035801515811461235a57600080fd5b919050565b60006020828403121561237157600080fd5b61168b8261234a565b60005b8381101561239557818101518382015260200161237d565b838111156114d65750506000910152565b600081518084526123be81602086016020860161237a565b601f01601f19169290920160200192915050565b60208152600061168b60208301846123a6565b6000602082840312156123f757600080fd5b5035919050565b80356001600160a01b038116811461235a57600080fd5b6000806040838503121561242857600080fd5b612431836123fe565b946020939093013593505050565b60006020828403121561245157600080fd5b61168b826123fe565b60008060006060848603121561246f57600080fd5b612478846123fe565b9250612486602085016123fe565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124d5576124d5612496565b604052919050565b600080604083850312156124f057600080fd5b823567ffffffffffffffff8082111561250857600080fd5b818501915085601f83011261251c57600080fd5b813560208282111561253057612530612496565b8160051b92506125418184016124ac565b828152928401810192818101908985111561255b57600080fd5b948201945b8486101561258057612571866123fe565b82529482019490820190612560565b9997909101359750505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125c8578351835292840192918401916001016125ac565b50909695505050505050565b600067ffffffffffffffff8311156125ee576125ee612496565b612601601f8401601f19166020016124ac565b905082815283838301111561261557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561263e57600080fd5b813567ffffffffffffffff81111561265557600080fd5b8201601f8101841361266657600080fd5b611989848235602084016125d4565b6000806040838503121561268857600080fd5b612691836123fe565b915061269f6020840161234a565b90509250929050565b600080600080608085870312156126be57600080fd5b6126c7856123fe565b93506126d5602086016123fe565b925060408501359150606085013567ffffffffffffffff8111156126f857600080fd5b8501601f8101871361270957600080fd5b612718878235602084016125d4565b91505092959194509250565b6000806040838503121561273757600080fd5b612740836123fe565b915061269f602084016123fe565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061279757607f821691505b602082108114156127b857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561283f5761283f61280f565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261286957612869612844565b500490565b634e487b7160e01b600052603260045260246000fd5b60006000198214156128985761289861280f565b5060010190565b600082198211156128b2576128b261280f565b500190565b6000845160206128ca8285838a0161237a565b8551918401916128dd8184848a0161237a565b8554920191600090600181811c90808316806128fa57607f831692505b85831081141561291857634e487b7160e01b85526022600452602485fd5b80801561292c576001811461293d5761296a565b60ff1985168852838801955061296a565b60008b81526020902060005b858110156129625781548a820152908401908801612949565b505083880195505b50939b9a5050505050505050505050565b60008282101561298d5761298d61280f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826129f3576129f3612844565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a2b908301846123a6565b9695505050505050565b600060208284031215612a4757600080fd5b815161168b81612317565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b3fd59235a9007dceca5cbc49de0b6a3fc65bda25fff231555d3f5ef97f03f8d64736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b4e41494147656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024e470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66425a37734d79736a334c7769387258437a64444d384b6b6938356739706d7570753153325647706d7869672f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d613262756663424a4c4a4a425251674b64786d415850455539576544365744756d324b4e385838504a58706d2f50726572657665616c2e6a736f6e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NAIAGenesis
Arg [1] : _symbol (string): NG
Arg [2] : _initBaseURI (string): ipfs://QmfBZ7sMysj3Lwi8rXCzdDM8Kki85g9pmupu1S2VGpmxig/
Arg [3] : _initNotRevealedUri (string): ipfs://Qma2bufcBJLJJBRQgKdxmAXPEU9WeD6WDum2KN8X8PJXpm/Prereveal.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4e41494147656e65736973000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4e47000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d66425a37734d79736a334c7769387258437a64444d384b
Arg [10] : 6b6938356739706d7570753153325647706d7869672f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [12] : 697066733a2f2f516d613262756663424a4c4a4a425251674b64786d41585045
Arg [13] : 5539576544365744756d324b4e385838504a58706d2f50726572657665616c2e
Arg [14] : 6a736f6e00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44527:4856:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38303:224;;;;;;;;;;-1:-1:-1;38303:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38303:224:0;;;;;;;;48217:73;;;;;;;;;;-1:-1:-1;48217:73:0;;;;;:::i;:::-;;:::i;:::-;;25797:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27356:221::-;;;;;;;;;;-1:-1:-1;27356:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;27356:221:0;1878:203:1;44675:28:0;;;;;;;;;;;;;:::i;26879:411::-;;;;;;;;;;-1:-1:-1;26879:411:0;;;;;:::i;:::-;;:::i;44708:31::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;44708:31:0;2523:177:1;38943:113:0;;;;;;;;;;-1:-1:-1;39031:10:0;:17;38943:113;;45005:55;;;;;;;;;;-1:-1:-1;45005:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;44779:33;;;;;;;;;;;;;;;;28106:339;;;;;;;;;;-1:-1:-1;28106:339:0;;;;;:::i;:::-;;:::i;38611:256::-;;;;;;;;;;-1:-1:-1;38611:256:0;;;;;:::i;:::-;;:::i;46472:113::-;;;;;;;;;;-1:-1:-1;46472:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;46560:19:0;46534:7;46560:19;;;:9;:19;;;;;;;46472:113;48298:95;;;;;;;;;;-1:-1:-1;48298:95:0;;;;;:::i;:::-;;:::i;48623:757::-;;;:::i;48401:212::-;;;;;;;;;;-1:-1:-1;48401:212:0;;;;;:::i;:::-;;:::i;28516:185::-;;;;;;;;;;-1:-1:-1;28516:185:0;;;;;:::i;:::-;;:::i;46591:348::-;;;;;;;;;;-1:-1:-1;46591:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47649:80::-;;;;;;;;;;-1:-1:-1;47649:80:0;;;;;:::i;:::-;;:::i;39133:233::-;;;;;;;;;;-1:-1:-1;39133:233:0;;;;;:::i;:::-;;:::i;44891:28::-;;;;;;;;;;-1:-1:-1;44891:28:0;;;;;;;;;;;47857:98;;;;;;;;;;-1:-1:-1;47857:98:0;;;;;:::i;:::-;;:::i;44860:26::-;;;;;;;;;;-1:-1:-1;44860:26:0;;;;;;;;25491:239;;;;;;;;;;-1:-1:-1;25491:239:0;;;;;:::i;:::-;;:::i;44607:21::-;;;;;;;;;;;;;:::i;25221:208::-;;;;;;;;;;-1:-1:-1;25221:208:0;;;;;:::i;:::-;;:::i;4767:103::-;;;;;;;;;;;;;:::i;47735:116::-;;;;;;;;;;-1:-1:-1;47735:116:0;;;;;:::i;:::-;;:::i;4116:87::-;;;;;;;;;;-1:-1:-1;4189:6:0;;-1:-1:-1;;;;;4189:6:0;4116:87;;25966:104;;;;;;;;;;;;;:::i;44924:34::-;;;;;;;;;;-1:-1:-1;44924:34:0;;;;;;;;;;;45519:945;;;;;;:::i;:::-;;:::i;27649:155::-;;;;;;;;;;-1:-1:-1;27649:155:0;;;;;:::i;:::-;;:::i;47464:65::-;;;;;;;;;;;;;:::i;45065:44::-;;;;;;;;;;-1:-1:-1;45065:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;28772:328;;;;;;;;;;-1:-1:-1;28772:328:0;;;;;:::i;:::-;;:::i;44963:37::-;;;;;;;;;;-1:-1:-1;44963:37:0;;;;;:::i;:::-;;:::i;44817:38::-;;;;;;;;;;;;;;;;44633:37;;;;;;;;;;;;;:::i;46945:497::-;;;;;;;;;;-1:-1:-1;46945:497:0;;;;;:::i;:::-;;:::i;47537:104::-;;;;;;;;;;-1:-1:-1;47537:104:0;;;;;:::i;:::-;;:::i;44744:30::-;;;;;;;;;;;;;;;;47961:122;;;;;;;;;;-1:-1:-1;47961:122:0;;;;;:::i;:::-;;:::i;27875:164::-;;;;;;;;;;-1:-1:-1;27875:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27996:25:0;;;27972:4;27996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27875:164;48091:120;;;;;;;;;;-1:-1:-1;48091:120:0;;;;;:::i;:::-;;:::i;5025:201::-;;;;;;;;;;-1:-1:-1;5025:201:0;;;;;:::i;:::-;;:::i;38303:224::-;38405:4;-1:-1:-1;;;;;;38429:50:0;;-1:-1:-1;;;38429:50:0;;:90;;;38483:36;38507:11;38483:23;:36::i;:::-;38422:97;38303:224;-1:-1:-1;;38303:224:0:o;48217:73::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;;;;;;;;;48269:6:::1;:15:::0;;-1:-1:-1;;48269:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48217:73::o;25797:100::-;25851:13;25884:5;25877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25797:100;:::o;27356:221::-;27432:7;30699:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30699:16:0;27452:73;;;;-1:-1:-1;;;27452:73:0;;8317:2:1;27452:73:0;;;8299:21:1;8356:2;8336:18;;;8329:30;8395:34;8375:18;;;8368:62;-1:-1:-1;;;8446:18:1;;;8439:42;8498:19;;27452:73:0;8115:408:1;27452:73:0;-1:-1:-1;27545:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27545:24:0;;27356:221::o;44675:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26879:411::-;26960:13;26976:23;26991:7;26976:14;:23::i;:::-;26960:39;;27024:5;-1:-1:-1;;;;;27018:11:0;:2;-1:-1:-1;;;;;27018:11:0;;;27010:57;;;;-1:-1:-1;;;27010:57:0;;8730:2:1;27010:57:0;;;8712:21:1;8769:2;8749:18;;;8742:30;8808:34;8788:18;;;8781:62;-1:-1:-1;;;8859:18:1;;;8852:31;8900:19;;27010:57:0;8528:397:1;27010:57:0;2920:10;-1:-1:-1;;;;;27102:21:0;;;;:62;;-1:-1:-1;27127:37:0;27144:5;2920:10;27875:164;:::i;27127:37::-;27080:168;;;;-1:-1:-1;;;27080:168:0;;9132:2:1;27080:168:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;9281:26;9261:18;;;9254:54;9325:19;;27080:168:0;8930:420:1;27080:168:0;27261:21;27270:2;27274:7;27261:8;:21::i;:::-;26949:341;26879:411;;:::o;28106:339::-;28301:41;2920:10;28334:7;28301:18;:41::i;:::-;28293:103;;;;-1:-1:-1;;;28293:103:0;;;;;;;:::i;:::-;28409:28;28419:4;28425:2;28429:7;28409:9;:28::i;38611:256::-;38708:7;38744:23;38761:5;38744:16;:23::i;:::-;38736:5;:31;38728:87;;;;-1:-1:-1;;;38728:87:0;;9975:2:1;38728:87:0;;;9957:21:1;10014:2;9994:18;;;9987:30;10053:34;10033:18;;;10026:62;-1:-1:-1;;;10104:18:1;;;10097:41;10155:19;;38728:87:0;9773:407:1;38728:87:0;-1:-1:-1;;;;;;38833:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38611:256::o;48298:95::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48363:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48363:24:0;;::::1;::::0;;;::::1;::::0;;48298:95::o;48623:757::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48820:7:::1;48841:42;48926:3;48897:26;:21;48921:2;48897:26;:::i;:::-;:32;;;;:::i;:::-;48833:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48819:115;;;48949:2;48941:11;;;::::0;::::1;;49202:7;49223;4189:6:::0;;-1:-1:-1;;;;;4189:6:0;;4116:87;49223:7:::1;-1:-1:-1::0;;;;;49215:21:0::1;49244;49215:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49201:69;;;49285:2;49277:11;;;::::0;::::1;;48668:712;;48623:757::o:0;48401:212::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48515:9:::1;48510:98;48534:9;:16;48530:1;:20;48510:98;;;48592:8;48566:9;:23;48576:9;48586:1;48576:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;48566:23:0::1;-1:-1:-1::0;;;;;48566:23:0::1;;;;;;;;;;;;:34;;;;48552:3;;;;;:::i;:::-;;;;48510:98;;28516:185:::0;28654:39;28671:4;28677:2;28681:7;28654:39;;;;;;;;;;;;:16;:39::i;46591:348::-;46666:16;46694:23;46720:17;46730:6;46720:9;:17::i;:::-;46694:43;;46744:25;46786:15;46772:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46772:30:0;;46744:58;;46814:9;46809:103;46829:15;46825:1;:19;46809:103;;;46874:30;46894:6;46902:1;46874:19;:30::i;:::-;46860:8;46869:1;46860:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46846:3;;;;:::i;:::-;;;;46809:103;;;-1:-1:-1;46925:8:0;46591:348;-1:-1:-1;;;46591:348:0:o;47649:80::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;47708:4:::1;:15:::0;47649:80::o;39133:233::-;39208:7;39244:30;39031:10;:17;;38943:113;39244:30;39236:5;:38;39228:95;;;;-1:-1:-1;;;39228:95:0;;11431:2:1;39228:95:0;;;11413:21:1;11470:2;11450:18;;;11443:30;11509:34;11489:18;;;11482:62;-1:-1:-1;;;11560:18:1;;;11553:42;11612:19;;39228:95:0;11229:408:1;39228:95:0;39341:10;39352:5;39341:17;;;;;;;;:::i;:::-;;;;;;;;;39334:24;;39133:233;;;:::o;47857:98::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;47928:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25491:239::-:0;25563:7;25599:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25599:16:0;25634:19;25626:73;;;;-1:-1:-1;;;25626:73:0;;11844:2:1;25626:73:0;;;11826:21:1;11883:2;11863:18;;;11856:30;11922:34;11902:18;;;11895:62;-1:-1:-1;;;11973:18:1;;;11966:39;12022:19;;25626:73:0;11642:405:1;44607:21:0;;;;;;;:::i;25221:208::-;25293:7;-1:-1:-1;;;;;25321:19:0;;25313:74;;;;-1:-1:-1;;;25313:74:0;;12254:2:1;25313:74:0;;;12236:21:1;12293:2;12273:18;;;12266:30;12332:34;12312:18;;;12305:62;-1:-1:-1;;;12383:18:1;;;12376:40;12433:19;;25313:74:0;12052:406:1;25313:74:0;-1:-1:-1;;;;;;25405:16:0;;;;;:9;:16;;;;;;;25221:208::o;4767:103::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;4832:30:::1;4859:1;4832:18;:30::i;:::-;4767:103::o:0;47735:116::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;47812:13:::1;:33:::0;47735:116::o;25966:104::-;26022:13;26055:7;26048:14;;;;;:::i;45519:945::-;45585:6;;;;45584:7;45576:42;;;;-1:-1:-1;;;45576:42:0;;12665:2:1;45576:42:0;;;12647:21:1;12704:2;12684:18;;;12677:30;-1:-1:-1;;;12723:18:1;;;12716:52;12785:18;;45576:42:0;12463:346:1;45576:42:0;45625:14;45642:13;39031:10;:17;;38943:113;45642:13;45625:30;;45684:1;45670:11;:15;45662:55;;;;-1:-1:-1;;;45662:55:0;;13016:2:1;45662:55:0;;;12998:21:1;13055:2;13035:18;;;13028:30;13094:29;13074:18;;;13067:57;13141:18;;45662:55:0;12814:351:1;45662:55:0;45747:13;;45732:11;:28;;45724:77;;;;-1:-1:-1;;;45724:77:0;;13372:2:1;45724:77:0;;;13354:21:1;13411:2;13391:18;;;13384:30;13450:34;13430:18;;;13423:62;-1:-1:-1;;;13501:18:1;;;13494:34;13545:19;;45724:77:0;13170:400:1;45724:77:0;45840:9;;45816:20;45825:11;45816:6;:20;:::i;:::-;:33;;45808:68;;;;-1:-1:-1;;;45808:68:0;;13910:2:1;45808:68:0;;;13892:21:1;13949:2;13929:18;;;13922:30;-1:-1:-1;;;13968:18:1;;;13961:52;14030:18;;45808:68:0;13708:346:1;45808:68:0;4189:6;;-1:-1:-1;;;;;4189:6:0;45889:10;:21;45885:424;;45926:15;;;;;;;:23;;45945:4;45926:23;45923:306;;;45984:10;45998:1;45974:21;;;:9;:21;;;;;;45966:69;;;;-1:-1:-1;;;45966:69:0;;14261:2:1;45966:69:0;;;14243:21:1;14300:2;14280:18;;;14273:30;14339:33;14319:18;;;14312:61;14390:18;;45966:69:0;14059:355:1;45966:69:0;46098:10;46050:24;46077:32;;;:20;:32;;;;;;46166:18;;46132:30;46151:11;46077:32;46132:30;:::i;:::-;:52;;46124:93;;;;-1:-1:-1;;;46124:93:0;;14621:2:1;46124:93:0;;;14603:21:1;14660:2;14640:18;;;14633:30;14699;14679:18;;;14672:58;14747:18;;46124:93:0;14419:352:1;46124:93:0;45951:278;45923:306;46267:11;46260:4;;:18;;;;:::i;:::-;46247:9;:31;;46239:62;;;;-1:-1:-1;;;46239:62:0;;14978:2:1;46239:62:0;;;14960:21:1;15017:2;14997:18;;;14990:30;-1:-1:-1;;;15036:18:1;;;15029:48;15094:18;;46239:62:0;14776:342:1;46239:62:0;46338:1;46321:138;46346:11;46341:1;:16;46321:138;;46396:10;46375:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;46418:33:0;;-1:-1:-1;46428:10:0;46440;46449:1;46440:6;:10;:::i;:::-;46418:9;:33::i;:::-;46359:3;;;;:::i;:::-;;;;46321:138;;27649:155;27744:52;2920:10;27777:8;27787;27744:18;:52::i;47464:65::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;47508:8:::1;:15:::0;;-1:-1:-1;;47508:15:0::1;;;::::0;;47464:65::o;28772:328::-;28947:41;2920:10;28980:7;28947:18;:41::i;:::-;28939:103;;;;-1:-1:-1;;;28939:103:0;;;;;;;:::i;:::-;29053:39;29067:4;29073:2;29077:7;29086:5;29053:13;:39::i;:::-;28772:328;;;;:::o;44963:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44963:37:0;;-1:-1:-1;44963:37:0;:::o;44633:::-;;;;;;;:::i;46945:497::-;30675:4;30699:16;;;:7;:16;;;;;;47043:13;;-1:-1:-1;;;;;30699:16:0;47068:97;;;;-1:-1:-1;;;47068:97:0;;15325:2:1;47068:97:0;;;15307:21:1;15364:2;15344:18;;;15337:30;15403:34;15383:18;;;15376:62;-1:-1:-1;;;15454:18:1;;;15447:45;15509:19;;47068:97:0;15123:411:1;47068:97:0;47181:8;;;;;;;47178:62;;47218:14;47211:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46945:497;;;:::o;47178:62::-;47248:28;47279:10;:8;:10::i;:::-;47248:41;;47334:1;47309:14;47303:28;:32;:133;;;;;;;;;;;;;;;;;47371:14;47387:18;:7;:16;:18::i;:::-;47407:13;47354:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47303:133;47296:140;46945:497;-1:-1:-1;;;46945:497:0:o;47537:104::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;47608:18:::1;:27:::0;47537:104::o;47961:122::-;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48044:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48091:120::-:0;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;48173:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5025:201::-:0;4189:6;;-1:-1:-1;;;;;4189:6:0;2920:10;4336:23;4328:68;;;;-1:-1:-1;;;4328:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5114:22:0;::::1;5106:73;;;::::0;-1:-1:-1;;;5106:73:0;;17399:2:1;5106:73:0::1;::::0;::::1;17381:21:1::0;17438:2;17418:18;;;17411:30;17477:34;17457:18;;;17450:62;-1:-1:-1;;;17528:18:1;;;17521:36;17574:19;;5106:73:0::1;17197:402:1::0;5106:73:0::1;5190:28;5209:8;5190:18;:28::i;:::-;5025:201:::0;:::o;6404:387::-;6727:20;6775:8;;;6404:387::o;24852:305::-;24954:4;-1:-1:-1;;;;;;24991:40:0;;-1:-1:-1;;;24991:40:0;;:105;;-1:-1:-1;;;;;;;25048:48:0;;-1:-1:-1;;;25048:48:0;24991:105;:158;;;-1:-1:-1;;;;;;;;;;16657:40:0;;;25113:36;16548:157;34592:174;34667:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34667:29:0;-1:-1:-1;;;;;34667:29:0;;;;;;;;:24;;34721:23;34667:24;34721:14;:23::i;:::-;-1:-1:-1;;;;;34712:46:0;;;;;;;;;;;34592:174;;:::o;30904:348::-;30997:4;30699:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30699:16:0;31014:73;;;;-1:-1:-1;;;31014:73:0;;17806:2:1;31014:73:0;;;17788:21:1;17845:2;17825:18;;;17818:30;17884:34;17864:18;;;17857:62;-1:-1:-1;;;17935:18:1;;;17928:42;17987:19;;31014:73:0;17604:408:1;31014:73:0;31098:13;31114:23;31129:7;31114:14;:23::i;:::-;31098:39;;31167:5;-1:-1:-1;;;;;31156:16:0;:7;-1:-1:-1;;;;;31156:16:0;;:51;;;;31200:7;-1:-1:-1;;;;;31176:31:0;:20;31188:7;31176:11;:20::i;:::-;-1:-1:-1;;;;;31176:31:0;;31156:51;:87;;;-1:-1:-1;;;;;;27996:25:0;;;27972:4;27996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31211:32;31148:96;30904:348;-1:-1:-1;;;;30904:348:0:o;33896:578::-;34055:4;-1:-1:-1;;;;;34028:31:0;:23;34043:7;34028:14;:23::i;:::-;-1:-1:-1;;;;;34028:31:0;;34020:85;;;;-1:-1:-1;;;34020:85:0;;18219:2:1;34020:85:0;;;18201:21:1;18258:2;18238:18;;;18231:30;18297:34;18277:18;;;18270:62;-1:-1:-1;;;18348:18:1;;;18341:39;18397:19;;34020:85:0;18017:405:1;34020:85:0;-1:-1:-1;;;;;34124:16:0;;34116:65;;;;-1:-1:-1;;;34116:65:0;;18629:2:1;34116:65:0;;;18611:21:1;18668:2;18648:18;;;18641:30;18707:34;18687:18;;;18680:62;-1:-1:-1;;;18758:18:1;;;18751:34;18802:19;;34116:65:0;18427:400:1;34116:65:0;34194:39;34215:4;34221:2;34225:7;34194:20;:39::i;:::-;34298:29;34315:1;34319:7;34298:8;:29::i;:::-;-1:-1:-1;;;;;34340:15:0;;;;;;:9;:15;;;;;:20;;34359:1;;34340:15;:20;;34359:1;;34340:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34371:13:0;;;;;;:9;:13;;;;;:18;;34388:1;;34371:13;:18;;34388:1;;34371:18;:::i;:::-;;;;-1:-1:-1;;34400:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34400:21:0;-1:-1:-1;;;;;34400:21:0;;;;;;;;;34439:27;;34400:16;;34439:27;;;;;;;33896:578;;;:::o;5386:191::-;5479:6;;;-1:-1:-1;;;;;5496:17:0;;;-1:-1:-1;;;;;;5496:17:0;;;;;;;5529:40;;5479:6;;;5496:17;5479:6;;5529:40;;5460:16;;5529:40;5449:128;5386:191;:::o;31594:110::-;31670:26;31680:2;31684:7;31670:26;;;;;;;;;;;;:9;:26::i;34908:315::-;35063:8;-1:-1:-1;;;;;35054:17:0;:5;-1:-1:-1;;;;;35054:17:0;;;35046:55;;;;-1:-1:-1;;;35046:55:0;;19164:2:1;35046:55:0;;;19146:21:1;19203:2;19183:18;;;19176:30;19242:27;19222:18;;;19215:55;19287:18;;35046:55:0;18962:349:1;35046:55:0;-1:-1:-1;;;;;35112:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35112:46:0;;;;;;;;;;35174:41;;540::1;;;35174::0;;513:18:1;35174:41:0;;;;;;;34908:315;;;:::o;29982:::-;30139:28;30149:4;30155:2;30159:7;30139:9;:28::i;:::-;30186:48;30209:4;30215:2;30219:7;30228:5;30186:22;:48::i;:::-;30178:111;;;;-1:-1:-1;;;30178:111:0;;;;;;;:::i;45398:102::-;45458:13;45487:7;45480:14;;;;;:::i;402:723::-;458:13;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;39979:589;-1:-1:-1;;;;;40185:18:0;;40181:187;;40220:40;40252:7;41395:10;:17;;41368:24;;;;:15;:24;;;;;:44;;;41423:24;;;;;;;;;;;;41291:164;40220:40;40181:187;;;40290:2;-1:-1:-1;;;;;40282:10:0;:4;-1:-1:-1;;;;;40282:10:0;;40278:90;;40309:47;40342:4;40348:7;40309:32;:47::i;:::-;-1:-1:-1;;;;;40382:16:0;;40378:183;;40415:45;40452:7;40415:36;:45::i;40378:183::-;40488:4;-1:-1:-1;;;;;40482:10:0;:2;-1:-1:-1;;;;;40482:10:0;;40478:83;;40509:40;40537:2;40541:7;40509:27;:40::i;31931:321::-;32061:18;32067:2;32071:7;32061:5;:18::i;:::-;32112:54;32143:1;32147:2;32151:7;32160:5;32112:22;:54::i;:::-;32090:154;;;;-1:-1:-1;;;32090:154:0;;;;;;;:::i;35788:799::-;35943:4;-1:-1:-1;;;;;35964:13:0;;6727:20;6775:8;35960:620;;36000:72;;-1:-1:-1;;;36000:72:0;;-1:-1:-1;;;;;36000:36:0;;;;;:72;;2920:10;;36051:4;;36057:7;;36066:5;;36000:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36000:72:0;;;;;;;;-1:-1:-1;;36000:72:0;;;;;;;;;;;;:::i;:::-;;;35996:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36242:13:0;;36238:272;;36285:60;;-1:-1:-1;;;36285:60:0;;;;;;;:::i;36238:272::-;36460:6;36454:13;36445:6;36441:2;36437:15;36430:38;35996:529;-1:-1:-1;;;;;;36123:51:0;-1:-1:-1;;;36123:51:0;;-1:-1:-1;36116:58:0;;35960:620;-1:-1:-1;36564:4:0;35788:799;;;;;;:::o;42082:988::-;42348:22;42398:1;42373:22;42390:4;42373:16;:22::i;:::-;:26;;;;:::i;:::-;42410:18;42431:26;;;:17;:26;;;;;;42348:51;;-1:-1:-1;42564:28:0;;;42560:328;;-1:-1:-1;;;;;42631:18:0;;42609:19;42631:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42682:30;;;;;;:44;;;42799:30;;:17;:30;;;;;:43;;;42560:328;-1:-1:-1;42984:26:0;;;;:17;:26;;;;;;;;42977:33;;;-1:-1:-1;;;;;43028:18:0;;;;;:12;:18;;;;;:34;;;;;;;43021:41;42082:988::o;43365:1079::-;43643:10;:17;43618:22;;43643:21;;43663:1;;43643:21;:::i;:::-;43675:18;43696:24;;;:15;:24;;;;;;44069:10;:26;;43618:46;;-1:-1:-1;43696:24:0;;43618:46;;44069:26;;;;;;:::i;:::-;;;;;;;;;44047:48;;44133:11;44108:10;44119;44108:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44213:28;;;:15;:28;;;;;;;:41;;;44385:24;;;;;44378:31;44420:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43436:1008;;;43365:1079;:::o;40869:221::-;40954:14;40971:20;40988:2;40971:16;:20::i;:::-;-1:-1:-1;;;;;41002:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41047:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40869:221:0:o;32588:382::-;-1:-1:-1;;;;;32668:16:0;;32660:61;;;;-1:-1:-1;;;32660:61:0;;20934:2:1;32660:61:0;;;20916:21:1;;;20953:18;;;20946:30;21012:34;20992:18;;;20985:62;21064:18;;32660:61:0;20732:356:1;32660:61:0;30675:4;30699:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30699:16:0;:30;32732:58;;;;-1:-1:-1;;;32732:58:0;;21295:2:1;32732:58:0;;;21277:21:1;21334:2;21314:18;;;21307:30;21373;21353:18;;;21346:58;21421:18;;32732:58:0;21093:352:1;32732:58:0;32803:45;32832:1;32836:2;32840:7;32803:20;:45::i;:::-;-1:-1:-1;;;;;32861:13:0;;;;;;:9;:13;;;;;:18;;32878:1;;32861:13;:18;;32878:1;;32861:18;:::i;:::-;;;;-1:-1:-1;;32890:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32890:21:0;-1:-1:-1;;;;;32890:21:0;;;;;;;;32929:33;;32890:16;;;32929:33;;32890:16;;32929:33;32588:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:127::-;3290:10;3285:3;3281:20;3278:1;3271:31;3321:4;3318:1;3311:15;3345:4;3342:1;3335:15;3361:275;3432:2;3426:9;3497:2;3478:13;;-1:-1:-1;;3474:27:1;3462:40;;3532:18;3517:34;;3553:22;;;3514:62;3511:88;;;3579:18;;:::i;:::-;3615:2;3608:22;3361:275;;-1:-1:-1;3361:275:1:o;3641:1022::-;3734:6;3742;3795:2;3783:9;3774:7;3770:23;3766:32;3763:52;;;3811:1;3808;3801:12;3763:52;3851:9;3838:23;3880:18;3921:2;3913:6;3910:14;3907:34;;;3937:1;3934;3927:12;3907:34;3975:6;3964:9;3960:22;3950:32;;4020:7;4013:4;4009:2;4005:13;4001:27;3991:55;;4042:1;4039;4032:12;3991:55;4078:2;4065:16;4100:4;4123:2;4119;4116:10;4113:36;;;4129:18;;:::i;:::-;4175:2;4172:1;4168:10;4158:20;;4198:28;4222:2;4218;4214:11;4198:28;:::i;:::-;4260:15;;;4330:11;;;4326:20;;;4291:12;;;;4358:19;;;4355:39;;;4390:1;4387;4380:12;4355:39;4414:11;;;;4434:148;4450:6;4445:3;4442:15;4434:148;;;4516:23;4535:3;4516:23;:::i;:::-;4504:36;;4467:12;;;;4560;;;;4434:148;;;4601:5;4638:18;;;;4625:32;;-1:-1:-1;;;;;;;3641:1022:1:o;4668:632::-;4839:2;4891:21;;;4961:13;;4864:18;;;4983:22;;;4810:4;;4839:2;5062:15;;;;5036:2;5021:18;;;4810:4;5105:169;5119:6;5116:1;5113:13;5105:169;;;5180:13;;5168:26;;5249:15;;;;5214:12;;;;5141:1;5134:9;5105:169;;;-1:-1:-1;5291:3:1;;4668:632;-1:-1:-1;;;;;;4668:632:1:o;5305:407::-;5370:5;5404:18;5396:6;5393:30;5390:56;;;5426:18;;:::i;:::-;5464:57;5509:2;5488:15;;-1:-1:-1;;5484:29:1;5515:4;5480:40;5464:57;:::i;:::-;5455:66;;5544:6;5537:5;5530:21;5584:3;5575:6;5570:3;5566:16;5563:25;5560:45;;;5601:1;5598;5591:12;5560:45;5650:6;5645:3;5638:4;5631:5;5627:16;5614:43;5704:1;5697:4;5688:6;5681:5;5677:18;5673:29;5666:40;5305:407;;;;;:::o;5717:451::-;5786:6;5839:2;5827:9;5818:7;5814:23;5810:32;5807:52;;;5855:1;5852;5845:12;5807:52;5895:9;5882:23;5928:18;5920:6;5917:30;5914:50;;;5960:1;5957;5950:12;5914:50;5983:22;;6036:4;6028:13;;6024:27;-1:-1:-1;6014:55:1;;6065:1;6062;6055:12;6014:55;6088:74;6154:7;6149:2;6136:16;6131:2;6127;6123:11;6088:74;:::i;6173:254::-;6238:6;6246;6299:2;6287:9;6278:7;6274:23;6270:32;6267:52;;;6315:1;6312;6305:12;6267:52;6338:29;6357:9;6338:29;:::i;:::-;6328:39;;6386:35;6417:2;6406:9;6402:18;6386:35;:::i;:::-;6376:45;;6173:254;;;;;:::o;6432:667::-;6527:6;6535;6543;6551;6604:3;6592:9;6583:7;6579:23;6575:33;6572:53;;;6621:1;6618;6611:12;6572:53;6644:29;6663:9;6644:29;:::i;:::-;6634:39;;6692:38;6726:2;6715:9;6711:18;6692:38;:::i;:::-;6682:48;;6777:2;6766:9;6762:18;6749:32;6739:42;;6832:2;6821:9;6817:18;6804:32;6859:18;6851:6;6848:30;6845:50;;;6891:1;6888;6881:12;6845:50;6914:22;;6967:4;6959:13;;6955:27;-1:-1:-1;6945:55:1;;6996:1;6993;6986:12;6945:55;7019:74;7085:7;7080:2;7067:16;7062:2;7058;7054:11;7019:74;:::i;:::-;7009:84;;;6432:667;;;;;;;:::o;7104:260::-;7172:6;7180;7233:2;7221:9;7212:7;7208:23;7204:32;7201:52;;;7249:1;7246;7239:12;7201:52;7272:29;7291:9;7272:29;:::i;:::-;7262:39;;7320:38;7354:2;7343:9;7339:18;7320:38;:::i;7369:356::-;7571:2;7553:21;;;7590:18;;;7583:30;7649:34;7644:2;7629:18;;7622:62;7716:2;7701:18;;7369:356::o;7730:380::-;7809:1;7805:12;;;;7852;;;7873:61;;7927:4;7919:6;7915:17;7905:27;;7873:61;7980:2;7972:6;7969:14;7949:18;7946:38;7943:161;;;8026:10;8021:3;8017:20;8014:1;8007:31;8061:4;8058:1;8051:15;8089:4;8086:1;8079:15;7943:161;;7730:380;;;:::o;9355:413::-;9557:2;9539:21;;;9596:2;9576:18;;;9569:30;9635:34;9630:2;9615:18;;9608:62;-1:-1:-1;;;9701:2:1;9686:18;;9679:47;9758:3;9743:19;;9355:413::o;10185:127::-;10246:10;10241:3;10237:20;10234:1;10227:31;10277:4;10274:1;10267:15;10301:4;10298:1;10291:15;10317:168;10357:7;10423:1;10419;10415:6;10411:14;10408:1;10405:21;10400:1;10393:9;10386:17;10382:45;10379:71;;;10430:18;;:::i;:::-;-1:-1:-1;10470:9:1;;10317:168::o;10490:127::-;10551:10;10546:3;10542:20;10539:1;10532:31;10582:4;10579:1;10572:15;10606:4;10603:1;10596:15;10622:120;10662:1;10688;10678:35;;10693:18;;:::i;:::-;-1:-1:-1;10727:9:1;;10622:120::o;10957:127::-;11018:10;11013:3;11009:20;11006:1;10999:31;11049:4;11046:1;11039:15;11073:4;11070:1;11063:15;11089:135;11128:3;-1:-1:-1;;11149:17:1;;11146:43;;;11169:18;;:::i;:::-;-1:-1:-1;11216:1:1;11205:13;;11089:135::o;13575:128::-;13615:3;13646:1;13642:6;13639:1;13636:13;13633:39;;;13652:18;;:::i;:::-;-1:-1:-1;13688:9:1;;13575:128::o;15665:1527::-;15889:3;15927:6;15921:13;15953:4;15966:51;16010:6;16005:3;16000:2;15992:6;15988:15;15966:51;:::i;:::-;16080:13;;16039:16;;;;16102:55;16080:13;16039:16;16124:15;;;16102:55;:::i;:::-;16246:13;;16179:20;;;16219:1;;16306;16328:18;;;;16381;;;;16408:93;;16486:4;16476:8;16472:19;16460:31;;16408:93;16549:2;16539:8;16536:16;16516:18;16513:40;16510:167;;;-1:-1:-1;;;16576:33:1;;16632:4;16629:1;16622:15;16662:4;16583:3;16650:17;16510:167;16693:18;16720:110;;;;16844:1;16839:328;;;;16686:481;;16720:110;-1:-1:-1;;16755:24:1;;16741:39;;16800:20;;;;-1:-1:-1;16720:110:1;;16839:328;15612:1;15605:14;;;15649:4;15636:18;;16934:1;16948:169;16962:8;16959:1;16956:15;16948:169;;;17044:14;;17029:13;;;17022:37;17087:16;;;;16979:10;;16948:169;;;16952:3;;17148:8;17141:5;17137:20;17130:27;;16686:481;-1:-1:-1;17183:3:1;;15665:1527;-1:-1:-1;;;;;;;;;;;15665:1527:1:o;18832:125::-;18872:4;18900:1;18897;18894:8;18891:34;;;18905:18;;:::i;:::-;-1:-1:-1;18942:9:1;;18832:125::o;19316:414::-;19518:2;19500:21;;;19557:2;19537:18;;;19530:30;19596:34;19591:2;19576:18;;19569:62;-1:-1:-1;;;19662:2:1;19647:18;;19640:48;19720:3;19705:19;;19316:414::o;19735:112::-;19767:1;19793;19783:35;;19798:18;;:::i;:::-;-1:-1:-1;19832:9:1;;19735:112::o;19852:489::-;-1:-1:-1;;;;;20121:15:1;;;20103:34;;20173:15;;20168:2;20153:18;;20146:43;20220:2;20205:18;;20198:34;;;20268:3;20263:2;20248:18;;20241:31;;;20046:4;;20289:46;;20315:19;;20307:6;20289:46;:::i;:::-;20281:54;19852:489;-1:-1:-1;;;;;;19852:489:1:o;20346:249::-;20415:6;20468:2;20456:9;20447:7;20443:23;20439:32;20436:52;;;20484:1;20481;20474:12;20436:52;20516:9;20510:16;20535:30;20559:5;20535:30;:::i;20600:127::-;20661:10;20656:3;20652:20;20649:1;20642:31;20692:4;20689:1;20682:15;20716:4;20713:1;20706:15

Swarm Source

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