ETH Price: $3,359.93 (-3.28%)

Token

KatGame (KATGAME)
 

Overview

Max Total Supply

679 KATGAME

Holders

135

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 KATGAME
0xdb93342558502d4f522e774eac55d71bff8e6130
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KatGame

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/KatGame.sol

pragma solidity ^0.8.0;

contract KatGame is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    string public baseURI;
    string public notRevealedUri;
    uint256 public cost = 0.01 ether;
    uint256 public maxSupply = 2888;
    uint256 public nftPerAddressLimit = 10;
    uint256 public tokenCount = 0;
    bool public paused;
    bool public reveal;

    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri)
        ERC721("KatGame", "KATGAME")
    {
        baseURI = _initBaseURI;
        notRevealedUri = _initNotRevealedUri;
    }

    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
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (reveal) {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            baseURI,
                            "/",
                            tokenId.toString(),
                            ".json"
                        )
                    )
                    : "";
        } else {
            return bytes(notRevealedUri).length > 0 ? notRevealedUri : "";
        }
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(supply + _amount <= maxSupply, "max NFT limit exceeded");
        if (supply + _amount > 500) {
            if (msg.sender != owner()) {
                require(_amount <= nftPerAddressLimit);
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    ownerMintedCount + _amount <= nftPerAddressLimit,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= cost * _amount,
                    "KatGame::mint: insufficient ethers"
                );
            }
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    //only owner
    function revealNFT() external onlyOwner {
        reveal = !reveal;
    }

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

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

    function setPerAddressLimit(uint256 _initLimit) public onlyOwner {
        nftPerAddressLimit = _initLimit;
    }

    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool os1, ) = payable(0x1cc04Bac38015Bd444e1E33FA35b9377B13ED9C2).call{
            value: amount.mul(10).div(100)
        }("");
        require(os1);
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_initLimit","type":"uint256"}],"name":"setPerAddressLimit","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":[],"name":"tokenCount","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"}]

