ETH Price: $3,237.31 (+2.66%)
Gas: 3 Gwei

Token

RPG 404 (RPG404)
 

Overview

Max Total Supply

1,043 RPG404

Holders

381

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 RPG404
0x9e4c7b957a8072357f847fa01333e2862eac3e35
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

RPG 404 is a tiny NFT game. NFTs are characters in the game. No play-to-earn. Mint and play on rpg404.com

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RPG404

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-20
*/

// SPDX-License-Identifier: MIT

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\IERC165.sol

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

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol

// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Receiver.sol

// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Address.sol

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Context.sol

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

pragma solidity ^0.8.0;

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol

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

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

// OpenZeppelin Contracts (last updated v4.6.0) (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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity\contracts\access\Ownable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts\RPG404.sol

pragma solidity >=0.7.0 <0.9.0;

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

    string baseURI;
    string public baseExtension = ".json";

    uint256 public maxSupply = 19998;
    uint256 public maxFreeSupply = 999;

    uint256 public maxPerTxDuringMint = 6;
    uint256 public maxPerAddressDuringMint = 18;
    uint256 public maxPerAddressDuringFreeMint = 3;

    uint256 public cost = 0.015 ether;
    bool public saleIsActive = false;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721("RPG 404", "RPG404") {}

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

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

    // public
    function mint(uint256 _quantity) external payable mintCompliance {
        uint256 _totalSupply = totalSupply();
        require(msg.value >= cost * _quantity, "Insufficient Fund.");
        require(maxSupply >= _totalSupply + _quantity, "Exceeds max supply.");
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        for (uint256 i = 1; i <= _quantity; i++) {
            _safeMint(msg.sender, _totalSupply + i);
        }
    }

    function freeMint(uint256 _quantity) external mintCompliance {
        uint256 _totalSupply = totalSupply();
        require(
            maxFreeSupply >= _totalSupply + _quantity,
            "Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _quantity > 0 && _quantity <= maxPerAddressDuringFreeMint,
            "Invalid mint amount."
        );
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;

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

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

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

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

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

    function setmaxMintAmount(uint256 _newMaxPerTxDuringMint) public onlyOwner {
        maxPerTxDuringMint = _newMaxPerTxDuringMint;
    }

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

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

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function withdraw() public payable onlyOwner {
        (bool _success, ) = payable(owner()).call{value: address(this).balance}(
            ""
        );
        require(_success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","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":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerTxDuringMint","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600c90620000269082620001e3565b50614e1e600d556103e7600e556006600f5560126010819055600360115566354a6ba7a1800090556013805460ff191690553480156200006557600080fd5b5060405180604001604052806007815260200166149411c80d0c0d60ca1b81525060405180604001604052806006815260200165149411cd0c0d60d21b8152508160009081620000b69190620001e3565b506001620000c58282620001e3565b505050620000e2620000dc620000e860201b60201c565b620000ec565b620002af565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016957607f821691505b6020821081036200018a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001de57600081815260208120601f850160051c81016020861015620001b95750805b601f850160051c820191505b81811015620001da57828155600101620001c5565b5050505b505050565b81516001600160401b03811115620001ff57620001ff6200013e565b620002178162000210845462000154565b8462000190565b602080601f8311600181146200024f5760008415620002365750858301515b600019600386901b1c1916600185901b178555620001da565b600085815260208120601f198616915b8281101562000280578886015182559484019460019091019084016200025f565b50858210156200029f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61272880620002bf6000396000f3fe6080604052600436106102255760003560e01c80637ba5e62111610123578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610609578063e985e9c514610629578063eb8d244414610672578063f2fde38b1461068c578063fbbf8cc3146106ac57600080fd5b8063b88d4fde14610588578063c6682862146105a8578063c87b56dd146105bd578063d3464cbd146105dd578063d5abeb01146105f357600080fd5b80638da5cb5b116100f25780638da5cb5b146104f557806395d89b411461051357806396b1020114610528578063a0712d6814610555578063a22cb4651461056857600080fd5b80637ba5e6211461048a5780637c928fe91461049f5780637f00c7a6146104bf5780638bc35c2f146104df57600080fd5b80633ccfd60b116101b15780634f6ccce7116101755780634f6ccce7146103f557806355f804b3146104155780636352211e1461043557806370a0823114610455578063715018a61461047557600080fd5b80633ccfd60b1461036a57806342842e0e14610372578063438b63001461039257806344a0d68a146103bf57806347513334146103df57600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806323b872dd146103145780632e0fd6eb146103345780632f745c591461034a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611faf565b6106d9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610704565b6040516102569190612024565b34801561028d57600080fd5b506102a161029c366004612037565b610796565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d436600461206c565b610830565b005b3480156102e757600080fd5b506102f160125481565b604051908152602001610256565b34801561030b57600080fd5b506008546102f1565b34801561032057600080fd5b506102d961032f366004612096565b610945565b34801561034057600080fd5b506102f160115481565b34801561035657600080fd5b506102f161036536600461206c565b610976565b6102d9610a0c565b34801561037e57600080fd5b506102d961038d366004612096565b610aaa565b34801561039e57600080fd5b506103b26103ad3660046120d2565b610ac5565b60405161025691906120ed565b3480156103cb57600080fd5b506102d96103da366004612037565b610b67565b3480156103eb57600080fd5b506102f1600e5481565b34801561040157600080fd5b506102f1610410366004612037565b610b96565b34801561042157600080fd5b506102d96104303660046121bd565b610c29565b34801561044157600080fd5b506102a1610450366004612037565b610c63565b34801561046157600080fd5b506102f16104703660046120d2565b610cda565b34801561048157600080fd5b506102d9610d61565b34801561049657600080fd5b506102d9610d97565b3480156104ab57600080fd5b506102d96104ba366004612037565b610dd5565b3480156104cb57600080fd5b506102d96104da366004612037565b610ff2565b3480156104eb57600080fd5b506102f160105481565b34801561050157600080fd5b50600a546001600160a01b03166102a1565b34801561051f57600080fd5b50610274611021565b34801561053457600080fd5b506102f16105433660046120d2565b60146020526000908152604090205481565b6102d9610563366004612037565b611030565b34801561057457600080fd5b506102d9610583366004612206565b61127f565b34801561059457600080fd5b506102d96105a3366004612242565b61128a565b3480156105b457600080fd5b506102746112bc565b3480156105c957600080fd5b506102746105d8366004612037565b61134a565b3480156105e957600080fd5b506102f1600f5481565b3480156105ff57600080fd5b506102f1600d5481565b34801561061557600080fd5b506102d96106243660046121bd565b611428565b34801561063557600080fd5b5061024a6106443660046122be565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b5060135461024a9060ff1681565b34801561069857600080fd5b506102d96106a73660046120d2565b61145e565b3480156106b857600080fd5b506102f16106c73660046120d2565b60156020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe826114f6565b92915050565b606060008054610713906122f1565b80601f016020809104026020016040519081016040528092919081815260200182805461073f906122f1565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083b82610c63565b9050806001600160a01b0316836001600160a01b0316036108a85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080b565b336001600160a01b03821614806108c457506108c48133610644565b6109365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080b565b6109408383611546565b505050565b61094f33826115b4565b61096b5760405162461bcd60e51b815260040161080b9061232b565b6109408383836116ab565b600061098183610cda565b82106109e35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161080b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a365760405162461bcd60e51b815260040161080b9061237c565b6000610a4a600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a94576040519150601f19603f3d011682016040523d82523d6000602084013e610a99565b606091505b5050905080610aa757600080fd5b50565b6109408383836040518060200160405280600081525061128a565b60606000610ad283610cda565b905060008167ffffffffffffffff811115610aef57610aef612131565b604051908082528060200260200182016040528015610b18578160200160208202803683370190505b50905060005b82811015610b5f57610b308582610976565b828281518110610b4257610b426123b1565b602090810291909101015280610b57816123dd565b915050610b1e565b509392505050565b600a546001600160a01b03163314610b915760405162461bcd60e51b815260040161080b9061237c565b601255565b6000610ba160085490565b8210610c045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161080b565b60088281548110610c1757610c176123b1565b90600052602060002001549050919050565b600a546001600160a01b03163314610c535760405162461bcd60e51b815260040161080b9061237c565b600b610c5f8282612444565b5050565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080b565b60006001600160a01b038216610d455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d8b5760405162461bcd60e51b815260040161080b9061237c565b610d956000611852565b565b600a546001600160a01b03163314610dc15760405162461bcd60e51b815260040161080b9061237c565b6013805460ff19811660ff90911615179055565b60135460ff16610e215760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161080b565b323314610e705760405162461bcd60e51b815260206004820152601c60248201527f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000604482015260640161080b565b6000610e7b60085490565b9050610e878282612504565b600e541015610ed85760405162461bcd60e51b815260206004820152601860248201527f45786365656473206d6178206672656520737570706c792e0000000000000000604482015260640161080b565b336000908152601460205260409020548215801590610ef957506011548311155b610f3c5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604482015260640161080b565b601154610f498483612504565b1115610fa35760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d61782066726565206d696e74732070657220616464726560448201526273732160e81b606482015260840161080b565b610fad8382612504565b3360009081526014602052604090205560015b838111610fec57610fda33610fd58386612504565b6118a4565b80610fe4816123dd565b915050610fc0565b50505050565b600a546001600160a01b0316331461101c5760405162461bcd60e51b815260040161080b9061237c565b600f55565b606060018054610713906122f1565b60135460ff1661107c5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161080b565b3233146110cb5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000604482015260640161080b565b60006110d660085490565b9050816012546110e6919061251c565b34101561112a5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b604482015260640161080b565b6111348282612504565b600d54101561117b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161080b565b336000908152601560205260409020546010546111988483612504565b11156111e65760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e7473207065722061646472657373210000604482015260640161080b565b6000831180156111f85750600f548311155b61123b5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604482015260640161080b565b6112458382612504565b3360009081526015602052604090205560015b838111610fec5761126d33610fd58386612504565b80611277816123dd565b915050611258565b610c5f3383836118be565b61129433836115b4565b6112b05760405162461bcd60e51b815260040161080b9061232b565b610fec8484848461198c565b600c80546112c9906122f1565b80601f01602080910402602001604051908101604052809291908181526020018280546112f5906122f1565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166113c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080b565b60006113d36119bf565b905060008151116113f35760405180602001604052806000815250611421565b806113fd846119ce565b600c6040516020016114119392919061253b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114525760405162461bcd60e51b815260040161080b9061237c565b600c610c5f8282612444565b600a546001600160a01b031633146114885760405162461bcd60e51b815260040161080b9061237c565b6001600160a01b0381166114ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080b565b610aa781611852565b60006001600160e01b031982166380ac58cd60e01b148061152757506001600160e01b03198216635b5e139f60e01b145b806106fe57506301ffc9a760e01b6001600160e01b03198316146106fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157b82610c63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661162d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080b565b600061163883610c63565b9050806001600160a01b0316846001600160a01b0316148061167f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116a35750836001600160a01b031661169884610796565b6001600160a01b0316145b949350505050565b826001600160a01b03166116be82610c63565b6001600160a01b0316146117225760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161080b565b6001600160a01b0382166117845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080b565b61178f838383611acf565b61179a600082611546565b6001600160a01b03831660009081526003602052604081208054600192906117c39084906125db565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f1908490612504565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5f828260405180602001604052806000815250611b87565b816001600160a01b0316836001600160a01b03160361191f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119978484846116ab565b6119a384848484611bba565b610fec5760405162461bcd60e51b815260040161080b906125f2565b6060600b8054610713906122f1565b6060816000036119f55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1f5780611a09816123dd565b9150611a189050600a8361265a565b91506119f9565b60008167ffffffffffffffff811115611a3a57611a3a612131565b6040519080825280601f01601f191660200182016040528015611a64576020820181803683370190505b5090505b84156116a357611a796001836125db565b9150611a86600a8661266e565b611a91906030612504565b60f81b818381518110611aa657611aa66123b1565b60200101906001600160f81b031916908160001a905350611ac8600a8661265a565b9450611a68565b6001600160a01b038316611b2a57611b2581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b4d565b816001600160a01b0316836001600160a01b031614611b4d57611b4d8382611cbb565b6001600160a01b038216611b645761094081611d58565b826001600160a01b0316826001600160a01b031614610940576109408282611e07565b611b918383611e4b565b611b9e6000848484611bba565b6109405760405162461bcd60e51b815260040161080b906125f2565b60006001600160a01b0384163b15611cb057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bfe903390899088908890600401612682565b6020604051808303816000875af1925050508015611c39575060408051601f3d908101601f19168201909252611c36918101906126bf565b60015b611c96573d808015611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b508051600003611c8e5760405162461bcd60e51b815260040161080b906125f2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a3565b506001949350505050565b60006001611cc884610cda565b611cd291906125db565b600083815260076020526040902054909150808214611d25576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d6a906001906125db565b60008381526009602052604081205460088054939450909284908110611d9257611d926123b1565b906000526020600020015490508060088381548110611db357611db36123b1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611deb57611deb6126dc565b6001900381819060005260206000200160009055905550505050565b6000611e1283610cda565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ea15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080b565b6000818152600260205260409020546001600160a01b031615611f065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080b565b611f1260008383611acf565b6001600160a01b0382166000908152600360205260408120805460019290611f3b908490612504565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610aa757600080fd5b600060208284031215611fc157600080fd5b813561142181611f99565b60005b83811015611fe7578181015183820152602001611fcf565b83811115610fec5750506000910152565b60008151808452612010816020860160208601611fcc565b601f01601f19169290920160200192915050565b6020815260006114216020830184611ff8565b60006020828403121561204957600080fd5b5035919050565b80356001600160a01b038116811461206757600080fd5b919050565b6000806040838503121561207f57600080fd5b61208883612050565b946020939093013593505050565b6000806000606084860312156120ab57600080fd5b6120b484612050565b92506120c260208501612050565b9150604084013590509250925092565b6000602082840312156120e457600080fd5b61142182612050565b6020808252825182820181905260009190848201906040850190845b8181101561212557835183529284019291840191600101612109565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561216257612162612131565b604051601f8501601f19908116603f0116810190828211818310171561218a5761218a612131565b816040528093508581528686860111156121a357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121cf57600080fd5b813567ffffffffffffffff8111156121e657600080fd5b8201601f810184136121f757600080fd5b6116a384823560208401612147565b6000806040838503121561221957600080fd5b61222283612050565b91506020830135801515811461223757600080fd5b809150509250929050565b6000806000806080858703121561225857600080fd5b61226185612050565b935061226f60208601612050565b925060408501359150606085013567ffffffffffffffff81111561229257600080fd5b8501601f810187136122a357600080fd5b6122b287823560208401612147565b91505092959194509250565b600080604083850312156122d157600080fd5b6122da83612050565b91506122e860208401612050565b90509250929050565b600181811c9082168061230557607f821691505b60208210810361232557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016123ef576123ef6123c7565b5060010190565b601f82111561094057600081815260208120601f850160051c8101602086101561241d5750805b601f850160051c820191505b8181101561243c57828155600101612429565b505050505050565b815167ffffffffffffffff81111561245e5761245e612131565b6124728161246c84546122f1565b846123f6565b602080601f8311600181146124a7576000841561248f5750858301515b600019600386901b1c1916600185901b17855561243c565b600085815260208120601f198616915b828110156124d6578886015182559484019460019091019084016124b7565b50858210156124f45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115612517576125176123c7565b500190565b6000816000190483118215151615612536576125366123c7565b500290565b60008451602061254e8285838a01611fcc565b8551918401916125618184848a01611fcc565b8554920191600090612572816122f1565b6001828116801561258a576001811461259f576125cb565b60ff19841687528215158302870194506125cb565b896000528560002060005b848110156125c3578154898201529083019087016125aa565b505082870194505b50929a9950505050505050505050565b6000828210156125ed576125ed6123c7565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261266957612669612644565b500490565b60008261267d5761267d612644565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b590830184611ff8565b9695505050505050565b6000602082840312156126d157600080fd5b815161142181611f99565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209f179cb71b85281b9301a150b2e79e28b19524acc487070f497c9550df19065f64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637ba5e62111610123578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610609578063e985e9c514610629578063eb8d244414610672578063f2fde38b1461068c578063fbbf8cc3146106ac57600080fd5b8063b88d4fde14610588578063c6682862146105a8578063c87b56dd146105bd578063d3464cbd146105dd578063d5abeb01146105f357600080fd5b80638da5cb5b116100f25780638da5cb5b146104f557806395d89b411461051357806396b1020114610528578063a0712d6814610555578063a22cb4651461056857600080fd5b80637ba5e6211461048a5780637c928fe91461049f5780637f00c7a6146104bf5780638bc35c2f146104df57600080fd5b80633ccfd60b116101b15780634f6ccce7116101755780634f6ccce7146103f557806355f804b3146104155780636352211e1461043557806370a0823114610455578063715018a61461047557600080fd5b80633ccfd60b1461036a57806342842e0e14610372578063438b63001461039257806344a0d68a146103bf57806347513334146103df57600080fd5b806313faede6116101f857806313faede6146102db57806318160ddd146102ff57806323b872dd146103145780632e0fd6eb146103345780632f745c591461034a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611faf565b6106d9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610704565b6040516102569190612024565b34801561028d57600080fd5b506102a161029c366004612037565b610796565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d436600461206c565b610830565b005b3480156102e757600080fd5b506102f160125481565b604051908152602001610256565b34801561030b57600080fd5b506008546102f1565b34801561032057600080fd5b506102d961032f366004612096565b610945565b34801561034057600080fd5b506102f160115481565b34801561035657600080fd5b506102f161036536600461206c565b610976565b6102d9610a0c565b34801561037e57600080fd5b506102d961038d366004612096565b610aaa565b34801561039e57600080fd5b506103b26103ad3660046120d2565b610ac5565b60405161025691906120ed565b3480156103cb57600080fd5b506102d96103da366004612037565b610b67565b3480156103eb57600080fd5b506102f1600e5481565b34801561040157600080fd5b506102f1610410366004612037565b610b96565b34801561042157600080fd5b506102d96104303660046121bd565b610c29565b34801561044157600080fd5b506102a1610450366004612037565b610c63565b34801561046157600080fd5b506102f16104703660046120d2565b610cda565b34801561048157600080fd5b506102d9610d61565b34801561049657600080fd5b506102d9610d97565b3480156104ab57600080fd5b506102d96104ba366004612037565b610dd5565b3480156104cb57600080fd5b506102d96104da366004612037565b610ff2565b3480156104eb57600080fd5b506102f160105481565b34801561050157600080fd5b50600a546001600160a01b03166102a1565b34801561051f57600080fd5b50610274611021565b34801561053457600080fd5b506102f16105433660046120d2565b60146020526000908152604090205481565b6102d9610563366004612037565b611030565b34801561057457600080fd5b506102d9610583366004612206565b61127f565b34801561059457600080fd5b506102d96105a3366004612242565b61128a565b3480156105b457600080fd5b506102746112bc565b3480156105c957600080fd5b506102746105d8366004612037565b61134a565b3480156105e957600080fd5b506102f1600f5481565b3480156105ff57600080fd5b506102f1600d5481565b34801561061557600080fd5b506102d96106243660046121bd565b611428565b34801561063557600080fd5b5061024a6106443660046122be565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067e57600080fd5b5060135461024a9060ff1681565b34801561069857600080fd5b506102d96106a73660046120d2565b61145e565b3480156106b857600080fd5b506102f16106c73660046120d2565b60156020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b14806106fe57506106fe826114f6565b92915050565b606060008054610713906122f1565b80601f016020809104026020016040519081016040528092919081815260200182805461073f906122f1565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083b82610c63565b9050806001600160a01b0316836001600160a01b0316036108a85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080b565b336001600160a01b03821614806108c457506108c48133610644565b6109365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080b565b6109408383611546565b505050565b61094f33826115b4565b61096b5760405162461bcd60e51b815260040161080b9061232b565b6109408383836116ab565b600061098183610cda565b82106109e35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161080b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a365760405162461bcd60e51b815260040161080b9061237c565b6000610a4a600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a94576040519150601f19603f3d011682016040523d82523d6000602084013e610a99565b606091505b5050905080610aa757600080fd5b50565b6109408383836040518060200160405280600081525061128a565b60606000610ad283610cda565b905060008167ffffffffffffffff811115610aef57610aef612131565b604051908082528060200260200182016040528015610b18578160200160208202803683370190505b50905060005b82811015610b5f57610b308582610976565b828281518110610b4257610b426123b1565b602090810291909101015280610b57816123dd565b915050610b1e565b509392505050565b600a546001600160a01b03163314610b915760405162461bcd60e51b815260040161080b9061237c565b601255565b6000610ba160085490565b8210610c045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161080b565b60088281548110610c1757610c176123b1565b90600052602060002001549050919050565b600a546001600160a01b03163314610c535760405162461bcd60e51b815260040161080b9061237c565b600b610c5f8282612444565b5050565b6000818152600260205260408120546001600160a01b0316806106fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080b565b60006001600160a01b038216610d455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d8b5760405162461bcd60e51b815260040161080b9061237c565b610d956000611852565b565b600a546001600160a01b03163314610dc15760405162461bcd60e51b815260040161080b9061237c565b6013805460ff19811660ff90911615179055565b60135460ff16610e215760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161080b565b323314610e705760405162461bcd60e51b815260206004820152601c60248201527f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000604482015260640161080b565b6000610e7b60085490565b9050610e878282612504565b600e541015610ed85760405162461bcd60e51b815260206004820152601860248201527f45786365656473206d6178206672656520737570706c792e0000000000000000604482015260640161080b565b336000908152601460205260409020548215801590610ef957506011548311155b610f3c5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604482015260640161080b565b601154610f498483612504565b1115610fa35760405162461bcd60e51b815260206004820152602360248201527f45786365656473206d61782066726565206d696e74732070657220616464726560448201526273732160e81b606482015260840161080b565b610fad8382612504565b3360009081526014602052604090205560015b838111610fec57610fda33610fd58386612504565b6118a4565b80610fe4816123dd565b915050610fc0565b50505050565b600a546001600160a01b0316331461101c5760405162461bcd60e51b815260040161080b9061237c565b600f55565b606060018054610713906122f1565b60135460ff1661107c5760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161080b565b3233146110cb5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000604482015260640161080b565b60006110d660085490565b9050816012546110e6919061251c565b34101561112a5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b604482015260640161080b565b6111348282612504565b600d54101561117b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161080b565b336000908152601560205260409020546010546111988483612504565b11156111e65760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e7473207065722061646472657373210000604482015260640161080b565b6000831180156111f85750600f548311155b61123b5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b604482015260640161080b565b6112458382612504565b3360009081526015602052604090205560015b838111610fec5761126d33610fd58386612504565b80611277816123dd565b915050611258565b610c5f3383836118be565b61129433836115b4565b6112b05760405162461bcd60e51b815260040161080b9061232b565b610fec8484848461198c565b600c80546112c9906122f1565b80601f01602080910402602001604051908101604052809291908181526020018280546112f5906122f1565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166113c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080b565b60006113d36119bf565b905060008151116113f35760405180602001604052806000815250611421565b806113fd846119ce565b600c6040516020016114119392919061253b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114525760405162461bcd60e51b815260040161080b9061237c565b600c610c5f8282612444565b600a546001600160a01b031633146114885760405162461bcd60e51b815260040161080b9061237c565b6001600160a01b0381166114ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080b565b610aa781611852565b60006001600160e01b031982166380ac58cd60e01b148061152757506001600160e01b03198216635b5e139f60e01b145b806106fe57506301ffc9a760e01b6001600160e01b03198316146106fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157b82610c63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661162d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080b565b600061163883610c63565b9050806001600160a01b0316846001600160a01b0316148061167f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116a35750836001600160a01b031661169884610796565b6001600160a01b0316145b949350505050565b826001600160a01b03166116be82610c63565b6001600160a01b0316146117225760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161080b565b6001600160a01b0382166117845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080b565b61178f838383611acf565b61179a600082611546565b6001600160a01b03831660009081526003602052604081208054600192906117c39084906125db565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f1908490612504565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5f828260405180602001604052806000815250611b87565b816001600160a01b0316836001600160a01b03160361191f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119978484846116ab565b6119a384848484611bba565b610fec5760405162461bcd60e51b815260040161080b906125f2565b6060600b8054610713906122f1565b6060816000036119f55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1f5780611a09816123dd565b9150611a189050600a8361265a565b91506119f9565b60008167ffffffffffffffff811115611a3a57611a3a612131565b6040519080825280601f01601f191660200182016040528015611a64576020820181803683370190505b5090505b84156116a357611a796001836125db565b9150611a86600a8661266e565b611a91906030612504565b60f81b818381518110611aa657611aa66123b1565b60200101906001600160f81b031916908160001a905350611ac8600a8661265a565b9450611a68565b6001600160a01b038316611b2a57611b2581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b4d565b816001600160a01b0316836001600160a01b031614611b4d57611b4d8382611cbb565b6001600160a01b038216611b645761094081611d58565b826001600160a01b0316826001600160a01b031614610940576109408282611e07565b611b918383611e4b565b611b9e6000848484611bba565b6109405760405162461bcd60e51b815260040161080b906125f2565b60006001600160a01b0384163b15611cb057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bfe903390899088908890600401612682565b6020604051808303816000875af1925050508015611c39575060408051601f3d908101601f19168201909252611c36918101906126bf565b60015b611c96573d808015611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b508051600003611c8e5760405162461bcd60e51b815260040161080b906125f2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a3565b506001949350505050565b60006001611cc884610cda565b611cd291906125db565b600083815260076020526040902054909150808214611d25576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d6a906001906125db565b60008381526009602052604081205460088054939450909284908110611d9257611d926123b1565b906000526020600020015490508060088381548110611db357611db36123b1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611deb57611deb6126dc565b6001900381819060005260206000200160009055905550505050565b6000611e1283610cda565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ea15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080b565b6000818152600260205260409020546001600160a01b031615611f065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080b565b611f1260008383611acf565b6001600160a01b0382166000908152600360205260408120805460019290611f3b908490612504565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610aa757600080fd5b600060208284031215611fc157600080fd5b813561142181611f99565b60005b83811015611fe7578181015183820152602001611fcf565b83811115610fec5750506000910152565b60008151808452612010816020860160208601611fcc565b601f01601f19169290920160200192915050565b6020815260006114216020830184611ff8565b60006020828403121561204957600080fd5b5035919050565b80356001600160a01b038116811461206757600080fd5b919050565b6000806040838503121561207f57600080fd5b61208883612050565b946020939093013593505050565b6000806000606084860312156120ab57600080fd5b6120b484612050565b92506120c260208501612050565b9150604084013590509250925092565b6000602082840312156120e457600080fd5b61142182612050565b6020808252825182820181905260009190848201906040850190845b8181101561212557835183529284019291840191600101612109565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561216257612162612131565b604051601f8501601f19908116603f0116810190828211818310171561218a5761218a612131565b816040528093508581528686860111156121a357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121cf57600080fd5b813567ffffffffffffffff8111156121e657600080fd5b8201601f810184136121f757600080fd5b6116a384823560208401612147565b6000806040838503121561221957600080fd5b61222283612050565b91506020830135801515811461223757600080fd5b809150509250929050565b6000806000806080858703121561225857600080fd5b61226185612050565b935061226f60208601612050565b925060408501359150606085013567ffffffffffffffff81111561229257600080fd5b8501601f810187136122a357600080fd5b6122b287823560208401612147565b91505092959194509250565b600080604083850312156122d157600080fd5b6122da83612050565b91506122e860208401612050565b90509250929050565b600181811c9082168061230557607f821691505b60208210810361232557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016123ef576123ef6123c7565b5060010190565b601f82111561094057600081815260208120601f850160051c8101602086101561241d5750805b601f850160051c820191505b8181101561243c57828155600101612429565b505050505050565b815167ffffffffffffffff81111561245e5761245e612131565b6124728161246c84546122f1565b846123f6565b602080601f8311600181146124a7576000841561248f5750858301515b600019600386901b1c1916600185901b17855561243c565b600085815260208120601f198616915b828110156124d6578886015182559484019460019091019084016124b7565b50858210156124f45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115612517576125176123c7565b500190565b6000816000190483118215151615612536576125366123c7565b500290565b60008451602061254e8285838a01611fcc565b8551918401916125618184848a01611fcc565b8554920191600090612572816122f1565b6001828116801561258a576001811461259f576125cb565b60ff19841687528215158302870194506125cb565b896000528560002060005b848110156125c3578154898201529083019087016125aa565b505082870194505b50929a9950505050505050505050565b6000828210156125ed576125ed6123c7565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261266957612669612644565b500490565b60008261267d5761267d612644565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b590830184611ff8565b9695505050505050565b6000602082840312156126d157600080fd5b815161142181611f99565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209f179cb71b85281b9301a150b2e79e28b19524acc487070f497c9550df19065f64736f6c634300080f0033

Deployed Bytecode Sourcemap

47796:4411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38720:300;;;;;;;;;;-1:-1:-1;38720:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38720:300:0;;;;;;;;23677:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25371:308::-;;;;;;;;;;-1:-1:-1;25371:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25371:308:0;1528:203:1;24894:411:0;;;;;;;;;;-1:-1:-1;24894:411:0;;;;;:::i;:::-;;:::i;:::-;;48180:33;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;48180:33:0;2173:177:1;39523:113:0;;;;;;;;;;-1:-1:-1;39611:10:0;:17;39523:113;;26290:376;;;;;;;;;;-1:-1:-1;26290:376:0;;;;;:::i;:::-;;:::i;48125:46::-;;;;;;;;;;;;;;;;39104:343;;;;;;;;;;-1:-1:-1;39104:343:0;;;;;:::i;:::-;;:::i;52013:191::-;;;:::i;26737:185::-;;;;;;;;;;-1:-1:-1;26737:185:0;;;;;:::i;:::-;;:::i;50354:393::-;;;;;;;;;;-1:-1:-1;50354:393:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51411:86::-;;;;;;;;;;-1:-1:-1;51411:86:0;;;;;:::i;:::-;;:::i;47988:34::-;;;;;;;;;;;;;;;;39713:320;;;;;;;;;;-1:-1:-1;39713:320:0;;;;;:::i;:::-;;:::i;51650:104::-;;;;;;;;;;-1:-1:-1;51650:104:0;;;;;:::i;:::-;;:::i;23284:326::-;;;;;;;;;;-1:-1:-1;23284:326:0;;;;;:::i;:::-;;:::i;22927:295::-;;;;;;;;;;-1:-1:-1;22927:295:0;;;;;:::i;:::-;;:::i;46874:103::-;;;;;;;;;;;;;:::i;51921:84::-;;;;;;;;;;;;;:::i;49553:793::-;;;;;;;;;;-1:-1:-1;49553:793:0;;;;;:::i;:::-;;:::i;51505:137::-;;;;;;;;;;-1:-1:-1;51505:137:0;;;;;:::i;:::-;;:::i;48075:43::-;;;;;;;;;;;;;;;;46223:87;;;;;;;;;;-1:-1:-1;46296:6:0;;-1:-1:-1;;;;;46296:6:0;46223:87;;23846:104;;;;;;;;;;;;;:::i;48261:51::-;;;;;;;;;;-1:-1:-1;48261:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;48763:782;;;;;;:::i;:::-;;:::i;25751:187::-;;;;;;;;;;-1:-1:-1;25751:187:0;;;;;:::i;:::-;;:::i;26993:365::-;;;;;;;;;;-1:-1:-1;26993:365:0;;;;;:::i;:::-;;:::i;47903:37::-;;;;;;;;;;;;;:::i;50755:648::-;;;;;;;;;;-1:-1:-1;50755:648:0;;;;;:::i;:::-;;:::i;48031:37::-;;;;;;;;;;;;;;;;47949:32;;;;;;;;;;;;;;;;51762:151;;;;;;;;;;-1:-1:-1;51762:151:0;;;;;:::i;:::-;;:::i;26009:214::-;;;;;;;;;;-1:-1:-1;26009:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26180:25:0;;;26151:4;26180:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26009:214;48220:32;;;;;;;;;;-1:-1:-1;48220:32:0;;;;;;;;47132:238;;;;;;;;;;-1:-1:-1;47132:238:0;;;;;:::i;:::-;;:::i;48319:47::-;;;;;;;;;;-1:-1:-1;48319:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;38720:300;38867:4;-1:-1:-1;;;;;;38909:50:0;;-1:-1:-1;;;38909:50:0;;:103;;;38976:36;39000:11;38976:23;:36::i;:::-;38889:123;38720:300;-1:-1:-1;;38720:300:0:o;23677:100::-;23731:13;23764:5;23757:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23677:100;:::o;25371:308::-;25492:7;28994:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28994:16:0;25517:110;;;;-1:-1:-1;;;25517:110:0;;6617:2:1;25517:110:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;25517:110:0;;;;;;;;;-1:-1:-1;25647:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25647:24:0;;25371:308::o;24894:411::-;24975:13;24991:23;25006:7;24991:14;:23::i;:::-;24975:39;;25039:5;-1:-1:-1;;;;;25033:11:0;:2;-1:-1:-1;;;;;25033:11:0;;25025:57;;;;-1:-1:-1;;;25025:57:0;;7030:2:1;25025:57:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:31;7200:19;;25025:57:0;6828:397:1;25025:57:0;17691:10;-1:-1:-1;;;;;25117:21:0;;;;:62;;-1:-1:-1;25142:37:0;25159:5;17691:10;26009:214;:::i;25142:37::-;25095:168;;;;-1:-1:-1;;;25095:168:0;;7432:2:1;25095:168:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;25095:168:0;7230:420:1;25095:168:0;25276:21;25285:2;25289:7;25276:8;:21::i;:::-;24964:341;24894:411;;:::o;26290:376::-;26499:41;17691:10;26532:7;26499:18;:41::i;:::-;26477:140;;;;-1:-1:-1;;;26477:140:0;;;;;;;:::i;:::-;26630:28;26640:4;26646:2;26650:7;26630:9;:28::i;39104:343::-;39246:7;39301:23;39318:5;39301:16;:23::i;:::-;39293:5;:31;39271:124;;;;-1:-1:-1;;;39271:124:0;;8275:2:1;39271:124:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;-1:-1:-1;;;8404:18:1;;;8397:41;8455:19;;39271:124:0;8073:407:1;39271:124:0;-1:-1:-1;;;;;;39413:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39104:343::o;52013:191::-;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;52070:13:::1;52097:7;46296:6:::0;;-1:-1:-1;;;;;46296:6:0;;46223:87;52097:7:::1;-1:-1:-1::0;;;;;52089:21:0::1;52118;52089:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52069:99;;;52187:8;52179:17;;;::::0;::::1;;52058:146;52013:191::o:0;26737:185::-;26875:39;26892:4;26898:2;26902:7;26875:39;;;;;;;;;;;;:16;:39::i;50354:393::-;50441:16;50475:24;50502:17;50512:6;50502:9;:17::i;:::-;50475:44;;50530:25;50572:16;50558:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50558:31:0;;50530:59;;50605:9;50600:114;50620:16;50616:1;:20;50600:114;;;50672:30;50692:6;50700:1;50672:19;:30::i;:::-;50658:8;50667:1;50658:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50638:3;;;;:::i;:::-;;;;50600:114;;;-1:-1:-1;50731:8:0;50354:393;-1:-1:-1;;;50354:393:0:o;51411:86::-;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;51474:4:::1;:15:::0;51411:86::o;39713:320::-;39833:7;39888:30;39611:10;:17;;39523:113;39888:30;39880:5;:38;39858:132;;;;-1:-1:-1;;;39858:132:0;;9662:2:1;39858:132:0;;;9644:21:1;9701:2;9681:18;;;9674:30;9740:34;9720:18;;;9713:62;-1:-1:-1;;;9791:18:1;;;9784:42;9843:19;;39858:132:0;9460:408:1;39858:132:0;40008:10;40019:5;40008:17;;;;;;;;:::i;:::-;;;;;;;;;40001:24;;39713:320;;;:::o;51650:104::-;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;51725:7:::1;:21;51735:11:::0;51725:7;:21:::1;:::i;:::-;;51650:104:::0;:::o;23284:326::-;23401:7;23442:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23442:16:0;;23469:110;;;;-1:-1:-1;;;23469:110:0;;12279:2:1;23469:110:0;;;12261:21:1;12318:2;12298:18;;;12291:30;12357:34;12337:18;;;12330:62;-1:-1:-1;;;12408:18:1;;;12401:39;12457:19;;23469:110:0;12077:405:1;22927:295:0;23044:7;-1:-1:-1;;;;;23091:19:0;;23069:111;;;;-1:-1:-1;;;23069:111:0;;12689:2:1;23069:111:0;;;12671:21:1;12728:2;12708:18;;;12701:30;12767:34;12747:18;;;12740:62;-1:-1:-1;;;12818:18:1;;;12811:40;12868:19;;23069:111:0;12487:406:1;23069:111:0;-1:-1:-1;;;;;;23198:16:0;;;;;:9;:16;;;;;;;22927:295::o;46874:103::-;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;46939:30:::1;46966:1;46939:18;:30::i;:::-;46874:103::o:0;51921:84::-;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;51985:12:::1;::::0;;-1:-1:-1;;51969:28:0;::::1;51985:12;::::0;;::::1;51984:13;51969:28;::::0;;51921:84::o;49553:793::-;48472:12;;;;48464:48;;;;-1:-1:-1;;;48464:48:0;;13100:2:1;48464:48:0;;;13082:21:1;13139:2;13119:18;;;13112:30;-1:-1:-1;;;13158:18:1;;;13151:53;13221:18;;48464:48:0;12898:347:1;48464:48:0;48531:9;48544:10;48531:23;48523:64;;;;-1:-1:-1;;;48523:64:0;;13452:2:1;48523:64:0;;;13434:21:1;13491:2;13471:18;;;13464:30;13530;13510:18;;;13503:58;13578:18;;48523:64:0;13250:352:1;48523:64:0;49625:20:::1;49648:13;39611:10:::0;:17;;39523:113;49648:13:::1;49625:36:::0;-1:-1:-1;49711:24:0::1;49726:9:::0;49625:36;49711:24:::1;:::i;:::-;49694:13;;:41;;49672:115;;;::::0;-1:-1:-1;;;49672:115:0;;13942:2:1;49672:115:0::1;::::0;::::1;13924:21:1::0;13981:2;13961:18;;;13954:30;14020:26;14000:18;;;13993:54;14064:18;;49672:115:0::1;13740:348:1::0;49672:115:0::1;49843:10;49798:25;49826:28:::0;;;:16:::1;:28;::::0;;;;;49887:13;;;;;:57:::1;;;49917:27;;49904:9;:40;;49887:57;49865:127;;;::::0;-1:-1:-1;;;49865:127:0;;14295:2:1;49865:127:0::1;::::0;::::1;14277:21:1::0;14334:2;14314:18;;;14307:30;-1:-1:-1;;;14353:18:1;;;14346:50;14413:18;;49865:127:0::1;14093:344:1::0;49865:127:0::1;50058:27;::::0;50025:29:::1;50045:9:::0;50025:17;:29:::1;:::i;:::-;:60;;50003:145;;;::::0;-1:-1:-1;;;50003:145:0;;14644:2:1;50003:145:0::1;::::0;::::1;14626:21:1::0;14683:2;14663:18;;;14656:30;14722:34;14702:18;;;14695:62;-1:-1:-1;;;14773:18:1;;;14766:33;14816:19;;50003:145:0::1;14442:399:1::0;50003:145:0::1;50190:29;50210:9:::0;50190:17;:29:::1;:::i;:::-;50176:10;50159:28;::::0;;;:16:::1;:28;::::0;;;;:60;50249:1:::1;50232:107;50257:9;50252:1;:14;50232:107;;50288:39;50298:10;50310:16;50325:1:::0;50310:12;:16:::1;:::i;:::-;50288:9;:39::i;:::-;50268:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50232:107;;;;49614:732;;49553:793:::0;:::o;51505:137::-;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;51591:18:::1;:43:::0;51505:137::o;23846:104::-;23902:13;23935:7;23928:14;;;;;:::i;48763:782::-;48472:12;;;;48464:48;;;;-1:-1:-1;;;48464:48:0;;13100:2:1;48464:48:0;;;13082:21:1;13139:2;13119:18;;;13112:30;-1:-1:-1;;;13158:18:1;;;13151:53;13221:18;;48464:48:0;12898:347:1;48464:48:0;48531:9;48544:10;48531:23;48523:64;;;;-1:-1:-1;;;48523:64:0;;13452:2:1;48523:64:0;;;13434:21:1;13491:2;13471:18;;;13464:30;13530;13510:18;;;13503:58;13578:18;;48523:64:0;13250:352:1;48523:64:0;48839:20:::1;48862:13;39611:10:::0;:17;;39523:113;48862:13:::1;48839:36;;48914:9;48907:4;;:16;;;;:::i;:::-;48894:9;:29;;48886:60;;;::::0;-1:-1:-1;;;48886:60:0;;15221:2:1;48886:60:0::1;::::0;::::1;15203:21:1::0;15260:2;15240:18;;;15233:30;-1:-1:-1;;;15279:18:1;;;15272:48;15337:18;;48886:60:0::1;15019:342:1::0;48886:60:0::1;48978:24;48993:9:::0;48978:12;:24:::1;:::i;:::-;48965:9;;:37;;48957:69;;;::::0;-1:-1:-1;;;48957:69:0;;15568:2:1;48957:69:0::1;::::0;::::1;15550:21:1::0;15607:2;15587:18;;;15580:30;-1:-1:-1;;;15626:18:1;;;15619:49;15685:18;;48957:69:0::1;15366:343:1::0;48957:69:0::1;49074:10;49037:21;49061:24:::0;;;:12:::1;:24;::::0;;;;;49147:23:::1;::::0;49118:25:::1;49134:9:::0;49061:24;49118:25:::1;:::i;:::-;:52;;49096:132;;;::::0;-1:-1:-1;;;49096:132:0;;15916:2:1;49096:132:0::1;::::0;::::1;15898:21:1::0;15955:2;15935:18;;;15928:30;15994:32;15974:18;;;15967:60;16044:18;;49096:132:0::1;15714:354:1::0;49096:132:0::1;49273:1;49261:9;:13;:48;;;;;49291:18;;49278:9;:31;;49261:48;49239:118;;;::::0;-1:-1:-1;;;49239:118:0;;14295:2:1;49239:118:0::1;::::0;::::1;14277:21:1::0;14334:2;14314:18;;;14307:30;-1:-1:-1;;;14353:18:1;;;14346:50;14413:18;;49239:118:0::1;14093:344:1::0;49239:118:0::1;49395:25;49411:9:::0;49395:13;:25:::1;:::i;:::-;49381:10;49368:24;::::0;;;:12:::1;:24;::::0;;;;:52;49448:1:::1;49431:107;49456:9;49451:1;:14;49431:107;;49487:39;49497:10;49509:16;49524:1:::0;49509:12;:16:::1;:::i;49487:39::-;49467:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49431:107;;25751:187:::0;25878:52;17691:10;25911:8;25921;25878:18;:52::i;26993:365::-;27182:41;17691:10;27215:7;27182:18;:41::i;:::-;27160:140;;;;-1:-1:-1;;;27160:140:0;;;;;;;:::i;:::-;27311:39;27325:4;27331:2;27335:7;27344:5;27311:13;:39::i;47903:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50755:648::-;28970:4;28994:16;;;:7;:16;;;;;;50874:13;;-1:-1:-1;;;;;28994:16:0;50905:114;;;;-1:-1:-1;;;50905:114:0;;16275:2:1;50905:114:0;;;16257:21:1;16314:2;16294:18;;;16287:30;16353:34;16333:18;;;16326:62;-1:-1:-1;;;16404:18:1;;;16397:45;16459:19;;50905:114:0;16073:411:1;50905:114:0;51032:29;51064:10;:8;:10::i;:::-;51032:42;;51137:1;51111:15;51105:29;:33;:290;;;;;;;;;;;;;;;;;51230:15;51272:19;:8;:17;:19::i;:::-;51318:13;51187:167;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51105:290;51085:310;50755:648;-1:-1:-1;;;50755:648:0:o;51762:151::-;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;51872:13:::1;:33;51888:17:::0;51872:13;:33:::1;:::i;47132:238::-:0;46296:6;;-1:-1:-1;;;;;46296:6:0;17691:10;46443:23;46435:68;;;;-1:-1:-1;;;46435:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47235:22:0;::::1;47213:110;;;::::0;-1:-1:-1;;;47213:110:0;;17926:2:1;47213:110:0::1;::::0;::::1;17908:21:1::0;17965:2;17945:18;;;17938:30;18004:34;17984:18;;;17977:62;-1:-1:-1;;;18055:18:1;;;18048:36;18101:19;;47213:110:0::1;17724:402:1::0;47213:110:0::1;47334:28;47353:8;47334:18;:28::i;22508:355::-:0;22655:4;-1:-1:-1;;;;;;22697:40:0;;-1:-1:-1;;;22697:40:0;;:105;;-1:-1:-1;;;;;;;22754:48:0;;-1:-1:-1;;;22754:48:0;22697:105;:158;;;-1:-1:-1;;;;;;;;;;21041:40:0;;;22819:36;20882:207;33192:174;33267:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33267:29:0;-1:-1:-1;;;;;33267:29:0;;;;;;;;:24;;33321:23;33267:24;33321:14;:23::i;:::-;-1:-1:-1;;;;;33312:46:0;;;;;;;;;;;33192:174;;:::o;29199:452::-;29328:4;28994:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28994:16:0;29350:110;;;;-1:-1:-1;;;29350:110:0;;18333:2:1;29350:110:0;;;18315:21:1;18372:2;18352:18;;;18345:30;18411:34;18391:18;;;18384:62;-1:-1:-1;;;18462:18:1;;;18455:42;18514:19;;29350:110:0;18131:408:1;29350:110:0;29471:13;29487:23;29502:7;29487:14;:23::i;:::-;29471:39;;29540:5;-1:-1:-1;;;;;29529:16:0;:7;-1:-1:-1;;;;;29529:16:0;;:65;;;-1:-1:-1;;;;;;26180:25:0;;;26151:4;26180:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29562:32;29529:113;;;;29635:7;-1:-1:-1;;;;;29611:31:0;:20;29623:7;29611:11;:20::i;:::-;-1:-1:-1;;;;;29611:31:0;;29529:113;29521:122;29199:452;-1:-1:-1;;;;29199:452:0:o;32412:662::-;32585:4;-1:-1:-1;;;;;32558:31:0;:23;32573:7;32558:14;:23::i;:::-;-1:-1:-1;;;;;32558:31:0;;32536:118;;;;-1:-1:-1;;;32536:118:0;;18746:2:1;32536:118:0;;;18728:21:1;18785:2;18765:18;;;18758:30;18824:34;18804:18;;;18797:62;-1:-1:-1;;;18875:18:1;;;18868:35;18920:19;;32536:118:0;18544:401:1;32536:118:0;-1:-1:-1;;;;;32673:16:0;;32665:65;;;;-1:-1:-1;;;32665:65:0;;19152:2:1;32665:65:0;;;19134:21:1;19191:2;19171:18;;;19164:30;19230:34;19210:18;;;19203:62;-1:-1:-1;;;19281:18:1;;;19274:34;19325:19;;32665:65:0;18950:400:1;32665:65:0;32743:39;32764:4;32770:2;32774:7;32743:20;:39::i;:::-;32847:29;32864:1;32868:7;32847:8;:29::i;:::-;-1:-1:-1;;;;;32889:15:0;;;;;;:9;:15;;;;;:20;;32908:1;;32889:15;:20;;32908:1;;32889:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32920:13:0;;;;;;:9;:13;;;;;:18;;32937:1;;32920:13;:18;;32937:1;;32920:18;:::i;:::-;;;;-1:-1:-1;;32949:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32949:21:0;-1:-1:-1;;;;;32949:21:0;;;;;;;;;32988:27;;32949:16;;32988:27;;;;;;;24964:341;24894:411;;:::o;47530:191::-;47623:6;;;-1:-1:-1;;;;;47640:17:0;;;-1:-1:-1;;;;;;47640:17:0;;;;;;;47673:40;;47623:6;;;47640:17;47623:6;;47673:40;;47604:16;;47673:40;47593:128;47530:191;:::o;29993:110::-;30069:26;30079:2;30083:7;30069:26;;;;;;;;;;;;:9;:26::i;33508:315::-;33663:8;-1:-1:-1;;;;;33654:17:0;:5;-1:-1:-1;;;;;33654:17:0;;33646:55;;;;-1:-1:-1;;;33646:55:0;;19687:2:1;33646:55:0;;;19669:21:1;19726:2;19706:18;;;19699:30;19765:27;19745:18;;;19738:55;19810:18;;33646:55:0;19485:349:1;33646:55:0;-1:-1:-1;;;;;33712:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33712:46:0;;;;;;;;;;33774:41;;540::1;;;33774::0;;513:18:1;33774:41:0;;;;;;;33508:315;;;:::o;28240:352::-;28397:28;28407:4;28413:2;28417:7;28397:9;:28::i;:::-;28458:48;28481:4;28487:2;28491:7;28500:5;28458:22;:48::i;:::-;28436:148;;;;-1:-1:-1;;;28436:148:0;;;;;;;:::i;48632:108::-;48692:13;48725:7;48718:14;;;;;:::i;18209:723::-;18265:13;18486:5;18495:1;18486:10;18482:53;;-1:-1:-1;;18513:10:0;;;;;;;;;;;;-1:-1:-1;;;18513:10:0;;;;;18209:723::o;18482:53::-;18560:5;18545:12;18601:78;18608:9;;18601:78;;18634:8;;;;:::i;:::-;;-1:-1:-1;18657:10:0;;-1:-1:-1;18665:2:0;18657:10;;:::i;:::-;;;18601:78;;;18689:19;18721:6;18711:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18711:17:0;;18689:39;;18739:154;18746:10;;18739:154;;18773:11;18783:1;18773:11;;:::i;:::-;;-1:-1:-1;18842:10:0;18850:2;18842:5;:10;:::i;:::-;18829:24;;:2;:24;:::i;:::-;18816:39;;18799:6;18806;18799:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18799:56:0;;;;;;;;-1:-1:-1;18870:11:0;18879:2;18870:11;;:::i;:::-;;;18739:154;;40646:589;-1:-1:-1;;;;;40852:18:0;;40848:187;;40887:40;40919:7;42062:10;:17;;42035:24;;;;:15;:24;;;;;:44;;;42090:24;;;;;;;;;;;;41958:164;40887:40;40848:187;;;40957:2;-1:-1:-1;;;;;40949:10:0;:4;-1:-1:-1;;;;;40949:10:0;;40945:90;;40976:47;41009:4;41015:7;40976:32;:47::i;:::-;-1:-1:-1;;;;;41049:16:0;;41045:183;;41082:45;41119:7;41082:36;:45::i;41045:183::-;41155:4;-1:-1:-1;;;;;41149:10:0;:2;-1:-1:-1;;;;;41149:10:0;;41145:83;;41176:40;41204:2;41208:7;41176:27;:40::i;30330:321::-;30460:18;30466:2;30470:7;30460:5;:18::i;:::-;30511:54;30542:1;30546:2;30550:7;30559:5;30511:22;:54::i;:::-;30489:154;;;;-1:-1:-1;;;30489:154:0;;;;;;;:::i;34388:980::-;34543:4;-1:-1:-1;;;;;34564:13:0;;9471:19;:23;34560:801;;34617:175;;-1:-1:-1;;;34617:175:0;;-1:-1:-1;;;;;34617:36:0;;;;;:175;;17691:10;;34711:4;;34738:7;;34768:5;;34617:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34617:175:0;;;;;;;;-1:-1:-1;;34617:175:0;;;;;;;;;;;;:::i;:::-;;;34596:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34975:6;:13;34992:1;34975:18;34971:320;;35018:108;;-1:-1:-1;;;35018:108:0;;;;;;;:::i;34971:320::-;35241:6;35235:13;35226:6;35222:2;35218:15;35211:38;34596:710;-1:-1:-1;;;;;;34856:51:0;-1:-1:-1;;;34856:51:0;;-1:-1:-1;34849:58:0;;34560:801;-1:-1:-1;35345:4:0;34388:980;;;;;;:::o;42749:1002::-;43029:22;43079:1;43054:22;43071:4;43054:16;:22::i;:::-;:26;;;;:::i;:::-;43091:18;43112:26;;;:17;:26;;;;;;43029:51;;-1:-1:-1;43245:28:0;;;43241:328;;-1:-1:-1;;;;;43312:18:0;;43290:19;43312:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43363:30;;;;;;:44;;;43480:30;;:17;:30;;;;;:43;;;43241:328;-1:-1:-1;43665:26:0;;;;:17;:26;;;;;;;;43658:33;;;-1:-1:-1;;;;;43709:18:0;;;;;:12;:18;;;;;:34;;;;;;;43702:41;42749:1002::o;44046:1079::-;44324:10;:17;44299:22;;44324:21;;44344:1;;44324:21;:::i;:::-;44356:18;44377:24;;;:15;:24;;;;;;44750:10;:26;;44299:46;;-1:-1:-1;44377:24:0;;44299:46;;44750:26;;;;;;:::i;:::-;;;;;;;;;44728:48;;44814:11;44789:10;44800;44789:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44894:28;;;:15;:28;;;;;;;:41;;;45066:24;;;;;45059:31;45101:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44117:1008;;;44046:1079;:::o;41536:221::-;41621:14;41638:20;41655:2;41638:16;:20::i;:::-;-1:-1:-1;;;;;41669:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41714:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41536:221:0:o;30987:439::-;-1:-1:-1;;;;;31067:16:0;;31059:61;;;;-1:-1:-1;;;31059:61:0;;21714:2:1;31059:61:0;;;21696:21:1;;;21733:18;;;21726:30;21792:34;21772:18;;;21765:62;21844:18;;31059:61:0;21512:356:1;31059:61:0;28970:4;28994:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28994:16:0;:30;31131:58;;;;-1:-1:-1;;;31131:58:0;;22075:2:1;31131:58:0;;;22057:21:1;22114:2;22094:18;;;22087:30;22153;22133:18;;;22126:58;22201:18;;31131:58:0;21873:352:1;31131:58:0;31202:45;31231:1;31235:2;31239:7;31202:20;:45::i;:::-;-1:-1:-1;;;;;31260:13:0;;;;;;:9;:13;;;;;:18;;31277:1;;31260:13;:18;;31277:1;;31260:18;:::i;:::-;;;;-1:-1:-1;;31289:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31289:21:0;-1:-1:-1;;;;;31289:21:0;;;;;;;;31328:33;;31289:16;;;31328:33;;31289:16;;31328:33;51725:21:::1;51650:104:::0;:::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:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:632;3713:5;3743:18;3784:2;3776:6;3773:14;3770:40;;;3790:18;;:::i;:::-;3865:2;3859:9;3833:2;3919:15;;-1:-1:-1;;3915:24:1;;;3941:2;3911:33;3907:42;3895:55;;;3965:18;;;3985:22;;;3962:46;3959:72;;;4011:18;;:::i;:::-;4051:10;4047:2;4040:22;4080:6;4071:15;;4110:6;4102;4095:22;4150:3;4141:6;4136:3;4132:16;4129:25;4126:45;;;4167:1;4164;4157:12;4126:45;4217:6;4212:3;4205:4;4197:6;4193:17;4180:44;4272:1;4265:4;4256:6;4248;4244:19;4240:30;4233:41;;;;3648:632;;;;;:::o;4285:451::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4463:9;4450:23;4496:18;4488:6;4485:30;4482:50;;;4528:1;4525;4518:12;4482:50;4551:22;;4604:4;4596:13;;4592:27;-1:-1:-1;4582:55:1;;4633:1;4630;4623:12;4582:55;4656:74;4722:7;4717:2;4704:16;4699:2;4695;4691:11;4656:74;:::i;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;6243:161;;6030:380;;;:::o;7655:413::-;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:1;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;8485:356::-;8687:2;8669:21;;;8706:18;;;8699:30;8765:34;8760:2;8745:18;;8738:62;8832:2;8817:18;;8485:356::o;9056:127::-;9117:10;9112:3;9108:20;9105:1;9098:31;9148:4;9145:1;9138:15;9172:4;9169:1;9162:15;9188:127;9249:10;9244:3;9240:20;9237:1;9230:31;9280:4;9277:1;9270:15;9304:4;9301:1;9294:15;9320:135;9359:3;9380:17;;;9377:43;;9400:18;;:::i;:::-;-1:-1:-1;9447:1:1;9436:13;;9320:135::o;9999:545::-;10101:2;10096:3;10093:11;10090:448;;;10137:1;10162:5;10158:2;10151:17;10207:4;10203:2;10193:19;10277:2;10265:10;10261:19;10258:1;10254:27;10248:4;10244:38;10313:4;10301:10;10298:20;10295:47;;;-1:-1:-1;10336:4:1;10295:47;10391:2;10386:3;10382:12;10379:1;10375:20;10369:4;10365:31;10355:41;;10446:82;10464:2;10457:5;10454:13;10446:82;;;10509:17;;;10490:1;10479:13;10446:82;;;10450:3;;;9999:545;;;:::o;10720:1352::-;10846:3;10840:10;10873:18;10865:6;10862:30;10859:56;;;10895:18;;:::i;:::-;10924:97;11014:6;10974:38;11006:4;11000:11;10974:38;:::i;:::-;10968:4;10924:97;:::i;:::-;11076:4;;11140:2;11129:14;;11157:1;11152:663;;;;11859:1;11876:6;11873:89;;;-1:-1:-1;11928:19:1;;;11922:26;11873:89;-1:-1:-1;;10677:1:1;10673:11;;;10669:24;10665:29;10655:40;10701:1;10697:11;;;10652:57;11975:81;;11122:944;;11152:663;9946:1;9939:14;;;9983:4;9970:18;;-1:-1:-1;;11188:20:1;;;11306:236;11320:7;11317:1;11314:14;11306:236;;;11409:19;;;11403:26;11388:42;;11501:27;;;;11469:1;11457:14;;;;11336:19;;11306:236;;;11310:3;11570:6;11561:7;11558:19;11555:201;;;11631:19;;;11625:26;-1:-1:-1;;11714:1:1;11710:14;;;11726:3;11706:24;11702:37;11698:42;11683:58;11668:74;;11555:201;-1:-1:-1;;;;;11802:1:1;11786:14;;;11782:22;11769:36;;-1:-1:-1;10720:1352:1:o;13607:128::-;13647:3;13678:1;13674:6;13671:1;13668:13;13665:39;;;13684:18;;:::i;:::-;-1:-1:-1;13720:9:1;;13607:128::o;14846:168::-;14886:7;14952:1;14948;14944:6;14940:14;14937:1;14934:21;14929:1;14922:9;14915:17;14911:45;14908:71;;;14959:18;;:::i;:::-;-1:-1:-1;14999:9:1;;14846:168::o;16489:1230::-;16713:3;16751:6;16745:13;16777:4;16790:51;16834:6;16829:3;16824:2;16816:6;16812:15;16790:51;:::i;:::-;16904:13;;16863:16;;;;16926:55;16904:13;16863:16;16948:15;;;16926:55;:::i;:::-;17070:13;;17003:20;;;17043:1;;17108:36;17070:13;17108:36;:::i;:::-;17163:1;17180:18;;;17207:141;;;;17362:1;17357:337;;;;17173:521;;17207:141;-1:-1:-1;;17242:24:1;;17228:39;;17319:16;;17312:24;17298:39;;17287:51;;;-1:-1:-1;17207:141:1;;17357:337;17388:6;17385:1;17378:17;17436:2;17433:1;17423:16;17461:1;17475:169;17489:8;17486:1;17483:15;17475:169;;;17571:14;;17556:13;;;17549:37;17614:16;;;;17506:10;;17475:169;;;17479:3;;17675:8;17668:5;17664:20;17657:27;;17173:521;-1:-1:-1;17710:3:1;;16489:1230;-1:-1:-1;;;;;;;;;;16489:1230:1:o;19355:125::-;19395:4;19423:1;19420;19417:8;19414:34;;;19428:18;;:::i;:::-;-1:-1:-1;19465:9:1;;19355:125::o;19839:414::-;20041:2;20023:21;;;20080:2;20060:18;;;20053:30;20119:34;20114:2;20099:18;;20092:62;-1:-1:-1;;;20185:2:1;20170:18;;20163:48;20243:3;20228:19;;19839:414::o;20258:127::-;20319:10;20314:3;20310:20;20307:1;20300:31;20350:4;20347:1;20340:15;20374:4;20371:1;20364:15;20390:120;20430:1;20456;20446:35;;20461:18;;:::i;:::-;-1:-1:-1;20495:9:1;;20390:120::o;20515:112::-;20547:1;20573;20563:35;;20578:18;;:::i;:::-;-1:-1:-1;20612:9:1;;20515:112::o;20632:489::-;-1:-1:-1;;;;;20901:15:1;;;20883:34;;20953:15;;20948:2;20933:18;;20926:43;21000:2;20985:18;;20978:34;;;21048:3;21043:2;21028:18;;21021:31;;;20826:4;;21069:46;;21095:19;;21087:6;21069:46;:::i;:::-;21061:54;20632:489;-1:-1:-1;;;;;;20632:489:1:o;21126:249::-;21195:6;21248:2;21236:9;21227:7;21223:23;21219:32;21216:52;;;21264:1;21261;21254:12;21216:52;21296:9;21290:16;21315:30;21339:5;21315:30;:::i;21380:127::-;21441:10;21436:3;21432:20;21429:1;21422:31;21472:4;21469:1;21462:15;21496:4;21493:1;21486:15

Swarm Source

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