ETH Price: $3,485.65 (+3.39%)
Gas: 4 Gwei

Token

Punkachus (PKCHU)
 

Overview

Max Total Supply

2,900 PKCHU

Holders

1,409

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PKCHU
0xd33955866f8d52404f66a21f9e3421dedf123064
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Punkachus is a collection of 2900 randomly generated ERC-721 NFTs on the Ethereum Blockchain. Each Punkachu is assembled from over 50 possible properties and 5 rarities.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PunkachuNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-12
*/

// SPDX-License-Identifier: GPL-3.0
// Based on HashLips code.
pragma solidity >=0.4.22 <0.9.0;


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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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

/**
 * @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/utils/introspection/ERC165.sol

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

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

/**
 * @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/Address.sol


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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/extensions/IERC721Metadata.sol


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

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

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

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


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

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

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

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


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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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


/**
 * @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: @openzeppelin/contracts/access/Ownable.sol

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

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

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

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

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

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

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

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

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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 30000000000000000; // 0.03 eth
  uint256 public maxSupply = 2900;
  uint256 public maxMintAmountPerTransaction = 20;
  uint256 public maxPresaleMintAmount = 3;
  uint256 public NFTPerAddressLimit = 20;
  bool public paused = true;
  bool public presale = true;
  address[] private airdropList;
  address[] private whiteList;

  constructor(string memory _initBaseURI) ERC721("Punkachus", "PKCHU") {
    setBaseURI(_initBaseURI);
    _safeMint(msg.sender, 1);
  }

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

  // public
  function mintPunkachus(uint256 _mintAmount) public payable {

    require(!paused, "The sale is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "Need to mint at least 1 NFT");
    require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded");

    if (!presale)
    // Normal Minting code
    {
      if (msg.sender != owner()) 
      {
        require(_mintAmount <= maxMintAmountPerTransaction, "Max mint amount per session exceeded");
        require(balanceOf(msg.sender) + _mintAmount <= NFTPerAddressLimit, "NFT Limit per Account reached");
        require(msg.value >= cost * _mintAmount, "Insufficient funds");
      }
    }
    else
    // Presale code
    {
      require(isAccountWhiteListed(msg.sender), "Account not eligible for presale");
      require(balanceOf(msg.sender) + _mintAmount <= maxPresaleMintAmount, "NFT Limit per Account reached for presale");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  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"
    );

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

  function isAccountWhiteListed(address _account) public view returns (bool) {
    for (uint256 i = 0; i < whiteList.length; i++)
    {
      if (_account == whiteList[i]){
        return true;
      }
    }
    return false;
  }

  //only contract owner

  function airdropToList() public payable onlyOwner {
    require(!paused, "The sale is paused");
    uint256 supply = totalSupply();
    require(supply + airdropList.length <= maxSupply, "Max NFT limit exceeded");

    for (uint256 i = 0; i < airdropList.length; i++) 
    {
      if (balanceOf(airdropList[i]) < NFTPerAddressLimit)
      {
        _safeMint(airdropList[i], supply + i + 1);
      }
    }
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setMaxMintAmountPerTransaction(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmountPerTransaction = _newmaxMintAmount;
  }

  function setNFTPerAddressLimit(uint256 _newNFTPerAddressLimit) public onlyOwner {
    NFTPerAddressLimit = _newNFTPerAddressLimit;
  }

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

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

  function flipPause() public onlyOwner {
    paused = !paused;
  }

  function flipPresale() public onlyOwner {
    presale = !presale;
  }

  function setAirdropList(address[] calldata _users) public onlyOwner {
    delete airdropList;
    airdropList = _users;
  }

  function getAirdropList() public view onlyOwner returns (address[] memory) {
    return airdropList;
  }

  function setWhiteList(address[] calldata _users) public onlyOwner {
    delete whiteList;
    whiteList = _users;
  }

  function getWhiteList() public view onlyOwner returns (address[] memory) {
    return whiteList;
  }
 
  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","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":[],"name":"NFTPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropToList","outputs":[],"stateMutability":"payable","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":[],"name":"flipPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAirdropList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isAccountWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintAmount","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":"mintPunkachus","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"setAirdropList","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":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNFTPerAddressLimit","type":"uint256"}],"name":"setNFTPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"setWhiteList","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000873565b50666a94d74f430000600d55610b54600e556014600f81905560036010556011556012805461ffff19166101011790553480156200006557600080fd5b50604051620036d9380380620036d983398101604081905262000088916200094c565b604080518082018252600981526850756e6b616368757360b81b602080830191825283518085019094526005845264504b43485560d81b908401528151919291620000d69160009162000873565b508051620000ec90600190602084019062000873565b50505062000109620001036200012860201b60201c565b6200012c565b62000114816200017e565b62000121336001620001f7565b5062000b57565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001f390600b90602084019062000873565b5050565b620001f38282604051806020016040528060008152506200021960201b60201c565b62000225838362000291565b620002346000848484620003e7565b6200028c5760405162461bcd60e51b81526020600482015260326024820152600080516020620036b983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d5565b505050565b6001600160a01b038216620002e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001d5565b6000818152600260205260409020546001600160a01b031615620003505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d5565b6200035e6000838362000550565b6001600160a01b03821660009081526003602052604081208054600192906200038990849062000a5a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000408846001600160a01b03166200062c60201b620019021760201c565b156200054457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200044290339089908890889060040162000a04565b602060405180830381600087803b1580156200045d57600080fd5b505af192505050801562000490575060408051601f3d908101601f191682019092526200048d9181019062000919565b60015b62000529573d808015620004c1576040519150601f19603f3d011682016040523d82523d6000602084013e620004c6565b606091505b508051620005215760405162461bcd60e51b81526020600482015260326024820152600080516020620036b983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000548565b5060015b949350505050565b620005688383836200028c60201b62000a521760201c565b6001600160a01b038316620005c657620005c081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620005ec565b816001600160a01b0316836001600160a01b031614620005ec57620005ec838262000632565b6001600160a01b03821662000606576200028c81620006df565b826001600160a01b0316826001600160a01b0316146200028c576200028c828262000799565b3b151590565b600060016200064c84620007ea60201b620013951760201c565b62000658919062000a75565b600083815260076020526040902054909150808214620006ac576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006f39060019062000a75565b600083815260096020526040812054600880549394509092849081106200071e576200071e62000b2b565b90600052602060002001549050806008838154811062000742576200074262000b2b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200077d576200077d62000b15565b6001900381819060005260206000200160009055905550505050565b6000620007b183620007ea60201b620013951760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008575760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001d5565b506001600160a01b031660009081526003602052604090205490565b828054620008819062000ac2565b90600052602060002090601f016020900481019282620008a55760008555620008f0565b82601f10620008c057805160ff1916838001178555620008f0565b82800160010185558215620008f0579182015b82811115620008f0578251825591602001919060010190620008d3565b50620008fe92915062000902565b5090565b5b80821115620008fe576000815560010162000903565b6000602082840312156200092c57600080fd5b81516001600160e01b0319811681146200094557600080fd5b9392505050565b6000602082840312156200095f57600080fd5b81516001600160401b03808211156200097757600080fd5b818401915084601f8301126200098c57600080fd5b815181811115620009a157620009a162000b41565b604051601f8201601f19908116603f01168101908382118183101715620009cc57620009cc62000b41565b81604052828152876020848701011115620009e657600080fd5b620009f983602083016020880162000a8f565b979650505050505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a438160a085016020870162000a8f565b601f01601f19169190910160a00195945050505050565b6000821982111562000a705762000a7062000aff565b500190565b60008282101562000a8a5762000a8a62000aff565b500390565b60005b8381101562000aac57818101518382015260200162000a92565b8381111562000abc576000848401525b50505050565b600181811c9082168062000ad757607f821691505b6020821081141562000af957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612b528062000b676000396000f3fe6080604052600436106102665760003560e01c80636352211e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106c1578063d5abeb01146106e1578063da3ef23f146106f7578063e985e9c514610717578063f2fde38b14610760578063fdea8e0b1461078057600080fd5b8063a22cb46514610636578063a9e2acd514610656578063b88d4fde14610676578063bbb8974414610696578063c6682862146106ac57600080fd5b8063715018a611610108578063715018a6146105b0578063775b9c13146105c55780637c8d516d146105e557806385480756146105ed5780638da5cb5b1461060357806395d89b411461062157600080fd5b80636352211e1461051b57806369df6b8b1461053b5780636c0360eb1461055b5780636d47bcab1461057057806370a082311461059057600080fd5b8063385df649116101dd57806344a0d68a116101a157806344a0d68a146104795780634e87fd91146104995780634f6ccce7146104ac5780634f6fcc46146104cc57806355f804b3146104e15780635c975abb1461050157600080fd5b8063385df649146103e25780633ccfd60b146103f757806341a9c72a1461040c57806342842e0e1461042c578063438b63001461044c57600080fd5b806309a9d76c1161022f57806309a9d76c1461033157806313faede61461035357806318160ddd1461037757806323b872dd1461038c57806324e6b5a5146103ac5780632f745c59146103c257600080fd5b8062acf3481461026b57806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b314610311575b600080fd5b34801561027757600080fd5b5061028061079f565b005b34801561028e57600080fd5b506102a261029d366004612667565b6107ef565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61081a565b6040516102ae91906128b5565b3480156102e557600080fd5b506102f96102f43660046126ea565b6108ac565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061028061032c3660046125c8565b610941565b34801561033d57600080fd5b50610346610a57565b6040516102ae9190612830565b34801561035f57600080fd5b50610369600d5481565b6040519081526020016102ae565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b506102806103a73660046124d4565b610ae3565b3480156103b857600080fd5b5061036960115481565b3480156103ce57600080fd5b506103696103dd3660046125c8565b610b14565b3480156103ee57600080fd5b50610280610baa565b34801561040357600080fd5b50610280610be8565b34801561041857600080fd5b506102806104273660046125f2565b610c45565b34801561043857600080fd5b506102806104473660046124d4565b610c87565b34801561045857600080fd5b5061046c610467366004612486565b610ca2565b6040516102ae919061287d565b34801561048557600080fd5b506102806104943660046126ea565b610d44565b6102806104a73660046126ea565b610d73565b3480156104b857600080fd5b506103696104c73660046126ea565b6110a2565b3480156104d857600080fd5b50610346611135565b3480156104ed57600080fd5b506102806104fc3660046126a1565b6111c0565b34801561050d57600080fd5b506012546102a29060ff1681565b34801561052757600080fd5b506102f96105363660046126ea565b6111fd565b34801561054757600080fd5b506102a2610556366004612486565b611274565b34801561056757600080fd5b506102cc6112d8565b34801561057c57600080fd5b5061028061058b3660046126ea565b611366565b34801561059c57600080fd5b506103696105ab366004612486565b611395565b3480156105bc57600080fd5b5061028061141c565b3480156105d157600080fd5b506102806105e03660046125f2565b611452565b610280611494565b3480156105f957600080fd5b5061036960105481565b34801561060f57600080fd5b50600a546001600160a01b03166102f9565b34801561062d57600080fd5b506102cc611604565b34801561064257600080fd5b5061028061065136600461258c565b611613565b34801561066257600080fd5b506102806106713660046126ea565b6116d8565b34801561068257600080fd5b50610280610691366004612510565b611707565b3480156106a257600080fd5b50610369600f5481565b3480156106b857600080fd5b506102cc61173f565b3480156106cd57600080fd5b506102cc6106dc3660046126ea565b61174c565b3480156106ed57600080fd5b50610369600e5481565b34801561070357600080fd5b506102806107123660046126a1565b61182a565b34801561072357600080fd5b506102a26107323660046124a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076c57600080fd5b5061028061077b366004612486565b611867565b34801561078c57600080fd5b506012546102a290610100900460ff1681565b600a546001600160a01b031633146107d25760405162461bcd60e51b81526004016107c99061291a565b60405180910390fd5b6012805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b0319821663780e9d6360e01b1480610814575061081482611908565b92915050565b60606000805461082990612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461085590612a2e565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c9565b506000908152600460205260409020546001600160a01b031690565b600061094c826111fd565b9050806001600160a01b0316836001600160a01b031614156109ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c9565b336001600160a01b03821614806109d657506109d68133610732565b610a485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c9565b610a528383611958565b505050565b600a546060906001600160a01b03163314610a845760405162461bcd60e51b81526004016107c99061291a565b60148054806020026020016040519081016040528092919081815260200182805480156108a257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610abc575050505050905090565b610aed33826119c6565b610b095760405162461bcd60e51b81526004016107c99061294f565b610a52838383611abd565b6000610b1f83611395565b8210610b815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bd45760405162461bcd60e51b81526004016107c99061291a565b6012805460ff19811660ff90911615179055565b600a546001600160a01b03163314610c125760405162461bcd60e51b81526004016107c99061291a565b6040514790339082156108fc029083906000818181858888f19350505050158015610c41573d6000803e3d6000fd5b5050565b600a546001600160a01b03163314610c6f5760405162461bcd60e51b81526004016107c99061291a565b610c7b601360006122ea565b610a5260138383612308565b610a5283838360405180602001604052806000815250611707565b60606000610caf83611395565b905060008167ffffffffffffffff811115610ccc57610ccc612af0565b604051908082528060200260200182016040528015610cf5578160200160208202803683370190505b50905060005b82811015610d3c57610d0d8582610b14565b828281518110610d1f57610d1f612ada565b602090810291909101015280610d3481612a69565b915050610cfb565b509392505050565b600a546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016107c99061291a565b600d55565b60125460ff1615610dbb5760405162461bcd60e51b8152602060048201526012602482015271151a19481cd85b19481a5cc81c185d5cd95960721b60448201526064016107c9565b6000610dc660085490565b905060008211610e185760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107c9565b600e54610e2583836129a0565b1115610e6c5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107c9565b601254610100900460ff16610fa757600a546001600160a01b03163314610fa257600f54821115610eeb5760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016107c9565b60115482610ef833611395565b610f0291906129a0565b1115610f505760405162461bcd60e51b815260206004820152601d60248201527f4e4654204c696d697420706572204163636f756e74207265616368656400000060448201526064016107c9565b81600d54610f5e91906129cc565b341015610fa25760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107c9565b611073565b610fb033611274565b610ffc5760405162461bcd60e51b815260206004820181905260248201527f4163636f756e74206e6f7420656c696769626c6520666f722070726573616c6560448201526064016107c9565b6010548261100933611395565b61101391906129a0565b11156110735760405162461bcd60e51b815260206004820152602960248201527f4e4654204c696d697420706572204163636f756e74207265616368656420666f604482015268722070726573616c6560b81b60648201526084016107c9565b60015b828111610a52576110903361108b83856129a0565b611c68565b8061109a81612a69565b915050611076565b60006110ad60085490565b82106111105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c9565b6008828154811061112357611123612ada565b90600052602060002001549050919050565b600a546060906001600160a01b031633146111625760405162461bcd60e51b81526004016107c99061291a565b60138054806020026020016040519081016040528092919081815260200182805480156108a2576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610abc575050505050905090565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016107c99061291a565b8051610c4190600b90602084019061236b565b6000818152600260205260408120546001600160a01b0316806108145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c9565b6000805b6014548110156112cf576014818154811061129557611295612ada565b6000918252602090912001546001600160a01b03848116911614156112bd5750600192915050565b806112c781612a69565b915050611278565b50600092915050565b600b80546112e590612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461131190612a2e565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505081565b600a546001600160a01b031633146113905760405162461bcd60e51b81526004016107c99061291a565b601155565b60006001600160a01b0382166114005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114465760405162461bcd60e51b81526004016107c99061291a565b6114506000611c82565b565b600a546001600160a01b0316331461147c5760405162461bcd60e51b81526004016107c99061291a565b611488601460006122ea565b610a5260148383612308565b600a546001600160a01b031633146114be5760405162461bcd60e51b81526004016107c99061291a565b60125460ff16156115065760405162461bcd60e51b8152602060048201526012602482015271151a19481cd85b19481a5cc81c185d5cd95960721b60448201526064016107c9565b600061151160085490565b600e546013549192509061152590836129a0565b111561156c5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107c9565b60005b601354811015610c41576011546115ac6013838154811061159257611592612ada565b6000918252602090912001546001600160a01b0316611395565b10156115f2576115f2601382815481106115c8576115c8612ada565b6000918252602090912001546001600160a01b03166115e783856129a0565b61108b9060016129a0565b806115fc81612a69565b91505061156f565b60606001805461082990612a2e565b6001600160a01b03821633141561166c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117025760405162461bcd60e51b81526004016107c99061291a565b600f55565b61171133836119c6565b61172d5760405162461bcd60e51b81526004016107c99061294f565b61173984848484611cd4565b50505050565b600c80546112e590612a2e565b6000818152600260205260409020546060906001600160a01b03166117cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c9565b60006117d5611d07565b905060008151116117f55760405180602001604052806000815250611823565b806117ff84611d16565b600c6040516020016118139392919061272f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118545760405162461bcd60e51b81526004016107c99061291a565b8051610c4190600c90602084019061236b565b600a546001600160a01b031633146118915760405162461bcd60e51b81526004016107c99061291a565b6001600160a01b0381166118f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c9565b6118ff81611c82565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061193957506001600160e01b03198216635b5e139f60e01b145b8061081457506301ffc9a760e01b6001600160e01b0319831614610814565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198d826111fd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a3f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c9565b6000611a4a836111fd565b9050806001600160a01b0316846001600160a01b03161480611a855750836001600160a01b0316611a7a846108ac565b6001600160a01b0316145b80611ab557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ad0826111fd565b6001600160a01b031614611b385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c9565b6001600160a01b038216611b9a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c9565b611ba5838383611e14565b611bb0600082611958565b6001600160a01b0383166000908152600360205260408120805460019290611bd99084906129eb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c079084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c41828260405180602001604052806000815250611ecc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611cdf848484611abd565b611ceb84848484611eff565b6117395760405162461bcd60e51b81526004016107c9906128c8565b6060600b805461082990612a2e565b606081611d3a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d645780611d4e81612a69565b9150611d5d9050600a836129b8565b9150611d3e565b60008167ffffffffffffffff811115611d7f57611d7f612af0565b6040519080825280601f01601f191660200182016040528015611da9576020820181803683370190505b5090505b8415611ab557611dbe6001836129eb565b9150611dcb600a86612a84565b611dd69060306129a0565b60f81b818381518110611deb57611deb612ada565b60200101906001600160f81b031916908160001a905350611e0d600a866129b8565b9450611dad565b6001600160a01b038316611e6f57611e6a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e92565b816001600160a01b0316836001600160a01b031614611e9257611e92838261200c565b6001600160a01b038216611ea957610a52816120a9565b826001600160a01b0316826001600160a01b031614610a5257610a528282612158565b611ed6838361219c565b611ee36000848484611eff565b610a525760405162461bcd60e51b81526004016107c9906128c8565b60006001600160a01b0384163b1561200157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f439033908990889088906004016127f3565b602060405180830381600087803b158015611f5d57600080fd5b505af1925050508015611f8d575060408051601f3d908101601f19168201909252611f8a91810190612684565b60015b611fe7573d808015611fbb576040519150601f19603f3d011682016040523d82523d6000602084013e611fc0565b606091505b508051611fdf5760405162461bcd60e51b81526004016107c9906128c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab5565b506001949350505050565b6000600161201984611395565b61202391906129eb565b600083815260076020526040902054909150808214612076576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120bb906001906129eb565b600083815260096020526040812054600880549394509092849081106120e3576120e3612ada565b90600052602060002001549050806008838154811061210457612104612ada565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061213c5761213c612ac4565b6001900381819060005260206000200160009055905550505050565b600061216383611395565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121f25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c9565b6000818152600260205260409020546001600160a01b0316156122575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c9565b61226360008383611e14565b6001600160a01b038216600090815260036020526040812080546001929061228c9084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906118ff91906123df565b82805482825590600052602060002090810192821561235b579160200282015b8281111561235b5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612328565b506123679291506123df565b5090565b82805461237790612a2e565b90600052602060002090601f016020900481019282612399576000855561235b565b82601f106123b257805160ff191683800117855561235b565b8280016001018555821561235b579182015b8281111561235b5782518255916020019190600101906123c4565b5b8082111561236757600081556001016123e0565b600067ffffffffffffffff8084111561240f5761240f612af0565b604051601f8501601f19908116603f0116810190828211818310171561243757612437612af0565b8160405280935085815286868601111561245057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248157600080fd5b919050565b60006020828403121561249857600080fd5b6118238261246a565b600080604083850312156124b457600080fd5b6124bd8361246a565b91506124cb6020840161246a565b90509250929050565b6000806000606084860312156124e957600080fd5b6124f28461246a565b92506125006020850161246a565b9150604084013590509250925092565b6000806000806080858703121561252657600080fd5b61252f8561246a565b935061253d6020860161246a565b925060408501359150606085013567ffffffffffffffff81111561256057600080fd5b8501601f8101871361257157600080fd5b612580878235602084016123f4565b91505092959194509250565b6000806040838503121561259f57600080fd5b6125a88361246a565b9150602083013580151581146125bd57600080fd5b809150509250929050565b600080604083850312156125db57600080fd5b6125e48361246a565b946020939093013593505050565b6000806020838503121561260557600080fd5b823567ffffffffffffffff8082111561261d57600080fd5b818501915085601f83011261263157600080fd5b81358181111561264057600080fd5b8660208260051b850101111561265557600080fd5b60209290920196919550909350505050565b60006020828403121561267957600080fd5b813561182381612b06565b60006020828403121561269657600080fd5b815161182381612b06565b6000602082840312156126b357600080fd5b813567ffffffffffffffff8111156126ca57600080fd5b8201601f810184136126db57600080fd5b611ab5848235602084016123f4565b6000602082840312156126fc57600080fd5b5035919050565b6000815180845261271b816020860160208601612a02565b601f01601f19169290920160200192915050565b6000845160206127428285838a01612a02565b8551918401916127558184848a01612a02565b8554920191600090600181811c908083168061277257607f831692505b85831081141561279057634e487b7160e01b85526022600452602485fd5b8080156127a457600181146127b5576127e2565b60ff198516885283880195506127e2565b60008b81526020902060005b858110156127da5781548a8201529084019088016127c1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282690830184612703565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128715783516001600160a01b03168352928401929184019160010161284c565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561287157835183529284019291840191600101612899565b6020815260006118236020830184612703565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129b3576129b3612a98565b500190565b6000826129c7576129c7612aae565b500490565b60008160001904831182151516156129e6576129e6612a98565b500290565b6000828210156129fd576129fd612a98565b500390565b60005b83811015612a1d578181015183820152602001612a05565b838111156117395750506000910152565b600181811c90821680612a4257607f821691505b60208210811415612a6357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7d57612a7d612a98565b5060010190565b600082612a9357612a93612aae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118ff57600080fdfea2646970667358221220d29cc065414d61f874ec1c0a5a761dfb8e6220998a935bc02f8d7f3eb7346da764736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d574c313141646f4b334a394a4431335653764b446577795767565a6633474c4b35655737585a754865326a482f00000000000000000000

Deployed Bytecode

0x6080604052600436106102665760003560e01c80636352211e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106c1578063d5abeb01146106e1578063da3ef23f146106f7578063e985e9c514610717578063f2fde38b14610760578063fdea8e0b1461078057600080fd5b8063a22cb46514610636578063a9e2acd514610656578063b88d4fde14610676578063bbb8974414610696578063c6682862146106ac57600080fd5b8063715018a611610108578063715018a6146105b0578063775b9c13146105c55780637c8d516d146105e557806385480756146105ed5780638da5cb5b1461060357806395d89b411461062157600080fd5b80636352211e1461051b57806369df6b8b1461053b5780636c0360eb1461055b5780636d47bcab1461057057806370a082311461059057600080fd5b8063385df649116101dd57806344a0d68a116101a157806344a0d68a146104795780634e87fd91146104995780634f6ccce7146104ac5780634f6fcc46146104cc57806355f804b3146104e15780635c975abb1461050157600080fd5b8063385df649146103e25780633ccfd60b146103f757806341a9c72a1461040c57806342842e0e1461042c578063438b63001461044c57600080fd5b806309a9d76c1161022f57806309a9d76c1461033157806313faede61461035357806318160ddd1461037757806323b872dd1461038c57806324e6b5a5146103ac5780632f745c59146103c257600080fd5b8062acf3481461026b57806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b314610311575b600080fd5b34801561027757600080fd5b5061028061079f565b005b34801561028e57600080fd5b506102a261029d366004612667565b6107ef565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61081a565b6040516102ae91906128b5565b3480156102e557600080fd5b506102f96102f43660046126ea565b6108ac565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061028061032c3660046125c8565b610941565b34801561033d57600080fd5b50610346610a57565b6040516102ae9190612830565b34801561035f57600080fd5b50610369600d5481565b6040519081526020016102ae565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b506102806103a73660046124d4565b610ae3565b3480156103b857600080fd5b5061036960115481565b3480156103ce57600080fd5b506103696103dd3660046125c8565b610b14565b3480156103ee57600080fd5b50610280610baa565b34801561040357600080fd5b50610280610be8565b34801561041857600080fd5b506102806104273660046125f2565b610c45565b34801561043857600080fd5b506102806104473660046124d4565b610c87565b34801561045857600080fd5b5061046c610467366004612486565b610ca2565b6040516102ae919061287d565b34801561048557600080fd5b506102806104943660046126ea565b610d44565b6102806104a73660046126ea565b610d73565b3480156104b857600080fd5b506103696104c73660046126ea565b6110a2565b3480156104d857600080fd5b50610346611135565b3480156104ed57600080fd5b506102806104fc3660046126a1565b6111c0565b34801561050d57600080fd5b506012546102a29060ff1681565b34801561052757600080fd5b506102f96105363660046126ea565b6111fd565b34801561054757600080fd5b506102a2610556366004612486565b611274565b34801561056757600080fd5b506102cc6112d8565b34801561057c57600080fd5b5061028061058b3660046126ea565b611366565b34801561059c57600080fd5b506103696105ab366004612486565b611395565b3480156105bc57600080fd5b5061028061141c565b3480156105d157600080fd5b506102806105e03660046125f2565b611452565b610280611494565b3480156105f957600080fd5b5061036960105481565b34801561060f57600080fd5b50600a546001600160a01b03166102f9565b34801561062d57600080fd5b506102cc611604565b34801561064257600080fd5b5061028061065136600461258c565b611613565b34801561066257600080fd5b506102806106713660046126ea565b6116d8565b34801561068257600080fd5b50610280610691366004612510565b611707565b3480156106a257600080fd5b50610369600f5481565b3480156106b857600080fd5b506102cc61173f565b3480156106cd57600080fd5b506102cc6106dc3660046126ea565b61174c565b3480156106ed57600080fd5b50610369600e5481565b34801561070357600080fd5b506102806107123660046126a1565b61182a565b34801561072357600080fd5b506102a26107323660046124a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076c57600080fd5b5061028061077b366004612486565b611867565b34801561078c57600080fd5b506012546102a290610100900460ff1681565b600a546001600160a01b031633146107d25760405162461bcd60e51b81526004016107c99061291a565b60405180910390fd5b6012805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b0319821663780e9d6360e01b1480610814575061081482611908565b92915050565b60606000805461082990612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461085590612a2e565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c9565b506000908152600460205260409020546001600160a01b031690565b600061094c826111fd565b9050806001600160a01b0316836001600160a01b031614156109ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c9565b336001600160a01b03821614806109d657506109d68133610732565b610a485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c9565b610a528383611958565b505050565b600a546060906001600160a01b03163314610a845760405162461bcd60e51b81526004016107c99061291a565b60148054806020026020016040519081016040528092919081815260200182805480156108a257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610abc575050505050905090565b610aed33826119c6565b610b095760405162461bcd60e51b81526004016107c99061294f565b610a52838383611abd565b6000610b1f83611395565b8210610b815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bd45760405162461bcd60e51b81526004016107c99061291a565b6012805460ff19811660ff90911615179055565b600a546001600160a01b03163314610c125760405162461bcd60e51b81526004016107c99061291a565b6040514790339082156108fc029083906000818181858888f19350505050158015610c41573d6000803e3d6000fd5b5050565b600a546001600160a01b03163314610c6f5760405162461bcd60e51b81526004016107c99061291a565b610c7b601360006122ea565b610a5260138383612308565b610a5283838360405180602001604052806000815250611707565b60606000610caf83611395565b905060008167ffffffffffffffff811115610ccc57610ccc612af0565b604051908082528060200260200182016040528015610cf5578160200160208202803683370190505b50905060005b82811015610d3c57610d0d8582610b14565b828281518110610d1f57610d1f612ada565b602090810291909101015280610d3481612a69565b915050610cfb565b509392505050565b600a546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016107c99061291a565b600d55565b60125460ff1615610dbb5760405162461bcd60e51b8152602060048201526012602482015271151a19481cd85b19481a5cc81c185d5cd95960721b60448201526064016107c9565b6000610dc660085490565b905060008211610e185760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107c9565b600e54610e2583836129a0565b1115610e6c5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107c9565b601254610100900460ff16610fa757600a546001600160a01b03163314610fa257600f54821115610eeb5760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016107c9565b60115482610ef833611395565b610f0291906129a0565b1115610f505760405162461bcd60e51b815260206004820152601d60248201527f4e4654204c696d697420706572204163636f756e74207265616368656400000060448201526064016107c9565b81600d54610f5e91906129cc565b341015610fa25760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016107c9565b611073565b610fb033611274565b610ffc5760405162461bcd60e51b815260206004820181905260248201527f4163636f756e74206e6f7420656c696769626c6520666f722070726573616c6560448201526064016107c9565b6010548261100933611395565b61101391906129a0565b11156110735760405162461bcd60e51b815260206004820152602960248201527f4e4654204c696d697420706572204163636f756e74207265616368656420666f604482015268722070726573616c6560b81b60648201526084016107c9565b60015b828111610a52576110903361108b83856129a0565b611c68565b8061109a81612a69565b915050611076565b60006110ad60085490565b82106111105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c9565b6008828154811061112357611123612ada565b90600052602060002001549050919050565b600a546060906001600160a01b031633146111625760405162461bcd60e51b81526004016107c99061291a565b60138054806020026020016040519081016040528092919081815260200182805480156108a2576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610abc575050505050905090565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016107c99061291a565b8051610c4190600b90602084019061236b565b6000818152600260205260408120546001600160a01b0316806108145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c9565b6000805b6014548110156112cf576014818154811061129557611295612ada565b6000918252602090912001546001600160a01b03848116911614156112bd5750600192915050565b806112c781612a69565b915050611278565b50600092915050565b600b80546112e590612a2e565b80601f016020809104026020016040519081016040528092919081815260200182805461131190612a2e565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505081565b600a546001600160a01b031633146113905760405162461bcd60e51b81526004016107c99061291a565b601155565b60006001600160a01b0382166114005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114465760405162461bcd60e51b81526004016107c99061291a565b6114506000611c82565b565b600a546001600160a01b0316331461147c5760405162461bcd60e51b81526004016107c99061291a565b611488601460006122ea565b610a5260148383612308565b600a546001600160a01b031633146114be5760405162461bcd60e51b81526004016107c99061291a565b60125460ff16156115065760405162461bcd60e51b8152602060048201526012602482015271151a19481cd85b19481a5cc81c185d5cd95960721b60448201526064016107c9565b600061151160085490565b600e546013549192509061152590836129a0565b111561156c5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107c9565b60005b601354811015610c41576011546115ac6013838154811061159257611592612ada565b6000918252602090912001546001600160a01b0316611395565b10156115f2576115f2601382815481106115c8576115c8612ada565b6000918252602090912001546001600160a01b03166115e783856129a0565b61108b9060016129a0565b806115fc81612a69565b91505061156f565b60606001805461082990612a2e565b6001600160a01b03821633141561166c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117025760405162461bcd60e51b81526004016107c99061291a565b600f55565b61171133836119c6565b61172d5760405162461bcd60e51b81526004016107c99061294f565b61173984848484611cd4565b50505050565b600c80546112e590612a2e565b6000818152600260205260409020546060906001600160a01b03166117cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c9565b60006117d5611d07565b905060008151116117f55760405180602001604052806000815250611823565b806117ff84611d16565b600c6040516020016118139392919061272f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118545760405162461bcd60e51b81526004016107c99061291a565b8051610c4190600c90602084019061236b565b600a546001600160a01b031633146118915760405162461bcd60e51b81526004016107c99061291a565b6001600160a01b0381166118f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c9565b6118ff81611c82565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061193957506001600160e01b03198216635b5e139f60e01b145b8061081457506301ffc9a760e01b6001600160e01b0319831614610814565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198d826111fd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a3f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c9565b6000611a4a836111fd565b9050806001600160a01b0316846001600160a01b03161480611a855750836001600160a01b0316611a7a846108ac565b6001600160a01b0316145b80611ab557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ad0826111fd565b6001600160a01b031614611b385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c9565b6001600160a01b038216611b9a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c9565b611ba5838383611e14565b611bb0600082611958565b6001600160a01b0383166000908152600360205260408120805460019290611bd99084906129eb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c079084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c41828260405180602001604052806000815250611ecc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611cdf848484611abd565b611ceb84848484611eff565b6117395760405162461bcd60e51b81526004016107c9906128c8565b6060600b805461082990612a2e565b606081611d3a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d645780611d4e81612a69565b9150611d5d9050600a836129b8565b9150611d3e565b60008167ffffffffffffffff811115611d7f57611d7f612af0565b6040519080825280601f01601f191660200182016040528015611da9576020820181803683370190505b5090505b8415611ab557611dbe6001836129eb565b9150611dcb600a86612a84565b611dd69060306129a0565b60f81b818381518110611deb57611deb612ada565b60200101906001600160f81b031916908160001a905350611e0d600a866129b8565b9450611dad565b6001600160a01b038316611e6f57611e6a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e92565b816001600160a01b0316836001600160a01b031614611e9257611e92838261200c565b6001600160a01b038216611ea957610a52816120a9565b826001600160a01b0316826001600160a01b031614610a5257610a528282612158565b611ed6838361219c565b611ee36000848484611eff565b610a525760405162461bcd60e51b81526004016107c9906128c8565b60006001600160a01b0384163b1561200157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f439033908990889088906004016127f3565b602060405180830381600087803b158015611f5d57600080fd5b505af1925050508015611f8d575060408051601f3d908101601f19168201909252611f8a91810190612684565b60015b611fe7573d808015611fbb576040519150601f19603f3d011682016040523d82523d6000602084013e611fc0565b606091505b508051611fdf5760405162461bcd60e51b81526004016107c9906128c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab5565b506001949350505050565b6000600161201984611395565b61202391906129eb565b600083815260076020526040902054909150808214612076576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120bb906001906129eb565b600083815260096020526040812054600880549394509092849081106120e3576120e3612ada565b90600052602060002001549050806008838154811061210457612104612ada565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061213c5761213c612ac4565b6001900381819060005260206000200160009055905550505050565b600061216383611395565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121f25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c9565b6000818152600260205260409020546001600160a01b0316156122575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c9565b61226360008383611e14565b6001600160a01b038216600090815260036020526040812080546001929061228c9084906129a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906118ff91906123df565b82805482825590600052602060002090810192821561235b579160200282015b8281111561235b5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612328565b506123679291506123df565b5090565b82805461237790612a2e565b90600052602060002090601f016020900481019282612399576000855561235b565b82601f106123b257805160ff191683800117855561235b565b8280016001018555821561235b579182015b8281111561235b5782518255916020019190600101906123c4565b5b8082111561236757600081556001016123e0565b600067ffffffffffffffff8084111561240f5761240f612af0565b604051601f8501601f19908116603f0116810190828211818310171561243757612437612af0565b8160405280935085815286868601111561245057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248157600080fd5b919050565b60006020828403121561249857600080fd5b6118238261246a565b600080604083850312156124b457600080fd5b6124bd8361246a565b91506124cb6020840161246a565b90509250929050565b6000806000606084860312156124e957600080fd5b6124f28461246a565b92506125006020850161246a565b9150604084013590509250925092565b6000806000806080858703121561252657600080fd5b61252f8561246a565b935061253d6020860161246a565b925060408501359150606085013567ffffffffffffffff81111561256057600080fd5b8501601f8101871361257157600080fd5b612580878235602084016123f4565b91505092959194509250565b6000806040838503121561259f57600080fd5b6125a88361246a565b9150602083013580151581146125bd57600080fd5b809150509250929050565b600080604083850312156125db57600080fd5b6125e48361246a565b946020939093013593505050565b6000806020838503121561260557600080fd5b823567ffffffffffffffff8082111561261d57600080fd5b818501915085601f83011261263157600080fd5b81358181111561264057600080fd5b8660208260051b850101111561265557600080fd5b60209290920196919550909350505050565b60006020828403121561267957600080fd5b813561182381612b06565b60006020828403121561269657600080fd5b815161182381612b06565b6000602082840312156126b357600080fd5b813567ffffffffffffffff8111156126ca57600080fd5b8201601f810184136126db57600080fd5b611ab5848235602084016123f4565b6000602082840312156126fc57600080fd5b5035919050565b6000815180845261271b816020860160208601612a02565b601f01601f19169290920160200192915050565b6000845160206127428285838a01612a02565b8551918401916127558184848a01612a02565b8554920191600090600181811c908083168061277257607f831692505b85831081141561279057634e487b7160e01b85526022600452602485fd5b8080156127a457600181146127b5576127e2565b60ff198516885283880195506127e2565b60008b81526020902060005b858110156127da5781548a8201529084019088016127c1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282690830184612703565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128715783516001600160a01b03168352928401929184019160010161284c565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561287157835183529284019291840191600101612899565b6020815260006118236020830184612703565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129b3576129b3612a98565b500190565b6000826129c7576129c7612aae565b500490565b60008160001904831182151516156129e6576129e6612a98565b500290565b6000828210156129fd576129fd612a98565b500390565b60005b83811015612a1d578181015183820152602001612a05565b838111156117395750506000910152565b600181811c90821680612a4257607f821691505b60208210811415612a6357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7d57612a7d612a98565b5060010190565b600082612a9357612a93612aae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118ff57600080fdfea2646970667358221220d29cc065414d61f874ec1c0a5a761dfb8e6220998a935bc02f8d7f3eb7346da764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d574c313141646f4b334a394a4431335653764b446577795767565a6633474c4b35655737585a754865326a482f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmWL11AdoK3J9JD13VSvKDewyWgVZf3GLK5eW7XZuHe2jH/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d574c313141646f4b334a394a4431335653764b44657779
Arg [3] : 5767565a6633474c4b35655737585a754865326a482f00000000000000000000


Deployed Bytecode Sourcemap

42834:4649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46791:71;;;;;;;;;;;;;:::i;:::-;;34439:224;;;;;;;;;;-1:-1:-1;34439:224:0;;;;;:::i;:::-;;:::i;:::-;;;8623:14:1;;8616:22;8598:41;;8586:2;8571:18;34439:224:0;;;;;;;;22364:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23923:221::-;;;;;;;;;;-1:-1:-1;23923:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6621:32:1;;;6603:51;;6591:2;6576:18;23923:221:0;6457:203:1;23446:411:0;;;;;;;;;;-1:-1:-1;23446:411:0;;;;;:::i;:::-;;:::i;47238:102::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42989:39::-;;;;;;;;;;;;;;;;;;;19162:25:1;;;19150:2;19135:18;42989:39:0;19016:177:1;35079:113:0;;;;;;;;;;-1:-1:-1;35167:10:0;:17;35079:113;;24813:339;;;;;;;;;;-1:-1:-1;24813:339:0;;;;;:::i;:::-;;:::i;43177:38::-;;;;;;;;;;;;;;;;34747:256;;;;;;;;;;-1:-1:-1;34747:256:0;;;;;:::i;:::-;;:::i;46718:67::-;;;;;;;;;;;;;:::i;47347:133::-;;;;;;;;;;;;;:::i;46868:126::-;;;;;;;;;;-1:-1:-1;46868:126:0;;;;;:::i;:::-;;:::i;25223:185::-;;;;;;;;;;-1:-1:-1;25223:185:0;;;;;:::i;:::-;;:::i;44675:333::-;;;;;;;;;;-1:-1:-1;44675:333:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46108:80::-;;;;;;;;;;-1:-1:-1;46108:80:0;;;;;:::i;:::-;;:::i;43628:1041::-;;;;;;:::i;:::-;;:::i;35269:233::-;;;;;;;;;;-1:-1:-1;35269:233:0;;;;;:::i;:::-;;:::i;47000:106::-;;;;;;;;;;;;;:::i;46486:98::-;;;;;;;;;;-1:-1:-1;46486:98:0;;;;;:::i;:::-;;:::i;43220:25::-;;;;;;;;;;-1:-1:-1;43220:25:0;;;;;;;;22058:239;;;;;;;;;;-1:-1:-1;22058:239:0;;;;;:::i;:::-;;:::i;45414:235::-;;;;;;;;;;-1:-1:-1;45414:235:0;;;;;:::i;:::-;;:::i;42921:21::-;;;;;;;;;;;;;:::i;46344:136::-;;;;;;;;;;-1:-1:-1;46344:136:0;;;;;:::i;:::-;;:::i;21788:208::-;;;;;;;;;;-1:-1:-1;21788:208:0;;;;;:::i;:::-;;:::i;42205:94::-;;;;;;;;;;;;;:::i;47112:120::-;;;;;;;;;;-1:-1:-1;47112:120:0;;;;;:::i;:::-;;:::i;45682:420::-;;;:::i;43133:39::-;;;;;;;;;;;;;;;;41554:87;;;;;;;;;;-1:-1:-1;41627:6:0;;-1:-1:-1;;;;;41627:6:0;41554:87;;22533:104;;;;;;;;;;;;;:::i;24216:295::-;;;;;;;;;;-1:-1:-1;24216:295:0;;;;;:::i;:::-;;:::i;46194:144::-;;;;;;;;;;-1:-1:-1;46194:144:0;;;;;:::i;:::-;;:::i;25479:328::-;;;;;;;;;;-1:-1:-1;25479:328:0;;;;;:::i;:::-;;:::i;43081:47::-;;;;;;;;;;;;;;;;42947:37;;;;;;;;;;;;;:::i;45014:394::-;;;;;;;;;;-1:-1:-1;45014:394:0;;;;;:::i;:::-;;:::i;43045:31::-;;;;;;;;;;;;;;;;46590:122;;;;;;;;;;-1:-1:-1;46590:122:0;;;;;:::i;:::-;;:::i;24582:164::-;;;;;;;;;;-1:-1:-1;24582:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24703:25:0;;;24679:4;24703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24582:164;42454:192;;;;;;;;;;-1:-1:-1;42454:192:0;;;;;:::i;:::-;;:::i;43250:26::-;;;;;;;;;;-1:-1:-1;43250:26:0;;;;;;;;;;;46791:71;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;;;;;;;;;46849:7:::1;::::0;;-1:-1:-1;;46838:18:0;::::1;46849:7;::::0;;;::::1;;;46848:8;46838:18:::0;;::::1;;::::0;;46791:71::o;34439:224::-;34541:4;-1:-1:-1;;;;;;34565:50:0;;-1:-1:-1;;;34565:50:0;;:90;;;34619:36;34643:11;34619:23;:36::i;:::-;34558:97;34439:224;-1:-1:-1;;34439:224:0:o;22364:100::-;22418:13;22451:5;22444:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22364:100;:::o;23923:221::-;23999:7;27406:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27406:16:0;24019:73;;;;-1:-1:-1;;;24019:73:0;;15619:2:1;24019:73:0;;;15601:21:1;15658:2;15638:18;;;15631:30;15697:34;15677:18;;;15670:62;-1:-1:-1;;;15748:18:1;;;15741:42;15800:19;;24019:73:0;15417:408:1;24019:73:0;-1:-1:-1;24112:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24112:24:0;;23923:221::o;23446:411::-;23527:13;23543:23;23558:7;23543:14;:23::i;:::-;23527:39;;23591:5;-1:-1:-1;;;;;23585:11:0;:2;-1:-1:-1;;;;;23585:11:0;;;23577:57;;;;-1:-1:-1;;;23577:57:0;;17629:2:1;23577:57:0;;;17611:21:1;17668:2;17648:18;;;17641:30;17707:34;17687:18;;;17680:62;-1:-1:-1;;;17758:18:1;;;17751:31;17799:19;;23577:57:0;17427:397:1;23577:57:0;19996:10;-1:-1:-1;;;;;23669:21:0;;;;:62;;-1:-1:-1;23694:37:0;23711:5;19996:10;24582:164;:::i;23694:37::-;23647:168;;;;-1:-1:-1;;;23647:168:0;;13314:2:1;23647:168:0;;;13296:21:1;13353:2;13333:18;;;13326:30;13392:34;13372:18;;;13365:62;13463:26;13443:18;;;13436:54;13507:19;;23647:168:0;13112:420:1;23647:168:0;23828:21;23837:2;23841:7;23828:8;:21::i;:::-;23516:341;23446:411;;:::o;47238:102::-;41627:6;;47293:16;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;47325:9:::1;47318:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;47318:16:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;47238:102:::0;:::o;24813:339::-;25008:41;19996:10;25041:7;25008:18;:41::i;:::-;25000:103;;;;-1:-1:-1;;;25000:103:0;;;;;;;:::i;:::-;25116:28;25126:4;25132:2;25136:7;25116:9;:28::i;34747:256::-;34844:7;34880:23;34897:5;34880:16;:23::i;:::-;34872:5;:31;34864:87;;;;-1:-1:-1;;;34864:87:0;;9076:2:1;34864:87:0;;;9058:21:1;9115:2;9095:18;;;9088:30;9154:34;9134:18;;;9127:62;-1:-1:-1;;;9205:18:1;;;9198:41;9256:19;;34864:87:0;8874:407:1;34864:87:0;-1:-1:-1;;;;;;34969:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34747:256::o;46718:67::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;46773:6:::1;::::0;;-1:-1:-1;;46763:16:0;::::1;46773:6;::::0;;::::1;46772:7;46763:16;::::0;;46718:67::o;47347:133::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;47437:37:::1;::::0;47409:21:::1;::::0;47445:10:::1;::::0;47437:37;::::1;;;::::0;47409:21;;47391:15:::1;47437:37:::0;47391:15;47437:37;47409:21;47445:10;47437:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47384:96;47347:133::o:0;46868:126::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;46943:18:::1;46950:11;;46943:18;:::i;:::-;46968:20;:11;46982:6:::0;;46968:20:::1;:::i;25223:185::-:0;25361:39;25378:4;25384:2;25388:7;25361:39;;;;;;;;;;;;:16;:39::i;44675:333::-;44735:16;44763:23;44789:17;44799:6;44789:9;:17::i;:::-;44763:43;;44813:25;44855:15;44841:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44841:30:0;;44813:58;;44883:9;44878:103;44898:15;44894:1;:19;44878:103;;;44943:30;44963:6;44971:1;44943:19;:30::i;:::-;44929:8;44938:1;44929:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;44915:3;;;;:::i;:::-;;;;44878:103;;;-1:-1:-1;44994:8:0;44675:333;-1:-1:-1;;;44675:333:0:o;46108:80::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;46167:4:::1;:15:::0;46108:80::o;43628:1041::-;43705:6;;;;43704:7;43696:38;;;;-1:-1:-1;;;43696:38:0;;14911:2:1;43696:38:0;;;14893:21:1;14950:2;14930:18;;;14923:30;-1:-1:-1;;;14969:18:1;;;14962:48;15027:18;;43696:38:0;14709:342:1;43696:38:0;43741:14;43758:13;35167:10;:17;;35079:113;43758:13;43741:30;;43800:1;43786:11;:15;43778:55;;;;-1:-1:-1;;;43778:55:0;;18862:2:1;43778:55:0;;;18844:21:1;18901:2;18881:18;;;18874:30;18940:29;18920:18;;;18913:57;18987:18;;43778:55:0;18660:351:1;43778:55:0;43872:9;;43848:20;43857:11;43848:6;:20;:::i;:::-;:33;;43840:68;;;;-1:-1:-1;;;43840:68:0;;14560:2:1;43840:68:0;;;14542:21:1;14599:2;14579:18;;;14572:30;-1:-1:-1;;;14618:18:1;;;14611:52;14680:18;;43840:68:0;14358:346:1;43840:68:0;43922:7;;;;;;;43917:646;;41627:6;;-1:-1:-1;;;;;41627:6:0;43977:10;:21;43973:330;;44042:27;;44027:11;:42;;44019:91;;;;-1:-1:-1;;;44019:91:0;;12562:2:1;44019:91:0;;;12544:21:1;12601:2;12581:18;;;12574:30;12640:34;12620:18;;;12613:62;-1:-1:-1;;;12691:18:1;;;12684:34;12735:19;;44019:91:0;12360:400:1;44019:91:0;44168:18;;44153:11;44129:21;44139:10;44129:9;:21::i;:::-;:35;;;;:::i;:::-;:57;;44121:99;;;;-1:-1:-1;;;44121:99:0;;11032:2:1;44121:99:0;;;11014:21:1;11071:2;11051:18;;;11044:30;11110:31;11090:18;;;11083:59;11159:18;;44121:99:0;10830:353:1;44121:99:0;44259:11;44252:4;;:18;;;;:::i;:::-;44239:9;:31;;44231:62;;;;-1:-1:-1;;;44231:62:0;;12967:2:1;44231:62:0;;;12949:21:1;13006:2;12986:18;;;12979:30;-1:-1:-1;;;13025:18:1;;;13018:48;13083:18;;44231:62:0;12765:342:1;44231:62:0;43917:646;;;44364:32;44385:10;44364:20;:32::i;:::-;44356:77;;;;-1:-1:-1;;;44356:77:0;;10671:2:1;44356:77:0;;;10653:21:1;;;10690:18;;;10683:30;10749:34;10729:18;;;10722:62;10801:18;;44356:77:0;10469:356:1;44356:77:0;44489:20;;44474:11;44450:21;44460:10;44450:9;:21::i;:::-;:35;;;;:::i;:::-;:59;;44442:113;;;;-1:-1:-1;;;44442:113:0;;16803:2:1;44442:113:0;;;16785:21:1;16842:2;16822:18;;;16815:30;16881:34;16861:18;;;16854:62;-1:-1:-1;;;16932:18:1;;;16925:39;16981:19;;44442:113:0;16601:405:1;44442:113:0;44588:1;44571:93;44596:11;44591:1;:16;44571:93;;44623:33;44633:10;44645;44654:1;44645:6;:10;:::i;:::-;44623:9;:33::i;:::-;44609:3;;;;:::i;:::-;;;;44571:93;;35269:233;35344:7;35380:30;35167:10;:17;;35079:113;35380:30;35372:5;:38;35364:95;;;;-1:-1:-1;;;35364:95:0;;18449:2:1;35364:95:0;;;18431:21:1;18488:2;18468:18;;;18461:30;18527:34;18507:18;;;18500:62;-1:-1:-1;;;18578:18:1;;;18571:42;18630:19;;35364:95:0;18247:408:1;35364:95:0;35477:10;35488:5;35477:17;;;;;;;;:::i;:::-;;;;;;;;;35470:24;;35269:233;;;:::o;47000:106::-;41627:6;;47057:16;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;47089:11:::1;47082:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;47082:18:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;47000:106:::0;:::o;46486:98::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;46557:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;22058:239::-:0;22130:7;22166:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22166:16:0;22201:19;22193:73;;;;-1:-1:-1;;;22193:73:0;;14150:2:1;22193:73:0;;;14132:21:1;14189:2;14169:18;;;14162:30;14228:34;14208:18;;;14201:62;-1:-1:-1;;;14279:18:1;;;14272:39;14328:19;;22193:73:0;13948:405:1;45414:235:0;45483:4;;45496:129;45520:9;:16;45516:20;;45496:129;;;45573:9;45583:1;45573:12;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;45561:24:0;;;45573:12;;45561:24;45557:61;;;-1:-1:-1;45604:4:0;;45414:235;-1:-1:-1;;45414:235:0:o;45557:61::-;45538:3;;;;:::i;:::-;;;;45496:129;;;-1:-1:-1;45638:5:0;;45414:235;-1:-1:-1;;45414:235:0:o;42921:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46344:136::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;46431:18:::1;:43:::0;46344:136::o;21788:208::-;21860:7;-1:-1:-1;;;;;21888:19:0;;21880:74;;;;-1:-1:-1;;;21880:74:0;;13739:2:1;21880:74:0;;;13721:21:1;13778:2;13758:18;;;13751:30;13817:34;13797:18;;;13790:62;-1:-1:-1;;;13868:18:1;;;13861:40;13918:19;;21880:74:0;13537:406:1;21880:74:0;-1:-1:-1;;;;;;21972:16:0;;;;;:9;:16;;;;;;;21788:208::o;42205:94::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;42270:21:::1;42288:1;42270:9;:21::i;:::-;42205:94::o:0;47112:120::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;47185:16:::1;47192:9;;47185:16;:::i;:::-;47208:18;:9;47220:6:::0;;47208:18:::1;:::i;45682:420::-:0;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;45748:6:::1;::::0;::::1;;45747:7;45739:38;;;::::0;-1:-1:-1;;;45739:38:0;;14911:2:1;45739:38:0::1;::::0;::::1;14893:21:1::0;14950:2;14930:18;;;14923:30;-1:-1:-1;;;14969:18:1;;;14962:48;15027:18;;45739:38:0::1;14709:342:1::0;45739:38:0::1;45784:14;45801:13;35167:10:::0;:17;;35079:113;45801:13:::1;45860:9;::::0;45838:11:::1;:18:::0;45784:30;;-1:-1:-1;45860:9:0;45829:27:::1;::::0;45784:30;45829:27:::1;:::i;:::-;:40;;45821:75;;;::::0;-1:-1:-1;;;45821:75:0;;14560:2:1;45821:75:0::1;::::0;::::1;14542:21:1::0;14599:2;14579:18;;;14572:30;-1:-1:-1;;;14618:18:1;;;14611:52;14680:18;;45821:75:0::1;14358:346:1::0;45821:75:0::1;45910:9;45905:192;45929:11;:18:::0;45925:22;::::1;45905:192;;;46001:18;;45973:25;45983:11;45995:1;45983:14;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;45983:14:0::1;45973:9;:25::i;:::-;:46;45969:121;;;46039:41;46049:11;46061:1;46049:14;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;46049:14:0::1;46065:10;46074:1:::0;46065:6;:10:::1;:::i;:::-;:14;::::0;46078:1:::1;46065:14;:::i;46039:41::-;45949:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45905:192;;22533:104:::0;22589:13;22622:7;22615:14;;;;;:::i;24216:295::-;-1:-1:-1;;;;;24319:24:0;;19996:10;24319:24;;24311:62;;;;-1:-1:-1;;;24311:62:0;;11795:2:1;24311:62:0;;;11777:21:1;11834:2;11814:18;;;11807:30;11873:27;11853:18;;;11846:55;11918:18;;24311:62:0;11593:349:1;24311:62:0;19996:10;24386:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24386:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24386:53:0;;;;;;;;;;24455:48;;8598:41:1;;;24386:42:0;;19996:10;24455:48;;8571:18:1;24455:48:0;;;;;;;24216:295;;:::o;46194:144::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;46285:27:::1;:47:::0;46194:144::o;25479:328::-;25654:41;19996:10;25687:7;25654:18;:41::i;:::-;25646:103;;;;-1:-1:-1;;;25646:103:0;;;;;;;:::i;:::-;25760:39;25774:4;25780:2;25784:7;25793:5;25760:13;:39::i;:::-;25479:328;;;;:::o;42947:37::-;;;;;;;:::i;45014:394::-;27382:4;27406:16;;;:7;:16;;;;;;45087:13;;-1:-1:-1;;;;;27406:16:0;45112:97;;;;-1:-1:-1;;;45112:97:0;;17213:2:1;45112:97:0;;;17195:21:1;17252:2;17232:18;;;17225:30;17291:34;17271:18;;;17264:62;-1:-1:-1;;;17342:18:1;;;17335:45;17397:19;;45112:97:0;17011:411:1;45112:97:0;45218:28;45249:10;:8;:10::i;:::-;45218:41;;45304:1;45279:14;45273:28;:32;:129;;;;;;;;;;;;;;;;;45339:14;45355:18;:7;:16;:18::i;:::-;45375:13;45322:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45273:129;45266:136;45014:394;-1:-1:-1;;;45014:394:0:o;46590:122::-;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;46673:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;42454:192::-:0;41627:6;;-1:-1:-1;;;;;41627:6:0;19996:10;41774:23;41766:68;;;;-1:-1:-1;;;41766:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42543:22:0;::::1;42535:73;;;::::0;-1:-1:-1;;;42535:73:0;;9907:2:1;42535:73:0::1;::::0;::::1;9889:21:1::0;9946:2;9926:18;;;9919:30;9985:34;9965:18;;;9958:62;-1:-1:-1;;;10036:18:1;;;10029:36;10082:19;;42535:73:0::1;9705:402:1::0;42535:73:0::1;42619:19;42629:8;42619:9;:19::i;:::-;42454:192:::0;:::o;10356:387::-;10679:20;10727:8;;;10356:387::o;21419:305::-;21521:4;-1:-1:-1;;;;;;21558:40:0;;-1:-1:-1;;;21558:40:0;;:105;;-1:-1:-1;;;;;;;21615:48:0;;-1:-1:-1;;;21615:48:0;21558:105;:158;;;-1:-1:-1;;;;;;;;;;7525:40:0;;;21680:36;7416:157;31299:174;31374:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31374:29:0;-1:-1:-1;;;;;31374:29:0;;;;;;;;:24;;31428:23;31374:24;31428:14;:23::i;:::-;-1:-1:-1;;;;;31419:46:0;;;;;;;;;;;31299:174;;:::o;27611:348::-;27704:4;27406:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27406:16:0;27721:73;;;;-1:-1:-1;;;27721:73:0;;12149:2:1;27721:73:0;;;12131:21:1;12188:2;12168:18;;;12161:30;12227:34;12207:18;;;12200:62;-1:-1:-1;;;12278:18:1;;;12271:42;12330:19;;27721:73:0;11947:408:1;27721:73:0;27805:13;27821:23;27836:7;27821:14;:23::i;:::-;27805:39;;27874:5;-1:-1:-1;;;;;27863:16:0;:7;-1:-1:-1;;;;;27863:16:0;;:51;;;;27907:7;-1:-1:-1;;;;;27883:31:0;:20;27895:7;27883:11;:20::i;:::-;-1:-1:-1;;;;;27883:31:0;;27863:51;:87;;;-1:-1:-1;;;;;;24703:25:0;;;24679:4;24703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27918:32;27855:96;27611:348;-1:-1:-1;;;;27611:348:0:o;30603:578::-;30762:4;-1:-1:-1;;;;;30735:31:0;:23;30750:7;30735:14;:23::i;:::-;-1:-1:-1;;;;;30735:31:0;;30727:85;;;;-1:-1:-1;;;30727:85:0;;16393:2:1;30727:85:0;;;16375:21:1;16432:2;16412:18;;;16405:30;16471:34;16451:18;;;16444:62;-1:-1:-1;;;16522:18:1;;;16515:39;16571:19;;30727:85:0;16191:405:1;30727:85:0;-1:-1:-1;;;;;30831:16:0;;30823:65;;;;-1:-1:-1;;;30823:65:0;;11390:2:1;30823:65:0;;;11372:21:1;11429:2;11409:18;;;11402:30;11468:34;11448:18;;;11441:62;-1:-1:-1;;;11519:18:1;;;11512:34;11563:19;;30823:65:0;11188:400:1;30823:65:0;30901:39;30922:4;30928:2;30932:7;30901:20;:39::i;:::-;31005:29;31022:1;31026:7;31005:8;:29::i;:::-;-1:-1:-1;;;;;31047:15:0;;;;;;:9;:15;;;;;:20;;31066:1;;31047:15;:20;;31066:1;;31047:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31078:13:0;;;;;;:9;:13;;;;;:18;;31095:1;;31078:13;:18;;31095:1;;31078:18;:::i;:::-;;;;-1:-1:-1;;31107:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31107:21:0;-1:-1:-1;;;;;31107:21:0;;;;;;;;;31146:27;;31107:16;;31146:27;;;;;;;30603:578;;;:::o;28301:110::-;28377:26;28387:2;28391:7;28377:26;;;;;;;;;;;;:9;:26::i;42654:173::-;42729:6;;;-1:-1:-1;;;;;42746:17:0;;;-1:-1:-1;;;;;;42746:17:0;;;;;;;42779:40;;42729:6;;;42746:17;42729:6;;42779:40;;42710:16;;42779:40;42699:128;42654:173;:::o;26689:315::-;26846:28;26856:4;26862:2;26866:7;26846:9;:28::i;:::-;26893:48;26916:4;26922:2;26926:7;26935:5;26893:22;:48::i;:::-;26885:111;;;;-1:-1:-1;;;26885:111:0;;;;;;;:::i;43507:102::-;43567:13;43596:7;43589:14;;;;;:::i;7860:723::-;7916:13;8137:10;8133:53;;-1:-1:-1;;8164:10:0;;;;;;;;;;;;-1:-1:-1;;;8164:10:0;;;;;7860:723::o;8133:53::-;8211:5;8196:12;8252:78;8259:9;;8252:78;;8285:8;;;;:::i;:::-;;-1:-1:-1;8308:10:0;;-1:-1:-1;8316:2:0;8308:10;;:::i;:::-;;;8252:78;;;8340:19;8372:6;8362:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8362:17:0;;8340:39;;8390:154;8397:10;;8390:154;;8424:11;8434:1;8424:11;;:::i;:::-;;-1:-1:-1;8493:10:0;8501:2;8493:5;:10;:::i;:::-;8480:24;;:2;:24;:::i;:::-;8467:39;;8450:6;8457;8450:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8450:56:0;;;;;;;;-1:-1:-1;8521:11:0;8530:2;8521:11;;:::i;:::-;;;8390:154;;36115:589;-1:-1:-1;;;;;36321:18:0;;36317:187;;36356:40;36388:7;37531:10;:17;;37504:24;;;;:15;:24;;;;;:44;;;37559:24;;;;;;;;;;;;37427:164;36356:40;36317:187;;;36426:2;-1:-1:-1;;;;;36418:10:0;:4;-1:-1:-1;;;;;36418:10:0;;36414:90;;36445:47;36478:4;36484:7;36445:32;:47::i;:::-;-1:-1:-1;;;;;36518:16:0;;36514:183;;36551:45;36588:7;36551:36;:45::i;36514:183::-;36624:4;-1:-1:-1;;;;;36618:10:0;:2;-1:-1:-1;;;;;36618:10:0;;36614:83;;36645:40;36673:2;36677:7;36645:27;:40::i;28638:321::-;28768:18;28774:2;28778:7;28768:5;:18::i;:::-;28819:54;28850:1;28854:2;28858:7;28867:5;28819:22;:54::i;:::-;28797:154;;;;-1:-1:-1;;;28797:154:0;;;;;;;:::i;32038:799::-;32193:4;-1:-1:-1;;;;;32214:13:0;;10679:20;10727:8;32210:620;;32250:72;;-1:-1:-1;;;32250:72:0;;-1:-1:-1;;;;;32250:36:0;;;;;:72;;19996:10;;32301:4;;32307:7;;32316:5;;32250:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32250:72:0;;;;;;;;-1:-1:-1;;32250:72:0;;;;;;;;;;;;:::i;:::-;;;32246:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32492:13:0;;32488:272;;32535:60;;-1:-1:-1;;;32535:60:0;;;;;;;:::i;32488:272::-;32710:6;32704:13;32695:6;32691:2;32687:15;32680:38;32246:529;-1:-1:-1;;;;;;32373:51:0;-1:-1:-1;;;32373:51:0;;-1:-1:-1;32366:58:0;;32210:620;-1:-1:-1;32814:4:0;32038:799;;;;;;:::o;38218:988::-;38484:22;38534:1;38509:22;38526:4;38509:16;:22::i;:::-;:26;;;;:::i;:::-;38546:18;38567:26;;;:17;:26;;;;;;38484:51;;-1:-1:-1;38700:28:0;;;38696:328;;-1:-1:-1;;;;;38767:18:0;;38745:19;38767:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38818:30;;;;;;:44;;;38935:30;;:17;:30;;;;;:43;;;38696:328;-1:-1:-1;39120:26:0;;;;:17;:26;;;;;;;;39113:33;;;-1:-1:-1;;;;;39164:18:0;;;;;:12;:18;;;;;:34;;;;;;;39157:41;38218:988::o;39501:1079::-;39779:10;:17;39754:22;;39779:21;;39799:1;;39779:21;:::i;:::-;39811:18;39832:24;;;:15;:24;;;;;;40205:10;:26;;39754:46;;-1:-1:-1;39832:24:0;;39754:46;;40205:26;;;;;;:::i;:::-;;;;;;;;;40183:48;;40269:11;40244:10;40255;40244:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40349:28;;;:15;:28;;;;;;;:41;;;40521:24;;;;;40514:31;40556:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39572:1008;;;39501:1079;:::o;37005:221::-;37090:14;37107:20;37124:2;37107:16;:20::i;:::-;-1:-1:-1;;;;;37138:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37183:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37005:221:0:o;29295:382::-;-1:-1:-1;;;;;29375:16:0;;29367:61;;;;-1:-1:-1;;;29367:61:0;;15258:2:1;29367:61:0;;;15240:21:1;;;15277:18;;;15270:30;15336:34;15316:18;;;15309:62;15388:18;;29367:61:0;15056:356:1;29367:61:0;27382:4;27406:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27406:16:0;:30;29439:58;;;;-1:-1:-1;;;29439:58:0;;10314:2:1;29439:58:0;;;10296:21:1;10353:2;10333:18;;;10326:30;10392;10372:18;;;10365:58;10440:18;;29439:58:0;10112:352:1;29439:58:0;29510:45;29539:1;29543:2;29547:7;29510:20;:45::i;:::-;-1:-1:-1;;;;;29568:13:0;;;;;;:9;:13;;;;;:18;;29585:1;;29568:13;:18;;29585:1;;29568:18;:::i;:::-;;;;-1:-1:-1;;29597:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29597:21:0;-1:-1:-1;;;;;29597:21:0;;;;;;;;29636:33;;29597:16;;;29636:33;;29597:16;;29636:33;29295:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:1527::-;5149:3;5187:6;5181:13;5213:4;5226:51;5270:6;5265:3;5260:2;5252:6;5248:15;5226:51;:::i;:::-;5340:13;;5299:16;;;;5362:55;5340:13;5299:16;5384:15;;;5362:55;:::i;:::-;5506:13;;5439:20;;;5479:1;;5566;5588:18;;;;5641;;;;5668:93;;5746:4;5736:8;5732:19;5720:31;;5668:93;5809:2;5799:8;5796:16;5776:18;5773:40;5770:167;;;-1:-1:-1;;;5836:33:1;;5892:4;5889:1;5882:15;5922:4;5843:3;5910:17;5770:167;5953:18;5980:110;;;;6104:1;6099:328;;;;5946:481;;5980:110;-1:-1:-1;;6015:24:1;;6001:39;;6060:20;;;;-1:-1:-1;5980:110:1;;6099:328;19271:1;19264:14;;;19308:4;19295:18;;6194:1;6208:169;6222:8;6219:1;6216:15;6208:169;;;6304:14;;6289:13;;;6282:37;6347:16;;;;6239:10;;6208:169;;;6212:3;;6408:8;6401:5;6397:20;6390:27;;5946:481;-1:-1:-1;6443:3:1;;4925:1527;-1:-1:-1;;;;;;;;;;;4925:1527:1:o;6665:488::-;-1:-1:-1;;;;;6934:15:1;;;6916:34;;6986:15;;6981:2;6966:18;;6959:43;7033:2;7018:18;;7011:34;;;7081:3;7076:2;7061:18;;7054:31;;;6859:4;;7102:45;;7127:19;;7119:6;7102:45;:::i;:::-;7094:53;6665:488;-1:-1:-1;;;;;;6665:488:1:o;7158:658::-;7329:2;7381:21;;;7451:13;;7354:18;;;7473:22;;;7300:4;;7329:2;7552:15;;;;7526:2;7511:18;;;7300:4;7595:195;7609:6;7606:1;7603:13;7595:195;;;7674:13;;-1:-1:-1;;;;;7670:39:1;7658:52;;7765:15;;;;7730:12;;;;7706:1;7624:9;7595:195;;;-1:-1:-1;7807:3:1;;7158:658;-1:-1:-1;;;;;;7158:658:1:o;7821:632::-;7992:2;8044:21;;;8114:13;;8017:18;;;8136:22;;;7963:4;;7992:2;8215:15;;;;8189:2;8174:18;;;7963:4;8258:169;8272:6;8269:1;8266:13;8258:169;;;8333:13;;8321:26;;8402:15;;;;8367:12;;;;8294:1;8287:9;8258:169;;8650:219;8799:2;8788:9;8781:21;8762:4;8819:44;8859:2;8848:9;8844:18;8836:6;8819:44;:::i;9286:414::-;9488:2;9470:21;;;9527:2;9507:18;;;9500:30;9566:34;9561:2;9546:18;;9539:62;-1:-1:-1;;;9632:2:1;9617:18;;9610:48;9690:3;9675:19;;9286:414::o;15830:356::-;16032:2;16014:21;;;16051:18;;;16044:30;16110:34;16105:2;16090:18;;16083:62;16177:2;16162:18;;15830:356::o;17829:413::-;18031:2;18013:21;;;18070:2;18050:18;;;18043:30;18109:34;18104:2;18089:18;;18082:62;-1:-1:-1;;;18175:2:1;18160:18;;18153:47;18232:3;18217:19;;17829:413::o;19324:128::-;19364:3;19395:1;19391:6;19388:1;19385:13;19382:39;;;19401:18;;:::i;:::-;-1:-1:-1;19437:9:1;;19324:128::o;19457:120::-;19497:1;19523;19513:35;;19528:18;;:::i;:::-;-1:-1:-1;19562:9:1;;19457:120::o;19582:168::-;19622:7;19688:1;19684;19680:6;19676:14;19673:1;19670:21;19665:1;19658:9;19651:17;19647:45;19644:71;;;19695:18;;:::i;:::-;-1:-1:-1;19735:9:1;;19582:168::o;19755:125::-;19795:4;19823:1;19820;19817:8;19814:34;;;19828:18;;:::i;:::-;-1:-1:-1;19865:9:1;;19755:125::o;19885:258::-;19957:1;19967:113;19981:6;19978:1;19975:13;19967:113;;;20057:11;;;20051:18;20038:11;;;20031:39;20003:2;19996:10;19967:113;;;20098:6;20095:1;20092:13;20089:48;;;-1:-1:-1;;20133:1:1;20115:16;;20108:27;19885:258::o;20148:380::-;20227:1;20223:12;;;;20270;;;20291:61;;20345:4;20337:6;20333:17;20323:27;;20291:61;20398:2;20390:6;20387:14;20367:18;20364:38;20361:161;;;20444:10;20439:3;20435:20;20432:1;20425:31;20479:4;20476:1;20469:15;20507:4;20504:1;20497:15;20361:161;;20148:380;;;:::o;20533:135::-;20572:3;-1:-1:-1;;20593:17:1;;20590:43;;;20613:18;;:::i;:::-;-1:-1:-1;20660:1:1;20649:13;;20533:135::o;20673:112::-;20705:1;20731;20721:35;;20736:18;;:::i;:::-;-1:-1:-1;20770:9:1;;20673:112::o;20790:127::-;20851:10;20846:3;20842:20;20839:1;20832:31;20882:4;20879:1;20872:15;20906:4;20903:1;20896:15;20922:127;20983:10;20978:3;20974:20;20971:1;20964:31;21014:4;21011:1;21004:15;21038:4;21035:1;21028:15;21054:127;21115:10;21110:3;21106:20;21103:1;21096:31;21146:4;21143:1;21136:15;21170:4;21167:1;21160:15;21186:127;21247:10;21242:3;21238:20;21235:1;21228:31;21278:4;21275:1;21268:15;21302:4;21299:1;21292:15;21318:127;21379:10;21374:3;21370:20;21367:1;21360:31;21410:4;21407:1;21400:15;21434:4;21431:1;21424:15;21450:131;-1:-1:-1;;;;;;21524:32:1;;21514:43;;21504:71;;21571:1;21568;21561:12

Swarm Source

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