6080604052662386f26fc10000600d55610b48600e55600a600f5560006010553480156200002c57600080fd5b50604051620027e6380380620027e68339810160408190526200004f91620002d7565b604051806040016040528060078152602001664b617447616d6560c81b815250604051806040016040528060078152602001664b415447414d4560c81b8152508160009080519060200190620000a792919062000164565b508051620000bd90600190602084019062000164565b505050620000da620000d46200010e60201b60201c565b62000112565b8151620000ef90600b90602085019062000164565b5080516200010590600c90602084019062000164565b5050506200037e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001729062000341565b90600052602060002090601f016020900481019282620001965760008555620001e1565b82601f10620001b157805160ff1916838001178555620001e1565b82800160010185558215620001e1579182015b82811115620001e1578251825591602001919060010190620001c4565b50620001ef929150620001f3565b5090565b5b80821115620001ef5760008155600101620001f4565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023257600080fd5b81516001600160401b03808211156200024f576200024f6200020a565b604051601f8301601f19908116603f011681019082821181831017156200027a576200027a6200020a565b816040528381526020925086838588010111156200029757600080fd5b600091505b83821015620002bb57858201830151818301840152908201906200029c565b83821115620002cd5760008385830101525b9695505050505050565b60008060408385031215620002eb57600080fd5b82516001600160401b03808211156200030357600080fd5b620003118683870162000220565b935060208501519150808211156200032857600080fd5b50620003378582860162000220565b9150509250929050565b600181811c908216806200035657607f821691505b602082108114156200037857634e487b7160e01b600052602260045260246000fd5b50919050565b612458806200038e6000396000f3fe6080604052600436106102045760003560e01c80635c975abb11610118578063a0712d68116100a0578063ba7d2c761161006f578063ba7d2c76146105a0578063c87b56dd146105b6578063d5abeb01146105d6578063e985e9c5146105ec578063f2fde38b1461063557600080fd5b8063a0712d681461052e578063a22cb46514610541578063a475b5dd14610561578063b88d4fde1461058057600080fd5b8063715018a6116100e7578063715018a6146104bb5780638456cb59146104d05780638da5cb5b146104e557806395d89b41146105035780639f181b5e1461051857600080fd5b80635c975abb1461044c5780636352211e146104665780636c0360eb1461048657806370a082311461049b57600080fd5b806318cae2691161019b5780633ccfd60b1161016a5780633ccfd60b146103aa57806342842e0e146103bf578063438b6300146103df57806344a0d68a1461040c5780634f6ccce71461042c57600080fd5b806318cae2691461031d57806323b872dd1461034a57806329f767e81461036a5780632f745c591461038a57600080fd5b8063081c8c44116101d7578063081c8c44146102af578063095ea7b3146102c457806313faede6146102e457806318160ddd1461030857600080fd5b806301ffc9a71461020957806304b4bba91461023e57806306fdde0314610255578063081812fc14610277575b600080fd5b34801561021557600080fd5b50610229610224366004611e07565b610655565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610680565b005b34801561026157600080fd5b5061026a6106d0565b6040516102359190611e7c565b34801561028357600080fd5b50610297610292366004611e8f565b610762565b6040516001600160a01b039091168152602001610235565b3480156102bb57600080fd5b5061026a6107f7565b3480156102d057600080fd5b506102536102df366004611ebf565b610885565b3480156102f057600080fd5b506102fa600d5481565b604051908152602001610235565b34801561031457600080fd5b506008546102fa565b34801561032957600080fd5b506102fa610338366004611ee9565b60126020526000908152604090205481565b34801561035657600080fd5b50610253610365366004611f04565b61099b565b34801561037657600080fd5b50610253610385366004611e8f565b6109cc565b34801561039657600080fd5b506102fa6103a5366004611ebf565b6109fb565b3480156103b657600080fd5b50610253610a91565b3480156103cb57600080fd5b506102536103da366004611f04565b610ba9565b3480156103eb57600080fd5b506103ff6103fa366004611ee9565b610bc4565b6040516102359190611f40565b34801561041857600080fd5b50610253610427366004611e8f565b610c66565b34801561043857600080fd5b506102fa610447366004611e8f565b610c95565b34801561045857600080fd5b506011546102299060ff1681565b34801561047257600080fd5b50610297610481366004611e8f565b610d28565b34801561049257600080fd5b5061026a610d9f565b3480156104a757600080fd5b506102fa6104b6366004611ee9565b610dac565b3480156104c757600080fd5b50610253610e33565b3480156104dc57600080fd5b50610253610e69565b3480156104f157600080fd5b50600a546001600160a01b0316610297565b34801561050f57600080fd5b5061026a610ea7565b34801561052457600080fd5b506102fa60105481565b61025361053c366004611e8f565b610eb6565b34801561054d57600080fd5b5061025361055c366004611f84565b6110c6565b34801561056d57600080fd5b5060115461022990610100900460ff1681565b34801561058c57600080fd5b5061025361059b366004611fd6565b61118b565b3480156105ac57600080fd5b506102fa600f5481565b3480156105c257600080fd5b5061026a6105d1366004611e8f565b6111c3565b3480156105e257600080fd5b506102fa600e5481565b3480156105f857600080fd5b506102296106073660046120b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064157600080fd5b50610253610650366004611ee9565b61136f565b60006001600160e01b0319821663780e9d6360e01b148061067a575061067a8261140a565b92915050565b600a546001600160a01b031633146106b35760405162461bcd60e51b81526004016106aa906120e5565b60405180910390fd5b6011805461ff001981166101009182900460ff1615909102179055565b6060600080546106df9061211a565b80601f016020809104026020016040519081016040528092919081815260200182805461070b9061211a565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106aa565b506000908152600460205260409020546001600160a01b031690565b600c80546108049061211a565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061211a565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b505050505081565b600061089082610d28565b9050806001600160a01b0316836001600160a01b031614156108fe5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106aa565b336001600160a01b038216148061091a575061091a8133610607565b61098c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106aa565b610996838361145a565b505050565b6109a533826114c8565b6109c15760405162461bcd60e51b81526004016106aa90612155565b6109968383836115bf565b600a546001600160a01b031633146109f65760405162461bcd60e51b81526004016106aa906120e5565b600f55565b6000610a0683610dac565b8210610a685760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106aa565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610abb5760405162461bcd60e51b81526004016106aa906120e5565b476000731cc04bac38015bd444e1e33fa35b9377b13ed9c2610ae96064610ae385600a61176a565b9061177d565b604051600081818185875af1925050503d8060008114610b25576040519150601f19603f3d011682016040523d82523d6000602084013e610b2a565b606091505b5050905080610b3857600080fd5b6000610b4c600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b96576040519150601f19603f3d011682016040523d82523d6000602084013e610b9b565b606091505b505090508061099657600080fd5b6109968383836040518060200160405280600081525061118b565b60606000610bd183610dac565b905060008167ffffffffffffffff811115610bee57610bee611fc0565b604051908082528060200260200182016040528015610c17578160200160208202803683370190505b50905060005b82811015610c5e57610c2f85826109fb565b828281518110610c4157610c416121a6565b602090810291909101015280610c56816121d2565b915050610c1d565b509392505050565b600a546001600160a01b03163314610c905760405162461bcd60e51b81526004016106aa906120e5565b600d55565b6000610ca060085490565b8210610d035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106aa565b60088281548110610d1657610d166121a6565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061067a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106aa565b600b80546108049061211a565b60006001600160a01b038216610e175760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106aa565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e5d5760405162461bcd60e51b81526004016106aa906120e5565b610e676000611789565b565b600a546001600160a01b03163314610e935760405162461bcd60e51b81526004016106aa906120e5565b6011805460ff19811660ff90911615179055565b6060600180546106df9061211a565b60115460ff1615610f025760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106aa565b6000610f0d60085490565b600e54909150610f1d83836121ed565b1115610f645760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016106aa565b6101f4610f7183836121ed565b111561106d57600a546001600160a01b0316331461106d57600f54821115610f9857600080fd5b33600090815260126020526040902054600f54610fb584836121ed565b11156110035760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016106aa565b82600d546110119190612205565b34101561106b5760405162461bcd60e51b815260206004820152602260248201527f4b617447616d653a3a6d696e743a20696e73756666696369656e742065746865604482015261727360f01b60648201526084016106aa565b505b60015b82811161099657336000908152601260205260408120805491611092836121d2565b91905055506110b4336010600081546110aa906121d2565b91829055506117db565b806110be816121d2565b915050611070565b6001600160a01b03821633141561111f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106aa565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119533836114c8565b6111b15760405162461bcd60e51b81526004016106aa90612155565b6111bd848484846117f9565b50505050565b6000818152600260205260409020546060906001600160a01b03166112425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106aa565b601154610100900460ff16156112ae576000600b80546112619061211a565b90501161127d576040518060200160405280600081525061067a565b600b6112888361182c565b604051602001611299929190612240565b60405160208183030381529060405292915050565b6000600c80546112bd9061211a565b9050116112d9576040518060200160405280600081525061067a565b600c80546112e69061211a565b80601f01602080910402602001604051908101604052809291908181526020018280546113129061211a565b801561135f5780601f106113345761010080835404028352916020019161135f565b820191906000526020600020905b81548152906001019060200180831161134257829003601f168201915b505050505092915050565b919050565b600a546001600160a01b031633146113995760405162461bcd60e51b81526004016106aa906120e5565b6001600160a01b0381166113fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106aa565b61140781611789565b50565b60006001600160e01b031982166380ac58cd60e01b148061143b57506001600160e01b03198216635b5e139f60e01b145b8061067a57506301ffc9a760e01b6001600160e01b031983161461067a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061148f82610d28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106aa565b600061154c83610d28565b9050806001600160a01b0316846001600160a01b031614806115875750836001600160a01b031661157c84610762565b6001600160a01b0316145b806115b757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115d282610d28565b6001600160a01b03161461163a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106aa565b6001600160a01b03821661169c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106aa565b6116a783838361192a565b6116b260008261145a565b6001600160a01b03831660009081526003602052604081208054600192906116db90849061230b565b90915550506001600160a01b03821660009081526003602052604081208054600192906117099084906121ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117768284612205565b9392505050565b60006117768284612338565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117f58282604051806020016040528060008152506119e2565b5050565b6118048484846115bf565b61181084848484611a15565b6111bd5760405162461bcd60e51b81526004016106aa9061234c565b6060816118505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561187a5780611864816121d2565b91506118739050600a83612338565b9150611854565b60008167ffffffffffffffff81111561189557611895611fc0565b6040519080825280601f01601f1916602001820160405280156118bf576020820181803683370190505b5090505b84156115b7576118d460018361230b565b91506118e1600a8661239e565b6118ec9060306121ed565b60f81b818381518110611901576119016121a6565b60200101906001600160f81b031916908160001a905350611923600a86612338565b94506118c3565b6001600160a01b0383166119855761198081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119a8565b816001600160a01b0316836001600160a01b0316146119a8576119a88382611b13565b6001600160a01b0382166119bf5761099681611bb0565b826001600160a01b0316826001600160a01b031614610996576109968282611c5f565b6119ec8383611ca3565b6119f96000848484611a15565b6109965760405162461bcd60e51b81526004016106aa9061234c565b60006001600160a01b0384163b15611b0857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a599033908990889088906004016123b2565b6020604051808303816000875af1925050508015611a94575060408051601f3d908101601f19168201909252611a91918101906123ef565b60015b611aee573d808015611ac2576040519150601f19603f3d011682016040523d82523d6000602084013e611ac7565b606091505b508051611ae65760405162461bcd60e51b81526004016106aa9061234c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b7565b506001949350505050565b60006001611b2084610dac565b611b2a919061230b565b600083815260076020526040902054909150808214611b7d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bc29060019061230b565b60008381526009602052604081205460088054939450909284908110611bea57611bea6121a6565b906000526020600020015490508060088381548110611c0b57611c0b6121a6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c4357611c4361240c565b6001900381819060005260206000200160009055905550505050565b6000611c6a83610dac565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cf95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106aa565b6000818152600260205260409020546001600160a01b031615611d5e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106aa565b611d6a6000838361192a565b6001600160a01b0382166000908152600360205260408120805460019290611d939084906121ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461140757600080fd5b600060208284031215611e1957600080fd5b813561177681611df1565b60005b83811015611e3f578181015183820152602001611e27565b838111156111bd5750506000910152565b60008151808452611e68816020860160208601611e24565b601f01601f19169290920160200192915050565b6020815260006117766020830184611e50565b600060208284031215611ea157600080fd5b5035919050565b80356001600160a01b038116811461136a57600080fd5b60008060408385031215611ed257600080fd5b611edb83611ea8565b946020939093013593505050565b600060208284031215611efb57600080fd5b61177682611ea8565b600080600060608486031215611f1957600080fd5b611f2284611ea8565b9250611f3060208501611ea8565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611f7857835183529284019291840191600101611f5c565b50909695505050505050565b60008060408385031215611f9757600080fd5b611fa083611ea8565b915060208301358015158114611fb557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611fec57600080fd5b611ff585611ea8565b935061200360208601611ea8565b925060408501359150606085013567ffffffffffffffff8082111561202757600080fd5b818701915087601f83011261203b57600080fd5b81358181111561204d5761204d611fc0565b604051601f8201601f19908116603f0116810190838211818310171561207557612075611fc0565b816040528281528a602084870101111561208e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120c557600080fd5b6120ce83611ea8565b91506120dc60208401611ea8565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061212e57607f821691505b6020821081141561214f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121e6576121e66121bc565b5060010190565b60008219821115612200576122006121bc565b500190565b600081600019048311821515161561221f5761221f6121bc565b500290565b60008151612236818560208601611e24565b9290920192915050565b600080845481600182811c91508083168061225c57607f831692505b602080841082141561227c57634e487b7160e01b86526022600452602486fd5b81801561229057600181146122a1576122ce565b60ff198616895284890196506122ce565b60008b81526020902060005b868110156122c65781548b8201529085019083016122ad565b505084890196505b5050505050506123026122f16122eb83602f60f81b815260010190565b86612224565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561231d5761231d6121bc565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261234757612347612322565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826123ad576123ad612322565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e590830184611e50565b9695505050505050565b60006020828403121561240157600080fd5b815161177681611df1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220954a8dd2938052cec6d0a088b92e127ba37b9ce8c231254c1aa4ab9936caa5f464736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d57704d70364c3934355954774674747453486d38743756584d6965614c64457475534e7542414d6f5039616600000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d526731445662647954627638354b51667946416d6668477578413342357846694a4e414a7a5434376f6b77390000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635c975abb11610118578063a0712d68116100a0578063ba7d2c761161006f578063ba7d2c76146105a0578063c87b56dd146105b6578063d5abeb01146105d6578063e985e9c5146105ec578063f2fde38b1461063557600080fd5b8063a0712d681461052e578063a22cb46514610541578063a475b5dd14610561578063b88d4fde1461058057600080fd5b8063715018a6116100e7578063715018a6146104bb5780638456cb59146104d05780638da5cb5b146104e557806395d89b41146105035780639f181b5e1461051857600080fd5b80635c975abb1461044c5780636352211e146104665780636c0360eb1461048657806370a082311461049b57600080fd5b806318cae2691161019b5780633ccfd60b1161016a5780633ccfd60b146103aa57806342842e0e146103bf578063438b6300146103df57806344a0d68a1461040c5780634f6ccce71461042c57600080fd5b806318cae2691461031d57806323b872dd1461034a57806329f767e81461036a5780632f745c591461038a57600080fd5b8063081c8c44116101d7578063081c8c44146102af578063095ea7b3146102c457806313faede6146102e457806318160ddd1461030857600080fd5b806301ffc9a71461020957806304b4bba91461023e57806306fdde0314610255578063081812fc14610277575b600080fd5b34801561021557600080fd5b50610229610224366004611e07565b610655565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610680565b005b34801561026157600080fd5b5061026a6106d0565b6040516102359190611e7c565b34801561028357600080fd5b50610297610292366004611e8f565b610762565b6040516001600160a01b039091168152602001610235565b3480156102bb57600080fd5b5061026a6107f7565b3480156102d057600080fd5b506102536102df366004611ebf565b610885565b3480156102f057600080fd5b506102fa600d5481565b604051908152602001610235565b34801561031457600080fd5b506008546102fa565b34801561032957600080fd5b506102fa610338366004611ee9565b60126020526000908152604090205481565b34801561035657600080fd5b50610253610365366004611f04565b61099b565b34801561037657600080fd5b50610253610385366004611e8f565b6109cc565b34801561039657600080fd5b506102fa6103a5366004611ebf565b6109fb565b3480156103b657600080fd5b50610253610a91565b3480156103cb57600080fd5b506102536103da366004611f04565b610ba9565b3480156103eb57600080fd5b506103ff6103fa366004611ee9565b610bc4565b6040516102359190611f40565b34801561041857600080fd5b50610253610427366004611e8f565b610c66565b34801561043857600080fd5b506102fa610447366004611e8f565b610c95565b34801561045857600080fd5b506011546102299060ff1681565b34801561047257600080fd5b50610297610481366004611e8f565b610d28565b34801561049257600080fd5b5061026a610d9f565b3480156104a757600080fd5b506102fa6104b6366004611ee9565b610dac565b3480156104c757600080fd5b50610253610e33565b3480156104dc57600080fd5b50610253610e69565b3480156104f157600080fd5b50600a546001600160a01b0316610297565b34801561050f57600080fd5b5061026a610ea7565b34801561052457600080fd5b506102fa60105481565b61025361053c366004611e8f565b610eb6565b34801561054d57600080fd5b5061025361055c366004611f84565b6110c6565b34801561056d57600080fd5b5060115461022990610100900460ff1681565b34801561058c57600080fd5b5061025361059b366004611fd6565b61118b565b3480156105ac57600080fd5b506102fa600f5481565b3480156105c257600080fd5b5061026a6105d1366004611e8f565b6111c3565b3480156105e257600080fd5b506102fa600e5481565b3480156105f857600080fd5b506102296106073660046120b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064157600080fd5b50610253610650366004611ee9565b61136f565b60006001600160e01b0319821663780e9d6360e01b148061067a575061067a8261140a565b92915050565b600a546001600160a01b031633146106b35760405162461bcd60e51b81526004016106aa906120e5565b60405180910390fd5b6011805461ff001981166101009182900460ff1615909102179055565b6060600080546106df9061211a565b80601f016020809104026020016040519081016040528092919081815260200182805461070b9061211a565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106aa565b506000908152600460205260409020546001600160a01b031690565b600c80546108049061211a565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061211a565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b505050505081565b600061089082610d28565b9050806001600160a01b0316836001600160a01b031614156108fe5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106aa565b336001600160a01b038216148061091a575061091a8133610607565b61098c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106aa565b610996838361145a565b505050565b6109a533826114c8565b6109c15760405162461bcd60e51b81526004016106aa90612155565b6109968383836115bf565b600a546001600160a01b031633146109f65760405162461bcd60e51b81526004016106aa906120e5565b600f55565b6000610a0683610dac565b8210610a685760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106aa565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610abb5760405162461bcd60e51b81526004016106aa906120e5565b476000731cc04bac38015bd444e1e33fa35b9377b13ed9c2610ae96064610ae385600a61176a565b9061177d565b604051600081818185875af1925050503d8060008114610b25576040519150601f19603f3d011682016040523d82523d6000602084013e610b2a565b606091505b5050905080610b3857600080fd5b6000610b4c600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b96576040519150601f19603f3d011682016040523d82523d6000602084013e610b9b565b606091505b505090508061099657600080fd5b6109968383836040518060200160405280600081525061118b565b60606000610bd183610dac565b905060008167ffffffffffffffff811115610bee57610bee611fc0565b604051908082528060200260200182016040528015610c17578160200160208202803683370190505b50905060005b82811015610c5e57610c2f85826109fb565b828281518110610c4157610c416121a6565b602090810291909101015280610c56816121d2565b915050610c1d565b509392505050565b600a546001600160a01b03163314610c905760405162461bcd60e51b81526004016106aa906120e5565b600d55565b6000610ca060085490565b8210610d035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106aa565b60088281548110610d1657610d166121a6565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061067a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106aa565b600b80546108049061211a565b60006001600160a01b038216610e175760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106aa565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e5d5760405162461bcd60e51b81526004016106aa906120e5565b610e676000611789565b565b600a546001600160a01b03163314610e935760405162461bcd60e51b81526004016106aa906120e5565b6011805460ff19811660ff90911615179055565b6060600180546106df9061211a565b60115460ff1615610f025760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106aa565b6000610f0d60085490565b600e54909150610f1d83836121ed565b1115610f645760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016106aa565b6101f4610f7183836121ed565b111561106d57600a546001600160a01b0316331461106d57600f54821115610f9857600080fd5b33600090815260126020526040902054600f54610fb584836121ed565b11156110035760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016106aa565b82600d546110119190612205565b34101561106b5760405162461bcd60e51b815260206004820152602260248201527f4b617447616d653a3a6d696e743a20696e73756666696369656e742065746865604482015261727360f01b60648201526084016106aa565b505b60015b82811161099657336000908152601260205260408120805491611092836121d2565b91905055506110b4336010600081546110aa906121d2565b91829055506117db565b806110be816121d2565b915050611070565b6001600160a01b03821633141561111f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106aa565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119533836114c8565b6111b15760405162461bcd60e51b81526004016106aa90612155565b6111bd848484846117f9565b50505050565b6000818152600260205260409020546060906001600160a01b03166112425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106aa565b601154610100900460ff16156112ae576000600b80546112619061211a565b90501161127d576040518060200160405280600081525061067a565b600b6112888361182c565b604051602001611299929190612240565b60405160208183030381529060405292915050565b6000600c80546112bd9061211a565b9050116112d9576040518060200160405280600081525061067a565b600c80546112e69061211a565b80601f01602080910402602001604051908101604052809291908181526020018280546113129061211a565b801561135f5780601f106113345761010080835404028352916020019161135f565b820191906000526020600020905b81548152906001019060200180831161134257829003601f168201915b505050505092915050565b919050565b600a546001600160a01b031633146113995760405162461bcd60e51b81526004016106aa906120e5565b6001600160a01b0381166113fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106aa565b61140781611789565b50565b60006001600160e01b031982166380ac58cd60e01b148061143b57506001600160e01b03198216635b5e139f60e01b145b8061067a57506301ffc9a760e01b6001600160e01b031983161461067a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061148f82610d28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106aa565b600061154c83610d28565b9050806001600160a01b0316846001600160a01b031614806115875750836001600160a01b031661157c84610762565b6001600160a01b0316145b806115b757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115d282610d28565b6001600160a01b03161461163a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106aa565b6001600160a01b03821661169c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106aa565b6116a783838361192a565b6116b260008261145a565b6001600160a01b03831660009081526003602052604081208054600192906116db90849061230b565b90915550506001600160a01b03821660009081526003602052604081208054600192906117099084906121ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117768284612205565b9392505050565b60006117768284612338565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117f58282604051806020016040528060008152506119e2565b5050565b6118048484846115bf565b61181084848484611a15565b6111bd5760405162461bcd60e51b81526004016106aa9061234c565b6060816118505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561187a5780611864816121d2565b91506118739050600a83612338565b9150611854565b60008167ffffffffffffffff81111561189557611895611fc0565b6040519080825280601f01601f1916602001820160405280156118bf576020820181803683370190505b5090505b84156115b7576118d460018361230b565b91506118e1600a8661239e565b6118ec9060306121ed565b60f81b818381518110611901576119016121a6565b60200101906001600160f81b031916908160001a905350611923600a86612338565b94506118c3565b6001600160a01b0383166119855761198081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119a8565b816001600160a01b0316836001600160a01b0316146119a8576119a88382611b13565b6001600160a01b0382166119bf5761099681611bb0565b826001600160a01b0316826001600160a01b031614610996576109968282611c5f565b6119ec8383611ca3565b6119f96000848484611a15565b6109965760405162461bcd60e51b81526004016106aa9061234c565b60006001600160a01b0384163b15611b0857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a599033908990889088906004016123b2565b6020604051808303816000875af1925050508015611a94575060408051601f3d908101601f19168201909252611a91918101906123ef565b60015b611aee573d808015611ac2576040519150601f19603f3d011682016040523d82523d6000602084013e611ac7565b606091505b508051611ae65760405162461bcd60e51b81526004016106aa9061234c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b7565b506001949350505050565b60006001611b2084610dac565b611b2a919061230b565b600083815260076020526040902054909150808214611b7d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bc29060019061230b565b60008381526009602052604081205460088054939450909284908110611bea57611bea6121a6565b906000526020600020015490508060088381548110611c0b57611c0b6121a6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c4357611c4361240c565b6001900381819060005260206000200160009055905550505050565b6000611c6a83610dac565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cf95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106aa565b6000818152600260205260409020546001600160a01b031615611d5e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106aa565b611d6a6000838361192a565b6001600160a01b0382166000908152600360205260408120805460019290611d939084906121ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461140757600080fd5b600060208284031215611e1957600080fd5b813561177681611df1565b60005b83811015611e3f578181015183820152602001611e27565b838111156111bd5750506000910152565b60008151808452611e68816020860160208601611e24565b601f01601f19169290920160200192915050565b6020815260006117766020830184611e50565b600060208284031215611ea157600080fd5b5035919050565b80356001600160a01b038116811461136a57600080fd5b60008060408385031215611ed257600080fd5b611edb83611ea8565b946020939093013593505050565b600060208284031215611efb57600080fd5b61177682611ea8565b600080600060608486031215611f1957600080fd5b611f2284611ea8565b9250611f3060208501611ea8565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611f7857835183529284019291840191600101611f5c565b50909695505050505050565b60008060408385031215611f9757600080fd5b611fa083611ea8565b915060208301358015158114611fb557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611fec57600080fd5b611ff585611ea8565b935061200360208601611ea8565b925060408501359150606085013567ffffffffffffffff8082111561202757600080fd5b818701915087601f83011261203b57600080fd5b81358181111561204d5761204d611fc0565b604051601f8201601f19908116603f0116810190838211818310171561207557612075611fc0565b816040528281528a602084870101111561208e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120c557600080fd5b6120ce83611ea8565b91506120dc60208401611ea8565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061212e57607f821691505b6020821081141561214f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121e6576121e66121bc565b5060010190565b60008219821115612200576122006121bc565b500190565b600081600019048311821515161561221f5761221f6121bc565b500290565b60008151612236818560208601611e24565b9290920192915050565b600080845481600182811c91508083168061225c57607f831692505b602080841082141561227c57634e487b7160e01b86526022600452602486fd5b81801561229057600181146122a1576122ce565b60ff198616895284890196506122ce565b60008b81526020902060005b868110156122c65781548b8201529085019083016122ad565b505084890196505b5050505050506123026122f16122eb83602f60f81b815260010190565b86612224565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561231d5761231d6121bc565b500390565b634e487b7160e01b600052601260045260246000fd5b60008261234757612347612322565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826123ad576123ad612322565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e590830184611e50565b9695505050505050565b60006020828403121561240157600080fd5b815161177681611df1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220954a8dd2938052cec6d0a088b92e127ba37b9ce8c231254c1aa4ab9936caa5f464736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d57704d70364c3934355954774674747453486d38743756584d6965614c64457475534e7542414d6f5039616600000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d526731445662647954627638354b51667946416d6668477578413342357846694a4e414a7a5434376f6b77390000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmWpMp6L945YTwFtttSHm8t7VXMieaLdEtuSNuBAMoP9af
Arg [1] : _initNotRevealedUri (string): ipfs://QmRg1DVbdyTbv85KQfyFAmfhGuxA3B5xFiJNAJzT47okw9

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d57704d70364c3934355954774674747453486d38743756
Arg [4] : 584d6965614c64457475534e7542414d6f503961660000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d526731445662647954627638354b51667946416d666847
Arg [7] : 7578413342357846694a4e414a7a5434376f6b77390000000000000000000000


