ETH Price: $2,615.25 (-2.24%)

Token

Townie (Townie)
 

Overview

Max Total Supply

21 Townie

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Townie
0x8db916fadb1c973d610346f0a1a8e4c81acf0390
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:
Townie

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol

// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract Townie is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public cost = 0.05 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 10;
    uint256 public tokenCount = 0;
    bool public paused = false;
    bool public reveal;
    string public baseURI;
    string public notRevealedURI;

    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _initBaseURI, string memory _initNotRevealedURI)
        ERC721A("Townie", "Townie")
    {
        baseURI = _initBaseURI;
        notRevealedURI = _initNotRevealedURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (reveal) {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            baseURI,
                            "/",
                            tokenId.toString(),
                            ".json"
                        )
                    )
                    : "";
        } else {
            return bytes(notRevealedURI).length > 0 ? notRevealedURI : "";
        }
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "Townie - The Contract is Paused");
        require(
            tokenCount + _amount <= maxSupply,
            "Townie - max NFT limit exceeded"
        );
        if (msg.sender != owner()) {
            require(
                _amount <= maxMintAmount,
                "Townie - max mint amount limit exceeded"
            );
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(
                ownerMintedCount + _amount <= maxMintAmount,
                "Townie - max NFT per address exceeded"
            );
            require(
                msg.value >= cost * _amount,
                "Townie - insufficient ethers"
            );
        }

        _safeMint(msg.sender, _amount);
        addressMintedBalance[msg.sender] += _amount;
        tokenCount += _amount;
    }

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

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
        maxMintAmount = _maxMintAmount;
    }

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

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

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","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":[],"name":"tokenCount","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"}]

