ETH Price: $2,517.15 (-0.32%)
Gas: 1.08 Gwei

Token

NFT SKINS (NFTSKIN)
 

Overview

Max Total Supply

2,023 NFTSKIN

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
knoxis.eth
Balance
7 NFTSKIN
0x54B065B3a70157F5e120CDB9F0CA8fCA8F664e53
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NFTSKINS

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: NFTSKINS.sol


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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            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 ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


pragma solidity ^0.8.4;

contract NFTSKINS is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL; // Free mint is allowed until x mint
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("NFT SKINS", "NFTSKIN") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /** FREE MINT **/

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    /** GETTERS **/

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

    /** SETTERS **/

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= currentIndex, "Invalid new max supply");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!METADATA_FROZEN, "Metadata frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        METADATA_FROZEN = true;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!");
        require(currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!");
        _;
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    address private constant payoutAddress =
    0xF4B6c3C82b19d1E8DFdfF360f51FCC42C16758F7;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(payable(payoutAddress), balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","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":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002b5e38038062002b5e83398101604081905262000034916200022e565b60408051808201825260098152684e465420534b494e5360b81b60208083019182528351808501909452600784526627232a29a5a4a760c91b90840152815191929162000084916001916200015c565b5080516200009a9060029060208401906200015c565b505050620000b7620000b16200010660201b60201c565b6200010a565b60016008556009879055600a8690558451620000db90600b9060208801906200015c565b50600c93909355600d91909155600e805460ff1916911515919091179055600f55506200038e915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016a9062000351565b90600052602060002090601f0160209004810192826200018e5760008555620001d9565b82601f10620001a957805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d9578251825591602001919060010190620001bc565b50620001e7929150620001eb565b5090565b5b80821115620001e75760008155600101620001ec565b634e487b7160e01b600052604160045260246000fd5b805180151581146200022957600080fd5b919050565b600080600080600080600060e0888a0312156200024a57600080fd5b87516020808a015160408b01519299509750906001600160401b03808211156200027357600080fd5b818b0191508b601f8301126200028857600080fd5b8151818111156200029d576200029d62000202565b604051601f8201601f19908116603f01168101908382118183101715620002c857620002c862000202565b816040528281528e86848701011115620002e157600080fd5b600093505b82841015620003055784840186015181850187015292850192620002e6565b82841115620003175760008684830101525b809a5050505050505060608801519350608088015192506200033c60a0890162000218565b915060c0880151905092959891949750929550565b600181811c908216806200036657607f821691505b602082108114156200038857634e487b7160e01b600052602260045260246000fd5b50919050565b6127c0806200039e6000396000f3fe60806040526004361061026a5760003560e01c806370a0823111610153578063a0712d68116100cb578063c87b56dd1161007f578063e985e9c511610064578063e985e9c514610670578063f2fde38b146106b9578063fdb4953a146106d957600080fd5b8063c87b56dd1461063b578063d111515d1461065b57600080fd5b8063b0551ac4116100b0578063b0551ac4146105db578063b88d4fde146105fb578063c4e9374d1461061b57600080fd5b8063a0712d68146105a8578063a22cb465146105bb57600080fd5b80638b85e43d116101225780638da5cb5b116101075780638da5cb5b1461055557806391b7f5ed1461057357806395d89b411461059357600080fd5b80638b85e43d1461051f5780638d859f3e1461053f57600080fd5b806370a08231146104b0578063715018a6146104d057806376d02b71146104e5578063841718a6146104ff57600080fd5b806332cb6b0c116101e657806342842e0e116101b557806355f804b31161019a57806355f804b314610450578063616cdb1e146104705780636352211e1461049057600080fd5b806342842e0e146104105780634f6ccce71461043057600080fd5b806332cb6b0c146103af5780633ccfd60b146103c55780634065b85f146103da578063408cbf94146103f057600080fd5b806309ef65271161023d57806318160ddd1161022257806318160ddd1461035a57806323b872dd1461036f5780632f745c591461038f57600080fd5b806309ef65271461032057806310b0c0521461034457600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a3660046122bd565b6106f3565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b9610760565b60405161029b9190612332565b3480156102d257600080fd5b506102e66102e1366004612345565b6107f2565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e61031936600461237a565b610892565b005b34801561032c57600080fd5b50610336600d5481565b60405190815260200161029b565b34801561035057600080fd5b50610336600c5481565b34801561036657600080fd5b50600054610336565b34801561037b57600080fd5b5061031e61038a3660046123a4565b6109aa565b34801561039b57600080fd5b506103366103aa36600461237a565b6109b5565b3480156103bb57600080fd5b50610336600a5481565b3480156103d157600080fd5b5061031e610b21565b3480156103e657600080fd5b50610336600f5481565b3480156103fc57600080fd5b5061031e61040b36600461237a565b610be8565b34801561041c57600080fd5b5061031e61042b3660046123a4565b610cf8565b34801561043c57600080fd5b5061033661044b366004612345565b610d13565b34801561045c57600080fd5b5061031e61046b36600461246c565b610d75565b34801561047c57600080fd5b5061031e61048b366004612345565b610e27565b34801561049c57600080fd5b506102e66104ab366004612345565b610e74565b3480156104bc57600080fd5b506103366104cb3660046124b5565b610e86565b3480156104dc57600080fd5b5061031e610f32565b3480156104f157600080fd5b50600e5461028f9060ff1681565b34801561050b57600080fd5b5061031e61051a3660046124e0565b610f86565b34801561052b57600080fd5b5061031e61053a366004612345565b610fe1565b34801561054b57600080fd5b5061033660095481565b34801561056157600080fd5b506007546001600160a01b03166102e6565b34801561057f57600080fd5b5061031e61058e366004612345565b61102e565b34801561059f57600080fd5b506102b961107b565b61031e6105b6366004612345565b61108a565b3480156105c757600080fd5b5061031e6105d63660046124fb565b61128b565b3480156105e757600080fd5b5061031e6105f6366004612345565b611350565b34801561060757600080fd5b5061031e61061636600461252e565b61139d565b34801561062757600080fd5b5061031e610636366004612345565b611422565b34801561064757600080fd5b506102b9610656366004612345565b611512565b34801561066757600080fd5b5061031e6115ee565b34801561067c57600080fd5b5061028f61068b3660046125aa565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c557600080fd5b5061031e6106d43660046124b5565b611645565b3480156106e557600080fd5b5060105461028f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072457506001600160e01b03198216635b5e139f60e01b145b8061073f57506001600160e01b0319821663780e9d6360e01b145b8061075a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461076f906125d4565b80601f016020809104026020016040519081016040528092919081815260200182805461079b906125d4565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107ff826000541190565b6108765760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061089d82610e74565b9050806001600160a01b0316836001600160a01b0316141561090c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161086d565b336001600160a01b03821614806109285750610928813361068b565b61099a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161086d565b6109a5838383611715565b505050565b6109a583838361177e565b60006109c083610e86565b8210610a195760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086d565b600080549080805b83811015610ab2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a7457805192505b876001600160a01b0316836001600160a01b03161415610aa95786841415610aa25750935061075a92505050565b6001909301925b50600101610a21565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161086d565b6007546001600160a01b03163314610b695760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b60026008541415610bbc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086d565b600260085547610be073f4b6c3c82b19d1e8dfdff360f51fcc42c16758f782611aaf565b506001600855565b80600081118015610bfb5750600d548111155b610c475760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161086d565b600a5481600054610c589190612625565b1115610ca65760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161086d565b6007546001600160a01b03163314610cee5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b6109a58383611bc8565b6109a58383836040518060200160405280600081525061139d565b600080548210610d715760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161086d565b5090565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b60105460ff1615610e105760405162461bcd60e51b815260206004820152601060248201527f4d657461646174612066726f7a656e2100000000000000000000000000000000604482015260640161086d565b8051610e2390600b906020840190612217565b5050565b6007546001600160a01b03163314610e6f5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600d55565b6000610e7f82611be2565b5192915050565b60006001600160a01b038216610f045760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f2061646472657373000000000000000000000000000000000000000000606482015260840161086d565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b03163314610f7a5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b610f846000611ccc565b565b6007546001600160a01b03163314610fce5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600e805460ff1916911515919091179055565b6007546001600160a01b031633146110295760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600f55565b6007546001600160a01b031633146110765760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600955565b60606002805461076f906125d4565b8060008111801561109d5750600d548111155b6110e95760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161086d565b600a54816000546110fa9190612625565b11156111485760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161086d565b600e5460ff1661119a5760405162461bcd60e51b815260206004820152601360248201527f53616c65206973206e6f74206163746976652100000000000000000000000000604482015260640161086d565b6000826009546111aa919061263d565b9050600f5460005410156112315733600090815260116020526040812054600c546111d5919061265c565b9050801561122f5780841061120c576009546111f1908261263d565b6111fb908361265c565b91506112073382611d2b565b61122f565b600954611219908561263d565b611223908361265c565b915061122f3385611d2b565b505b803410156112815760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e64732100000000000000000000000000604482015260640161086d565b6109a53384611bc8565b6001600160a01b0382163314156112e45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161086d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146113985760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600c55565b6113a884848461177e565b6113b484848484611d5c565b61141c5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161086d565b50505050565b6007546001600160a01b0316331461146a5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600a5481106114bb5760405162461bcd60e51b815260206004820152601660248201527f496e76616c6964206e6577206d617820737570706c7900000000000000000000604482015260640161086d565b60005481101561150d5760405162461bcd60e51b815260206004820152601660248201527f496e76616c6964206e6577206d617820737570706c7900000000000000000000604482015260640161086d565b600a55565b606061151f826000541190565b6115915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161086d565b600061159b611ea7565b90508051600014156115bc57604051806020016040528060008152506115e7565b806115c684611eb6565b6040516020016115d7929190612673565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116365760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b6010805460ff19166001179055565b6007546001600160a01b0316331461168d5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b6001600160a01b0381166117095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161086d565b61171281611ccc565b50565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178982611be2565b80519091506000906001600160a01b0316336001600160a01b031614806117c05750336117b5846107f2565b6001600160a01b0316145b806117d2575081516117d2903361068b565b9050806118475760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161086d565b846001600160a01b031682600001516001600160a01b0316146118d25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e65720000000000000000000000000000000000000000000000000000606482015260840161086d565b6001600160a01b03841661194e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161086d565b61195e6000848460000151611715565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a6557611a18816000541190565b15611a65578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015611aff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161086d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b4c576040519150601f19603f3d011682016040523d82523d6000602084013e611b51565b606091505b50509050806109a55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161086d565b610e23828260405180602001604052806000815250611fcc565b6040805180820190915260008082526020820152611c01826000541190565b611c735760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161086d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cc2579392505050565b5060001901611c75565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604081208054839290611d53908490612625565b90915550505050565b60006001600160a01b0384163b15611e9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611da09033908990889088906004016126a2565b6020604051808303816000875af1925050508015611ddb575060408051601f3d908101601f19168201909252611dd8918101906126de565b60015b611e81573d808015611e09576040519150601f19603f3d011682016040523d82523d6000602084013e611e0e565b606091505b508051611e795760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161086d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e9f565b5060015b949350505050565b6060600b805461076f906125d4565b606081611eda5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f045780611eee816126fb565b9150611efd9050600a8361272c565b9150611ede565b60008167ffffffffffffffff811115611f1f57611f1f6123e0565b6040519080825280601f01601f191660200182016040528015611f49576020820181803683370190505b5090505b8415611e9f57611f5e60018361265c565b9150611f6b600a86612740565b611f76906030612625565b60f81b818381518110611f8b57611f8b612754565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fc5600a8661272c565b9450611f4d565b6109a583838360016000546001600160a01b0385166120375760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161086d565b836120aa5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e2030000000000000000000000000000000000000000000000000606482015260840161086d565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561220e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156122025761219a6000888488611d5c565b6122025760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161086d565b60019182019101612147565b50600055611aa8565b828054612223906125d4565b90600052602060002090601f016020900481019282612245576000855561228b565b82601f1061225e57805160ff191683800117855561228b565b8280016001018555821561228b579182015b8281111561228b578251825591602001919060010190612270565b50610d719291505b80821115610d715760008155600101612293565b6001600160e01b03198116811461171257600080fd5b6000602082840312156122cf57600080fd5b81356115e7816122a7565b60005b838110156122f55781810151838201526020016122dd565b8381111561141c5750506000910152565b6000815180845261231e8160208601602086016122da565b601f01601f19169290920160200192915050565b6020815260006115e76020830184612306565b60006020828403121561235757600080fd5b5035919050565b80356001600160a01b038116811461237557600080fd5b919050565b6000806040838503121561238d57600080fd5b6123968361235e565b946020939093013593505050565b6000806000606084860312156123b957600080fd5b6123c28461235e565b92506123d06020850161235e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612411576124116123e0565b604051601f8501601f19908116603f01168101908282118183101715612439576124396123e0565b8160405280935085815286868601111561245257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561247e57600080fd5b813567ffffffffffffffff81111561249557600080fd5b8201601f810184136124a657600080fd5b611e9f848235602084016123f6565b6000602082840312156124c757600080fd5b6115e78261235e565b8035801515811461237557600080fd5b6000602082840312156124f257600080fd5b6115e7826124d0565b6000806040838503121561250e57600080fd5b6125178361235e565b9150612525602084016124d0565b90509250929050565b6000806000806080858703121561254457600080fd5b61254d8561235e565b935061255b6020860161235e565b925060408501359150606085013567ffffffffffffffff81111561257e57600080fd5b8501601f8101871361258f57600080fd5b61259e878235602084016123f6565b91505092959194509250565b600080604083850312156125bd57600080fd5b6125c68361235e565b91506125256020840161235e565b600181811c908216806125e857607f821691505b6020821081141561260957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156126385761263861260f565b500190565b60008160001904831182151516156126575761265761260f565b500290565b60008282101561266e5761266e61260f565b500390565b600083516126858184602088016122da565b8351908301906126998183602088016122da565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126d46080830184612306565b9695505050505050565b6000602082840312156126f057600080fd5b81516115e7816122a7565b600060001982141561270f5761270f61260f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261273b5761273b612716565b500490565b60008261274f5761274f612716565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212206bd7e618ed7771fb82ec1f7145bca01a4fb5f91a294c21144162b83be2bde71864736f6c634300080c003300000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6e6674736b696e736170692e636f6d2f6170692f76312f6d657461646174612f6765743f636f6c6c656374696f6e3d363231306538366439373831643730326634656365393037266e6f3d00000000000000000000000000

Deployed Bytecode

0x60806040526004361061026a5760003560e01c806370a0823111610153578063a0712d68116100cb578063c87b56dd1161007f578063e985e9c511610064578063e985e9c514610670578063f2fde38b146106b9578063fdb4953a146106d957600080fd5b8063c87b56dd1461063b578063d111515d1461065b57600080fd5b8063b0551ac4116100b0578063b0551ac4146105db578063b88d4fde146105fb578063c4e9374d1461061b57600080fd5b8063a0712d68146105a8578063a22cb465146105bb57600080fd5b80638b85e43d116101225780638da5cb5b116101075780638da5cb5b1461055557806391b7f5ed1461057357806395d89b411461059357600080fd5b80638b85e43d1461051f5780638d859f3e1461053f57600080fd5b806370a08231146104b0578063715018a6146104d057806376d02b71146104e5578063841718a6146104ff57600080fd5b806332cb6b0c116101e657806342842e0e116101b557806355f804b31161019a57806355f804b314610450578063616cdb1e146104705780636352211e1461049057600080fd5b806342842e0e146104105780634f6ccce71461043057600080fd5b806332cb6b0c146103af5780633ccfd60b146103c55780634065b85f146103da578063408cbf94146103f057600080fd5b806309ef65271161023d57806318160ddd1161022257806318160ddd1461035a57806323b872dd1461036f5780632f745c591461038f57600080fd5b806309ef65271461032057806310b0c0521461034457600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a3660046122bd565b6106f3565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b9610760565b60405161029b9190612332565b3480156102d257600080fd5b506102e66102e1366004612345565b6107f2565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e61031936600461237a565b610892565b005b34801561032c57600080fd5b50610336600d5481565b60405190815260200161029b565b34801561035057600080fd5b50610336600c5481565b34801561036657600080fd5b50600054610336565b34801561037b57600080fd5b5061031e61038a3660046123a4565b6109aa565b34801561039b57600080fd5b506103366103aa36600461237a565b6109b5565b3480156103bb57600080fd5b50610336600a5481565b3480156103d157600080fd5b5061031e610b21565b3480156103e657600080fd5b50610336600f5481565b3480156103fc57600080fd5b5061031e61040b36600461237a565b610be8565b34801561041c57600080fd5b5061031e61042b3660046123a4565b610cf8565b34801561043c57600080fd5b5061033661044b366004612345565b610d13565b34801561045c57600080fd5b5061031e61046b36600461246c565b610d75565b34801561047c57600080fd5b5061031e61048b366004612345565b610e27565b34801561049c57600080fd5b506102e66104ab366004612345565b610e74565b3480156104bc57600080fd5b506103366104cb3660046124b5565b610e86565b3480156104dc57600080fd5b5061031e610f32565b3480156104f157600080fd5b50600e5461028f9060ff1681565b34801561050b57600080fd5b5061031e61051a3660046124e0565b610f86565b34801561052b57600080fd5b5061031e61053a366004612345565b610fe1565b34801561054b57600080fd5b5061033660095481565b34801561056157600080fd5b506007546001600160a01b03166102e6565b34801561057f57600080fd5b5061031e61058e366004612345565b61102e565b34801561059f57600080fd5b506102b961107b565b61031e6105b6366004612345565b61108a565b3480156105c757600080fd5b5061031e6105d63660046124fb565b61128b565b3480156105e757600080fd5b5061031e6105f6366004612345565b611350565b34801561060757600080fd5b5061031e61061636600461252e565b61139d565b34801561062757600080fd5b5061031e610636366004612345565b611422565b34801561064757600080fd5b506102b9610656366004612345565b611512565b34801561066757600080fd5b5061031e6115ee565b34801561067c57600080fd5b5061028f61068b3660046125aa565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106c557600080fd5b5061031e6106d43660046124b5565b611645565b3480156106e557600080fd5b5060105461028f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072457506001600160e01b03198216635b5e139f60e01b145b8061073f57506001600160e01b0319821663780e9d6360e01b145b8061075a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461076f906125d4565b80601f016020809104026020016040519081016040528092919081815260200182805461079b906125d4565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107ff826000541190565b6108765760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061089d82610e74565b9050806001600160a01b0316836001600160a01b0316141561090c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161086d565b336001600160a01b03821614806109285750610928813361068b565b61099a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161086d565b6109a5838383611715565b505050565b6109a583838361177e565b60006109c083610e86565b8210610a195760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086d565b600080549080805b83811015610ab2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a7457805192505b876001600160a01b0316836001600160a01b03161415610aa95786841415610aa25750935061075a92505050565b6001909301925b50600101610a21565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161086d565b6007546001600160a01b03163314610b695760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b60026008541415610bbc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086d565b600260085547610be073f4b6c3c82b19d1e8dfdff360f51fcc42c16758f782611aaf565b506001600855565b80600081118015610bfb5750600d548111155b610c475760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161086d565b600a5481600054610c589190612625565b1115610ca65760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161086d565b6007546001600160a01b03163314610cee5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b6109a58383611bc8565b6109a58383836040518060200160405280600081525061139d565b600080548210610d715760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161086d565b5090565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b60105460ff1615610e105760405162461bcd60e51b815260206004820152601060248201527f4d657461646174612066726f7a656e2100000000000000000000000000000000604482015260640161086d565b8051610e2390600b906020840190612217565b5050565b6007546001600160a01b03163314610e6f5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600d55565b6000610e7f82611be2565b5192915050565b60006001600160a01b038216610f045760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f2061646472657373000000000000000000000000000000000000000000606482015260840161086d565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b03163314610f7a5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b610f846000611ccc565b565b6007546001600160a01b03163314610fce5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600e805460ff1916911515919091179055565b6007546001600160a01b031633146110295760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600f55565b6007546001600160a01b031633146110765760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600955565b60606002805461076f906125d4565b8060008111801561109d5750600d548111155b6110e95760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000604482015260640161086d565b600a54816000546110fa9190612625565b11156111485760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c7920657863656564656421000000000000000000000000604482015260640161086d565b600e5460ff1661119a5760405162461bcd60e51b815260206004820152601360248201527f53616c65206973206e6f74206163746976652100000000000000000000000000604482015260640161086d565b6000826009546111aa919061263d565b9050600f5460005410156112315733600090815260116020526040812054600c546111d5919061265c565b9050801561122f5780841061120c576009546111f1908261263d565b6111fb908361265c565b91506112073382611d2b565b61122f565b600954611219908561263d565b611223908361265c565b915061122f3385611d2b565b505b803410156112815760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e64732100000000000000000000000000604482015260640161086d565b6109a53384611bc8565b6001600160a01b0382163314156112e45760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161086d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146113985760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600c55565b6113a884848461177e565b6113b484848484611d5c565b61141c5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161086d565b50505050565b6007546001600160a01b0316331461146a5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b600a5481106114bb5760405162461bcd60e51b815260206004820152601660248201527f496e76616c6964206e6577206d617820737570706c7900000000000000000000604482015260640161086d565b60005481101561150d5760405162461bcd60e51b815260206004820152601660248201527f496e76616c6964206e6577206d617820737570706c7900000000000000000000604482015260640161086d565b600a55565b606061151f826000541190565b6115915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161086d565b600061159b611ea7565b90508051600014156115bc57604051806020016040528060008152506115e7565b806115c684611eb6565b6040516020016115d7929190612673565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116365760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b6010805460ff19166001179055565b6007546001600160a01b0316331461168d5760405162461bcd60e51b8152602060048201819052602482015260008051602061276b833981519152604482015260640161086d565b6001600160a01b0381166117095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161086d565b61171281611ccc565b50565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178982611be2565b80519091506000906001600160a01b0316336001600160a01b031614806117c05750336117b5846107f2565b6001600160a01b0316145b806117d2575081516117d2903361068b565b9050806118475760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161086d565b846001600160a01b031682600001516001600160a01b0316146118d25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e65720000000000000000000000000000000000000000000000000000606482015260840161086d565b6001600160a01b03841661194e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161086d565b61195e6000848460000151611715565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a6557611a18816000541190565b15611a65578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015611aff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161086d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b4c576040519150601f19603f3d011682016040523d82523d6000602084013e611b51565b606091505b50509050806109a55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161086d565b610e23828260405180602001604052806000815250611fcc565b6040805180820190915260008082526020820152611c01826000541190565b611c735760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161086d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cc2579392505050565b5060001901611c75565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604081208054839290611d53908490612625565b90915550505050565b60006001600160a01b0384163b15611e9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611da09033908990889088906004016126a2565b6020604051808303816000875af1925050508015611ddb575060408051601f3d908101601f19168201909252611dd8918101906126de565b60015b611e81573d808015611e09576040519150601f19603f3d011682016040523d82523d6000602084013e611e0e565b606091505b508051611e795760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161086d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e9f565b5060015b949350505050565b6060600b805461076f906125d4565b606081611eda5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f045780611eee816126fb565b9150611efd9050600a8361272c565b9150611ede565b60008167ffffffffffffffff811115611f1f57611f1f6123e0565b6040519080825280601f01601f191660200182016040528015611f49576020820181803683370190505b5090505b8415611e9f57611f5e60018361265c565b9150611f6b600a86612740565b611f76906030612625565b60f81b818381518110611f8b57611f8b612754565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fc5600a8661272c565b9450611f4d565b6109a583838360016000546001600160a01b0385166120375760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161086d565b836120aa5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e2030000000000000000000000000000000000000000000000000606482015260840161086d565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000006fffffffffffffffffffffffffffffffff1982166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b8581101561220e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156122025761219a6000888488611d5c565b6122025760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161086d565b60019182019101612147565b50600055611aa8565b828054612223906125d4565b90600052602060002090601f016020900481019282612245576000855561228b565b82601f1061225e57805160ff191683800117855561228b565b8280016001018555821561228b579182015b8281111561228b578251825591602001919060010190612270565b50610d719291505b80821115610d715760008155600101612293565b6001600160e01b03198116811461171257600080fd5b6000602082840312156122cf57600080fd5b81356115e7816122a7565b60005b838110156122f55781810151838201526020016122dd565b8381111561141c5750506000910152565b6000815180845261231e8160208601602086016122da565b601f01601f19169290920160200192915050565b6020815260006115e76020830184612306565b60006020828403121561235757600080fd5b5035919050565b80356001600160a01b038116811461237557600080fd5b919050565b6000806040838503121561238d57600080fd5b6123968361235e565b946020939093013593505050565b6000806000606084860312156123b957600080fd5b6123c28461235e565b92506123d06020850161235e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612411576124116123e0565b604051601f8501601f19908116603f01168101908282118183101715612439576124396123e0565b8160405280935085815286868601111561245257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561247e57600080fd5b813567ffffffffffffffff81111561249557600080fd5b8201601f810184136124a657600080fd5b611e9f848235602084016123f6565b6000602082840312156124c757600080fd5b6115e78261235e565b8035801515811461237557600080fd5b6000602082840312156124f257600080fd5b6115e7826124d0565b6000806040838503121561250e57600080fd5b6125178361235e565b9150612525602084016124d0565b90509250929050565b6000806000806080858703121561254457600080fd5b61254d8561235e565b935061255b6020860161235e565b925060408501359150606085013567ffffffffffffffff81111561257e57600080fd5b8501601f8101871361258f57600080fd5b61259e878235602084016123f6565b91505092959194509250565b600080604083850312156125bd57600080fd5b6125c68361235e565b91506125256020840161235e565b600181811c908216806125e857607f821691505b6020821081141561260957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156126385761263861260f565b500190565b60008160001904831182151516156126575761265761260f565b500290565b60008282101561266e5761266e61260f565b500390565b600083516126858184602088016122da565b8351908301906126998183602088016122da565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126d46080830184612306565b9695505050505050565b6000602082840312156126f057600080fd5b81516115e7816122a7565b600060001982141561270f5761270f61260f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261273b5761273b612716565b500490565b60008261274f5761274f612716565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212206bd7e618ed7771fb82ec1f7145bca01a4fb5f91a294c21144162b83be2bde71864736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000001e6100000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6e6674736b696e736170692e636f6d2f6170692f76312f6d657461646174612f6765743f636f6c6c656374696f6e3d363231306538366439373831643730326634656365393037266e6f3d00000000000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 50000000000000000
Arg [1] : maxSupply (uint256): 7777
Arg [2] : baseUri (string): https://nftskinsapi.com/api/v1/metadata/get?collection=6210e86d9781d702f4ece907&no=
Arg [3] : freeMintAllowance (uint256): 10
Arg [4] : maxMintPerTx (uint256): 10
Arg [5] : isSaleActive (bool): False
Arg [6] : freeMintIsAllowedUntil (uint256): 500

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [8] : 68747470733a2f2f6e6674736b696e736170692e636f6d2f6170692f76312f6d
Arg [9] : 657461646174612f6765743f636f6c6c656374696f6e3d363231306538366439
Arg [10] : 373831643730326634656365393037266e6f3d00000000000000000000000000


Deployed Bytecode Sourcemap

42142:4122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28989:372;;;;;;;;;;-1:-1:-1;28989:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28989:372:0;;;;;;;;30875:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32437:214::-;;;;;;;;;;-1:-1:-1;32437:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:1;;;1674:74;;1662:2;1647:18;32437:214:0;1528:226:1;31958:413:0;;;;;;;;;;-1:-1:-1;31958:413:0;;;;;:::i;:::-;;:::i;:::-;;42375:37;;;;;;;;;;;;;;;;;;;2365:25:1;;;2353:2;2338:18;42375:37:0;2219:177:1;42327:41:0;;;;;;;;;;;;;;;;27246:100;;;;;;;;;;-1:-1:-1;27299:7:0;27326:12;27246:100;;33313:162;;;;;;;;;;-1:-1:-1;33313:162:0;;;;;:::i;:::-;;:::i;27910:1007::-;;;;;;;;;;-1:-1:-1;27910:1007:0;;;;;:::i;:::-;;:::i;42265:25::-;;;;;;;;;;;;;;;;46090:171;;;;;;;;;;;;;:::i;42452:41::-;;;;;;;;;;;;;;;;45819:144;;;;;;;;;;-1:-1:-1;45819:144:0;;;;;:::i;:::-;;:::i;33546:177::-;;;;;;;;;;-1:-1:-1;33546:177:0;;;;;:::i;:::-;;:::i;27423:187::-;;;;;;;;;;-1:-1:-1;27423:187:0;;;;;:::i;:::-;;:::i;43826:169::-;;;;;;;;;;-1:-1:-1;43826:169:0;;;;;:::i;:::-;;:::i;44152:122::-;;;;;;;;;;-1:-1:-1;44152:122:0;;;;;:::i;:::-;;:::i;30684:124::-;;;;;;;;;;-1:-1:-1;30684:124:0;;;;;:::i;:::-;;:::i;29425:221::-;;;;;;;;;;-1:-1:-1;29425:221:0;;;;;:::i;:::-;;:::i;24694:103::-;;;;;;;;;;;;;:::i;42419:26::-;;;;;;;;;;-1:-1:-1;42419:26:0;;;;;;;;44282:109;;;;;;;;;;-1:-1:-1;44282:109:0;;;;;:::i;:::-;;:::i;44399:154::-;;;;;;;;;;-1:-1:-1;44399:154:0;;;;;:::i;:::-;;:::i;42238:20::-;;;;;;;;;;;;;;;;24043:87;;;;;;;;;;-1:-1:-1;24116:6:0;;-1:-1:-1;;;;;24116:6:0;24043:87;;43460:96;;;;;;;;;;-1:-1:-1;43460:96:0;;;;;:::i;:::-;;:::i;31044:104::-;;;;;;;;;;;;;:::i;44932:879::-;;;;;;:::i;:::-;;:::i;32723:288::-;;;;;;;;;;-1:-1:-1;32723:288:0;;;;;:::i;:::-;;:::i;44003:141::-;;;;;;;;;;-1:-1:-1;44003:141:0;;;;;:::i;:::-;;:::i;33794:355::-;;;;;;;;;;-1:-1:-1;33794:355:0;;;;;:::i;:::-;;:::i;43564:254::-;;;;;;;;;;-1:-1:-1;43564:254:0;;;;;:::i;:::-;;:::i;31219:335::-;;;;;;;;;;-1:-1:-1;31219:335:0;;;;;:::i;:::-;;:::i;44561:86::-;;;;;;;;;;;;;:::i;33082:164::-;;;;;;;;;;-1:-1:-1;33082:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33203:25:0;;;33179:4;33203:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33082:164;24952:201;;;;;;;;;;-1:-1:-1;24952:201:0;;;;;:::i;:::-;;:::i;42537:27::-;;;;;;;;;;-1:-1:-1;42537:27:0;;;;;;;;28989:372;29091:4;-1:-1:-1;;;;;;29128:40:0;;-1:-1:-1;;;29128:40:0;;:105;;-1:-1:-1;;;;;;;29185:48:0;;-1:-1:-1;;;29185:48:0;29128:105;:172;;;-1:-1:-1;;;;;;;29250:50:0;;-1:-1:-1;;;29250:50:0;29128:172;:225;;;-1:-1:-1;;;;;;;;;;4500:40:0;;;29317:36;29108:245;28989:372;-1:-1:-1;;28989:372:0:o;30875:100::-;30929:13;30962:5;30955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30875:100;:::o;32437:214::-;32505:7;32533:16;32541:7;34461:4;34495:12;-1:-1:-1;34485:22:0;34404:111;32533:16;32525:74;;;;-1:-1:-1;;;32525:74:0;;6283:2:1;32525:74:0;;;6265:21:1;6322:2;6302:18;;;6295:30;6361:34;6341:18;;;6334:62;6432:15;6412:18;;;6405:43;6465:19;;32525:74:0;;;;;;;;;-1:-1:-1;32619:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32619:24:0;;32437:214::o;31958:413::-;32031:13;32047:24;32063:7;32047:15;:24::i;:::-;32031:40;;32096:5;-1:-1:-1;;;;;32090:11:0;:2;-1:-1:-1;;;;;32090:11:0;;;32082:58;;;;-1:-1:-1;;;32082:58:0;;6697:2:1;32082:58:0;;;6679:21:1;6736:2;6716:18;;;6709:30;6775:34;6755:18;;;6748:62;-1:-1:-1;;;6826:18:1;;;6819:32;6868:19;;32082:58:0;6495:398:1;32082:58:0;22904:10;-1:-1:-1;;;;;32175:21:0;;;;:62;;-1:-1:-1;32200:37:0;32217:5;22904:10;33082:164;:::i;32200:37::-;32153:169;;;;-1:-1:-1;;;32153:169:0;;7100:2:1;32153:169:0;;;7082:21:1;7139:2;7119:18;;;7112:30;7178:34;7158:18;;;7151:62;7249:27;7229:18;;;7222:55;7294:19;;32153:169:0;6898:421:1;32153:169:0;32335:28;32344:2;32348:7;32357:5;32335:8;:28::i;:::-;32020:351;31958:413;;:::o;33313:162::-;33439:28;33449:4;33455:2;33459:7;33439:9;:28::i;27910:1007::-;27999:7;28035:16;28045:5;28035:9;:16::i;:::-;28027:5;:24;28019:71;;;;-1:-1:-1;;;28019:71:0;;7526:2:1;28019:71:0;;;7508:21:1;7565:2;7545:18;;;7538:30;7604:34;7584:18;;;7577:62;-1:-1:-1;;;7655:18:1;;;7648:32;7697:19;;28019:71:0;7324:398:1;28019:71:0;28101:22;27326:12;;;28101:22;;28364:466;28384:14;28380:1;:18;28364:466;;;28424:31;28458:14;;;:11;:14;;;;;;;;;28424:48;;;;;;;;;-1:-1:-1;;;;;28424:48:0;;;;;-1:-1:-1;;;28424:48:0;;;;;;;;;;;;28495:28;28491:111;;28568:14;;;-1:-1:-1;28491:111:0;28645:5;-1:-1:-1;;;;;28624:26:0;:17;-1:-1:-1;;;;;28624:26:0;;28620:195;;;28694:5;28679:11;:20;28675:85;;;-1:-1:-1;28735:1:0;-1:-1:-1;28728:8:0;;-1:-1:-1;;;28728:8:0;28675:85;28782:13;;;;;28620:195;-1:-1:-1;28400:3:0;;28364:466;;;-1:-1:-1;28853:56:0;;-1:-1:-1;;;28853:56:0;;7929:2:1;28853:56:0;;;7911:21:1;7968:2;7948:18;;;7941:30;8007:34;7987:18;;;7980:62;8078:16;8058:18;;;8051:44;8112:19;;28853:56:0;7727:410:1;46090:171:0;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;2650:1:::1;3248:7;;:19;;3240:63;;;::::0;-1:-1:-1;;;3240:63:0;;8705:2:1;3240:63:0::1;::::0;::::1;8687:21:1::0;8744:2;8724:18;;;8717:30;8783:33;8763:18;;;8756:61;8834:18;;3240:63:0::1;8503:355:1::0;3240:63:0::1;2650:1;3381:7;:18:::0;46169:21:::2;46203:50;46039:42;46169:21:::0;46203:17:::2;:50::i;:::-;-1:-1:-1::0;2606:1:0::1;3560:7;:22:::0;46090:171::o;45819:144::-;45894:11;44753:1;44739:11;:15;:56;;;;;44773:22;;44758:11;:37;;44739:56;44731:89;;;;-1:-1:-1;;;44731:89:0;;9065:2:1;44731:89:0;;;9047:21:1;9104:2;9084:18;;;9077:30;9143:22;9123:18;;;9116:50;9183:18;;44731:89:0;8863:344:1;44731:89:0;44869:10;;44854:11;44839:12;;:26;;;;:::i;:::-;:40;;44831:73;;;;-1:-1:-1;;;44831:73:0;;9679:2:1;44831:73:0;;;9661:21:1;9718:2;9698:18;;;9691:30;9757:22;9737:18;;;9730:50;9797:18;;44831:73:0;9477:344:1;44831:73:0;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23:::1;24255:68;;;::::0;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0::1;::::0;::::1;8326:21:1::0;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0::1;8142:356:1::0;24255:68:0::1;45928:27:::2;45938:3;45943:11;45928:9;:27::i;33546:177::-:0;33676:39;33693:4;33699:2;33703:7;33676:39;;;;;;;;;;;;:16;:39::i;27423:187::-;27490:7;27326:12;;27518:5;:21;27510:69;;;;-1:-1:-1;;;27510:69:0;;10028:2:1;27510:69:0;;;10010:21:1;10067:2;10047:18;;;10040:30;10106:34;10086:18;;;10079:62;-1:-1:-1;;;10157:18:1;;;10150:33;10200:19;;27510:69:0;9826:399:1;27510:69:0;-1:-1:-1;27597:5:0;27423:187::o;43826:169::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;43915:15:::1;::::0;::::1;;43914:16;43906:45;;;::::0;-1:-1:-1;;;43906:45:0;;10432:2:1;43906:45:0::1;::::0;::::1;10414:21:1::0;10471:2;10451:18;;;10444:30;10510:18;10490;;;10483:46;10546:18;;43906:45:0::1;10230:340:1::0;43906:45:0::1;43962:25:::0;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43826:169:::0;:::o;44152:122::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;44229:22:::1;:37:::0;44152:122::o;30684:124::-;30748:7;30775:20;30787:7;30775:11;:20::i;:::-;:25;;30684:124;-1:-1:-1;;30684:124:0:o;29425:221::-;29489:7;-1:-1:-1;;;;;29517:19:0;;29509:75;;;;-1:-1:-1;;;29509:75:0;;10777:2:1;29509:75:0;;;10759:21:1;10816:2;10796:18;;;10789:30;10855:34;10835:18;;;10828:62;10926:13;10906:18;;;10899:41;10957:19;;29509:75:0;10575:407:1;29509:75:0;-1:-1:-1;;;;;;29610:19:0;;;;;:12;:19;;;;;:27;;;;29425:221::o;24694:103::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;24759:30:::1;24786:1;24759:18;:30::i;:::-;24694:103::o:0;44282:109::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;44354:14:::1;:29:::0;;-1:-1:-1;;44354:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44282:109::o;44399:154::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;44494:26:::1;:51:::0;44399:154::o;43460:96::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;43529:5:::1;:19:::0;43460:96::o;31044:104::-;31100:13;31133:7;31126:14;;;;;:::i;44932:879::-;44997:11;44753:1;44739:11;:15;:56;;;;;44773:22;;44758:11;:37;;44739:56;44731:89;;;;-1:-1:-1;;;44731:89:0;;9065:2:1;44731:89:0;;;9047:21:1;9104:2;9084:18;;;9077:30;9143:22;9123:18;;;9116:50;9183:18;;44731:89:0;8863:344:1;44731:89:0;44869:10;;44854:11;44839:12;;:26;;;;:::i;:::-;:40;;44831:73;;;;-1:-1:-1;;;44831:73:0;;9679:2:1;44831:73:0;;;9661:21:1;9718:2;9698:18;;;9691:30;9757:22;9737:18;;;9730:50;9797:18;;44831:73:0;9477:344:1;44831:73:0;45029:14:::1;::::0;::::1;;45021:46;;;::::0;-1:-1:-1;;;45021:46:0;;11189:2:1;45021:46:0::1;::::0;::::1;11171:21:1::0;11228:2;11208:18;;;11201:30;11267:21;11247:18;;;11240:49;11306:18;;45021:46:0::1;10987:343:1::0;45021:46:0::1;45080:13;45104:11;45096:5;;:19;;;;:::i;:::-;45080:35;;45147:26;;45132:12;;:41;45128:566;;;45264:10;45190:25;45247:28:::0;;;:16:::1;:28;::::0;;;;;45218:26:::1;::::0;:57:::1;::::0;45247:28;45218:57:::1;:::i;:::-;45190:85:::0;-1:-1:-1;45294:21:0;;45290:393:::1;;45355:17;45340:11;:32;45336:332;;45426:5;::::0;45406:25:::1;::::0;:17;:25:::1;:::i;:::-;45397:34;::::0;;::::1;:::i;:::-;;;45454:50;45474:10;45486:17;45454:19;:50::i;:::-;45336:332;;;45576:5;::::0;45562:19:::1;::::0;:11;:19:::1;:::i;:::-;45553:28;::::0;;::::1;:::i;:::-;;;45604:44;45624:10;45636:11;45604:19;:44::i;:::-;45175:519;45128:566;45727:5;45714:9;:18;;45706:50;;;::::0;-1:-1:-1;;;45706:50:0;;11840:2:1;45706:50:0::1;::::0;::::1;11822:21:1::0;11879:2;11859:18;;;11852:30;11918:21;11898:18;;;11891:49;11957:18;;45706:50:0::1;11638:343:1::0;45706:50:0::1;45769:34;45779:10;45791:11;45769:9;:34::i;32723:288::-:0;-1:-1:-1;;;;;32818:24:0;;22904:10;32818:24;;32810:63;;;;-1:-1:-1;;;32810:63:0;;12188:2:1;32810:63:0;;;12170:21:1;12227:2;12207:18;;;12200:30;12266:28;12246:18;;;12239:56;12312:18;;32810:63:0;11986:350:1;32810:63:0;22904:10;32886:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32886:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32886:53:0;;;;;;;;;;32955:48;;540:41:1;;;32886:42:0;;22904:10;32955:48;;513:18:1;32955:48:0;;;;;;;32723:288;;:::o;44003:141::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;44090:26:::1;:46:::0;44003:141::o;33794:355::-;33953:28;33963:4;33969:2;33973:7;33953:9;:28::i;:::-;34014:48;34037:4;34043:2;34047:7;34056:5;34014:22;:48::i;:::-;33992:149;;;;-1:-1:-1;;;33992:149:0;;12543:2:1;33992:149:0;;;12525:21:1;12582:2;12562:18;;;12555:30;12621:34;12601:18;;;12594:62;-1:-1:-1;;;12672:18:1;;;12665:49;12731:19;;33992:149:0;12341:415:1;33992:149:0;33794:355;;;;:::o;43564:254::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;43663:10:::1;;43648:12;:25;43640:60;;;::::0;-1:-1:-1;;;43640:60:0;;12963:2:1;43640:60:0::1;::::0;::::1;12945:21:1::0;13002:2;12982:18;;;12975:30;13041:24;13021:18;;;13014:52;13083:18;;43640:60:0::1;12761:346:1::0;43640:60:0::1;43735:12;;43719;:28;;43711:63;;;::::0;-1:-1:-1;;;43711:63:0;;12963:2:1;43711:63:0::1;::::0;::::1;12945:21:1::0;13002:2;12982:18;;;12975:30;13041:24;13021:18;;;13014:52;13083:18;;43711:63:0::1;12761:346:1::0;43711:63:0::1;43785:10;:25:::0;43564:254::o;31219:335::-;31292:13;31326:16;31334:7;34461:4;34495:12;-1:-1:-1;34485:22:0;34404:111;31326:16;31318:76;;;;-1:-1:-1;;;31318:76:0;;13314:2:1;31318:76:0;;;13296:21:1;13353:2;13333:18;;;13326:30;13392:34;13372:18;;;13365:62;13463:17;13443:18;;;13436:45;13498:19;;31318:76:0;13112:411:1;31318:76:0;31407:21;31431:10;:8;:10::i;:::-;31407:34;;31465:7;31459:21;31484:1;31459:26;;:87;;;;;;;;;;;;;;;;;31512:7;31521:18;:7;:16;:18::i;:::-;31495:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31459:87;31452:94;31219:335;-1:-1:-1;;;31219:335:0:o;44561:86::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;44617:15:::1;:22:::0;;-1:-1:-1;;44617:22:0::1;44635:4;44617:22;::::0;;44561:86::o;24952:201::-;24116:6;;-1:-1:-1;;;;;24116:6:0;22904:10;24263:23;24255:68;;;;-1:-1:-1;;;24255:68:0;;8344:2:1;24255:68:0;;;8326:21:1;;;8363:18;;;8356:30;-1:-1:-1;;;;;;;;;;;8402:18:1;;;8395:62;8474:18;;24255:68:0;8142:356:1;24255:68:0;-1:-1:-1;;;;;25041:22:0;::::1;25033:73;;;::::0;-1:-1:-1;;;25033:73:0;;14205:2:1;25033:73:0::1;::::0;::::1;14187:21:1::0;14244:2;14224:18;;;14217:30;14283:34;14263:18;;;14256:62;14354:8;14334:18;;;14327:36;14380:19;;25033:73:0::1;14003:402:1::0;25033:73:0::1;25117:28;25136:8;25117:18;:28::i;:::-;24952:201:::0;:::o;39324:196::-;39439:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;39439:29:0;-1:-1:-1;;;;;39439:29:0;;;;;;;;;39484:28;;39439:24;;39484:28;;;;;;;39324:196;;;:::o;37204:2002::-;37319:35;37357:20;37369:7;37357:11;:20::i;:::-;37432:18;;37319:58;;-1:-1:-1;37390:22:0;;-1:-1:-1;;;;;37416:34:0;22904:10;-1:-1:-1;;;;;37416:34:0;;:87;;;-1:-1:-1;22904:10:0;37467:20;37479:7;37467:11;:20::i;:::-;-1:-1:-1;;;;;37467:36:0;;37416:87;:154;;;-1:-1:-1;37537:18:0;;37520:50;;22904:10;33082:164;:::i;37520:50::-;37390:181;;37592:17;37584:80;;;;-1:-1:-1;;;37584:80:0;;14612:2:1;37584:80:0;;;14594:21:1;14651:2;14631:18;;;14624:30;14690:34;14670:18;;;14663:62;14761:20;14741:18;;;14734:48;14799:19;;37584:80:0;14410:414:1;37584:80:0;37707:4;-1:-1:-1;;;;;37685:26:0;:13;:18;;;-1:-1:-1;;;;;37685:26:0;;37677:77;;;;-1:-1:-1;;;37677:77:0;;15031:2:1;37677:77:0;;;15013:21:1;15070:2;15050:18;;;15043:30;15109:34;15089:18;;;15082:62;15180:8;15160:18;;;15153:36;15206:19;;37677:77:0;14829:402:1;37677:77:0;-1:-1:-1;;;;;37773:16:0;;37765:66;;;;-1:-1:-1;;;37765:66:0;;15438:2:1;37765:66:0;;;15420:21:1;15477:2;15457:18;;;15450:30;15516:34;15496:18;;;15489:62;15587:7;15567:18;;;15560:35;15612:19;;37765:66:0;15236:401:1;37765:66:0;37952:49;37969:1;37973:7;37982:13;:18;;;37952:8;:49::i;:::-;-1:-1:-1;;;;;38297:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38297:31:0;;;;;;;-1:-1:-1;;38297:31:0;;;;;;;38343:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38343:29:0;;;;;;;;;;;;;38389:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38434:61:0;;;;-1:-1:-1;;;38479:15:0;38434:61;;;;;;38769:11;;;38799:24;;;;;:29;38769:11;;38799:29;38795:295;;38867:20;38875:11;34461:4;34495:12;-1:-1:-1;34485:22:0;34404:111;38867:20;38863:212;;;38944:18;;;38912:24;;;:11;:24;;;;;;;;:50;;39027:28;;;;38985:70;;-1:-1:-1;;;38985:70:0;-1:-1:-1;;;;;;38985:70:0;;;-1:-1:-1;;;;;38912:50:0;;;38985:70;;;;;;;38863:212;38272:829;39137:7;39133:2;-1:-1:-1;;;;;39118:27:0;39127:4;-1:-1:-1;;;;;39118:27:0;;;;;;;;;;;39156:42;37308:1898;;37204:2002;;;:::o;8711:317::-;8826:6;8801:21;:31;;8793:73;;;;-1:-1:-1;;;8793:73:0;;15844:2:1;8793:73:0;;;15826:21:1;15883:2;15863:18;;;15856:30;15922:31;15902:18;;;15895:59;15971:18;;8793:73:0;15642:353:1;8793:73:0;8880:12;8898:9;-1:-1:-1;;;;;8898:14:0;8920:6;8898:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8879:52;;;8950:7;8942:78;;;;-1:-1:-1;;;8942:78:0;;16412:2:1;8942:78:0;;;16394:21:1;16451:2;16431:18;;;16424:30;16490:34;16470:18;;;16463:62;16561:28;16541:18;;;16534:56;16607:19;;8942:78:0;16210:422:1;34523:104:0;34592:27;34602:2;34606:8;34592:27;;;;;;;;;;;;:9;:27::i;30085:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;30188:16:0;30196:7;34461:4;34495:12;-1:-1:-1;34485:22:0;34404:111;30188:16;30180:71;;;;-1:-1:-1;;;30180:71:0;;16839:2:1;30180:71:0;;;16821:21:1;16878:2;16858:18;;;16851:30;16917:34;16897:18;;;16890:62;16988:12;16968:18;;;16961:40;17018:19;;30180:71:0;16637:406:1;30180:71:0;30309:7;30289:245;30356:31;30390:17;;;:11;:17;;;;;;;;;30356:51;;;;;;;;;-1:-1:-1;;;;;30356:51:0;;;;;-1:-1:-1;;;30356:51:0;;;;;;;;;;;;30430:28;30426:93;;30490:9;30085:537;-1:-1:-1;;;30085:537:0:o;30426:93::-;-1:-1:-1;;;30329:6:0;30289:245;;25313:191;25406:6;;;-1:-1:-1;;;;;25423:17:0;;;-1:-1:-1;;25423:17:0;;;;;;;25456:40;;25406:6;;;25423:17;25406:6;;25456:40;;25387:16;;25456:40;25376:128;25313:191;:::o;43169:120::-;-1:-1:-1;;;;;43248:24:0;;;;;;:16;:24;;;;;:33;;43276:5;;43248:24;:33;;43276:5;;43248:33;:::i;:::-;;;;-1:-1:-1;;;;43169:120:0:o;40085:804::-;40240:4;-1:-1:-1;;;;;40261:13:0;;7712:20;7760:8;40257:625;;40297:72;;-1:-1:-1;;;40297:72:0;;-1:-1:-1;;;;;40297:36:0;;;;;:72;;22904:10;;40348:4;;40354:7;;40363:5;;40297:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40297:72:0;;;;;;;;-1:-1:-1;;40297:72:0;;;;;;;;;;;;:::i;:::-;;;40293:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40543:13:0;;40539:273;;40586:61;;-1:-1:-1;;;40586:61:0;;12543:2:1;40586:61:0;;;12525:21:1;12582:2;12562:18;;;12555:30;12621:34;12601:18;;;12594:62;-1:-1:-1;;;12672:18:1;;;12665:49;12731:19;;40586:61:0;12341:415:1;40539:273:0;40762:6;40756:13;40747:6;40743:2;40739:15;40732:38;40293:534;-1:-1:-1;;;;;;40420:55:0;-1:-1:-1;;;40420:55:0;;-1:-1:-1;40413:62:0;;40257:625;-1:-1:-1;40866:4:0;40257:625;40085:804;;;;;;:::o;43320:109::-;43380:13;43413:8;43406:15;;;;;:::i;4866:723::-;4922:13;5143:10;5139:53;;-1:-1:-1;;5170:10:0;;;;;;;;;;;;-1:-1:-1;;;5170:10:0;;;;;4866:723::o;5139:53::-;5217:5;5202:12;5258:78;5265:9;;5258:78;;5291:8;;;;:::i;:::-;;-1:-1:-1;5314:10:0;;-1:-1:-1;5322:2:0;5314:10;;:::i;:::-;;;5258:78;;;5346:19;5378:6;5368:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5368:17:0;;5346:39;;5396:154;5403:10;;5396:154;;5430:11;5440:1;5430:11;;:::i;:::-;;-1:-1:-1;5499:10:0;5507:2;5499:5;:10;:::i;:::-;5486:24;;:2;:24;:::i;:::-;5473:39;;5456:6;5463;5456:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;5527:11:0;5536:2;5527:11;;:::i;:::-;;;5396:154;;34990:163;35113:32;35119:2;35123:8;35133:5;35140:4;35551:20;35574:12;-1:-1:-1;;;;;35605:16:0;;35597:62;;;;-1:-1:-1;;;35597:62:0;;19083:2:1;35597:62:0;;;19065:21:1;19122:2;19102:18;;;19095:30;19161:34;19141:18;;;19134:62;-1:-1:-1;;;19212:18:1;;;19205:31;19253:19;;35597:62:0;18881:397:1;35597:62:0;35678:13;35670:66;;;;-1:-1:-1;;;35670:66:0;;19485:2:1;35670:66:0;;;19467:21:1;19524:2;19504:18;;;19497:30;19563:34;19543:18;;;19536:62;19634:10;19614:18;;;19607:38;19662:19;;35670:66:0;19283:404:1;35670:66:0;-1:-1:-1;;;;;36088:16:0;;;;;;:12;:16;;;;;;;;:45;;36148:50;-1:-1:-1;;36088:45:0;;;;;;;;;;;;;36148:50;;;;;;;;;;;;;;36215:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;36265:66:0;;;;-1:-1:-1;;;36315:15:0;36265:66;;;;;;;36215:25;;36400:415;36420:8;36416:1;:12;36400:415;;;36459:38;;36484:12;;-1:-1:-1;;;;;36459:38:0;;;36476:1;;36459:38;;36476:1;;36459:38;36520:4;36516:249;;;36583:59;36614:1;36618:2;36622:12;36636:5;36583:22;:59::i;:::-;36549:196;;;;-1:-1:-1;;;36549:196:0;;12543:2:1;36549:196:0;;;12525:21:1;12582:2;12562:18;;;12555:30;12621:34;12601:18;;;12594:62;-1:-1:-1;;;12672:18:1;;;12665:49;12731:19;;36549:196:0;12341:415:1;36549:196:0;36785:14;;;;;36430:3;36400:415;;;-1:-1:-1;36831:12:0;:27;36882:60;33794:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1759:196::-;1827:20;;-1:-1:-1;;;;;1876:54:1;;1866:65;;1856:93;;1945:1;1942;1935:12;1856:93;1759:196;;;:::o;1960:254::-;2028:6;2036;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2128:29;2147:9;2128:29;:::i;:::-;2118:39;2204:2;2189:18;;;;2176:32;;-1:-1:-1;;;1960:254:1:o;2401:328::-;2478:6;2486;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;:::-;2576:39;;2634:38;2668:2;2657:9;2653:18;2634:38;:::i;:::-;2624:48;;2719:2;2708:9;2704:18;2691:32;2681:42;;2401:328;;;;;:::o;2734:127::-;2795:10;2790:3;2786:20;2783:1;2776:31;2826:4;2823:1;2816:15;2850:4;2847:1;2840:15;2866:632;2931:5;2961:18;3002:2;2994:6;2991:14;2988:40;;;3008:18;;:::i;:::-;3083:2;3077:9;3051:2;3137:15;;-1:-1:-1;;3133:24:1;;;3159:2;3129:33;3125:42;3113:55;;;3183:18;;;3203:22;;;3180:46;3177:72;;;3229:18;;:::i;:::-;3269:10;3265:2;3258:22;3298:6;3289:15;;3328:6;3320;3313:22;3368:3;3359:6;3354:3;3350:16;3347:25;3344:45;;;3385:1;3382;3375:12;3344:45;3435:6;3430:3;3423:4;3415:6;3411:17;3398:44;3490:1;3483:4;3474:6;3466;3462:19;3458:30;3451:41;;;;2866:632;;;;;:::o;3503:451::-;3572:6;3625:2;3613:9;3604:7;3600:23;3596:32;3593:52;;;3641:1;3638;3631:12;3593:52;3681:9;3668:23;3714:18;3706:6;3703:30;3700:50;;;3746:1;3743;3736:12;3700:50;3769:22;;3822:4;3814:13;;3810:27;-1:-1:-1;3800:55:1;;3851:1;3848;3841:12;3800:55;3874:74;3940:7;3935:2;3922:16;3917:2;3913;3909:11;3874:74;:::i;3959:186::-;4018:6;4071:2;4059:9;4050:7;4046:23;4042:32;4039:52;;;4087:1;4084;4077:12;4039:52;4110:29;4129:9;4110:29;:::i;4150:160::-;4215:20;;4271:13;;4264:21;4254:32;;4244:60;;4300:1;4297;4290:12;4315:180;4371:6;4424:2;4412:9;4403:7;4399:23;4395:32;4392:52;;;4440:1;4437;4430:12;4392:52;4463:26;4479:9;4463:26;:::i;4500:254::-;4565:6;4573;4626:2;4614:9;4605:7;4601:23;4597:32;4594:52;;;4642:1;4639;4632:12;4594:52;4665:29;4684:9;4665:29;:::i;:::-;4655:39;;4713:35;4744:2;4733:9;4729:18;4713:35;:::i;:::-;4703:45;;4500:254;;;;;:::o;4759:667::-;4854:6;4862;4870;4878;4931:3;4919:9;4910:7;4906:23;4902:33;4899:53;;;4948:1;4945;4938:12;4899:53;4971:29;4990:9;4971:29;:::i;:::-;4961:39;;5019:38;5053:2;5042:9;5038:18;5019:38;:::i;:::-;5009:48;;5104:2;5093:9;5089:18;5076:32;5066:42;;5159:2;5148:9;5144:18;5131:32;5186:18;5178:6;5175:30;5172:50;;;5218:1;5215;5208:12;5172:50;5241:22;;5294:4;5286:13;;5282:27;-1:-1:-1;5272:55:1;;5323:1;5320;5313:12;5272:55;5346:74;5412:7;5407:2;5394:16;5389:2;5385;5381:11;5346:74;:::i;:::-;5336:84;;;4759:667;;;;;;;:::o;5431:260::-;5499:6;5507;5560:2;5548:9;5539:7;5535:23;5531:32;5528:52;;;5576:1;5573;5566:12;5528:52;5599:29;5618:9;5599:29;:::i;:::-;5589:39;;5647:38;5681:2;5670:9;5666:18;5647:38;:::i;5696:380::-;5775:1;5771:12;;;;5818;;;5839:61;;5893:4;5885:6;5881:17;5871:27;;5839:61;5946:2;5938:6;5935:14;5915:18;5912:38;5909:161;;;5992:10;5987:3;5983:20;5980:1;5973:31;6027:4;6024:1;6017:15;6055:4;6052:1;6045:15;5909:161;;5696:380;;;:::o;9212:127::-;9273:10;9268:3;9264:20;9261:1;9254:31;9304:4;9301:1;9294:15;9328:4;9325:1;9318:15;9344:128;9384:3;9415:1;9411:6;9408:1;9405:13;9402:39;;;9421:18;;:::i;:::-;-1:-1:-1;9457:9:1;;9344:128::o;11335:168::-;11375:7;11441:1;11437;11433:6;11429:14;11426:1;11423:21;11418:1;11411:9;11404:17;11400:45;11397:71;;;11448:18;;:::i;:::-;-1:-1:-1;11488:9:1;;11335:168::o;11508:125::-;11548:4;11576:1;11573;11570:8;11567:34;;;11581:18;;:::i;:::-;-1:-1:-1;11618:9:1;;11508:125::o;13528:470::-;13707:3;13745:6;13739:13;13761:53;13807:6;13802:3;13795:4;13787:6;13783:17;13761:53;:::i;:::-;13877:13;;13836:16;;;;13899:57;13877:13;13836:16;13933:4;13921:17;;13899:57;:::i;:::-;13972:20;;13528:470;-1:-1:-1;;;;13528:470:1:o;17464:512::-;17658:4;-1:-1:-1;;;;;17768:2:1;17760:6;17756:15;17745:9;17738:34;17820:2;17812:6;17808:15;17803:2;17792:9;17788:18;17781:43;;17860:6;17855:2;17844:9;17840:18;17833:34;17903:3;17898:2;17887:9;17883:18;17876:31;17924:46;17965:3;17954:9;17950:19;17942:6;17924:46;:::i;:::-;17916:54;17464:512;-1:-1:-1;;;;;;17464:512:1:o;17981:249::-;18050:6;18103:2;18091:9;18082:7;18078:23;18074:32;18071:52;;;18119:1;18116;18109:12;18071:52;18151:9;18145:16;18170:30;18194:5;18170:30;:::i;18235:135::-;18274:3;-1:-1:-1;;18295:17:1;;18292:43;;;18315:18;;:::i;:::-;-1:-1:-1;18362:1:1;18351:13;;18235:135::o;18375:127::-;18436:10;18431:3;18427:20;18424:1;18417:31;18467:4;18464:1;18457:15;18491:4;18488:1;18481:15;18507:120;18547:1;18573;18563:35;;18578:18;;:::i;:::-;-1:-1:-1;18612:9:1;;18507:120::o;18632:112::-;18664:1;18690;18680:35;;18695:18;;:::i;:::-;-1:-1:-1;18729:9:1;;18632:112::o;18749:127::-;18810:10;18805:3;18801:20;18798:1;18791:31;18841:4;18838:1;18831:15;18865:4;18862:1;18855:15

Swarm Source

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