Deployed Bytecode Sourcemap

52266:3545:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45793:300;;;;;;;;;;-1:-1:-1;45793:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;45793:300:0;;;;;;;;55070:75;;;;;;;;;;;;;:::i;:::-;;32957:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34650:308::-;;;;;;;;;;-1:-1:-1;34650:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;34650:308:0;1550:203:1;52412:28:0;;;;;;;;;;;;;:::i;34173:411::-;;;;;;;;;;-1:-1:-1;34173:411:0;;;;;:::i;:::-;;:::i;52447:32::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;52447:32:0;2195:177:1;46596:113:0;;;;;;;;;;-1:-1:-1;46684:10:0;:17;46596:113;;52657:55;;;;;;;;;;-1:-1:-1;52657:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;35709:376;;;;;;;;;;-1:-1:-1;35709:376:0;;;;;:::i;:::-;;:::i;55324:115::-;;;;;;;;;;-1:-1:-1;55324:115:0;;;;;:::i;:::-;;:::i;46177:343::-;;;;;;;;;;-1:-1:-1;46177:343:0;;;;;:::i;:::-;;:::i;55447:361::-;;;;;;;;;;;;;:::i;36156:185::-;;;;;;;;;;-1:-1:-1;36156:185:0;;;;;:::i;:::-;;:::i;52935:390::-;;;;;;;;;;-1:-1:-1;52935:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55153:86::-;;;;;;;;;;-1:-1:-1;55153:86:0;;;;;:::i;:::-;;:::i;46786:320::-;;;;;;;;;;-1:-1:-1;46786:320:0;;;;;:::i;:::-;;:::i;52605:18::-;;;;;;;;;;-1:-1:-1;52605:18:0;;;;;;;;32564:326;;;;;;;;;;-1:-1:-1;32564:326:0;;;;;:::i;:::-;;:::i;52384:21::-;;;;;;;;;;;;;:::i;32207:295::-;;;;;;;;;;-1:-1:-1;32207:295:0;;;;;:::i;:::-;;:::i;11749:94::-;;;;;;;;;;;;;:::i;55247:69::-;;;;;;;;;;;;;:::i;11098:87::-;;;;;;;;;;-1:-1:-1;11171:6:0;;-1:-1:-1;;;;;11171:6:0;11098:87;;33126:104;;;;;;;;;;;;;:::i;52569:29::-;;;;;;;;;;;;;;;;54094:950;;;;;;:::i;:::-;;:::i;35030:327::-;;;;;;;;;;-1:-1:-1;35030:327:0;;;;;:::i;:::-;;:::i;52630:18::-;;;;;;;;;;-1:-1:-1;52630:18:0;;;;;;;;;;;36412:365;;;;;;;;;;-1:-1:-1;36412:365:0;;;;;:::i;:::-;;:::i;52524:38::-;;;;;;;;;;;;;;;;53333:753;;;;;;;;;;-1:-1:-1;53333:753:0;;;;;:::i;:::-;;:::i;52486:31::-;;;;;;;;;;;;;;;;35428:214;;;;;;;;;;-1:-1:-1;35428:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;35599:25:0;;;35570:4;35599:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35428:214;11998:229;;;;;;;;;;-1:-1:-1;11998:229:0;;;;;:::i;:::-;;:::i;45793:300::-;45940:4;-1:-1:-1;;;;;;45982:50:0;;-1:-1:-1;;;45982:50:0;;:103;;;46049:36;46073:11;46049:23;:36::i;:::-;45962:123;45793:300;-1:-1:-1;;45793:300:0:o;55070:75::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;;;;;;;;;55131:6:::1;::::0;;-1:-1:-1;;55121:16:0;::::1;55131:6;::::0;;;::::1;;;55130:7;55121:16:::0;;::::1;;::::0;;55070:75::o;32957:100::-;33011:13;33044:5;33037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32957:100;:::o;34650:308::-;34771:7;38413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38413:16:0;34796:110;;;;-1:-1:-1;;;34796:110:0;;6378:2:1;34796:110:0;;;6360:21:1;6417:2;6397:18;;;6390:30;6456:34;6436:18;;;6429:62;-1:-1:-1;;;6507:18:1;;;6500:42;6559:19;;34796:110:0;6176:408:1;34796:110:0;-1:-1:-1;34926:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34926:24:0;;34650:308::o;52412:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34173:411::-;34254:13;34270:23;34285:7;34270:14;:23::i;:::-;34254:39;;34318:5;-1:-1:-1;;;;;34312:11:0;:2;-1:-1:-1;;;;;34312:11:0;;;34304:57;;;;-1:-1:-1;;;34304:57:0;;6791:2:1;34304:57:0;;;6773:21:1;6830:2;6810:18;;;6803:30;6869:34;6849:18;;;6842:62;-1:-1:-1;;;6920:18:1;;;6913:31;6961:19;;34304:57:0;6589:397:1;34304:57:0;9947:10;-1:-1:-1;;;;;34396:21:0;;;;:62;;-1:-1:-1;34421:37:0;34438:5;9947:10;35428:214;:::i;34421:37::-;34374:168;;;;-1:-1:-1;;;34374:168:0;;7193:2:1;34374:168:0;;;7175:21:1;7232:2;7212:18;;;7205:30;7271:34;7251:18;;;7244:62;7342:26;7322:18;;;7315:54;7386:19;;34374:168:0;6991:420:1;34374:168:0;34555:21;34564:2;34568:7;34555:8;:21::i;:::-;34243:341;34173:411;;:::o;35709:376::-;35918:41;9947:10;35951:7;35918:18;:41::i;:::-;35896:140;;;;-1:-1:-1;;;35896:140:0;;;;;;;:::i;:::-;36049:28;36059:4;36065:2;36069:7;36049:9;:28::i;55324:115::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;55400:18:::1;:31:::0;55324:115::o;46177:343::-;46319:7;46374:23;46391:5;46374:16;:23::i;:::-;46366:5;:31;46344:124;;;;-1:-1:-1;;;46344:124:0;;8036:2:1;46344:124:0;;;8018:21:1;8075:2;8055:18;;;8048:30;8114:34;8094:18;;;8087:62;-1:-1:-1;;;8165:18:1;;;8158:41;8216:19;;46344:124:0;7834:407:1;46344:124:0;-1:-1:-1;;;;;;46486:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46177:343::o;55447:361::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;55512:21:::1;55495:14;55567:42;55637:23;55656:3;55637:14;55512:21:::0;55648:2:::1;55637:10;:14::i;:::-;:18:::0;::::1;:23::i;:::-;55559:116;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55544:131;;;55694:3;55686:12;;;::::0;::::1;;55710:7;55731;11171:6:::0;;-1:-1:-1;;;;;11171:6:0;;11098:87;55731:7:::1;-1:-1:-1::0;;;;;55723:21:0::1;55752;55723:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55709:69;;;55797:2;55789:11;;;::::0;::::1;36156:185:::0;36294:39;36311:4;36317:2;36321:7;36294:39;;;;;;;;;;;;:16;:39::i;52935:390::-;53022:16;53056:23;53082:17;53092:6;53082:9;:17::i;:::-;53056:43;;53110:25;53152:15;53138:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53138:30:0;;53110:58;;53184:9;53179:113;53199:15;53195:1;:19;53179:113;;;53250:30;53270:6;53278:1;53250:19;:30::i;:::-;53236:8;53245:1;53236:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53216:3;;;;:::i;:::-;;;;53179:113;;;-1:-1:-1;53309:8:0;52935:390;-1:-1:-1;;;52935:390:0:o;55153:86::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;55216:4:::1;:15:::0;55153:86::o;46786:320::-;46906:7;46961:30;46684:10;:17;;46596:113;46961:30;46953:5;:38;46931:132;;;;-1:-1:-1;;;46931:132:0;;9062:2:1;46931:132:0;;;9044:21:1;9101:2;9081:18;;;9074:30;9140:34;9120:18;;;9113:62;-1:-1:-1;;;9191:18:1;;;9184:42;9243:19;;46931:132:0;8860:408:1;46931:132:0;47081:10;47092:5;47081:17;;;;;;;;:::i;:::-;;;;;;;;;47074:24;;46786:320;;;:::o;32564:326::-;32681:7;32722:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32722:16:0;32771:19;32749:110;;;;-1:-1:-1;;;32749:110:0;;9475:2:1;32749:110:0;;;9457:21:1;9514:2;9494:18;;;9487:30;9553:34;9533:18;;;9526:62;-1:-1:-1;;;9604:18:1;;;9597:39;9653:19;;32749:110:0;9273:405:1;52384:21:0;;;;;;;:::i;32207:295::-;32324:7;-1:-1:-1;;;;;32371:19:0;;32349:111;;;;-1:-1:-1;;;32349:111:0;;9885:2:1;32349:111:0;;;9867:21:1;9924:2;9904:18;;;9897:30;9963:34;9943:18;;;9936:62;-1:-1:-1;;;10014:18:1;;;10007:40;10064:19;;32349:111:0;9683:406:1;32349:111:0;-1:-1:-1;;;;;;32478:16:0;;;;;:9;:16;;;;;;;32207:295::o;11749:94::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;11814:21:::1;11832:1;11814:9;:21::i;:::-;11749:94::o:0;55247:69::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;55302:6:::1;::::0;;-1:-1:-1;;55292:16:0;::::1;55302:6;::::0;;::::1;55301:7;55292:16;::::0;;55247:69::o;33126:104::-;33182:13;33215:7;33208:14;;;;;:::i;54094:950::-;54162:6;;;;54161:7;54153:42;;;;-1:-1:-1;;;54153:42:0;;10296:2:1;54153:42:0;;;10278:21:1;10335:2;10315:18;;;10308:30;-1:-1:-1;;;10354:18:1;;;10347:52;10416:18;;54153:42:0;10094:346:1;54153:42:0;54206:14;54223:13;46684:10;:17;;46596:113;54223:13;54275:9;;54206:30;;-1:-1:-1;54255:16:0;54264:7;54206:30;54255:16;:::i;:::-;:29;;54247:64;;;;-1:-1:-1;;;54247:64:0;;10780:2:1;54247:64:0;;;10762:21:1;10819:2;10799:18;;;10792:30;-1:-1:-1;;;10838:18:1;;;10831:52;10900:18;;54247:64:0;10578:346:1;54247:64:0;54345:3;54326:16;54335:7;54326:6;:16;:::i;:::-;:22;54322:555;;;11171:6;;-1:-1:-1;;;;;11171:6:0;54369:10;:21;54365:501;;54430:18;;54419:7;:29;;54411:38;;;;;;54516:10;54468:24;54495:32;;;:20;:32;;;;;;54606:18;;54576:26;54595:7;54495:32;54576:26;:::i;:::-;:48;;54546:150;;;;-1:-1:-1;;;54546:150:0;;11131:2:1;54546:150:0;;;11113:21:1;11170:2;11150:18;;;11143:30;11209;11189:18;;;11182:58;11257:18;;54546:150:0;10929:352:1;54546:150:0;54765:7;54758:4;;:14;;;;:::i;:::-;54745:9;:27;;54715:135;;;;-1:-1:-1;;;54715:135:0;;11661:2:1;54715:135:0;;;11643:21:1;11700:2;11680:18;;;11673:30;11739:34;11719:18;;;11712:62;-1:-1:-1;;;11790:18:1;;;11783:32;11832:19;;54715:135:0;11459:398:1;54715:135:0;54392:474;54365:501;54904:1;54887:150;54912:7;54907:1;:12;54887:150;;54962:10;54941:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;54990:35;55000:10;55014;;55012:12;;;;;:::i;:::-;;;;;-1:-1:-1;54990:9:0;:35::i;:::-;54921:3;;;;:::i;:::-;;;;54887:150;;35030:327;-1:-1:-1;;;;;35165:24:0;;9947:10;35165:24;;35157:62;;;;-1:-1:-1;;;35157:62:0;;12064:2:1;35157:62:0;;;12046:21:1;12103:2;12083:18;;;12076:30;12142:27;12122:18;;;12115:55;12187:18;;35157:62:0;11862:349:1;35157:62:0;9947:10;35232:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35232:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35232:53:0;;;;;;;;;;35301:48;;540:41:1;;;35232:42:0;;9947:10;35301:48;;513:18:1;35301:48:0;;;;;;;35030:327;;:::o;36412:365::-;36601:41;9947:10;36634:7;36601:18;:41::i;:::-;36579:140;;;;-1:-1:-1;;;36579:140:0;;;;;;;:::i;:::-;36730:39;36744:4;36750:2;36754:7;36763:5;36730:13;:39::i;:::-;36412:365;;;;:::o;53333:753::-;38389:4;38413:16;;;:7;:16;;;;;;53434:13;;-1:-1:-1;;;;;38413:16:0;53465:113;;;;-1:-1:-1;;;53465:113:0;;12418:2:1;53465:113:0;;;12400:21:1;12457:2;12437:18;;;12430:30;12496:34;12476:18;;;12469:62;-1:-1:-1;;;12547:18:1;;;12540:45;12602:19;;53465:113:0;12216:411:1;53465:113:0;53593:6;;;;;;;53589:490;;;53664:1;53646:7;53640:21;;;;;:::i;:::-;;;:25;:333;;;;;;;;;;;;;;;;;53769:7;53841:18;:7;:16;:18::i;:::-;53722:202;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53616:357;53333:753;-1:-1:-1;;53333:753:0:o;53589:490::-;54044:1;54019:14;54013:28;;;;;:::i;:::-;;;:32;:54;;;;;;;;;;;;;;;;;54048:14;54013:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54006:61;53333:753;-1:-1:-1;;53333:753:0:o;53589:490::-;53333:753;;;:::o;11998:229::-;11171:6;;-1:-1:-1;;;;;11171:6:0;9947:10;11318:23;11310:68;;;;-1:-1:-1;;;11310:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12101:22:0;::::1;12079:110;;;::::0;-1:-1:-1;;;12079:110:0;;14825:2:1;12079:110:0::1;::::0;::::1;14807:21:1::0;14864:2;14844:18;;;14837:30;14903:34;14883:18;;;14876:62;-1:-1:-1;;;14954:18:1;;;14947:36;15000:19;;12079:110:0::1;14623:402:1::0;12079:110:0::1;12200:19;12210:8;12200:9;:19::i;:::-;11998:229:::0;:::o;31788:355::-;31935:4;-1:-1:-1;;;;;;31977:40:0;;-1:-1:-1;;;31977:40:0;;:105;;-1:-1:-1;;;;;;;32034:48:0;;-1:-1:-1;;;32034:48:0;31977:105;:158;;;-1:-1:-1;;;;;;;;;;23729:40:0;;;32099:36;23570:207;42447:174;42522:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42522:29:0;-1:-1:-1;;;;;42522:29:0;;;;;;;;:24;;42576:23;42522:24;42576:14;:23::i;:::-;-1:-1:-1;;;;;42567:46:0;;;;;;;;;;;42447:174;;:::o;38618:452::-;38747:4;38413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38413:16:0;38769:110;;;;-1:-1:-1;;;38769:110:0;;15232:2:1;38769:110:0;;;15214:21:1;15271:2;15251:18;;;15244:30;15310:34;15290:18;;;15283:62;-1:-1:-1;;;15361:18:1;;;15354:42;15413:19;;38769:110:0;15030:408:1;38769:110:0;38890:13;38906:23;38921:7;38906:14;:23::i;:::-;38890:39;;38959:5;-1:-1:-1;;;;;38948:16:0;:7;-1:-1:-1;;;;;38948:16:0;;:64;;;;39005:7;-1:-1:-1;;;;;38981:31:0;:20;38993:7;38981:11;:20::i;:::-;-1:-1:-1;;;;;38981:31:0;;38948:64;:113;;;-1:-1:-1;;;;;;35599:25:0;;;35570:4;35599:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39029:32;38940:122;38618:452;-1:-1:-1;;;;38618:452:0:o;41714:615::-;41887:4;-1:-1:-1;;;;;41860:31:0;:23;41875:7;41860:14;:23::i;:::-;-1:-1:-1;;;;;41860:31:0;;41838:122;;;;-1:-1:-1;;;41838:122:0;;15645:2:1;41838:122:0;;;15627:21:1;15684:2;15664:18;;;15657:30;15723:34;15703:18;;;15696:62;-1:-1:-1;;;15774:18:1;;;15767:39;15823:19;;41838:122:0;15443:405:1;41838:122:0;-1:-1:-1;;;;;41979:16:0;;41971:65;;;;-1:-1:-1;;;41971:65:0;;16055:2:1;41971:65:0;;;16037:21:1;16094:2;16074:18;;;16067:30;16133:34;16113:18;;;16106:62;-1:-1:-1;;;16184:18:1;;;16177:34;16228:19;;41971:65:0;15853:400:1;41971:65:0;42049:39;42070:4;42076:2;42080:7;42049:20;:39::i;:::-;42153:29;42170:1;42174:7;42153:8;:29::i;:::-;-1:-1:-1;;;;;42195:15:0;;;;;;:9;:15;;;;;:20;;42214:1;;42195:15;:20;;42214:1;;42195:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42226:13:0;;;;;;:9;:13;;;;;:18;;42243:1;;42226:13;:18;;42243:1;;42226:18;:::i;:::-;;;;-1:-1:-1;;42255:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42255:21:0;-1:-1:-1;;;;;42255:21:0;;;;;;;;;42294:27;;42255:16;;42294:27;;;;;;;41714:615;;;:::o;3721:98::-;3779:7;3806:5;3810:1;3806;:5;:::i;:::-;3799:12;3721:98;-1:-1:-1;;;3721:98:0:o;4120:::-;4178:7;4205:5;4209:1;4205;:5;:::i;12235:173::-;12310:6;;;-1:-1:-1;;;;;12327:17:0;;;-1:-1:-1;;;;;;12327:17:0;;;;;;;12360:40;;12310:6;;;12327:17;12310:6;;12360:40;;12291:16;;12360:40;12280:128;12235:173;:::o;39412:110::-;39488:26;39498:2;39502:7;39488:26;;;;;;;;;;;;:9;:26::i;:::-;39412:110;;:::o;37659:352::-;37816:28;37826:4;37832:2;37836:7;37816:9;:28::i;:::-;37877:48;37900:4;37906:2;37910:7;37919:5;37877:22;:48::i;:::-;37855:148;;;;-1:-1:-1;;;37855:148:0;;;;;;;:::i;7455:723::-;7511:13;7732:10;7728:53;;-1:-1:-1;;7759:10:0;;;;;;;;;;;;-1:-1:-1;;;7759:10:0;;;;;7455:723::o;7728:53::-;7806:5;7791:12;7847:78;7854:9;;7847:78;;7880:8;;;;:::i;:::-;;-1:-1:-1;7903:10:0;;-1:-1:-1;7911:2:0;7903:10;;:::i;:::-;;;7847:78;;;7935:19;7967:6;7957:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7957:17:0;;7935:39;;7985:154;7992:10;;7985:154;;8019:11;8029:1;8019:11;;:::i;:::-;;-1:-1:-1;8088:10:0;8096:2;8088:5;:10;:::i;:::-;8075:24;;:2;:24;:::i;:::-;8062:39;;8045:6;8052;8045:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8045:56:0;;;;;;;;-1:-1:-1;8116:11:0;8125:2;8116:11;;:::i;:::-;;;7985:154;;47719:589;-1:-1:-1;;;;;47925:18:0;;47921:187;;47960:40;47992:7;49135:10;:17;;49108:24;;;;:15;:24;;;;;:44;;;49163:24;;;;;;;;;;;;49031:164;47960:40;47921:187;;;48030:2;-1:-1:-1;;;;;48022:10:0;:4;-1:-1:-1;;;;;48022:10:0;;48018:90;;48049:47;48082:4;48088:7;48049:32;:47::i;:::-;-1:-1:-1;;;;;48122:16:0;;48118:183;;48155:45;48192:7;48155:36;:45::i;48118:183::-;48228:4;-1:-1:-1;;;;;48222:10:0;:2;-1:-1:-1;;;;;48222:10:0;;48218:83;;48249:40;48277:2;48281:7;48249:27;:40::i;39749:321::-;39879:18;39885:2;39889:7;39879:5;:18::i;:::-;39930:54;39961:1;39965:2;39969:7;39978:5;39930:22;:54::i;:::-;39908:154;;;;-1:-1:-1;;;39908:154:0;;;;;;;:::i;43186:980::-;43341:4;-1:-1:-1;;;;;43362:13:0;;13500:20;13548:8;43358:801;;43415:175;;-1:-1:-1;;;43415:175:0;;-1:-1:-1;;;;;43415:36:0;;;;;:175;;9947:10;;43509:4;;43536:7;;43566:5;;43415:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43415:175:0;;;;;;;;-1:-1:-1;;43415:175:0;;;;;;;;;;;;:::i;:::-;;;43394:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43773:13:0;;43769:320;;43816:108;;-1:-1:-1;;;43816:108:0;;;;;;;:::i;43769:320::-;44039:6;44033:13;44024:6;44020:2;44016:15;44009:38;43394:710;-1:-1:-1;;;;;;43654:51:0;-1:-1:-1;;;43654:51:0;;-1:-1:-1;43647:58:0;;43358:801;-1:-1:-1;44143:4:0;43186:980;;;;;;:::o;49822:1002::-;50102:22;50152:1;50127:22;50144:4;50127:16;:22::i;:::-;:26;;;;:::i;:::-;50164:18;50185:26;;;:17;:26;;;;;;50102:51;;-1:-1:-1;50318:28:0;;;50314:328;;-1:-1:-1;;;;;50385:18:0;;50363:19;50385:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50436:30;;;;;;:44;;;50553:30;;:17;:30;;;;;:43;;;50314:328;-1:-1:-1;50738:26:0;;;;:17;:26;;;;;;;;50731:33;;;-1:-1:-1;;;;;50782:18:0;;;;;:12;:18;;;;;:34;;;;;;;50775:41;49822:1002::o;51119:1079::-;51397:10;:17;51372:22;;51397:21;;51417:1;;51397:21;:::i;:::-;51429:18;51450:24;;;:15;:24;;;;;;51823:10;:26;;51372:46;;-1:-1:-1;51450:24:0;;51372:46;;51823:26;;;;;;:::i;:::-;;;;;;;;;51801:48;;51887:11;51862:10;51873;51862:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51967:28;;;:15;:28;;;;;;;:41;;;52139:24;;;;;52132:31;52174:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51190:1008;;;51119:1079;:::o;48609:221::-;48694:14;48711:20;48728:2;48711:16;:20::i;:::-;-1:-1:-1;;;;;48742:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48787:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48609:221:0:o;40406:382::-;-1:-1:-1;;;;;40486:16:0;;40478:61;;;;-1:-1:-1;;;40478:61:0;;18274:2:1;40478:61:0;;;18256:21:1;;;18293:18;;;18286:30;18352:34;18332:18;;;18325:62;18404:18;;40478:61:0;18072:356:1;40478:61:0;38389:4;38413:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38413:16:0;:30;40550:58;;;;-1:-1:-1;;;40550:58:0;;18635:2:1;40550:58:0;;;18617:21:1;18674:2;18654:18;;;18647:30;18713;18693:18;;;18686:58;18761:18;;40550:58:0;18433:352:1;40550:58:0;40621:45;40650:1;40654:2;40658:7;40621:20;:45::i;:::-;-1:-1:-1;;;;;40679:13:0;;;;;;:9;:13;;;;;:18;;40696:1;;40679:13;:18;;40696:1;;40679:18;:::i;:::-;;;;-1:-1:-1;;40708:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40708:21:0;-1:-1:-1;;;;;40708:21:0;;;;;;;;40747:33;;40708:16;;;40747:33;;40708:16;;40747:33;40406:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:632::-;3072:2;3124:21;;;3194:13;;3097:18;;;3216:22;;;3043:4;;3072:2;3295:15;;;;3269:2;3254:18;;;3043:4;3338:169;3352:6;3349:1;3346:13;3338:169;;;3413:13;;3401:26;;3482:15;;;;3447:12;;;;3374:1;3367:9;3338:169;;;-1:-1:-1;3524:3:1;;2901:632;-1:-1:-1;;;;;;2901:632:1:o;3538:347::-;3603:6;3611;3664:2;3652:9;3643:7;3639:23;3635:32;3632:52;;;3680:1;3677;3670:12;3632:52;3703:29;3722:9;3703:29;:::i;:::-;3693:39;;3782:2;3771:9;3767:18;3754:32;3829:5;3822:13;3815:21;3808:5;3805:32;3795:60;;3851:1;3848;3841:12;3795:60;3874:5;3864:15;;;3538:347;;;;;:::o;3890:127::-;3951:10;3946:3;3942:20;3939:1;3932:31;3982:4;3979:1;3972:15;4006:4;4003:1;3996:15;4022:1138;4117:6;4125;4133;4141;4194:3;4182:9;4173:7;4169:23;4165:33;4162:53;;;4211:1;4208;4201:12;4162:53;4234:29;4253:9;4234:29;:::i;:::-;4224:39;;4282:38;4316:2;4305:9;4301:18;4282:38;:::i;:::-;4272:48;;4367:2;4356:9;4352:18;4339:32;4329:42;;4422:2;4411:9;4407:18;4394:32;4445:18;4486:2;4478:6;4475:14;4472:34;;;4502:1;4499;4492:12;4472:34;4540:6;4529:9;4525:22;4515:32;;4585:7;4578:4;4574:2;4570:13;4566:27;4556:55;;4607:1;4604;4597:12;4556:55;4643:2;4630:16;4665:2;4661;4658:10;4655:36;;;4671:18;;:::i;:::-;4746:2;4740:9;4714:2;4800:13;;-1:-1:-1;;4796:22:1;;;4820:2;4792:31;4788:40;4776:53;;;4844:18;;;4864:22;;;4841:46;4838:72;;;4890:18;;:::i;:::-;4930:10;4926:2;4919:22;4965:2;4957:6;4950:18;5005:7;5000:2;4995;4991;4987:11;4983:20;4980:33;4977:53;;;5026:1;5023;5016:12;4977:53;5082:2;5077;5073;5069:11;5064:2;5056:6;5052:15;5039:46;5127:1;5122:2;5117;5109:6;5105:15;5101:24;5094:35;5148:6;5138:16;;;;;;;4022:1138;;;;;;;:::o;5165:260::-;5233:6;5241;5294:2;5282:9;5273:7;5269:23;5265:32;5262:52;;;5310:1;5307;5300:12;5262:52;5333:29;5352:9;5333:29;:::i;:::-;5323:39;;5381:38;5415:2;5404:9;5400:18;5381:38;:::i;:::-;5371:48;;5165:260;;;;;:::o;5430:356::-;5632:2;5614:21;;;5651:18;;;5644:30;5710:34;5705:2;5690:18;;5683:62;5777:2;5762:18;;5430:356::o;5791:380::-;5870:1;5866:12;;;;5913;;;5934:61;;5988:4;5980:6;5976:17;5966:27;;5934:61;6041:2;6033:6;6030:14;6010:18;6007:38;6004:161;;;6087:10;6082:3;6078:20;6075:1;6068:31;6122:4;6119:1;6112:15;6150:4;6147:1;6140:15;6004:161;;5791:380;;;:::o;7416:413::-;7618:2;7600:21;;;7657:2;7637:18;;;7630:30;7696:34;7691:2;7676:18;;7669:62;-1:-1:-1;;;7762:2:1;7747:18;;7740:47;7819:3;7804:19;;7416:413::o;8456:127::-;8517:10;8512:3;8508:20;8505:1;8498:31;8548:4;8545:1;8538:15;8572:4;8569:1;8562:15;8588:127;8649:10;8644:3;8640:20;8637:1;8630:31;8680:4;8677:1;8670:15;8704:4;8701:1;8694:15;8720:135;8759:3;-1:-1:-1;;8780:17:1;;8777:43;;;8800:18;;:::i;:::-;-1:-1:-1;8847:1:1;8836:13;;8720:135::o;10445:128::-;10485:3;10516:1;10512:6;10509:1;10506:13;10503:39;;;10522:18;;:::i;:::-;-1:-1:-1;10558:9:1;;10445:128::o;11286:168::-;11326:7;11392:1;11388;11384:6;11380:14;11377:1;11374:21;11369:1;11362:9;11355:17;11351:45;11348:71;;;11399:18;;:::i;:::-;-1:-1:-1;11439:9:1;;11286:168::o;12877:185::-;12919:3;12957:5;12951:12;12972:52;13017:6;13012:3;13005:4;12998:5;12994:16;12972:52;:::i;:::-;13040:16;;;;;12877:185;-1:-1:-1;;12877:185:1:o;13185:1433::-;13563:3;13592:1;13625:6;13619:13;13655:3;13677:1;13705:9;13701:2;13697:18;13687:28;;13765:2;13754:9;13750:18;13787;13777:61;;13831:4;13823:6;13819:17;13809:27;;13777:61;13857:2;13905;13897:6;13894:14;13874:18;13871:38;13868:165;;;-1:-1:-1;;;13932:33:1;;13988:4;13985:1;13978:15;14018:4;13939:3;14006:17;13868:165;14049:18;14076:104;;;;14194:1;14189:320;;;;14042:467;;14076:104;-1:-1:-1;;14109:24:1;;14097:37;;14154:16;;;;-1:-1:-1;14076:104:1;;14189:320;12705:1;12698:14;;;12742:4;12729:18;;14284:1;14298:165;14312:6;14309:1;14306:13;14298:165;;;14390:14;;14377:11;;;14370:35;14433:16;;;;14327:10;;14298:165;;;14302:3;;14492:6;14487:3;14483:16;14476:23;;14042:467;;;;;;;14525:87;14550:61;14576:34;14606:3;-1:-1:-1;;;12823:16:1;;12864:1;12855:11;;12758:114;14576:34;14568:6;14550:61;:::i;:::-;-1:-1:-1;;;13127:20:1;;13172:1;13163:11;;13067:113;14525:87;14518:94;13185:1433;-1:-1:-1;;;;;13185:1433:1:o;16258:125::-;16298:4;16326:1;16323;16320:8;16317:34;;;16331:18;;:::i;:::-;-1:-1:-1;16368:9:1;;16258:125::o;16388:127::-;16449:10;16444:3;16440:20;16437:1;16430:31;16480:4;16477:1;16470:15;16504:4;16501:1;16494:15;16520:120;16560:1;16586;16576:35;;16591:18;;:::i;:::-;-1:-1:-1;16625:9:1;;16520:120::o;16645:414::-;16847:2;16829:21;;;16886:2;16866:18;;;16859:30;16925:34;16920:2;16905:18;;16898:62;-1:-1:-1;;;16991:2:1;16976:18;;16969:48;17049:3;17034:19;;16645:414::o;17064:112::-;17096:1;17122;17112:35;;17127:18;;:::i;:::-;-1:-1:-1;17161:9:1;;17064:112::o;17181:500::-;-1:-1:-1;;;;;17450:15:1;;;17432:34;;17502:15;;17497:2;17482:18;;17475:43;17549:2;17534:18;;17527:34;;;17597:3;17592:2;17577:18;;17570:31;;;17375:4;;17618:57;;17655:19;;17647:6;17618:57;:::i;:::-;17610:65;17181:500;-1:-1:-1;;;;;;17181:500:1:o;17686:249::-;17755:6;17808:2;17796:9;17787:7;17783:23;17779:32;17776:52;;;17824:1;17821;17814:12;17776:52;17856:9;17850:16;17875:30;17899:5;17875:30;:::i;17940:127::-;18001:10;17996:3;17992:20;17989:1;17982:31;18032:4;18029:1;18022:15;18056:4;18053:1;18046:15

Swarm Source

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