608060405266b1a2bc2ec50000600955612710600a908155600b556000600c55600d805460ff191690553480156200003657600080fd5b50604051620022d9380380620022d98339810160408190526200005991620002bb565b604080518082018252600680825265546f776e696560d01b6020808401828152855180870190965292855284015281519192916200009a9160029162000148565b508051620000b090600390602084019062000148565b50506000805550620000c233620000f6565b8151620000d790600e90602085019062000148565b508051620000ed90600f90602084019062000148565b50505062000361565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001569062000325565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021657600080fd5b81516001600160401b0380821115620002335762000233620001ee565b604051601f8301601f19908116603f011681019082821181831017156200025e576200025e620001ee565b816040528381526020925086838588010111156200027b57600080fd5b600091505b838210156200029f578582018301518183018401529082019062000280565b83821115620002b15760008385830101525b9695505050505050565b60008060408385031215620002cf57600080fd5b82516001600160401b0380821115620002e757600080fd5b620002f58683870162000204565b935060208501519150808211156200030c57600080fd5b506200031b8582860162000204565b9150509250929050565b600181811c908216806200033a57607f821691505b6020821081036200035b57634e487b7160e01b600052602260045260246000fd5b50919050565b611f6880620003716000396000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d5780639f181b5e116100a0578063b88d4fde1161006f578063b88d4fde14610562578063c87b56dd14610582578063d5abeb01146105a2578063e985e9c5146105b8578063f2fde38b1461060157600080fd5b80639f181b5e146104fa578063a0712d6814610510578063a22cb46514610523578063a475b5dd1461054357600080fd5b806372250380116100dc578063722503801461049d5780638456cb59146104b25780638da5cb5b146104c757806395d89b41146104e557600080fd5b80636c0360eb146104335780636f8b44b01461044857806370a0823114610468578063715018a61461048857600080fd5b806318cae2691161019057806342842e0e1161015f57806342842e0e1461039957806344a0d68a146103b957806355f804b3146103d95780635c975abb146103f95780636352211e1461041357600080fd5b806318cae26914610321578063239c70ae1461034e57806323b872dd146103645780633ccfd60b1461038457600080fd5b8063088a4ed0116101cc578063088a4ed0146102a4578063095ea7b3146102c457806313faede6146102e457806318160ddd1461030857600080fd5b806301ffc9a7146101fe57806304b4bba91461023357806306fdde031461024a578063081812fc1461026c575b600080fd5b34801561020a57600080fd5b5061021e6102193660046119b2565b610621565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610673565b005b34801561025657600080fd5b5061025f6106c3565b60405161022a9190611a2e565b34801561027857600080fd5b5061028c610287366004611a41565b610755565b6040516001600160a01b03909116815260200161022a565b3480156102b057600080fd5b506102486102bf366004611a41565b610799565b3480156102d057600080fd5b506102486102df366004611a71565b6107c8565b3480156102f057600080fd5b506102fa60095481565b60405190815260200161022a565b34801561031457600080fd5b50600154600054036102fa565b34801561032d57600080fd5b506102fa61033c366004611a9b565b60106020526000908152604090205481565b34801561035a57600080fd5b506102fa600b5481565b34801561037057600080fd5b5061024861037f366004611ab6565b610855565b34801561039057600080fd5b50610248610860565b3480156103a557600080fd5b506102486103b4366004611ab6565b610979565b3480156103c557600080fd5b506102486103d4366004611a41565b610994565b3480156103e557600080fd5b506102486103f4366004611b7e565b6109c3565b34801561040557600080fd5b50600d5461021e9060ff1681565b34801561041f57600080fd5b5061028c61042e366004611a41565b610a04565b34801561043f57600080fd5b5061025f610a16565b34801561045457600080fd5b50610248610463366004611a41565b610aa4565b34801561047457600080fd5b506102fa610483366004611a9b565b610ad3565b34801561049457600080fd5b50610248610b22565b3480156104a957600080fd5b5061025f610b58565b3480156104be57600080fd5b50610248610b65565b3480156104d357600080fd5b506008546001600160a01b031661028c565b3480156104f157600080fd5b5061025f610ba3565b34801561050657600080fd5b506102fa600c5481565b61024861051e366004611a41565b610bb2565b34801561052f57600080fd5b5061024861053e366004611bc7565b610dfa565b34801561054f57600080fd5b50600d5461021e90610100900460ff1681565b34801561056e57600080fd5b5061024861057d366004611c03565b610e8f565b34801561058e57600080fd5b5061025f61059d366004611a41565b610ee0565b3480156105ae57600080fd5b506102fa600a5481565b3480156105c457600080fd5b5061021e6105d3366004611c7f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060d57600080fd5b5061024861061c366004611a9b565b61107c565b60006001600160e01b031982166380ac58cd60e01b148061065257506001600160e01b03198216635b5e139f60e01b145b8061066d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106a65760405162461bcd60e51b815260040161069d90611cb2565b60405180910390fd5b600d805461ff001981166101009182900460ff1615909102179055565b6060600280546106d290611ce7565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90611ce7565b801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b600061076082611117565b61077d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146107c35760405162461bcd60e51b815260040161069d90611cb2565b600b55565b60006107d382610a04565b9050806001600160a01b0316836001600160a01b0316036108075760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610827575061082581336105d3565b155b15610845576040516367d9dca160e11b815260040160405180910390fd5b610850838383611142565b505050565b61085083838361119e565b6008546001600160a01b0316331461088a5760405162461bcd60e51b815260040161069d90611cb2565b47600073eaa13156a5d2651832164ecc8302c40fd2c401a160646108af84600a611d37565b6108b99190611d6c565b604051600081818185875af1925050503d80600081146108f5576040519150601f19603f3d011682016040523d82523d6000602084013e6108fa565b606091505b505090508061090857600080fd5b600061091c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610966576040519150601f19603f3d011682016040523d82523d6000602084013e61096b565b606091505b505090508061085057600080fd5b61085083838360405180602001604052806000815250610e8f565b6008546001600160a01b031633146109be5760405162461bcd60e51b815260040161069d90611cb2565b600955565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260040161069d90611cb2565b8051610a0090600e906020840190611903565b5050565b6000610a0f826113b4565b5192915050565b600e8054610a2390611ce7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4f90611ce7565b8015610a9c5780601f10610a7157610100808354040283529160200191610a9c565b820191906000526020600020905b815481529060010190602001808311610a7f57829003601f168201915b505050505081565b6008546001600160a01b03163314610ace5760405162461bcd60e51b815260040161069d90611cb2565b600a55565b60006001600160a01b038216610afc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b4c5760405162461bcd60e51b815260040161069d90611cb2565b610b5660006114d0565b565b600f8054610a2390611ce7565b6008546001600160a01b03163314610b8f5760405162461bcd60e51b815260040161069d90611cb2565b600d805460ff19811660ff90911615179055565b6060600380546106d290611ce7565b600d5460ff1615610c055760405162461bcd60e51b815260206004820152601f60248201527f546f776e6965202d2054686520436f6e74726163742069732050617573656400604482015260640161069d565b600a5481600c54610c169190611d80565b1115610c645760405162461bcd60e51b815260206004820152601f60248201527f546f776e6965202d206d6178204e4654206c696d697420657863656564656400604482015260640161069d565b6008546001600160a01b03163314610db057600b54811115610cd85760405162461bcd60e51b815260206004820152602760248201527f546f776e6965202d206d6178206d696e7420616d6f756e74206c696d697420656044820152661e18d95959195960ca1b606482015260840161069d565b33600090815260106020526040902054600b54610cf58383611d80565b1115610d515760405162461bcd60e51b815260206004820152602560248201527f546f776e6965202d206d6178204e465420706572206164647265737320657863604482015264195959195960da1b606482015260840161069d565b81600954610d5f9190611d37565b341015610dae5760405162461bcd60e51b815260206004820152601c60248201527f546f776e6965202d20696e73756666696369656e742065746865727300000000604482015260640161069d565b505b610dba3382611522565b3360009081526010602052604081208054839290610dd9908490611d80565b9250508190555080600c6000828254610df29190611d80565b909155505050565b336001600160a01b03831603610e235760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9a84848461119e565b6001600160a01b0383163b15158015610ebc5750610eba8484848461153c565b155b15610eda576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eeb82611117565b610f4f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069d565b600d54610100900460ff1615610fbb576000600e8054610f6e90611ce7565b905011610f8a576040518060200160405280600081525061066d565b600e610f9583611628565b604051602001610fa6929190611db4565b60405160208183030381529060405292915050565b6000600f8054610fca90611ce7565b905011610fe6576040518060200160405280600081525061066d565b600f8054610ff390611ce7565b80601f016020809104026020016040519081016040528092919081815260200182805461101f90611ce7565b801561106c5780601f106110415761010080835404028352916020019161106c565b820191906000526020600020905b81548152906001019060200180831161104f57829003601f168201915b505050505092915050565b919050565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260040161069d90611cb2565b6001600160a01b03811661110b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069d565b611114816114d0565b50565b600080548210801561066d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111a9826113b4565b80519091506000906001600160a01b0316336001600160a01b031614806111d7575081516111d790336105d3565b806111f25750336111e784610755565b6001600160a01b0316145b90508061121257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112475760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661126e57604051633a954ecd60e21b815260040160405180910390fd5b61127e6000848460000151611142565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661136a5760005481101561136a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156114b757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114b55780516001600160a01b03161561144b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114b0579392505050565b61144b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a00828260405180602001604052806000815250611729565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611571903390899088908890600401611e7e565b6020604051808303816000875af19250505080156115ac575060408051601f3d908101601f191682019092526115a991810190611ebb565b60015b61160a573d8080156115da576040519150601f19603f3d011682016040523d82523d6000602084013e6115df565b606091505b508051600003611602576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361164f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611679578061166381611ed8565b91506116729050600a83611d6c565b9150611653565b60008167ffffffffffffffff81111561169457611694611af2565b6040519080825280601f01601f1916602001820160405280156116be576020820181803683370190505b5090505b8415611620576116d3600183611ef1565b91506116e0600a86611f08565b6116eb906030611d80565b60f81b81838151811061170057611700611f1c565b60200101906001600160f81b031916908160001a905350611722600a86611d6c565b94506116c2565b61085083838360016000546001600160a01b03851661175a57604051622e076360e81b815260040160405180910390fd5b8360000361177b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561182d57506001600160a01b0387163b15155b156118b5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461187e600088848060010195508861153c565b61189b576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118335782600054146118b057600080fd5b6118fa565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036118b6575b506000556113ad565b82805461190f90611ce7565b90600052602060002090601f0160209004810192826119315760008555611977565b82601f1061194a57805160ff1916838001178555611977565b82800160010185558215611977579182015b8281111561197757825182559160200191906001019061195c565b50611983929150611987565b5090565b5b808211156119835760008155600101611988565b6001600160e01b03198116811461111457600080fd5b6000602082840312156119c457600080fd5b81356119cf8161199c565b9392505050565b60005b838110156119f15781810151838201526020016119d9565b83811115610eda5750506000910152565b60008151808452611a1a8160208601602086016119d6565b601f01601f19169290920160200192915050565b6020815260006119cf6020830184611a02565b600060208284031215611a5357600080fd5b5035919050565b80356001600160a01b038116811461107757600080fd5b60008060408385031215611a8457600080fd5b611a8d83611a5a565b946020939093013593505050565b600060208284031215611aad57600080fd5b6119cf82611a5a565b600080600060608486031215611acb57600080fd5b611ad484611a5a565b9250611ae260208501611a5a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b2357611b23611af2565b604051601f8501601f19908116603f01168101908282118183101715611b4b57611b4b611af2565b81604052809350858152868686011115611b6457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b9057600080fd5b813567ffffffffffffffff811115611ba757600080fd5b8201601f81018413611bb857600080fd5b61162084823560208401611b08565b60008060408385031215611bda57600080fd5b611be383611a5a565b915060208301358015158114611bf857600080fd5b809150509250929050565b60008060008060808587031215611c1957600080fd5b611c2285611a5a565b9350611c3060208601611a5a565b925060408501359150606085013567ffffffffffffffff811115611c5357600080fd5b8501601f81018713611c6457600080fd5b611c7387823560208401611b08565b91505092959194509250565b60008060408385031215611c9257600080fd5b611c9b83611a5a565b9150611ca960208401611a5a565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611cfb57607f821691505b602082108103611d1b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d5157611d51611d21565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611d7b57611d7b611d56565b500490565b60008219821115611d9357611d93611d21565b500190565b60008151611daa8185602086016119d6565b9290920192915050565b600080845481600182811c915080831680611dd057607f831692505b60208084108203611def57634e487b7160e01b86526022600452602486fd5b818015611e035760018114611e1457611e41565b60ff19861689528489019650611e41565b60008b81526020902060005b86811015611e395781548b820152908501908301611e20565b505084890196505b505050505050611e75611e64611e5e83602f60f81b815260010190565b86611d98565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eb190830184611a02565b9695505050505050565b600060208284031215611ecd57600080fd5b81516119cf8161199c565b600060018201611eea57611eea611d21565b5060010190565b600082821015611f0357611f03611d21565b500390565b600082611f1757611f17611d56565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208ecadde9a0b2fd52557eb7b742bacca244670e52963d7cb1f74d1eb2e0bc960d64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000742617365757269000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d63576e6a7476797474746b36794a517068544a6274756d434a4c6d7957575331595877635464514852446d390000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c0360eb1161010d5780639f181b5e116100a0578063b88d4fde1161006f578063b88d4fde14610562578063c87b56dd14610582578063d5abeb01146105a2578063e985e9c5146105b8578063f2fde38b1461060157600080fd5b80639f181b5e146104fa578063a0712d6814610510578063a22cb46514610523578063a475b5dd1461054357600080fd5b806372250380116100dc578063722503801461049d5780638456cb59146104b25780638da5cb5b146104c757806395d89b41146104e557600080fd5b80636c0360eb146104335780636f8b44b01461044857806370a0823114610468578063715018a61461048857600080fd5b806318cae2691161019057806342842e0e1161015f57806342842e0e1461039957806344a0d68a146103b957806355f804b3146103d95780635c975abb146103f95780636352211e1461041357600080fd5b806318cae26914610321578063239c70ae1461034e57806323b872dd146103645780633ccfd60b1461038457600080fd5b8063088a4ed0116101cc578063088a4ed0146102a4578063095ea7b3146102c457806313faede6146102e457806318160ddd1461030857600080fd5b806301ffc9a7146101fe57806304b4bba91461023357806306fdde031461024a578063081812fc1461026c575b600080fd5b34801561020a57600080fd5b5061021e6102193660046119b2565b610621565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610673565b005b34801561025657600080fd5b5061025f6106c3565b60405161022a9190611a2e565b34801561027857600080fd5b5061028c610287366004611a41565b610755565b6040516001600160a01b03909116815260200161022a565b3480156102b057600080fd5b506102486102bf366004611a41565b610799565b3480156102d057600080fd5b506102486102df366004611a71565b6107c8565b3480156102f057600080fd5b506102fa60095481565b60405190815260200161022a565b34801561031457600080fd5b50600154600054036102fa565b34801561032d57600080fd5b506102fa61033c366004611a9b565b60106020526000908152604090205481565b34801561035a57600080fd5b506102fa600b5481565b34801561037057600080fd5b5061024861037f366004611ab6565b610855565b34801561039057600080fd5b50610248610860565b3480156103a557600080fd5b506102486103b4366004611ab6565b610979565b3480156103c557600080fd5b506102486103d4366004611a41565b610994565b3480156103e557600080fd5b506102486103f4366004611b7e565b6109c3565b34801561040557600080fd5b50600d5461021e9060ff1681565b34801561041f57600080fd5b5061028c61042e366004611a41565b610a04565b34801561043f57600080fd5b5061025f610a16565b34801561045457600080fd5b50610248610463366004611a41565b610aa4565b34801561047457600080fd5b506102fa610483366004611a9b565b610ad3565b34801561049457600080fd5b50610248610b22565b3480156104a957600080fd5b5061025f610b58565b3480156104be57600080fd5b50610248610b65565b3480156104d357600080fd5b506008546001600160a01b031661028c565b3480156104f157600080fd5b5061025f610ba3565b34801561050657600080fd5b506102fa600c5481565b61024861051e366004611a41565b610bb2565b34801561052f57600080fd5b5061024861053e366004611bc7565b610dfa565b34801561054f57600080fd5b50600d5461021e90610100900460ff1681565b34801561056e57600080fd5b5061024861057d366004611c03565b610e8f565b34801561058e57600080fd5b5061025f61059d366004611a41565b610ee0565b3480156105ae57600080fd5b506102fa600a5481565b3480156105c457600080fd5b5061021e6105d3366004611c7f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060d57600080fd5b5061024861061c366004611a9b565b61107c565b60006001600160e01b031982166380ac58cd60e01b148061065257506001600160e01b03198216635b5e139f60e01b145b8061066d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106a65760405162461bcd60e51b815260040161069d90611cb2565b60405180910390fd5b600d805461ff001981166101009182900460ff1615909102179055565b6060600280546106d290611ce7565b80601f01602080910402602001604051908101604052809291908181526020018280546106fe90611ce7565b801561074b5780601f106107205761010080835404028352916020019161074b565b820191906000526020600020905b81548152906001019060200180831161072e57829003601f168201915b5050505050905090565b600061076082611117565b61077d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146107c35760405162461bcd60e51b815260040161069d90611cb2565b600b55565b60006107d382610a04565b9050806001600160a01b0316836001600160a01b0316036108075760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610827575061082581336105d3565b155b15610845576040516367d9dca160e11b815260040160405180910390fd5b610850838383611142565b505050565b61085083838361119e565b6008546001600160a01b0316331461088a5760405162461bcd60e51b815260040161069d90611cb2565b47600073eaa13156a5d2651832164ecc8302c40fd2c401a160646108af84600a611d37565b6108b99190611d6c565b604051600081818185875af1925050503d80600081146108f5576040519150601f19603f3d011682016040523d82523d6000602084013e6108fa565b606091505b505090508061090857600080fd5b600061091c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610966576040519150601f19603f3d011682016040523d82523d6000602084013e61096b565b606091505b505090508061085057600080fd5b61085083838360405180602001604052806000815250610e8f565b6008546001600160a01b031633146109be5760405162461bcd60e51b815260040161069d90611cb2565b600955565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260040161069d90611cb2565b8051610a0090600e906020840190611903565b5050565b6000610a0f826113b4565b5192915050565b600e8054610a2390611ce7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4f90611ce7565b8015610a9c5780601f10610a7157610100808354040283529160200191610a9c565b820191906000526020600020905b815481529060010190602001808311610a7f57829003601f168201915b505050505081565b6008546001600160a01b03163314610ace5760405162461bcd60e51b815260040161069d90611cb2565b600a55565b60006001600160a01b038216610afc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b4c5760405162461bcd60e51b815260040161069d90611cb2565b610b5660006114d0565b565b600f8054610a2390611ce7565b6008546001600160a01b03163314610b8f5760405162461bcd60e51b815260040161069d90611cb2565b600d805460ff19811660ff90911615179055565b6060600380546106d290611ce7565b600d5460ff1615610c055760405162461bcd60e51b815260206004820152601f60248201527f546f776e6965202d2054686520436f6e74726163742069732050617573656400604482015260640161069d565b600a5481600c54610c169190611d80565b1115610c645760405162461bcd60e51b815260206004820152601f60248201527f546f776e6965202d206d6178204e4654206c696d697420657863656564656400604482015260640161069d565b6008546001600160a01b03163314610db057600b54811115610cd85760405162461bcd60e51b815260206004820152602760248201527f546f776e6965202d206d6178206d696e7420616d6f756e74206c696d697420656044820152661e18d95959195960ca1b606482015260840161069d565b33600090815260106020526040902054600b54610cf58383611d80565b1115610d515760405162461bcd60e51b815260206004820152602560248201527f546f776e6965202d206d6178204e465420706572206164647265737320657863604482015264195959195960da1b606482015260840161069d565b81600954610d5f9190611d37565b341015610dae5760405162461bcd60e51b815260206004820152601c60248201527f546f776e6965202d20696e73756666696369656e742065746865727300000000604482015260640161069d565b505b610dba3382611522565b3360009081526010602052604081208054839290610dd9908490611d80565b9250508190555080600c6000828254610df29190611d80565b909155505050565b336001600160a01b03831603610e235760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9a84848461119e565b6001600160a01b0383163b15158015610ebc5750610eba8484848461153c565b155b15610eda576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eeb82611117565b610f4f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069d565b600d54610100900460ff1615610fbb576000600e8054610f6e90611ce7565b905011610f8a576040518060200160405280600081525061066d565b600e610f9583611628565b604051602001610fa6929190611db4565b60405160208183030381529060405292915050565b6000600f8054610fca90611ce7565b905011610fe6576040518060200160405280600081525061066d565b600f8054610ff390611ce7565b80601f016020809104026020016040519081016040528092919081815260200182805461101f90611ce7565b801561106c5780601f106110415761010080835404028352916020019161106c565b820191906000526020600020905b81548152906001019060200180831161104f57829003601f168201915b505050505092915050565b919050565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260040161069d90611cb2565b6001600160a01b03811661110b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069d565b611114816114d0565b50565b600080548210801561066d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111a9826113b4565b80519091506000906001600160a01b0316336001600160a01b031614806111d7575081516111d790336105d3565b806111f25750336111e784610755565b6001600160a01b0316145b90508061121257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112475760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661126e57604051633a954ecd60e21b815260040160405180910390fd5b61127e6000848460000151611142565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661136a5760005481101561136a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156114b757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114b55780516001600160a01b03161561144b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114b0579392505050565b61144b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a00828260405180602001604052806000815250611729565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611571903390899088908890600401611e7e565b6020604051808303816000875af19250505080156115ac575060408051601f3d908101601f191682019092526115a991810190611ebb565b60015b61160a573d8080156115da576040519150601f19603f3d011682016040523d82523d6000602084013e6115df565b606091505b508051600003611602576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361164f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611679578061166381611ed8565b91506116729050600a83611d6c565b9150611653565b60008167ffffffffffffffff81111561169457611694611af2565b6040519080825280601f01601f1916602001820160405280156116be576020820181803683370190505b5090505b8415611620576116d3600183611ef1565b91506116e0600a86611f08565b6116eb906030611d80565b60f81b81838151811061170057611700611f1c565b60200101906001600160f81b031916908160001a905350611722600a86611d6c565b94506116c2565b61085083838360016000546001600160a01b03851661175a57604051622e076360e81b815260040160405180910390fd5b8360000361177b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561182d57506001600160a01b0387163b15155b156118b5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461187e600088848060010195508861153c565b61189b576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118335782600054146118b057600080fd5b6118fa565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036118b6575b506000556113ad565b82805461190f90611ce7565b90600052602060002090601f0160209004810192826119315760008555611977565b82601f1061194a57805160ff1916838001178555611977565b82800160010185558215611977579182015b8281111561197757825182559160200191906001019061195c565b50611983929150611987565b5090565b5b808211156119835760008155600101611988565b6001600160e01b03198116811461111457600080fd5b6000602082840312156119c457600080fd5b81356119cf8161199c565b9392505050565b60005b838110156119f15781810151838201526020016119d9565b83811115610eda5750506000910152565b60008151808452611a1a8160208601602086016119d6565b601f01601f19169290920160200192915050565b6020815260006119cf6020830184611a02565b600060208284031215611a5357600080fd5b5035919050565b80356001600160a01b038116811461107757600080fd5b60008060408385031215611a8457600080fd5b611a8d83611a5a565b946020939093013593505050565b600060208284031215611aad57600080fd5b6119cf82611a5a565b600080600060608486031215611acb57600080fd5b611ad484611a5a565b9250611ae260208501611a5a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b2357611b23611af2565b604051601f8501601f19908116603f01168101908282118183101715611b4b57611b4b611af2565b81604052809350858152868686011115611b6457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b9057600080fd5b813567ffffffffffffffff811115611ba757600080fd5b8201601f81018413611bb857600080fd5b61162084823560208401611b08565b60008060408385031215611bda57600080fd5b611be383611a5a565b915060208301358015158114611bf857600080fd5b809150509250929050565b60008060008060808587031215611c1957600080fd5b611c2285611a5a565b9350611c3060208601611a5a565b925060408501359150606085013567ffffffffffffffff811115611c5357600080fd5b8501601f81018713611c6457600080fd5b611c7387823560208401611b08565b91505092959194509250565b60008060408385031215611c9257600080fd5b611c9b83611a5a565b9150611ca960208401611a5a565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611cfb57607f821691505b602082108103611d1b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d5157611d51611d21565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611d7b57611d7b611d56565b500490565b60008219821115611d9357611d93611d21565b500190565b60008151611daa8185602086016119d6565b9290920192915050565b600080845481600182811c915080831680611dd057607f831692505b60208084108203611def57634e487b7160e01b86526022600452602486fd5b818015611e035760018114611e1457611e41565b60ff19861689528489019650611e41565b60008b81526020902060005b86811015611e395781548b820152908501908301611e20565b505084890196505b505050505050611e75611e64611e5e83602f60f81b815260010190565b86611d98565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eb190830184611a02565b9695505050505050565b600060208284031215611ecd57600080fd5b81516119cf8161199c565b600060018201611eea57611eea611d21565b5060010190565b600082821015611f0357611f03611d21565b500390565b600082611f1757611f17611d56565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208ecadde9a0b2fd52557eb7b742bacca244670e52963d7cb1f74d1eb2e0bc960d64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000742617365757269000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d63576e6a7476797474746b36794a517068544a6274756d434a4c6d7957575331595877635464514852446d390000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): Baseuri
Arg [1] : _initNotRevealedURI (string): ipfs://QmcWnjtvytttk6yJQphTJbtumCJLmyWWS1YXwcTdQHRDm9

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 4261736575726900000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [5] : 697066733a2f2f516d63576e6a7476797474746b36794a517068544a6274756d
Arg [6] : 434a4c6d7957575331595877635464514852446d390000000000000000000000


