ETH Price: $3,422.11 (-1.78%)
Gas: 5 Gwei

Token

Goblinpets (GP)
 

Overview

Max Total Supply

5,000 GP

Holders

1,069

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
3l0nmusk.eth
Balance
5 GP
0x9a4dba60aa3f36b48cdb25266140a4844df4a8a3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Goblinpets is a NFT token

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Goblinpets

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-06-05
*/

// SPDX-License-Identifier: MIT

// dev address is 0xEaC458B2F78b8cb37c9471A9A0723b4Aa6b4c62D

// File @openzeppelin/contracts/utils/introspection/[email protected]

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// 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/contracts/utils/[email protected]

// 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 @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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 erc721a/contracts/[email protected]

// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            IERC721Receiver(to).onERC721Received(
                _msgSender(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File @openzeppelin/contracts/access/[email protected]

// 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/goblinpets.sol

pragma solidity ^0.8.4;

contract Goblinpets is ERC721A, Ownable {
    uint256 public constant MAX_ELEMENTS = 5000;
    uint256 public constant MAX_PER_WALLET = 5;
    uint256 public constant premium = 0.0025 ether;
    mapping(address => uint256) public mintCount;

    string public baseTokenURI;

    address public dev = 0xEaC458B2F78b8cb37c9471A9A0723b4Aa6b4c62D;

    constructor(string memory baseURI) ERC721A("Goblinpets", "GP") {
        _safeMint(msg.sender, 462);
        _safeMint(dev, 38);
        setBaseURI(baseURI);
    }

    /**
     * @dev Mint the _amount of tokens
     * @param _amount is the token count
     */
    function mint(uint256 _amount) external payable {
        uint256 supply = totalSupply();
        require(supply + _amount <= MAX_ELEMENTS, "Sale ends");
        require(msg.value >= price(_amount), "Not enough");
        mintCount[msg.sender] += _amount;
        require(mintCount[msg.sender] <= MAX_PER_WALLET, "Exceed Max");
        _safeMint(msg.sender, _amount);
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function burn(uint256 tokenId) public {
        _burn(tokenId);
    }

    function price(uint256 _amount) public view returns (uint256) {
        uint256 total = totalSupply() + _amount;
        if (total <= 3500) return 0;
        return min(total - 3500, _amount) * premium;
    }

    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a <= b ? a : b;
    }

    function withdraw() external {
        uint256 balance = address(this).balance;
        require(balance > 0);
        (bool toOwner, ) = owner().call{value: (balance * 925) / 1000}("");
        require(toOwner, "Transfer failed.");
        (bool toDev, ) = dev.call{value: (balance * 75) / 1000}("");
        require(toDev, "Transfer failed.");
    }

    /**
     * @dev set the _baseTokenURI
     * @param baseURI of the _baseTokenURI
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCount","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":"premium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273eac458b2f78b8cb37c9471a9a0723b4aa6b4c62d600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620047473803806200474783398181016040528101906200008c919062000b84565b6040518060400160405280600a81526020017f476f626c696e70657473000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f475000000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011092919062000937565b5080600390805190602001906200012992919062000937565b506200013a620001c360201b60201c565b60008190555050506200016262000156620001cc60201b60201c565b620001d460201b60201c565b62000176336101ce6200029a60201b60201c565b620001ab600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660266200029a60201b60201c565b620001bc81620002c060201b60201c565b5062000e5c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bc8282604051806020016040528060008152506200036b60201b60201c565b5050565b620002d0620001cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f66200038560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003469062000c36565b60405180910390fd5b80600a90805190602001906200036792919062000937565b5050565b620003808383836001620003af60201b60201c565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200041c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840362000457576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200046c6000868387620007a760201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620006445750620006438773ffffffffffffffffffffffffffffffffffffffff16620007ad60201b620015791760201c565b5b1562000716575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006c26000888480600101955088620007d060201b60201c565b620006f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036200064b5782600054146200071057600080fd5b62000782565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820362000717575b816000819055505050620007a060008683876200093160201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007fe620001cc60201b60201c565b8786866040518563ffffffff1660e01b815260040162000822949392919062000d15565b6020604051808303816000875af19250505080156200086157506040513d601f19601f820116820180604052508101906200085e919062000dc6565b60015b620008de573d806000811462000894576040519150601f19603f3d011682016040523d82523d6000602084013e62000899565b606091505b506000815103620008d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009459062000e27565b90600052602060002090601f016020900481019282620009695760008555620009b5565b82601f106200098457805160ff1916838001178555620009b5565b82800160010185558215620009b5579182015b82811115620009b457825182559160200191906001019062000997565b5b509050620009c49190620009c8565b5090565b5b80821115620009e3576000816000905550600101620009c9565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a508262000a05565b810181811067ffffffffffffffff8211171562000a725762000a7162000a16565b5b80604052505050565b600062000a87620009e7565b905062000a95828262000a45565b919050565b600067ffffffffffffffff82111562000ab85762000ab762000a16565b5b62000ac38262000a05565b9050602081019050919050565b60005b8381101562000af057808201518184015260208101905062000ad3565b8381111562000b00576000848401525b50505050565b600062000b1d62000b178462000a9a565b62000a7b565b90508281526020810184848401111562000b3c5762000b3b62000a00565b5b62000b4984828562000ad0565b509392505050565b600082601f83011262000b695762000b68620009fb565b5b815162000b7b84826020860162000b06565b91505092915050565b60006020828403121562000b9d5762000b9c620009f1565b5b600082015167ffffffffffffffff81111562000bbe5762000bbd620009f6565b5b62000bcc8482850162000b51565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1e60208362000bd5565b915062000c2b8262000be6565b602082019050919050565b6000602082019050818103600083015262000c518162000c0f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c858262000c58565b9050919050565b62000c978162000c78565b82525050565b6000819050919050565b62000cb28162000c9d565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000ce18262000cb8565b62000ced818562000cc3565b935062000cff81856020860162000ad0565b62000d0a8162000a05565b840191505092915050565b600060808201905062000d2c600083018762000c8c565b62000d3b602083018662000c8c565b62000d4a604083018562000ca7565b818103606083015262000d5e818462000cd4565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000da08162000d69565b811462000dac57600080fd5b50565b60008151905062000dc08162000d95565b92915050565b60006020828403121562000ddf5762000dde620009f1565b5b600062000def8482850162000daf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e4057607f821691505b60208210810362000e565762000e5562000df8565b5b50919050565b6138db8062000e6c6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e0a73a9311610064578063e0a73a93146105eb578063e985e9c514610616578063ed9ec88814610653578063f2fde38b14610690576101b7565b8063b88d4fde1461055a578063c87b56dd14610583578063d547cfb7146105c0576101b7565b806391cca3db116100c657806391cca3db146104bf57806395d89b41146104ea578063a0712d6814610515578063a22cb46514610531576101b7565b806370a0823114610440578063715018a61461047d5780638da5cb5b14610494576101b7565b806326a49e371161015957806342842e0e1161013357806342842e0e1461038857806342966c68146103b157806355f804b3146103da5780636352211e14610403576101b7565b806326a49e37146103095780633502a716146103465780633ccfd60b14610371576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612bb2565b6106b9565b6040516101f09190612bfa565b60405180910390f35b34801561020557600080fd5b5061020e61079b565b60405161021b9190612cae565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d06565b61082d565b6040516102589190612d74565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612dbb565b6108a9565b005b34801561029657600080fd5b5061029f6109b3565b6040516102ac9190612e0a565b60405180910390f35b3480156102c157600080fd5b506102ca6109b8565b6040516102d79190612e0a565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612e25565b6109cf565b005b34801561031557600080fd5b50610330600480360381019061032b9190612d06565b6109df565b60405161033d9190612e0a565b60405180910390f35b34801561035257600080fd5b5061035b610a3c565b6040516103689190612e0a565b60405180910390f35b34801561037d57600080fd5b50610386610a42565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612e25565b610c0d565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612d06565b610c2d565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612fad565b610c39565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612d06565b610ccf565b6040516104379190612d74565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612ff6565b610ce5565b6040516104749190612e0a565b60405180910390f35b34801561048957600080fd5b50610492610db4565b005b3480156104a057600080fd5b506104a9610e3c565b6040516104b69190612d74565b60405180910390f35b3480156104cb57600080fd5b506104d4610e66565b6040516104e19190612d74565b60405180910390f35b3480156104f657600080fd5b506104ff610e8c565b60405161050c9190612cae565b60405180910390f35b61052f600480360381019061052a9190612d06565b610f1e565b005b34801561053d57600080fd5b506105586004803603810190610553919061304f565b6110ac565b005b34801561056657600080fd5b50610581600480360381019061057c9190613130565b611223565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612d06565b61129f565b6040516105b79190612cae565b60405180910390f35b3480156105cc57600080fd5b506105d561133d565b6040516105e29190612cae565b60405180910390f35b3480156105f757600080fd5b506106006113cb565b60405161060d9190612e0a565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906131b3565b6113d6565b60405161064a9190612bfa565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612ff6565b61146a565b6040516106879190612e0a565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612ff6565b611482565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079457506107938261159c565b5b9050919050565b6060600280546107aa90613222565b80601f01602080910402602001604051908101604052809291908181526020018280546107d690613222565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b600061083882611606565b61086e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b482610ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093a611654565b73ffffffffffffffffffffffffffffffffffffffff161415801561096c575061096a81610965611654565b6113d6565b155b156109a3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ae83838361165c565b505050565b600581565b60006109c261170e565b6001546000540303905090565b6109da838383611717565b505050565b600080826109eb6109b8565b6109f59190613282565b9050610dac8111610a0a576000915050610a37565b6608e1bc9bf04000610a29610dac83610a2391906132d8565b85611c06565b610a33919061330c565b9150505b919050565b61138881565b600047905060008111610a5457600080fd5b6000610a5e610e3c565b73ffffffffffffffffffffffffffffffffffffffff166103e861039d84610a85919061330c565b610a8f9190613395565b604051610a9b906133f7565b60006040518083038185875af1925050503d8060008114610ad8576040519150601f19603f3d011682016040523d82523d6000602084013e610add565b606091505b5050905080610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613458565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b85610b6c919061330c565b610b769190613395565b604051610b82906133f7565b60006040518083038185875af1925050503d8060008114610bbf576040519150601f19603f3d011682016040523d82523d6000602084013e610bc4565b606091505b5050905080610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613458565b60405180910390fd5b505050565b610c2883838360405180602001604052806000815250611223565b505050565b610c3681611c20565b50565b610c41611654565b73ffffffffffffffffffffffffffffffffffffffff16610c5f610e3c565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906134c4565b60405180910390fd5b80600a9080519060200190610ccb929190612a60565b5050565b6000610cda82611fc3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dbc611654565b73ffffffffffffffffffffffffffffffffffffffff16610dda610e3c565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906134c4565b60405180910390fd5b610e3a6000612252565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610e9b90613222565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec790613222565b8015610f145780601f10610ee957610100808354040283529160200191610f14565b820191906000526020600020905b815481529060010190602001808311610ef757829003601f168201915b5050505050905090565b6000610f286109b8565b90506113888282610f399190613282565b1115610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613530565b60405180910390fd5b610f83826109df565b341015610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061359c565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110149190613282565b925050819055506005600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613608565b60405180910390fd5b6110a83383612318565b5050565b6110b4611654565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611118576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611125611654565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d2611654565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112179190612bfa565b60405180910390a35050565b61122e848484611717565b61124d8373ffffffffffffffffffffffffffffffffffffffff16611579565b8015611262575061126084848484612336565b155b15611299576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112aa82611606565b6112e0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112ea612486565b9050600081510361130a5760405180602001604052806000815250611335565b8061131484612518565b604051602001611325929190613664565b6040516020818303038152906040525b915050919050565b600a805461134a90613222565b80601f016020809104026020016040519081016040528092919081815260200182805461137690613222565b80156113c35780601f10611398576101008083540402835291602001916113c3565b820191906000526020600020905b8154815290600101906020018083116113a657829003601f168201915b505050505081565b6608e1bc9bf0400081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60096020528060005260406000206000915090505481565b61148a611654565b73ffffffffffffffffffffffffffffffffffffffff166114a8610e3c565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f5906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361156d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611564906136fa565b60405180910390fd5b61157681612252565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161161161170e565b11158015611620575060005482105b801561164d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061172282611fc3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611749611654565b73ffffffffffffffffffffffffffffffffffffffff16148061177c575061177b8260000151611776611654565b6113d6565b5b806117c1575061178a611654565b73ffffffffffffffffffffffffffffffffffffffff166117a98461082d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117fa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611863576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118c9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d68585856001612678565b6118e6600084846000015161165c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b9657600054811015611b955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bff858585600161267e565b5050505050565b600081831115611c165781611c18565b825b905092915050565b6000611c2b82611fc3565b9050611c3f81600001516000846001612678565b611c4f600083836000015161165c565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f3a57600054811015611f395781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fad8160000151600084600161267e565b6001600081548092919060010191905055505050565b611fcb612ae6565b600082905080611fd961170e565b11158015611fe8575060005481105b1561221b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120fd57809250505061224d565b5b60011561221857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461221357809250505061224d565b6120fe565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612332828260405180602001604052806000815250612684565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235c611654565b8786866040518563ffffffff1660e01b815260040161237e949392919061376f565b6020604051808303816000875af19250505080156123ba57506040513d601f19601f820116820180604052508101906123b791906137d0565b60015b612433573d80600081146123ea576040519150601f19603f3d011682016040523d82523d6000602084013e6123ef565b606091505b50600081510361242b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461249590613222565b80601f01602080910402602001604051908101604052809291908181526020018280546124c190613222565b801561250e5780601f106124e35761010080835404028352916020019161250e565b820191906000526020600020905b8154815290600101906020018083116124f157829003601f168201915b5050505050905090565b60606000820361255f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612673565b600082905060005b6000821461259157808061257a906137fd565b915050600a8261258a9190613395565b9150612567565b60008167ffffffffffffffff8111156125ad576125ac612e82565b5b6040519080825280601f01601f1916602001820160405280156125df5781602001600182028036833780820191505090505b5090505b6000851461266c576001826125f891906132d8565b9150600a856126079190613845565b60306126139190613282565b60f81b81838151811061262957612628613876565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126659190613395565b94506125e3565b8093505050505b919050565b50505050565b50505050565b6126918383836001612696565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612702576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361273c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127496000868387612678565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561291357506129128773ffffffffffffffffffffffffffffffffffffffff16611579565b5b156129d8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129886000888480600101955088612336565b6129be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036129195782600054146129d357600080fd5b612a43565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036129d9575b816000819055505050612a59600086838761267e565b5050505050565b828054612a6c90613222565b90600052602060002090601f016020900481019282612a8e5760008555612ad5565b82601f10612aa757805160ff1916838001178555612ad5565b82800160010185558215612ad5579182015b82811115612ad4578251825591602001919060010190612ab9565b5b509050612ae29190612b29565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b42576000816000905550600101612b2a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b8f81612b5a565b8114612b9a57600080fd5b50565b600081359050612bac81612b86565b92915050565b600060208284031215612bc857612bc7612b50565b5b6000612bd684828501612b9d565b91505092915050565b60008115159050919050565b612bf481612bdf565b82525050565b6000602082019050612c0f6000830184612beb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c4f578082015181840152602081019050612c34565b83811115612c5e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c8082612c15565b612c8a8185612c20565b9350612c9a818560208601612c31565b612ca381612c64565b840191505092915050565b60006020820190508181036000830152612cc88184612c75565b905092915050565b6000819050919050565b612ce381612cd0565b8114612cee57600080fd5b50565b600081359050612d0081612cda565b92915050565b600060208284031215612d1c57612d1b612b50565b5b6000612d2a84828501612cf1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5e82612d33565b9050919050565b612d6e81612d53565b82525050565b6000602082019050612d896000830184612d65565b92915050565b612d9881612d53565b8114612da357600080fd5b50565b600081359050612db581612d8f565b92915050565b60008060408385031215612dd257612dd1612b50565b5b6000612de085828601612da6565b9250506020612df185828601612cf1565b9150509250929050565b612e0481612cd0565b82525050565b6000602082019050612e1f6000830184612dfb565b92915050565b600080600060608486031215612e3e57612e3d612b50565b5b6000612e4c86828701612da6565b9350506020612e5d86828701612da6565b9250506040612e6e86828701612cf1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612eba82612c64565b810181811067ffffffffffffffff82111715612ed957612ed8612e82565b5b80604052505050565b6000612eec612b46565b9050612ef88282612eb1565b919050565b600067ffffffffffffffff821115612f1857612f17612e82565b5b612f2182612c64565b9050602081019050919050565b82818337600083830152505050565b6000612f50612f4b84612efd565b612ee2565b905082815260208101848484011115612f6c57612f6b612e7d565b5b612f77848285612f2e565b509392505050565b600082601f830112612f9457612f93612e78565b5b8135612fa4848260208601612f3d565b91505092915050565b600060208284031215612fc357612fc2612b50565b5b600082013567ffffffffffffffff811115612fe157612fe0612b55565b5b612fed84828501612f7f565b91505092915050565b60006020828403121561300c5761300b612b50565b5b600061301a84828501612da6565b91505092915050565b61302c81612bdf565b811461303757600080fd5b50565b60008135905061304981613023565b92915050565b6000806040838503121561306657613065612b50565b5b600061307485828601612da6565b92505060206130858582860161303a565b9150509250929050565b600067ffffffffffffffff8211156130aa576130a9612e82565b5b6130b382612c64565b9050602081019050919050565b60006130d36130ce8461308f565b612ee2565b9050828152602081018484840111156130ef576130ee612e7d565b5b6130fa848285612f2e565b509392505050565b600082601f83011261311757613116612e78565b5b81356131278482602086016130c0565b91505092915050565b6000806000806080858703121561314a57613149612b50565b5b600061315887828801612da6565b945050602061316987828801612da6565b935050604061317a87828801612cf1565b925050606085013567ffffffffffffffff81111561319b5761319a612b55565b5b6131a787828801613102565b91505092959194509250565b600080604083850312156131ca576131c9612b50565b5b60006131d885828601612da6565b92505060206131e985828601612da6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323a57607f821691505b60208210810361324d5761324c6131f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328d82612cd0565b915061329883612cd0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132cd576132cc613253565b5b828201905092915050565b60006132e382612cd0565b91506132ee83612cd0565b92508282101561330157613300613253565b5b828203905092915050565b600061331782612cd0565b915061332283612cd0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335b5761335a613253565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133a082612cd0565b91506133ab83612cd0565b9250826133bb576133ba613366565b5b828204905092915050565b600081905092915050565b50565b60006133e16000836133c6565b91506133ec826133d1565b600082019050919050565b6000613402826133d4565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613442601083612c20565b915061344d8261340c565b602082019050919050565b6000602082019050818103600083015261347181613435565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134ae602083612c20565b91506134b982613478565b602082019050919050565b600060208201905081810360008301526134dd816134a1565b9050919050565b7f53616c6520656e64730000000000000000000000000000000000000000000000600082015250565b600061351a600983612c20565b9150613525826134e4565b602082019050919050565b600060208201905081810360008301526135498161350d565b9050919050565b7f4e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b6000613586600a83612c20565b915061359182613550565b602082019050919050565b600060208201905081810360008301526135b581613579565b9050919050565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b60006135f2600a83612c20565b91506135fd826135bc565b602082019050919050565b60006020820190508181036000830152613621816135e5565b9050919050565b600081905092915050565b600061363e82612c15565b6136488185613628565b9350613658818560208601612c31565b80840191505092915050565b60006136708285613633565b915061367c8284613633565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136e4602683612c20565b91506136ef82613688565b604082019050919050565b60006020820190508181036000830152613713816136d7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137418261371a565b61374b8185613725565b935061375b818560208601612c31565b61376481612c64565b840191505092915050565b60006080820190506137846000830187612d65565b6137916020830186612d65565b61379e6040830185612dfb565b81810360608301526137b08184613736565b905095945050505050565b6000815190506137ca81612b86565b92915050565b6000602082840312156137e6576137e5612b50565b5b60006137f4848285016137bb565b91505092915050565b600061380882612cd0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361383a57613839613253565b5b600182019050919050565b600061385082612cd0565b915061385b83612cd0565b92508261386b5761386a613366565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dd479edd6dc9dd583d805d87ce5d058387022a9ac1aa98658d933c53a52c78a664736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5746467658526552734756426347525932445132793659737067716641527a437233593452366332315864672f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e0a73a9311610064578063e0a73a93146105eb578063e985e9c514610616578063ed9ec88814610653578063f2fde38b14610690576101b7565b8063b88d4fde1461055a578063c87b56dd14610583578063d547cfb7146105c0576101b7565b806391cca3db116100c657806391cca3db146104bf57806395d89b41146104ea578063a0712d6814610515578063a22cb46514610531576101b7565b806370a0823114610440578063715018a61461047d5780638da5cb5b14610494576101b7565b806326a49e371161015957806342842e0e1161013357806342842e0e1461038857806342966c68146103b157806355f804b3146103da5780636352211e14610403576101b7565b806326a49e37146103095780633502a716146103465780633ccfd60b14610371576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612bb2565b6106b9565b6040516101f09190612bfa565b60405180910390f35b34801561020557600080fd5b5061020e61079b565b60405161021b9190612cae565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d06565b61082d565b6040516102589190612d74565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612dbb565b6108a9565b005b34801561029657600080fd5b5061029f6109b3565b6040516102ac9190612e0a565b60405180910390f35b3480156102c157600080fd5b506102ca6109b8565b6040516102d79190612e0a565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612e25565b6109cf565b005b34801561031557600080fd5b50610330600480360381019061032b9190612d06565b6109df565b60405161033d9190612e0a565b60405180910390f35b34801561035257600080fd5b5061035b610a3c565b6040516103689190612e0a565b60405180910390f35b34801561037d57600080fd5b50610386610a42565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612e25565b610c0d565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612d06565b610c2d565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612fad565b610c39565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612d06565b610ccf565b6040516104379190612d74565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612ff6565b610ce5565b6040516104749190612e0a565b60405180910390f35b34801561048957600080fd5b50610492610db4565b005b3480156104a057600080fd5b506104a9610e3c565b6040516104b69190612d74565b60405180910390f35b3480156104cb57600080fd5b506104d4610e66565b6040516104e19190612d74565b60405180910390f35b3480156104f657600080fd5b506104ff610e8c565b60405161050c9190612cae565b60405180910390f35b61052f600480360381019061052a9190612d06565b610f1e565b005b34801561053d57600080fd5b506105586004803603810190610553919061304f565b6110ac565b005b34801561056657600080fd5b50610581600480360381019061057c9190613130565b611223565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612d06565b61129f565b6040516105b79190612cae565b60405180910390f35b3480156105cc57600080fd5b506105d561133d565b6040516105e29190612cae565b60405180910390f35b3480156105f757600080fd5b506106006113cb565b60405161060d9190612e0a565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906131b3565b6113d6565b60405161064a9190612bfa565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612ff6565b61146a565b6040516106879190612e0a565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612ff6565b611482565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079457506107938261159c565b5b9050919050565b6060600280546107aa90613222565b80601f01602080910402602001604051908101604052809291908181526020018280546107d690613222565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b600061083882611606565b61086e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b482610ccf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093a611654565b73ffffffffffffffffffffffffffffffffffffffff161415801561096c575061096a81610965611654565b6113d6565b155b156109a3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ae83838361165c565b505050565b600581565b60006109c261170e565b6001546000540303905090565b6109da838383611717565b505050565b600080826109eb6109b8565b6109f59190613282565b9050610dac8111610a0a576000915050610a37565b6608e1bc9bf04000610a29610dac83610a2391906132d8565b85611c06565b610a33919061330c565b9150505b919050565b61138881565b600047905060008111610a5457600080fd5b6000610a5e610e3c565b73ffffffffffffffffffffffffffffffffffffffff166103e861039d84610a85919061330c565b610a8f9190613395565b604051610a9b906133f7565b60006040518083038185875af1925050503d8060008114610ad8576040519150601f19603f3d011682016040523d82523d6000602084013e610add565b606091505b5050905080610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613458565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b85610b6c919061330c565b610b769190613395565b604051610b82906133f7565b60006040518083038185875af1925050503d8060008114610bbf576040519150601f19603f3d011682016040523d82523d6000602084013e610bc4565b606091505b5050905080610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613458565b60405180910390fd5b505050565b610c2883838360405180602001604052806000815250611223565b505050565b610c3681611c20565b50565b610c41611654565b73ffffffffffffffffffffffffffffffffffffffff16610c5f610e3c565b73ffffffffffffffffffffffffffffffffffffffff1614610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906134c4565b60405180910390fd5b80600a9080519060200190610ccb929190612a60565b5050565b6000610cda82611fc3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dbc611654565b73ffffffffffffffffffffffffffffffffffffffff16610dda610e3c565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906134c4565b60405180910390fd5b610e3a6000612252565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610e9b90613222565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec790613222565b8015610f145780601f10610ee957610100808354040283529160200191610f14565b820191906000526020600020905b815481529060010190602001808311610ef757829003601f168201915b5050505050905090565b6000610f286109b8565b90506113888282610f399190613282565b1115610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613530565b60405180910390fd5b610f83826109df565b341015610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061359c565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110149190613282565b925050819055506005600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613608565b60405180910390fd5b6110a83383612318565b5050565b6110b4611654565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611118576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611125611654565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d2611654565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112179190612bfa565b60405180910390a35050565b61122e848484611717565b61124d8373ffffffffffffffffffffffffffffffffffffffff16611579565b8015611262575061126084848484612336565b155b15611299576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112aa82611606565b6112e0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112ea612486565b9050600081510361130a5760405180602001604052806000815250611335565b8061131484612518565b604051602001611325929190613664565b6040516020818303038152906040525b915050919050565b600a805461134a90613222565b80601f016020809104026020016040519081016040528092919081815260200182805461137690613222565b80156113c35780601f10611398576101008083540402835291602001916113c3565b820191906000526020600020905b8154815290600101906020018083116113a657829003601f168201915b505050505081565b6608e1bc9bf0400081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60096020528060005260406000206000915090505481565b61148a611654565b73ffffffffffffffffffffffffffffffffffffffff166114a8610e3c565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f5906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361156d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611564906136fa565b60405180910390fd5b61157681612252565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161161161170e565b11158015611620575060005482105b801561164d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061172282611fc3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611749611654565b73ffffffffffffffffffffffffffffffffffffffff16148061177c575061177b8260000151611776611654565b6113d6565b5b806117c1575061178a611654565b73ffffffffffffffffffffffffffffffffffffffff166117a98461082d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117fa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611863576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118c9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d68585856001612678565b6118e6600084846000015161165c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b9657600054811015611b955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bff858585600161267e565b5050505050565b600081831115611c165781611c18565b825b905092915050565b6000611c2b82611fc3565b9050611c3f81600001516000846001612678565b611c4f600083836000015161165c565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f3a57600054811015611f395781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fad8160000151600084600161267e565b6001600081548092919060010191905055505050565b611fcb612ae6565b600082905080611fd961170e565b11158015611fe8575060005481105b1561221b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120fd57809250505061224d565b5b60011561221857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461221357809250505061224d565b6120fe565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612332828260405180602001604052806000815250612684565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235c611654565b8786866040518563ffffffff1660e01b815260040161237e949392919061376f565b6020604051808303816000875af19250505080156123ba57506040513d601f19601f820116820180604052508101906123b791906137d0565b60015b612433573d80600081146123ea576040519150601f19603f3d011682016040523d82523d6000602084013e6123ef565b606091505b50600081510361242b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461249590613222565b80601f01602080910402602001604051908101604052809291908181526020018280546124c190613222565b801561250e5780601f106124e35761010080835404028352916020019161250e565b820191906000526020600020905b8154815290600101906020018083116124f157829003601f168201915b5050505050905090565b60606000820361255f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612673565b600082905060005b6000821461259157808061257a906137fd565b915050600a8261258a9190613395565b9150612567565b60008167ffffffffffffffff8111156125ad576125ac612e82565b5b6040519080825280601f01601f1916602001820160405280156125df5781602001600182028036833780820191505090505b5090505b6000851461266c576001826125f891906132d8565b9150600a856126079190613845565b60306126139190613282565b60f81b81838151811061262957612628613876565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126659190613395565b94506125e3565b8093505050505b919050565b50505050565b50505050565b6126918383836001612696565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612702576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361273c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127496000868387612678565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561291357506129128773ffffffffffffffffffffffffffffffffffffffff16611579565b5b156129d8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129886000888480600101955088612336565b6129be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036129195782600054146129d357600080fd5b612a43565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036129d9575b816000819055505050612a59600086838761267e565b5050505050565b828054612a6c90613222565b90600052602060002090601f016020900481019282612a8e5760008555612ad5565b82601f10612aa757805160ff1916838001178555612ad5565b82800160010185558215612ad5579182015b82811115612ad4578251825591602001919060010190612ab9565b5b509050612ae29190612b29565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b42576000816000905550600101612b2a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b8f81612b5a565b8114612b9a57600080fd5b50565b600081359050612bac81612b86565b92915050565b600060208284031215612bc857612bc7612b50565b5b6000612bd684828501612b9d565b91505092915050565b60008115159050919050565b612bf481612bdf565b82525050565b6000602082019050612c0f6000830184612beb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c4f578082015181840152602081019050612c34565b83811115612c5e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c8082612c15565b612c8a8185612c20565b9350612c9a818560208601612c31565b612ca381612c64565b840191505092915050565b60006020820190508181036000830152612cc88184612c75565b905092915050565b6000819050919050565b612ce381612cd0565b8114612cee57600080fd5b50565b600081359050612d0081612cda565b92915050565b600060208284031215612d1c57612d1b612b50565b5b6000612d2a84828501612cf1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5e82612d33565b9050919050565b612d6e81612d53565b82525050565b6000602082019050612d896000830184612d65565b92915050565b612d9881612d53565b8114612da357600080fd5b50565b600081359050612db581612d8f565b92915050565b60008060408385031215612dd257612dd1612b50565b5b6000612de085828601612da6565b9250506020612df185828601612cf1565b9150509250929050565b612e0481612cd0565b82525050565b6000602082019050612e1f6000830184612dfb565b92915050565b600080600060608486031215612e3e57612e3d612b50565b5b6000612e4c86828701612da6565b9350506020612e5d86828701612da6565b9250506040612e6e86828701612cf1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612eba82612c64565b810181811067ffffffffffffffff82111715612ed957612ed8612e82565b5b80604052505050565b6000612eec612b46565b9050612ef88282612eb1565b919050565b600067ffffffffffffffff821115612f1857612f17612e82565b5b612f2182612c64565b9050602081019050919050565b82818337600083830152505050565b6000612f50612f4b84612efd565b612ee2565b905082815260208101848484011115612f6c57612f6b612e7d565b5b612f77848285612f2e565b509392505050565b600082601f830112612f9457612f93612e78565b5b8135612fa4848260208601612f3d565b91505092915050565b600060208284031215612fc357612fc2612b50565b5b600082013567ffffffffffffffff811115612fe157612fe0612b55565b5b612fed84828501612f7f565b91505092915050565b60006020828403121561300c5761300b612b50565b5b600061301a84828501612da6565b91505092915050565b61302c81612bdf565b811461303757600080fd5b50565b60008135905061304981613023565b92915050565b6000806040838503121561306657613065612b50565b5b600061307485828601612da6565b92505060206130858582860161303a565b9150509250929050565b600067ffffffffffffffff8211156130aa576130a9612e82565b5b6130b382612c64565b9050602081019050919050565b60006130d36130ce8461308f565b612ee2565b9050828152602081018484840111156130ef576130ee612e7d565b5b6130fa848285612f2e565b509392505050565b600082601f83011261311757613116612e78565b5b81356131278482602086016130c0565b91505092915050565b6000806000806080858703121561314a57613149612b50565b5b600061315887828801612da6565b945050602061316987828801612da6565b935050604061317a87828801612cf1565b925050606085013567ffffffffffffffff81111561319b5761319a612b55565b5b6131a787828801613102565b91505092959194509250565b600080604083850312156131ca576131c9612b50565b5b60006131d885828601612da6565b92505060206131e985828601612da6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323a57607f821691505b60208210810361324d5761324c6131f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328d82612cd0565b915061329883612cd0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132cd576132cc613253565b5b828201905092915050565b60006132e382612cd0565b91506132ee83612cd0565b92508282101561330157613300613253565b5b828203905092915050565b600061331782612cd0565b915061332283612cd0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335b5761335a613253565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133a082612cd0565b91506133ab83612cd0565b9250826133bb576133ba613366565b5b828204905092915050565b600081905092915050565b50565b60006133e16000836133c6565b91506133ec826133d1565b600082019050919050565b6000613402826133d4565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613442601083612c20565b915061344d8261340c565b602082019050919050565b6000602082019050818103600083015261347181613435565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134ae602083612c20565b91506134b982613478565b602082019050919050565b600060208201905081810360008301526134dd816134a1565b9050919050565b7f53616c6520656e64730000000000000000000000000000000000000000000000600082015250565b600061351a600983612c20565b9150613525826134e4565b602082019050919050565b600060208201905081810360008301526135498161350d565b9050919050565b7f4e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b6000613586600a83612c20565b915061359182613550565b602082019050919050565b600060208201905081810360008301526135b581613579565b9050919050565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b60006135f2600a83612c20565b91506135fd826135bc565b602082019050919050565b60006020820190508181036000830152613621816135e5565b9050919050565b600081905092915050565b600061363e82612c15565b6136488185613628565b9350613658818560208601612c31565b80840191505092915050565b60006136708285613633565b915061367c8284613633565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136e4602683612c20565b91506136ef82613688565b604082019050919050565b60006020820190508181036000830152613713816136d7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137418261371a565b61374b8185613725565b935061375b818560208601612c31565b61376481612c64565b840191505092915050565b60006080820190506137846000830187612d65565b6137916020830186612d65565b61379e6040830185612dfb565b81810360608301526137b08184613736565b905095945050505050565b6000815190506137ca81612b86565b92915050565b6000602082840312156137e6576137e5612b50565b5b60006137f4848285016137bb565b91505092915050565b600061380882612cd0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361383a57613839613253565b5b600182019050919050565b600061385082612cd0565b915061385b83612cd0565b92508261386b5761386a613366565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dd479edd6dc9dd583d805d87ce5d058387022a9ac1aa98658d933c53a52c78a664736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5746467658526552734756426347525932445132793659737067716641527a437233593452366332315864672f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmWFFvXReRsGVBcGRY2DQ2y6YspgqfARzCr3Y4R6c21Xdg/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d57464676585265527347564263475259324451327936597370677166
Arg [4] : 41527a437233593452366332315864672f000000000000000000000000000000


Deployed Bytecode Sourcemap

47484:2224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26660:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31727:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31290:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47581:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25909:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32698:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48686:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47531:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49021:357;;;;;;;;;;;;;:::i;:::-;;32939:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48607:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49483:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29936:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27079:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46567:103;;;;;;;;;;;;;:::i;:::-;;45916:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47771:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30296:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48118:380;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32044:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33195:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30471:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47736:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47630:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32417:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47683:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46825:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26660:355;26807:4;26864:25;26849:40;;;:11;:40;;;;:105;;;;26921:33;26906:48;;;:11;:48;;;;26849:105;:158;;;;26971:36;26995:11;26971:23;:36::i;:::-;26849:158;26829:178;;26660:355;;;:::o;30127:100::-;30181:13;30214:5;30207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30127:100;:::o;31727:245::-;31831:7;31861:16;31869:7;31861;:16::i;:::-;31856:64;;31886:34;;;;;;;;;;;;;;31856:64;31940:15;:24;31956:7;31940:24;;;;;;;;;;;;;;;;;;;;;31933:31;;31727:245;;;:::o;31290:371::-;31363:13;31379:24;31395:7;31379:15;:24::i;:::-;31363:40;;31424:5;31418:11;;:2;:11;;;31414:48;;31438:24;;;;;;;;;;;;;;31414:48;31495:5;31479:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31505:37;31522:5;31529:12;:10;:12::i;:::-;31505:16;:37::i;:::-;31504:38;31479:63;31475:138;;;31566:35;;;;;;;;;;;;;;31475:138;31625:28;31634:2;31638:7;31647:5;31625:8;:28::i;:::-;31352:309;31290:371;;:::o;47581:42::-;47622:1;47581:42;:::o;25909:303::-;25953:7;26178:15;:13;:15::i;:::-;26163:12;;26147:13;;:28;:46;26140:53;;25909:303;:::o;32698:170::-;32832:28;32842:4;32848:2;32852:7;32832:9;:28::i;:::-;32698:170;;;:::o;48686:212::-;48739:7;48759:13;48791:7;48775:13;:11;:13::i;:::-;:23;;;;:::i;:::-;48759:39;;48822:4;48813:5;:13;48809:27;;48835:1;48828:8;;;;;48809:27;47664:12;48854:26;48866:4;48858:5;:12;;;;:::i;:::-;48872:7;48854:3;:26::i;:::-;:36;;;;:::i;:::-;48847:43;;;48686:212;;;;:::o;47531:43::-;47570:4;47531:43;:::o;49021:357::-;49061:15;49079:21;49061:39;;49129:1;49119:7;:11;49111:20;;;;;;49143:12;49161:7;:5;:7::i;:::-;:12;;49199:4;49192:3;49182:7;:13;;;;:::i;:::-;49181:22;;;;:::i;:::-;49161:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49142:66;;;49227:7;49219:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;49267:10;49283:3;;;;;;;;;;;:8;;49316:4;49310:2;49300:7;:12;;;;:::i;:::-;49299:21;;;;:::i;:::-;49283:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49266:59;;;49344:5;49336:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;49050:328;;;49021:357::o;32939:185::-;33077:39;33094:4;33100:2;33104:7;33077:39;;;;;;;;;;;;:16;:39::i;:::-;32939:185;;;:::o;48607:71::-;48656:14;48662:7;48656:5;:14::i;:::-;48607:71;:::o;49483:101::-;46147:12;:10;:12::i;:::-;46136:23;;:7;:5;:7::i;:::-;:23;;;46128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49569:7:::1;49554:12;:22;;;;;;;;;;;;:::i;:::-;;49483:101:::0;:::o;29936:124::-;30000:7;30027:20;30039:7;30027:11;:20::i;:::-;:25;;;30020:32;;29936:124;;;:::o;27079:206::-;27143:7;27184:1;27167:19;;:5;:19;;;27163:60;;27195:28;;;;;;;;;;;;;;27163:60;27249:12;:19;27262:5;27249:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27241:36;;27234:43;;27079:206;;;:::o;46567:103::-;46147:12;:10;:12::i;:::-;46136:23;;:7;:5;:7::i;:::-;:23;;;46128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46632:30:::1;46659:1;46632:18;:30::i;:::-;46567:103::o:0;45916:87::-;45962:7;45989:6;;;;;;;;;;;45982:13;;45916:87;:::o;47771:63::-;;;;;;;;;;;;;:::o;30296:104::-;30352:13;30385:7;30378:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30296:104;:::o;48118:380::-;48177:14;48194:13;:11;:13::i;:::-;48177:30;;47570:4;48235:7;48226:6;:16;;;;:::i;:::-;:32;;48218:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;48304:14;48310:7;48304:5;:14::i;:::-;48291:9;:27;;48283:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;48369:7;48344:9;:21;48354:10;48344:21;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;47622:1;48395:9;:21;48405:10;48395:21;;;;;;;;;;;;;;;;:39;;48387:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48460:30;48470:10;48482:7;48460:9;:30::i;:::-;48166:332;48118:380;:::o;32044:302::-;32170:12;:10;:12::i;:::-;32158:24;;:8;:24;;;32154:54;;32191:17;;;;;;;;;;;;;;32154:54;32266:8;32221:18;:32;32240:12;:10;:12::i;:::-;32221:32;;;;;;;;;;;;;;;:42;32254:8;32221:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32319:8;32290:48;;32305:12;:10;:12::i;:::-;32290:48;;;32329:8;32290:48;;;;;;:::i;:::-;;;;;;;;32044:302;;:::o;33195:406::-;33362:28;33372:4;33378:2;33382:7;33362:9;:28::i;:::-;33419:15;:2;:13;;;:15::i;:::-;:89;;;;;33452:56;33483:4;33489:2;33493:7;33502:5;33452:30;:56::i;:::-;33451:57;33419:89;33401:193;;;33542:40;;;;;;;;;;;;;;33401:193;33195:406;;;;:::o;30471:415::-;30589:13;30625:16;30633:7;30625;:16::i;:::-;30620:59;;30650:29;;;;;;;;;;;;;;30620:59;30692:21;30716:10;:8;:10::i;:::-;30692:34;;30782:1;30763:7;30757:21;:26;:121;;;;;;;;;;;;;;;;;30827:7;30836:18;:7;:16;:18::i;:::-;30810:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30757:121;30737:141;;;30471:415;;;:::o;47736:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47630:46::-;47664:12;47630:46;:::o;32417:214::-;32559:4;32588:18;:25;32607:5;32588:25;;;;;;;;;;;;;;;:35;32614:8;32588:35;;;;;;;;;;;;;;;;;;;;;;;;;32581:42;;32417:214;;;;:::o;47683:44::-;;;;;;;;;;;;;;;;;:::o;46825:238::-;46147:12;:10;:12::i;:::-;46136:23;;:7;:5;:7::i;:::-;:23;;;46128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46948:1:::1;46928:22;;:8;:22;;::::0;46906:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47027:28;47046:8;47027:18;:28::i;:::-;46825:238:::0;:::o;10307:326::-;10367:4;10624:1;10602:7;:19;;;:23;10595:30;;10307:326;;;:::o;21968:207::-;22098:4;22142:25;22127:40;;;:11;:40;;;;22120:47;;21968:207;;;:::o;33856:213::-;33913:4;33969:7;33950:15;:13;:15::i;:::-;:26;;:66;;;;;34003:13;;33993:7;:23;33950:66;:111;;;;;34034:11;:20;34046:7;34034:20;;;;;;;;;;;:27;;;;;;;;;;;;34033:28;33950:111;33930:131;;33856:213;;;:::o;18727:98::-;18780:7;18807:10;18800:17;;18727:98;:::o;41736:196::-;41878:2;41851:15;:24;41867:7;41851:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41916:7;41912:2;41896:28;;41905:5;41896:28;;;;;;;;;;;;41736:196;;;:::o;48506:93::-;48563:7;48590:1;48583:8;;48506:93;:::o;37186:2138::-;37301:35;37339:20;37351:7;37339:11;:20::i;:::-;37301:58;;37372:22;37414:13;:18;;;37398:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;37449:50;37466:13;:18;;;37486:12;:10;:12::i;:::-;37449:16;:50::i;:::-;37398:101;:154;;;;37540:12;:10;:12::i;:::-;37516:36;;:20;37528:7;37516:11;:20::i;:::-;:36;;;37398:154;37372:181;;37571:17;37566:66;;37597:35;;;;;;;;;;;;;;37566:66;37669:4;37647:26;;:13;:18;;;:26;;;37643:67;;37682:28;;;;;;;;;;;;;;37643:67;37739:1;37725:16;;:2;:16;;;37721:52;;37750:23;;;;;;;;;;;;;;37721:52;37786:43;37808:4;37814:2;37818:7;37827:1;37786:21;:43::i;:::-;37894:49;37911:1;37915:7;37924:13;:18;;;37894:8;:49::i;:::-;38269:1;38239:12;:18;38252:4;38239:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38313:1;38285:12;:16;38298:2;38285:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38359:2;38331:11;:20;38343:7;38331:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;38421:15;38376:11;:20;38388:7;38376:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;38689:19;38721:1;38711:7;:11;38689:33;;38782:1;38741:43;;:11;:24;38753:11;38741:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;38737:471;;38966:13;;38952:11;:27;38948:245;;;39036:13;:18;;;39004:11;:24;39016:11;39004:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;39119:13;:54;;;39077:11;:24;39089:11;39077:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;38948:245;38737:471;38214:1005;39255:7;39251:2;39236:27;;39245:4;39236:27;;;;;;;;;;;;39274:42;39295:4;39301:2;39305:7;39314:1;39274:20;:42::i;:::-;37290:2034;;37186:2138;;;:::o;48906:107::-;48964:7;48996:1;48991;:6;;:14;;49004:1;48991:14;;;49000:1;48991:14;48984:21;;48906:107;;;;:::o;39553:2065::-;39613:35;39651:20;39663:7;39651:11;:20::i;:::-;39613:58;;39684:65;39706:13;:18;;;39734:1;39738:7;39747:1;39684:21;:65::i;:::-;39814:49;39831:1;39835:7;39844:13;:18;;;39814:8;:49::i;:::-;40203:1;40159:12;:32;40172:13;:18;;;40159:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40268:1;40219:12;:32;40232:13;:18;;;40219:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40396:13;:18;;;40368:11;:20;40380:7;40368:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;40474:15;40429:11;:20;40441:7;40429:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40535:4;40505:11;:20;40517:7;40505:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;40787:19;40819:1;40809:7;:11;40787:33;;40880:1;40839:43;;:11;:24;40851:11;40839:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40835:471;;41064:13;;41050:11;:27;41046:245;;;41134:13;:18;;;41102:11;:24;41114:11;41102:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41217:13;:54;;;41175:11;:24;41187:11;41175:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;41046:245;40835:471;40134:1183;41375:7;41371:1;41334:49;;41343:13;:18;;;41334:49;;;;;;;;;;;;41394:64;41415:13;:18;;;41443:1;41447:7;41456:1;41394:20;:64::i;:::-;41585:12;;:14;;;;;;;;;;;;;39602:2016;39553:2065;:::o;28734:1140::-;28822:21;;:::i;:::-;28861:12;28876:7;28861:22;;28944:4;28925:15;:13;:15::i;:::-;:23;;:47;;;;;28959:13;;28952:4;:20;28925:47;28921:886;;;28993:31;29027:11;:17;29039:4;29027:17;;;;;;;;;;;28993:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29068:9;:16;;;29063:729;;29139:1;29113:28;;:9;:14;;;:28;;;29109:101;;29177:9;29170:16;;;;;;29109:101;29512:261;29519:4;29512:261;;;29552:6;;;;;;;;29597:11;:17;29609:4;29597:17;;;;;;;;;;;29585:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29671:1;29645:28;;:9;:14;;;:28;;;29641:109;;29713:9;29706:16;;;;;;29641:109;29512:261;;;29063:729;28974:833;28921:886;29835:31;;;;;;;;;;;;;;28734:1140;;;;:::o;47223:191::-;47297:16;47316:6;;;;;;;;;;;47297:25;;47342:8;47333:6;;:17;;;;;;;;;;;;;;;;;;47397:8;47366:40;;47387:8;47366:40;;;;;;;;;;;;47286:128;47223:191;:::o;34077:104::-;34146:27;34156:2;34160:8;34146:27;;;;;;;;;;;;:9;:27::i;:::-;34077:104;;:::o;42424:772::-;42587:4;42637:2;42621:36;;;42676:12;:10;:12::i;:::-;42707:4;42730:7;42756:5;42621:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42604:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42964:1;42947:6;:13;:18;42943:235;;42993:40;;;;;;;;;;;;;;42943:235;43136:6;43130:13;43121:6;43117:2;43113:15;43106:38;42604:585;42842:45;;;42832:55;;;:6;:55;;;;42825:62;;;42424:772;;;;;;:::o;49592:113::-;49652:13;49685:12;49678:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49592:113;:::o;19310:723::-;19366:13;19596:1;19587:5;:10;19583:53;;19614:10;;;;;;;;;;;;;;;;;;;;;19583:53;19646:12;19661:5;19646:20;;19677:14;19702:78;19717:1;19709:4;:9;19702:78;;19735:8;;;;;:::i;:::-;;;;19766:2;19758:10;;;;;:::i;:::-;;;19702:78;;;19790:19;19822:6;19812:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19790:39;;19840:154;19856:1;19847:5;:10;19840:154;;19884:1;19874:11;;;;;:::i;:::-;;;19951:2;19943:5;:10;;;;:::i;:::-;19930:2;:24;;;;:::i;:::-;19917:39;;19900:6;19907;19900:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19980:2;19971:11;;;;;:::i;:::-;;;19840:154;;;20018:6;20004:21;;;;;19310:723;;;;:::o;43844:159::-;;;;;:::o;44662:158::-;;;;;:::o;34544:163::-;34667:32;34673:2;34677:8;34687:5;34694:4;34667:5;:32::i;:::-;34544:163;;;:::o;34966:1966::-;35105:20;35128:13;;35105:36;;35170:1;35156:16;;:2;:16;;;35152:48;;35181:19;;;;;;;;;;;;;;35152:48;35227:1;35215:8;:13;35211:44;;35237:18;;;;;;;;;;;;;;35211:44;35268:61;35298:1;35302:2;35306:12;35320:8;35268:21;:61::i;:::-;35641:8;35606:12;:16;35619:2;35606:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35705:8;35665:12;:16;35678:2;35665:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35764:2;35731:11;:25;35743:12;35731:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35831:15;35781:11;:25;35793:12;35781:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35864:20;35887:12;35864:35;;35914:11;35943:8;35928:12;:23;35914:37;;35972:4;:23;;;;;35980:15;:2;:13;;;:15::i;:::-;35972:23;35968:832;;;36016:505;36072:12;36068:2;36047:38;;36064:1;36047:38;;;;;;;;;;;;36139:212;36208:1;36241:2;36274:14;;;;;;36319:5;36139:30;:212::i;:::-;36108:365;;36409:40;;;;;;;;;;;;;;36108:365;36516:3;36500:12;:19;36016:505;;36602:12;36585:13;;:29;36581:43;;36616:8;;;36581:43;35968:832;;;36665:120;36721:14;;;;;;36717:2;36696:40;;36713:1;36696:40;;;;;;;;;;;;36780:3;36764:12;:19;36665:120;;35968:832;36830:12;36814:13;:28;;;;35581:1273;;36864:60;36893:1;36897:2;36901:12;36915:8;36864:20;:60::i;:::-;35094:1838;34966:1966;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:180::-;12681:77;12678:1;12671:88;12778:4;12775:1;12768:15;12802:4;12799:1;12792:15;12819:305;12859:3;12878:20;12896:1;12878:20;:::i;:::-;12873:25;;12912:20;12930:1;12912:20;:::i;:::-;12907:25;;13066:1;12998:66;12994:74;12991:1;12988:81;12985:107;;;13072:18;;:::i;:::-;12985:107;13116:1;13113;13109:9;13102:16;;12819:305;;;;:::o;13130:191::-;13170:4;13190:20;13208:1;13190:20;:::i;:::-;13185:25;;13224:20;13242:1;13224:20;:::i;:::-;13219:25;;13263:1;13260;13257:8;13254:34;;;13268:18;;:::i;:::-;13254:34;13313:1;13310;13306:9;13298:17;;13130:191;;;;:::o;13327:348::-;13367:7;13390:20;13408:1;13390:20;:::i;:::-;13385:25;;13424:20;13442:1;13424:20;:::i;:::-;13419:25;;13612:1;13544:66;13540:74;13537:1;13534:81;13529:1;13522:9;13515:17;13511:105;13508:131;;;13619:18;;:::i;:::-;13508:131;13667:1;13664;13660:9;13649:20;;13327:348;;;;:::o;13681:180::-;13729:77;13726:1;13719:88;13826:4;13823:1;13816:15;13850:4;13847:1;13840:15;13867:185;13907:1;13924:20;13942:1;13924:20;:::i;:::-;13919:25;;13958:20;13976:1;13958:20;:::i;:::-;13953:25;;13997:1;13987:35;;14002:18;;:::i;:::-;13987:35;14044:1;14041;14037:9;14032:14;;13867:185;;;;:::o;14058:147::-;14159:11;14196:3;14181:18;;14058:147;;;;:::o;14211:114::-;;:::o;14331:398::-;14490:3;14511:83;14592:1;14587:3;14511:83;:::i;:::-;14504:90;;14603:93;14692:3;14603:93;:::i;:::-;14721:1;14716:3;14712:11;14705:18;;14331:398;;;:::o;14735:379::-;14919:3;14941:147;15084:3;14941:147;:::i;:::-;14934:154;;15105:3;15098:10;;14735:379;;;:::o;15120:166::-;15260:18;15256:1;15248:6;15244:14;15237:42;15120:166;:::o;15292:366::-;15434:3;15455:67;15519:2;15514:3;15455:67;:::i;:::-;15448:74;;15531:93;15620:3;15531:93;:::i;:::-;15649:2;15644:3;15640:12;15633:19;;15292:366;;;:::o;15664:419::-;15830:4;15868:2;15857:9;15853:18;15845:26;;15917:9;15911:4;15907:20;15903:1;15892:9;15888:17;15881:47;15945:131;16071:4;15945:131;:::i;:::-;15937:139;;15664:419;;;:::o;16089:182::-;16229:34;16225:1;16217:6;16213:14;16206:58;16089:182;:::o;16277:366::-;16419:3;16440:67;16504:2;16499:3;16440:67;:::i;:::-;16433:74;;16516:93;16605:3;16516:93;:::i;:::-;16634:2;16629:3;16625:12;16618:19;;16277:366;;;:::o;16649:419::-;16815:4;16853:2;16842:9;16838:18;16830:26;;16902:9;16896:4;16892:20;16888:1;16877:9;16873:17;16866:47;16930:131;17056:4;16930:131;:::i;:::-;16922:139;;16649:419;;;:::o;17074:159::-;17214:11;17210:1;17202:6;17198:14;17191:35;17074:159;:::o;17239:365::-;17381:3;17402:66;17466:1;17461:3;17402:66;:::i;:::-;17395:73;;17477:93;17566:3;17477:93;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17239:365;;;:::o;17610:419::-;17776:4;17814:2;17803:9;17799:18;17791:26;;17863:9;17857:4;17853:20;17849:1;17838:9;17834:17;17827:47;17891:131;18017:4;17891:131;:::i;:::-;17883:139;;17610:419;;;:::o;18035:160::-;18175:12;18171:1;18163:6;18159:14;18152:36;18035:160;:::o;18201:366::-;18343:3;18364:67;18428:2;18423:3;18364:67;:::i;:::-;18357:74;;18440:93;18529:3;18440:93;:::i;:::-;18558:2;18553:3;18549:12;18542:19;;18201:366;;;:::o;18573:419::-;18739:4;18777:2;18766:9;18762:18;18754:26;;18826:9;18820:4;18816:20;18812:1;18801:9;18797:17;18790:47;18854:131;18980:4;18854:131;:::i;:::-;18846:139;;18573:419;;;:::o;18998:160::-;19138:12;19134:1;19126:6;19122:14;19115:36;18998:160;:::o;19164:366::-;19306:3;19327:67;19391:2;19386:3;19327:67;:::i;:::-;19320:74;;19403:93;19492:3;19403:93;:::i;:::-;19521:2;19516:3;19512:12;19505:19;;19164:366;;;:::o;19536:419::-;19702:4;19740:2;19729:9;19725:18;19717:26;;19789:9;19783:4;19779:20;19775:1;19764:9;19760:17;19753:47;19817:131;19943:4;19817:131;:::i;:::-;19809:139;;19536:419;;;:::o;19961:148::-;20063:11;20100:3;20085:18;;19961:148;;;;:::o;20115:377::-;20221:3;20249:39;20282:5;20249:39;:::i;:::-;20304:89;20386:6;20381:3;20304:89;:::i;:::-;20297:96;;20402:52;20447:6;20442:3;20435:4;20428:5;20424:16;20402:52;:::i;:::-;20479:6;20474:3;20470:16;20463:23;;20225:267;20115:377;;;;:::o;20498:435::-;20678:3;20700:95;20791:3;20782:6;20700:95;:::i;:::-;20693:102;;20812:95;20903:3;20894:6;20812:95;:::i;:::-;20805:102;;20924:3;20917:10;;20498:435;;;;;:::o;20939:225::-;21079:34;21075:1;21067:6;21063:14;21056:58;21148:8;21143:2;21135:6;21131:15;21124:33;20939:225;:::o;21170:366::-;21312:3;21333:67;21397:2;21392:3;21333:67;:::i;:::-;21326:74;;21409:93;21498:3;21409:93;:::i;:::-;21527:2;21522:3;21518:12;21511:19;;21170:366;;;:::o;21542:419::-;21708:4;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21542:419;;;:::o;21967:98::-;22018:6;22052:5;22046:12;22036:22;;21967:98;;;:::o;22071:168::-;22154:11;22188:6;22183:3;22176:19;22228:4;22223:3;22219:14;22204:29;;22071:168;;;;:::o;22245:360::-;22331:3;22359:38;22391:5;22359:38;:::i;:::-;22413:70;22476:6;22471:3;22413:70;:::i;:::-;22406:77;;22492:52;22537:6;22532:3;22525:4;22518:5;22514:16;22492:52;:::i;:::-;22569:29;22591:6;22569:29;:::i;:::-;22564:3;22560:39;22553:46;;22335:270;22245:360;;;;:::o;22611:640::-;22806:4;22844:3;22833:9;22829:19;22821:27;;22858:71;22926:1;22915:9;22911:17;22902:6;22858:71;:::i;:::-;22939:72;23007:2;22996:9;22992:18;22983:6;22939:72;:::i;:::-;23021;23089:2;23078:9;23074:18;23065:6;23021:72;:::i;:::-;23140:9;23134:4;23130:20;23125:2;23114:9;23110:18;23103:48;23168:76;23239:4;23230:6;23168:76;:::i;:::-;23160:84;;22611:640;;;;;;;:::o;23257:141::-;23313:5;23344:6;23338:13;23329:22;;23360:32;23386:5;23360:32;:::i;:::-;23257:141;;;;:::o;23404:349::-;23473:6;23522:2;23510:9;23501:7;23497:23;23493:32;23490:119;;;23528:79;;:::i;:::-;23490:119;23648:1;23673:63;23728:7;23719:6;23708:9;23704:22;23673:63;:::i;:::-;23663:73;;23619:127;23404:349;;;;:::o;23759:233::-;23798:3;23821:24;23839:5;23821:24;:::i;:::-;23812:33;;23867:66;23860:5;23857:77;23854:103;;23937:18;;:::i;:::-;23854:103;23984:1;23977:5;23973:13;23966:20;;23759:233;;;:::o;23998:176::-;24030:1;24047:20;24065:1;24047:20;:::i;:::-;24042:25;;24081:20;24099:1;24081:20;:::i;:::-;24076:25;;24120:1;24110:35;;24125:18;;:::i;:::-;24110:35;24166:1;24163;24159:9;24154:14;;23998:176;;;;:::o;24180:180::-;24228:77;24225:1;24218:88;24325:4;24322:1;24315:15;24349:4;24346:1;24339:15

Swarm Source

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