Deployed Bytecode Sourcemap

47191:3292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26409:355;;;;;;;;;;-1:-1:-1;26409:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26409:355:0;;;;;;;;50040:75;;;;;;;;;;;;;:::i;:::-;;29876:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31476:245::-;;;;;;;;;;-1:-1:-1;31476:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;31476:245:0;1550:203:1;49625:116:0;;;;;;;;;;-1:-1:-1;49625:116:0;;;;;:::i;:::-;;:::i;31039:371::-;;;;;;;;;;-1:-1:-1;31039:371:0;;;;;:::i;:::-;;:::i;47266:32::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;47266:32:0;2195:177:1;25658:303:0;;;;;;;;;;-1:-1:-1;25912:12:0;;25702:7;25896:13;:28;25658:303;;47543:55;;;;;;;;;;-1:-1:-1;47543:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;47344:33;;;;;;;;;;;;;;;;32447:170;;;;;;;;;;-1:-1:-1;32447:170:0;;;;;:::i;:::-;;:::i;50123:357::-;;;;;;;;;;;;;:::i;32688:185::-;;;;;;;;;;-1:-1:-1;32688:185:0;;;;;:::i;:::-;;:::i;49531:86::-;;;;;;;;;;-1:-1:-1;49531:86:0;;;;;:::i;:::-;;:::i;49749:98::-;;;;;;;;;;-1:-1:-1;49749:98:0;;;;;:::i;:::-;;:::i;47420:26::-;;;;;;;;;;-1:-1:-1;47420:26:0;;;;;;;;29685:124;;;;;;;;;;-1:-1:-1;29685:124:0;;;;;:::i;:::-;;:::i;47478:21::-;;;;;;;;;;;;;:::i;49932:100::-;;;;;;;;;;-1:-1:-1;49932:100:0;;;;;:::i;:::-;;:::i;26828:206::-;;;;;;;;;;-1:-1:-1;26828:206:0;;;;;:::i;:::-;;:::i;46310:103::-;;;;;;;;;;;;;:::i;47506:28::-;;;;;;;;;;;;;:::i;49855:69::-;;;;;;;;;;;;;:::i;45659:87::-;;;;;;;;;;-1:-1:-1;45732:6:0;;-1:-1:-1;;;;;45732:6:0;45659:87;;30045:104;;;;;;;;;;;;;:::i;47384:29::-;;;;;;;;;;;;;;;;48581:924;;;;;;:::i;:::-;;:::i;31793:302::-;;;;;;;;;;-1:-1:-1;31793:302:0;;;;;:::i;:::-;;:::i;47453:18::-;;;;;;;;;;-1:-1:-1;47453:18:0;;;;;;;;;;;32944:406;;;;;;;;;;-1:-1:-1;32944:406:0;;;;;:::i;:::-;;:::i;47820:753::-;;;;;;;;;;-1:-1:-1;47820:753:0;;;;;:::i;:::-;;:::i;47305:32::-;;;;;;;;;;;;;;;;32166:214;;;;;;;;;;-1:-1:-1;32166:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32337:25:0;;;32308:4;32337:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32166:214;46568:238;;;;;;;;;;-1:-1:-1;46568:238:0;;;;;:::i;:::-;;:::i;26409:355::-;26556:4;-1:-1:-1;;;;;;26598:40:0;;-1:-1:-1;;;26598:40:0;;:105;;-1:-1:-1;;;;;;;26655:48:0;;-1:-1:-1;;;26655:48:0;26598:105;:158;;;-1:-1:-1;;;;;;;;;;14065:40:0;;;26720:36;26578:178;26409:355;-1:-1:-1;;26409:355:0:o;50040:75::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;;;;;;;;;50101:6:::1;::::0;;-1:-1:-1;;50091:16:0;::::1;50101:6;::::0;;;::::1;;;50100:7;50091:16:::0;;::::1;;::::0;;50040:75::o;29876:100::-;29930:13;29963:5;29956:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29876:100;:::o;31476:245::-;31580:7;31610:16;31618:7;31610;:16::i;:::-;31605:64;;31635:34;;-1:-1:-1;;;31635:34:0;;;;;;;;;;;31605:64;-1:-1:-1;31689:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31689:24:0;;31476:245::o;49625:116::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;49703:13:::1;:30:::0;49625:116::o;31039:371::-;31112:13;31128:24;31144:7;31128:15;:24::i;:::-;31112:40;;31173:5;-1:-1:-1;;;;;31167:11:0;:2;-1:-1:-1;;;;;31167:11:0;;31163:48;;31187:24;;-1:-1:-1;;;31187:24:0;;;;;;;;;;;31163:48;21803:10;-1:-1:-1;;;;;31228:21:0;;;;;;:63;;-1:-1:-1;31254:37:0;31271:5;21803:10;32166:214;:::i;31254:37::-;31253:38;31228:63;31224:138;;;31315:35;;-1:-1:-1;;;31315:35:0;;;;;;;;;;;31224:138;31374:28;31383:2;31387:7;31396:5;31374:8;:28::i;:::-;31101:309;31039:371;;:::o;32447:170::-;32581:28;32591:4;32597:2;32601:7;32581:9;:28::i;50123:357::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;50188:21:::1;50171:14;50243:42;50329:3;50314:11;50188:21:::0;50323:2:::1;50314:11;:::i;:::-;50313:19;;;;:::i;:::-;50235:112;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50220:127;;;50366:3;50358:12;;;::::0;::::1;;50382:7;50403;45732:6:::0;;-1:-1:-1;;;;;45732:6:0;;45659:87;50403:7:::1;-1:-1:-1::0;;;;;50395:21:0::1;50424;50395:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50381:69;;;50469:2;50461:11;;;::::0;::::1;32688:185:::0;32826:39;32843:4;32849:2;32853:7;32826:39;;;;;;;;;;;;:16;:39::i;49531:86::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;49594:4:::1;:15:::0;49531:86::o;49749:98::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;49821:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49749:98:::0;:::o;29685:124::-;29749:7;29776:20;29788:7;29776:11;:20::i;:::-;:25;;29685:124;-1:-1:-1;;29685:124:0:o;47478:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49932:100::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;50002:9:::1;:22:::0;49932:100::o;26828:206::-;26892:7;-1:-1:-1;;;;;26916:19:0;;26912:60;;26944:28;;-1:-1:-1;;;26944:28:0;;;;;;;;;;;26912:60;-1:-1:-1;;;;;;26998:19:0;;;;;:12;:19;;;;;:27;;;;26828:206::o;46310:103::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;46375:30:::1;46402:1;46375:18;:30::i;:::-;46310:103::o:0;47506:28::-;;;;;;;:::i;49855:69::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;49910:6:::1;::::0;;-1:-1:-1;;49900:16:0;::::1;49910:6;::::0;;::::1;49909:7;49900:16;::::0;;49855:69::o;30045:104::-;30101:13;30134:7;30127:14;;;;;:::i;48581:924::-;48649:6;;;;48648:7;48640:51;;;;-1:-1:-1;;;48640:51:0;;7135:2:1;48640:51:0;;;7117:21:1;7174:2;7154:18;;;7147:30;7213:33;7193:18;;;7186:61;7264:18;;48640:51:0;6933:355:1;48640:51:0;48748:9;;48737:7;48724:10;;:20;;;;:::i;:::-;:33;;48702:114;;;;-1:-1:-1;;;48702:114:0;;7628:2:1;48702:114:0;;;7610:21:1;7667:2;7647:18;;;7640:30;7706:33;7686:18;;;7679:61;7757:18;;48702:114:0;7426:355:1;48702:114:0;45732:6;;-1:-1:-1;;;;;45732:6:0;48831:10;:21;48827:542;;48906:13;;48895:7;:24;;48869:125;;;;-1:-1:-1;;;48869:125:0;;7988:2:1;48869:125:0;;;7970:21:1;8027:2;8007:18;;;8000:30;8066:34;8046:18;;;8039:62;-1:-1:-1;;;8117:18:1;;;8110:37;8164:19;;48869:125:0;7786:403:1;48869:125:0;49057:10;49009:24;49036:32;;;:20;:32;;;;;;49139:13;;49109:26;49128:7;49036:32;49109:26;:::i;:::-;:43;;49083:142;;;;-1:-1:-1;;;49083:142:0;;8396:2:1;49083:142:0;;;8378:21:1;8435:2;8415:18;;;8408:30;8474:34;8454:18;;;8447:62;-1:-1:-1;;;8525:18:1;;;8518:35;8570:19;;49083:142:0;8194:401:1;49083:142:0;49286:7;49279:4;;:14;;;;:::i;:::-;49266:9;:27;;49240:117;;;;-1:-1:-1;;;49240:117:0;;8802:2:1;49240:117:0;;;8784:21:1;8841:2;8821:18;;;8814:30;8880;8860:18;;;8853:58;8928:18;;49240:117:0;8600:352:1;49240:117:0;48854:515;48827:542;49381:30;49391:10;49403:7;49381:9;:30::i;:::-;49443:10;49422:32;;;;:20;:32;;;;;:43;;49458:7;;49422:32;:43;;49458:7;;49422:43;:::i;:::-;;;;;;;;49490:7;49476:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;48581:924:0:o;31793:302::-;21803:10;-1:-1:-1;;;;;31907:24:0;;;31903:54;;31940:17;;-1:-1:-1;;;31940:17:0;;;;;;;;;;;31903:54;21803:10;31970:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31970:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31970:53:0;;;;;;;;;;32039:48;;540:41:1;;;31970:42:0;;21803:10;32039:48;;513:18:1;32039:48:0;;;;;;;31793:302;;:::o;32944:406::-;33111:28;33121:4;33127:2;33131:7;33111:9;:28::i;:::-;-1:-1:-1;;;;;33168:13:0;;3659:19;:23;;33168:89;;;;;33201:56;33232:4;33238:2;33242:7;33251:5;33201:30;:56::i;:::-;33200:57;33168:89;33150:193;;;33291:40;;-1:-1:-1;;;33291:40:0;;;;;;;;;;;33150:193;32944:406;;;;:::o;47820:753::-;47921:13;47974:16;47982:7;47974;:16::i;:::-;47952:113;;;;-1:-1:-1;;;47952:113:0;;9159:2:1;47952:113:0;;;9141:21:1;9198:2;9178:18;;;9171:30;9237:34;9217:18;;;9210:62;-1:-1:-1;;;9288:18:1;;;9281:45;9343:19;;47952:113:0;8957:411:1;47952:113:0;48080:6;;;;;;;48076:490;;;48151:1;48133:7;48127:21;;;;;:::i;:::-;;;:25;:333;;;;;;;;;;;;;;;;;48256:7;48328:18;:7;:16;:18::i;:::-;48209:202;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48103:357;47820:753;-1:-1:-1;;47820:753:0:o;48076:490::-;48531:1;48506:14;48500:28;;;;;:::i;:::-;;;:32;:54;;;;;;;;;;;;;;;;;48535:14;48500:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48493:61;47820:753;-1:-1:-1;;47820:753:0:o;48076:490::-;47820:753;;;:::o;46568:238::-;45732:6;;-1:-1:-1;;;;;45732:6:0;21803:10;45879:23;45871:68;;;;-1:-1:-1;;;45871:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46671:22:0;::::1;46649:110;;;::::0;-1:-1:-1;;;46649:110:0;;11566:2:1;46649:110:0::1;::::0;::::1;11548:21:1::0;11605:2;11585:18;;;11578:30;11644:34;11624:18;;;11617:62;-1:-1:-1;;;11695:18:1;;;11688:36;11741:19;;46649:110:0::1;11364:402:1::0;46649:110:0::1;46770:28;46789:8;46770:18;:28::i;:::-;46568:238:::0;:::o;33605:213::-;33662:4;33752:13;;33742:7;:23;33699:111;;;;-1:-1:-1;;33783:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33783:27:0;;;;33782:28;;33605:213::o;41485:196::-;41600:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41600:29:0;-1:-1:-1;;;;;41600:29:0;;;;;;;;;41645:28;;41600:24;;41645:28;;;;;;;41485:196;;;:::o;36935:2138::-;37050:35;37088:20;37100:7;37088:11;:20::i;:::-;37163:18;;37050:58;;-1:-1:-1;37121:22:0;;-1:-1:-1;;;;;37147:34:0;21803:10;-1:-1:-1;;;;;37147:34:0;;:101;;;-1:-1:-1;37215:18:0;;37198:50;;21803:10;32166:214;:::i;37198:50::-;37147:154;;;-1:-1:-1;21803:10:0;37265:20;37277:7;37265:11;:20::i;:::-;-1:-1:-1;;;;;37265:36:0;;37147:154;37121:181;;37320:17;37315:66;;37346:35;;-1:-1:-1;;;37346:35:0;;;;;;;;;;;37315:66;37418:4;-1:-1:-1;;;;;37396:26:0;:13;:18;;;-1:-1:-1;;;;;37396:26:0;;37392:67;;37431:28;;-1:-1:-1;;;37431:28:0;;;;;;;;;;;37392:67;-1:-1:-1;;;;;37474:16:0;;37470:52;;37499:23;;-1:-1:-1;;;37499:23:0;;;;;;;;;;;37470:52;37643:49;37660:1;37664:7;37673:13;:18;;;37643:8;:49::i;:::-;-1:-1:-1;;;;;37988:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37988:31:0;;;;;;;-1:-1:-1;;37988:31:0;;;;;;;38034:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38034:29:0;;;;;;;;;;;38080:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38125:61:0;;;;-1:-1:-1;;;38170:15:0;38125:61;;;;;;;;;;;38460:11;;;38490:24;;;;;:29;38460:11;;38490:29;38486:471;;38715:13;;38701:11;:27;38697:245;;;38785:18;;;38753:24;;;:11;:24;;;;;;;;:50;;38868:54;;;;38826:96;;-1:-1:-1;;;38826:96:0;-1:-1:-1;;;;;;38826:96:0;;;-1:-1:-1;;;;;38753:50:0;;;38826:96;;;;;;;38697:245;37963:1005;39004:7;39000:2;-1:-1:-1;;;;;38985:27:0;38994:4;-1:-1:-1;;;;;38985:27:0;;;;;;;;;;;39023:42;37039:2034;;36935:2138;;;:::o;28483:1140::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28625:7:0;28708:13;;28701:4;:20;28670:886;;;28742:31;28776:17;;;:11;:17;;;;;;;;;28742:51;;;;;;;;;-1:-1:-1;;;;;28742:51:0;;;;-1:-1:-1;;;28742:51:0;;;;;;;;;;;-1:-1:-1;;;28742:51:0;;;;;;;;;;;;;;28812:729;;28862:14;;-1:-1:-1;;;;;28862:28:0;;28858:101;;28926:9;28483:1140;-1:-1:-1;;;28483:1140:0:o;28858:101::-;-1:-1:-1;;;29301:6:0;29346:17;;;;:11;:17;;;;;;;;;29334:29;;;;;;;;;-1:-1:-1;;;;;29334:29:0;;;;;-1:-1:-1;;;29334:29:0;;;;;;;;;;;-1:-1:-1;;;29334:29:0;;;;;;;;;;;;;29394:28;29390:109;;29462:9;28483:1140;-1:-1:-1;;;28483:1140:0:o;29390:109::-;29261:261;;;28723:833;28670:886;29584:31;;-1:-1:-1;;;29584:31:0;;;;;;;;;;;46966:191;47059:6;;;-1:-1:-1;;;;;47076:17:0;;;-1:-1:-1;;;;;;47076:17:0;;;;;;;47109:40;;47059:6;;;47076:17;47059:6;;47109:40;;47040:16;;47109:40;47029:128;46966:191;:::o;33826:104::-;33895:27;33905:2;33909:8;33895:27;;;;;;;;;;;;:9;:27::i;42173:772::-;42370:155;;-1:-1:-1;;;42370:155:0;;42336:4;;-1:-1:-1;;;;;42370:36:0;;;;;:155;;21803:10;;42456:4;;42479:7;;42505:5;;42370:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42370:155:0;;;;;;;;-1:-1:-1;;42370:155:0;;;;;;;;;;;;:::i;:::-;;;42353:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42696:6;:13;42713:1;42696:18;42692:235;;42742:40;;-1:-1:-1;;;42742:40:0;;;;;;;;;;;42692:235;42885:6;42879:13;42870:6;42866:2;42862:15;42855:38;42353:585;-1:-1:-1;;;;;;42581:55:0;-1:-1:-1;;;42581:55:0;;-1:-1:-1;42353:585:0;42173:772;;;;;;:::o;342:723::-;398:13;619:5;628:1;619:10;615:53;;-1:-1:-1;;646:10:0;;;;;;;;;;;;-1:-1:-1;;;646:10:0;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:0;;-1:-1:-1;798:2:0;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:0;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:0;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:0;;;;;;;;-1:-1:-1;1003:11:0;1012:2;1003:11;;:::i;:::-;;;872:154;;34293:163;34416:32;34422:2;34426:8;34436:5;34443:4;34854:20;34877:13;-1:-1:-1;;;;;34905:16:0;;34901:48;;34930:19;;-1:-1:-1;;;34930:19:0;;;;;;;;;;;34901:48;34964:8;34976:1;34964:13;34960:44;;34986:18;;-1:-1:-1;;;34986:18:0;;;;;;;;;;;34960:44;-1:-1:-1;;;;;35355:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35414:49:0;;35355:44;;;;;;;;35414:49;;;;-1:-1:-1;;35355:44:0;;;;;;35414:49;;;;;;;;;;;;;;;;35480:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35530:66:0;;;;-1:-1:-1;;;35580:15:0;35530:66;;;;;;;;;;35480:25;35677:23;;;35721:4;:23;;;;-1:-1:-1;;;;;;35729:13:0;;3659:19;:23;;35729:15;35717:832;;;35765:505;35796:38;;35821:12;;-1:-1:-1;;;;;35796:38:0;;;35813:1;;35796:38;;35813:1;;35796:38;35888:212;35957:1;35990:2;36023:14;;;;;;36068:5;35888:30;:212::i;:::-;35857:365;;36158:40;;-1:-1:-1;;;36158:40:0;;;;;;;;;;;35857:365;36265:3;36249:12;:19;35765:505;;36351:12;36334:13;;:29;36330:43;;36365:8;;;36330:43;35717:832;;;36414:120;36445:40;;36470:14;;;;;-1:-1:-1;;;;;36445:40:0;;;36462:1;;36445:40;;36462:1;;36445:40;36529:3;36513:12;:19;36414:120;;35717:832;-1:-1:-1;36563:13:0;:28;36613:60;32944:406;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:356::-;5617:2;5599:21;;;5636:18;;;5629:30;5695:34;5690:2;5675:18;;5668:62;5762:2;5747:18;;5415:356::o;5776:380::-;5855:1;5851:12;;;;5898;;;5919:61;;5973:4;5965:6;5961:17;5951:27;;5919:61;6026:2;6018:6;6015:14;5995:18;5992:38;5989:161;;6072:10;6067:3;6063:20;6060:1;6053:31;6107:4;6104:1;6097:15;6135:4;6132:1;6125:15;5989:161;;5776:380;;;:::o;6161:127::-;6222:10;6217:3;6213:20;6210:1;6203:31;6253:4;6250:1;6243:15;6277:4;6274:1;6267:15;6293:168;6333:7;6399:1;6395;6391:6;6387:14;6384:1;6381:21;6376:1;6369:9;6362:17;6358:45;6355:71;;;6406:18;;:::i;:::-;-1:-1:-1;6446:9:1;;6293:168::o;6466:127::-;6527:10;6522:3;6518:20;6515:1;6508:31;6558:4;6555:1;6548:15;6582:4;6579:1;6572:15;6598:120;6638:1;6664;6654:35;;6669:18;;:::i;:::-;-1:-1:-1;6703:9:1;;6598:120::o;7293:128::-;7333:3;7364:1;7360:6;7357:1;7354:13;7351:39;;;7370:18;;:::i;:::-;-1:-1:-1;7406:9:1;;7293:128::o;9618:185::-;9660:3;9698:5;9692:12;9713:52;9758:6;9753:3;9746:4;9739:5;9735:16;9713:52;:::i;:::-;9781:16;;;;;9618:185;-1:-1:-1;;9618:185:1:o;9926:1433::-;10304:3;10333:1;10366:6;10360:13;10396:3;10418:1;10446:9;10442:2;10438:18;10428:28;;10506:2;10495:9;10491:18;10528;10518:61;;10572:4;10564:6;10560:17;10550:27;;10518:61;10598:2;10646;10638:6;10635:14;10615:18;10612:38;10609:165;;-1:-1:-1;;;10673:33:1;;10729:4;10726:1;10719:15;10759:4;10680:3;10747:17;10609:165;10790:18;10817:104;;;;10935:1;10930:320;;;;10783:467;;10817:104;-1:-1:-1;;10850:24:1;;10838:37;;10895:16;;;;-1:-1:-1;10817:104:1;;10930:320;9446:1;9439:14;;;9483:4;9470:18;;11025:1;11039:165;11053:6;11050:1;11047:13;11039:165;;;11131:14;;11118:11;;;11111:35;11174:16;;;;11068:10;;11039:165;;;11043:3;;11233:6;11228:3;11224:16;11217:23;;10783:467;;;;;;;11266:87;11291:61;11317:34;11347:3;-1:-1:-1;;;9564:16:1;;9605:1;9596:11;;9499:114;11317:34;11309:6;11291:61;:::i;:::-;-1:-1:-1;;;9868:20:1;;9913:1;9904:11;;9808:113;11266:87;11259:94;9926:1433;-1:-1:-1;;;;;9926:1433:1:o;11771:500::-;-1:-1:-1;;;;;12040:15:1;;;12022:34;;12092:15;;12087:2;12072:18;;12065:43;12139:2;12124:18;;12117:34;;;12187:3;12182:2;12167:18;;12160:31;;;11965:4;;12208:57;;12245:19;;12237:6;12208:57;:::i;:::-;12200:65;11771:500;-1:-1:-1;;;;;;11771:500:1:o;12276:249::-;12345:6;12398:2;12386:9;12377:7;12373:23;12369:32;12366:52;;;12414:1;12411;12404:12;12366:52;12446:9;12440:16;12465:30;12489:5;12465:30;:::i;12530:135::-;12569:3;12590:17;;;12587:43;;12610:18;;:::i;:::-;-1:-1:-1;12657:1:1;12646:13;;12530:135::o;12670:125::-;12710:4;12738:1;12735;12732:8;12729:34;;;12743:18;;:::i;:::-;-1:-1:-1;12780:9:1;;12670:125::o;12800:112::-;12832:1;12858;12848:35;;12863:18;;:::i;:::-;-1:-1:-1;12897:9:1;;12800:112::o;12917:127::-;12978:10;12973:3;12969:20;12966:1;12959:31;13009:4;13006:1;12999:15;13033:4;13030:1;13023:15

Swarm Source

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