ETH Price: $3,399.99 (+6.66%)
Gas: 18 Gwei

Token

ColorTokenArt (Color)
 

Overview

Max Total Supply

3,154 Color

Holders

624

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
plurio.eth
Balance
5 Color
0x549ae637381f77c13bb0e9308a0d8f56769f4dc4
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:
ColoredTokenArt

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
contract TestContract {
// Some logic
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: 000.sol


pragma solidity ^0.8.9;





contract ColoredTokenArt is ERC721A, Ownable, ReentrancyGuard { 

    uint256 public _maxSupply = 5555;
    uint256 public _mintPrice = 0.002 ether;
    uint256 public _maxMintPerTx = 10;

    uint256 public _maxFreeMintPerAddr = 5;
    uint256 public _maxFreeMintSupply = 3000;
    uint256 public revealTimeStamp = block.timestamp+86400*2 ; 

    string private _baseURIExtended;
    string private _preRevealURI;
    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor(string memory initBaseURI) ERC721A("ColorTokenArt", "Color") {
    }

    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        ); if (block.timestamp >= revealTimeStamp) {
        return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"));
    }
    {
      return _preRevealURI;
    }
    }
    function setRevealTimestamp(uint256 newRevealTimeStamp) external onlyOwner {
    revealTimeStamp = newRevealTimeStamp;
  }
  function setPreRevealURI(string memory preRevealURI) external onlyOwner {
    _preRevealURI = preRevealURI;
  }
  function setBaseURI(string memory baseURI_) external onlyOwner {
    _baseURIExtended = baseURI_;
  }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }

    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTimeStamp","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":"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":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI","type":"string"}],"name":"setPreRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRevealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526115b3600a90815566071afd498d0000600b55600c556005600d55610bb8600e5562000034426202a3006200013b565b600f553480156200004457600080fd5b5060405162001f4a38038062001f4a833981016040819052620000679162000178565b6040518060400160405280600d81526020016c10dbdb1bdc951bdad95b905c9d609a1b8152506040518060400160405280600581526020016421b7b637b960d91b8152508160029081620000bc9190620002e3565b506003620000cb8282620002e3565b50506000805550620000dd33620000e9565b506001600955620003af565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082198211156200015d57634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200018c57600080fd5b82516001600160401b0380821115620001a457600080fd5b818501915085601f830112620001b957600080fd5b815181811115620001ce57620001ce62000162565b604051601f8201601f19908116603f01168101908382118183101715620001f957620001f962000162565b8160405282815288868487010111156200021257600080fd5b600093505b8284101562000236578484018601518185018701529285019262000217565b82841115620002485760008684830101525b98975050505050505050565b600181811c908216806200026957607f821691505b6020821081036200028a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002de57600081815260208120601f850160051c81016020861015620002b95750805b601f850160051c820191505b81811015620002da57828155600101620002c5565b5050505b505050565b81516001600160401b03811115620002ff57620002ff62000162565b620003178162000310845462000254565b8462000290565b602080601f8311600181146200034f5760008415620003365750858301515b600019600386901b1c1916600185901b178555620002da565b600085815260208120601f198616915b8281101562000380578886015182559484019460019091019084016200035f565b50858210156200039f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b8b80620003bf6000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd146104fb578063de314a591461051b578063e985e9c514610531578063f2fde38b1461057a57600080fd5b80639cb57d2014610492578063a0712d68146104a8578063a22cb465146104bb578063b88d4fde146104db57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041f57806391b7f5ed1461043d57806392910eec1461045d57806395d89b411461047d57600080fd5b80636c0360eb146103bf57806370a08231146103d4578063715018a6146103f457806371f9c5341461040957600080fd5b806322f4596f1161017a57806342842e0e1161014957806342842e0e1461034957806355f804b3146103695780635e1c4b60146103895780636352211e1461039f57600080fd5b806322f4596f146102eb57806323b872dd146103015780632a85db55146103215780633ccfd60b1461034157600080fd5b806306fdde03116101b657806306fdde0314610258578063081812fc1461027a578063095ea7b3146102b257806318160ddd146102d257600080fd5b8063018a2c37146101dd57806301ffc9a7146101ff5780630387da4214610234575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461155a565b61059a565b005b34801561020b57600080fd5b5061021f61021a366004611589565b6105d2565b60405190151581526020015b60405180910390f35b34801561024057600080fd5b5061024a600b5481565b60405190815260200161022b565b34801561026457600080fd5b5061026d610624565b60405161022b91906115fe565b34801561028657600080fd5b5061029a61029536600461155a565b6106b6565b6040516001600160a01b03909116815260200161022b565b3480156102be57600080fd5b506101fd6102cd36600461162d565b6106fa565b3480156102de57600080fd5b506001546000540361024a565b3480156102f757600080fd5b5061024a600a5481565b34801561030d57600080fd5b506101fd61031c366004611657565b6107cc565b34801561032d57600080fd5b506101fd61033c36600461171f565b6107dc565b6101fd610816565b34801561035557600080fd5b506101fd610364366004611657565b6108f4565b34801561037557600080fd5b506101fd61038436600461171f565b61090f565b34801561039557600080fd5b5061024a600e5481565b3480156103ab57600080fd5b5061029a6103ba36600461155a565b610945565b3480156103cb57600080fd5b5061026d610950565b3480156103e057600080fd5b5061024a6103ef366004611768565b6109de565b34801561040057600080fd5b506101fd610a2d565b34801561041557600080fd5b5061024a600f5481565b34801561042b57600080fd5b506008546001600160a01b031661029a565b34801561044957600080fd5b506101fd61045836600461155a565b610a63565b34801561046957600080fd5b506101fd61047836600461155a565b610a92565b34801561048957600080fd5b5061026d610ac1565b34801561049e57600080fd5b5061024a600d5481565b6101fd6104b636600461155a565b610ad0565b3480156104c757600080fd5b506101fd6104d6366004611783565b610c86565b3480156104e757600080fd5b506101fd6104f63660046117bf565b610d1b565b34801561050757600080fd5b5061026d61051636600461155a565b610d65565b34801561052757600080fd5b5061024a600c5481565b34801561053d57600080fd5b5061021f61054c36600461183b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506101fd610595366004611768565b610ea7565b6008546001600160a01b031633146105cd5760405162461bcd60e51b81526004016105c49061186e565b60405180910390fd5b600f55565b60006301ffc9a760e01b6001600160e01b03198316148061060357506380ac58cd60e01b6001600160e01b03198316145b8061061e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610633906118a3565b80601f016020809104026020016040519081016040528092919081815260200182805461065f906118a3565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b5050505050905090565b60006106c182610f42565b6106de576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061070582610f69565b9050806001600160a01b0316836001600160a01b0316036107395760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461077057610753813361054c565b610770576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107d7838383610fd7565b505050565b6008546001600160a01b031633146108065760405162461bcd60e51b81526004016105c49061186e565b6011610812828261192b565b5050565b6008546001600160a01b031633146108405760405162461bcd60e51b81526004016105c49061186e565b6002600954036108925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c4565b6002600955604051600090339047908381818185875af1925050503d80600081146108d9576040519150601f19603f3d011682016040523d82523d6000602084013e6108de565b606091505b50509050806108ec57600080fd5b506001600955565b6107d783838360405180602001604052806000815250610d1b565b6008546001600160a01b031633146109395760405162461bcd60e51b81526004016105c49061186e565b6010610812828261192b565b600061061e82610f69565b6012805461095d906118a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610989906118a3565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b505050505081565b60006001600160a01b038216610a07576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a575760405162461bcd60e51b81526004016105c49061186e565b610a61600061117e565b565b6008546001600160a01b03163314610a8d5760405162461bcd60e51b81526004016105c49061186e565b600b55565b6008546001600160a01b03163314610abc5760405162461bcd60e51b81526004016105c49061186e565b600e55565b606060038054610633906118a3565b600b54600e54600090610ae4906001611a01565b83610af26001546000540390565b610afc9190611a01565b108015610b255750600d5433600090815260136020526040902054610b22908590611a01565b11155b80610b3a57506008546001600160a01b031633145b90508015610b4757600091505b610b518284611a19565b341015610ba05760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016105c4565b600a54610bae906001611a01565b83610bbc6001546000540390565b610bc69190611a01565b10610bff5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016105c4565b600c54610c0d906001611a01565b8310610c515760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016105c4565b8015610c7c573360009081526013602052604081208054859290610c76908490611a01565b90915550505b6107d733846111d0565b336001600160a01b03831603610caf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d26848484610fd7565b6001600160a01b0383163b15610d5f57610d42848484846111ea565b610d5f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d7082610f42565b610dd45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c4565b600f544210610e1557610de56112d6565b610dee836112e5565b604051602001610dff929190611a38565b6040516020818303038152906040529050919050565b60118054610e22906118a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e906118a3565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b50505050509050919050565b6008546001600160a01b03163314610ed15760405162461bcd60e51b81526004016105c49061186e565b6001600160a01b038116610f365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c4565b610f3f8161117e565b50565b600080548210801561061e575050600090815260046020526040902054600160e01b161590565b600081600054811015610fbe5760008181526004602052604081205490600160e01b82169003610fbc575b80600003610fb5575060001901600081815260046020526040902054610f94565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610fe282610f69565b9050836001600160a01b0316816001600160a01b0316146110155760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110335750611033853361054c565b8061104e575033611043846106b6565b6001600160a01b0316145b90508061106e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661109557604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611136576001830160008181526004602052604081205490036111345760005481146111345760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108128282604051806020016040528060008152506113e6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061121f903390899088908890600401611a77565b6020604051808303816000875af192505050801561125a575060408051601f3d908101601f1916820190925261125791810190611ab4565b60015b6112b8573d808015611288576040519150601f19603f3d011682016040523d82523d6000602084013e61128d565b606091505b5080516000036112b0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060108054610633906118a3565b60608160000361130c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611336578061132081611ad1565b915061132f9050600a83611b00565b9150611310565b60008167ffffffffffffffff81111561135157611351611693565b6040519080825280601f01601f19166020018201604052801561137b576020820181803683370190505b5090505b84156112ce57611390600183611b14565b915061139d600a86611b2b565b6113a8906030611a01565b60f81b8183815181106113bd576113bd611b3f565b60200101906001600160f81b031916908160001a9053506113df600a86611b00565b945061137f565b6000546001600160a01b03841661140f57604051622e076360e81b815260040160405180910390fd5b826000036114305760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611505575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114ce60008784806001019550876111ea565b6114eb576040516368d2bf6b60e11b815260040160405180910390fd5b80821061148357826000541461150057600080fd5b61154a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611506575b506000908155610d5f9085838684565b60006020828403121561156c57600080fd5b5035919050565b6001600160e01b031981168114610f3f57600080fd5b60006020828403121561159b57600080fd5b8135610fb581611573565b60005b838110156115c15781810151838201526020016115a9565b83811115610d5f5750506000910152565b600081518084526115ea8160208601602086016115a6565b601f01601f19169290920160200192915050565b602081526000610fb560208301846115d2565b80356001600160a01b038116811461162857600080fd5b919050565b6000806040838503121561164057600080fd5b61164983611611565b946020939093013593505050565b60008060006060848603121561166c57600080fd5b61167584611611565b925061168360208501611611565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116c4576116c4611693565b604051601f8501601f19908116603f011681019082821181831017156116ec576116ec611693565b8160405280935085815286868601111561170557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561173157600080fd5b813567ffffffffffffffff81111561174857600080fd5b8201601f8101841361175957600080fd5b6112ce848235602084016116a9565b60006020828403121561177a57600080fd5b610fb582611611565b6000806040838503121561179657600080fd5b61179f83611611565b9150602083013580151581146117b457600080fd5b809150509250929050565b600080600080608085870312156117d557600080fd5b6117de85611611565b93506117ec60208601611611565b925060408501359150606085013567ffffffffffffffff81111561180f57600080fd5b8501601f8101871361182057600080fd5b61182f878235602084016116a9565b91505092959194509250565b6000806040838503121561184e57600080fd5b61185783611611565b915061186560208401611611565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806118b757607f821691505b6020821081036118d757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107d757600081815260208120601f850160051c810160208610156119045750805b601f850160051c820191505b8181101561192357828155600101611910565b505050505050565b815167ffffffffffffffff81111561194557611945611693565b6119598161195384546118a3565b846118dd565b602080601f83116001811461198e57600084156119765750858301515b600019600386901b1c1916600185901b178555611923565b600085815260208120601f198616915b828110156119bd5788860151825594840194600190910190840161199e565b50858210156119db5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a1457611a146119eb565b500190565b6000816000190483118215151615611a3357611a336119eb565b500290565b60008351611a4a8184602088016115a6565b835190830190611a5e8183602088016115a6565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611aaa908301846115d2565b9695505050505050565b600060208284031215611ac657600080fd5b8151610fb581611573565b600060018201611ae357611ae36119eb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b0f57611b0f611aea565b500490565b600082821015611b2657611b266119eb565b500390565b600082611b3a57611b3a611aea565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a09a42f63be051250c0ad6957f3539e24559ac136c63c88ac5d9c470b0acca4864736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd146104fb578063de314a591461051b578063e985e9c514610531578063f2fde38b1461057a57600080fd5b80639cb57d2014610492578063a0712d68146104a8578063a22cb465146104bb578063b88d4fde146104db57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041f57806391b7f5ed1461043d57806392910eec1461045d57806395d89b411461047d57600080fd5b80636c0360eb146103bf57806370a08231146103d4578063715018a6146103f457806371f9c5341461040957600080fd5b806322f4596f1161017a57806342842e0e1161014957806342842e0e1461034957806355f804b3146103695780635e1c4b60146103895780636352211e1461039f57600080fd5b806322f4596f146102eb57806323b872dd146103015780632a85db55146103215780633ccfd60b1461034157600080fd5b806306fdde03116101b657806306fdde0314610258578063081812fc1461027a578063095ea7b3146102b257806318160ddd146102d257600080fd5b8063018a2c37146101dd57806301ffc9a7146101ff5780630387da4214610234575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461155a565b61059a565b005b34801561020b57600080fd5b5061021f61021a366004611589565b6105d2565b60405190151581526020015b60405180910390f35b34801561024057600080fd5b5061024a600b5481565b60405190815260200161022b565b34801561026457600080fd5b5061026d610624565b60405161022b91906115fe565b34801561028657600080fd5b5061029a61029536600461155a565b6106b6565b6040516001600160a01b03909116815260200161022b565b3480156102be57600080fd5b506101fd6102cd36600461162d565b6106fa565b3480156102de57600080fd5b506001546000540361024a565b3480156102f757600080fd5b5061024a600a5481565b34801561030d57600080fd5b506101fd61031c366004611657565b6107cc565b34801561032d57600080fd5b506101fd61033c36600461171f565b6107dc565b6101fd610816565b34801561035557600080fd5b506101fd610364366004611657565b6108f4565b34801561037557600080fd5b506101fd61038436600461171f565b61090f565b34801561039557600080fd5b5061024a600e5481565b3480156103ab57600080fd5b5061029a6103ba36600461155a565b610945565b3480156103cb57600080fd5b5061026d610950565b3480156103e057600080fd5b5061024a6103ef366004611768565b6109de565b34801561040057600080fd5b506101fd610a2d565b34801561041557600080fd5b5061024a600f5481565b34801561042b57600080fd5b506008546001600160a01b031661029a565b34801561044957600080fd5b506101fd61045836600461155a565b610a63565b34801561046957600080fd5b506101fd61047836600461155a565b610a92565b34801561048957600080fd5b5061026d610ac1565b34801561049e57600080fd5b5061024a600d5481565b6101fd6104b636600461155a565b610ad0565b3480156104c757600080fd5b506101fd6104d6366004611783565b610c86565b3480156104e757600080fd5b506101fd6104f63660046117bf565b610d1b565b34801561050757600080fd5b5061026d61051636600461155a565b610d65565b34801561052757600080fd5b5061024a600c5481565b34801561053d57600080fd5b5061021f61054c36600461183b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506101fd610595366004611768565b610ea7565b6008546001600160a01b031633146105cd5760405162461bcd60e51b81526004016105c49061186e565b60405180910390fd5b600f55565b60006301ffc9a760e01b6001600160e01b03198316148061060357506380ac58cd60e01b6001600160e01b03198316145b8061061e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610633906118a3565b80601f016020809104026020016040519081016040528092919081815260200182805461065f906118a3565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b5050505050905090565b60006106c182610f42565b6106de576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061070582610f69565b9050806001600160a01b0316836001600160a01b0316036107395760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461077057610753813361054c565b610770576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107d7838383610fd7565b505050565b6008546001600160a01b031633146108065760405162461bcd60e51b81526004016105c49061186e565b6011610812828261192b565b5050565b6008546001600160a01b031633146108405760405162461bcd60e51b81526004016105c49061186e565b6002600954036108925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c4565b6002600955604051600090339047908381818185875af1925050503d80600081146108d9576040519150601f19603f3d011682016040523d82523d6000602084013e6108de565b606091505b50509050806108ec57600080fd5b506001600955565b6107d783838360405180602001604052806000815250610d1b565b6008546001600160a01b031633146109395760405162461bcd60e51b81526004016105c49061186e565b6010610812828261192b565b600061061e82610f69565b6012805461095d906118a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610989906118a3565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b505050505081565b60006001600160a01b038216610a07576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a575760405162461bcd60e51b81526004016105c49061186e565b610a61600061117e565b565b6008546001600160a01b03163314610a8d5760405162461bcd60e51b81526004016105c49061186e565b600b55565b6008546001600160a01b03163314610abc5760405162461bcd60e51b81526004016105c49061186e565b600e55565b606060038054610633906118a3565b600b54600e54600090610ae4906001611a01565b83610af26001546000540390565b610afc9190611a01565b108015610b255750600d5433600090815260136020526040902054610b22908590611a01565b11155b80610b3a57506008546001600160a01b031633145b90508015610b4757600091505b610b518284611a19565b341015610ba05760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016105c4565b600a54610bae906001611a01565b83610bbc6001546000540390565b610bc69190611a01565b10610bff5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016105c4565b600c54610c0d906001611a01565b8310610c515760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016105c4565b8015610c7c573360009081526013602052604081208054859290610c76908490611a01565b90915550505b6107d733846111d0565b336001600160a01b03831603610caf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d26848484610fd7565b6001600160a01b0383163b15610d5f57610d42848484846111ea565b610d5f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d7082610f42565b610dd45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c4565b600f544210610e1557610de56112d6565b610dee836112e5565b604051602001610dff929190611a38565b6040516020818303038152906040529050919050565b60118054610e22906118a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4e906118a3565b8015610e9b5780601f10610e7057610100808354040283529160200191610e9b565b820191906000526020600020905b815481529060010190602001808311610e7e57829003601f168201915b50505050509050919050565b6008546001600160a01b03163314610ed15760405162461bcd60e51b81526004016105c49061186e565b6001600160a01b038116610f365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c4565b610f3f8161117e565b50565b600080548210801561061e575050600090815260046020526040902054600160e01b161590565b600081600054811015610fbe5760008181526004602052604081205490600160e01b82169003610fbc575b80600003610fb5575060001901600081815260046020526040902054610f94565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610fe282610f69565b9050836001600160a01b0316816001600160a01b0316146110155760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110335750611033853361054c565b8061104e575033611043846106b6565b6001600160a01b0316145b90508061106e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661109557604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611136576001830160008181526004602052604081205490036111345760005481146111345760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108128282604051806020016040528060008152506113e6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061121f903390899088908890600401611a77565b6020604051808303816000875af192505050801561125a575060408051601f3d908101601f1916820190925261125791810190611ab4565b60015b6112b8573d808015611288576040519150601f19603f3d011682016040523d82523d6000602084013e61128d565b606091505b5080516000036112b0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060108054610633906118a3565b60608160000361130c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611336578061132081611ad1565b915061132f9050600a83611b00565b9150611310565b60008167ffffffffffffffff81111561135157611351611693565b6040519080825280601f01601f19166020018201604052801561137b576020820181803683370190505b5090505b84156112ce57611390600183611b14565b915061139d600a86611b2b565b6113a8906030611a01565b60f81b8183815181106113bd576113bd611b3f565b60200101906001600160f81b031916908160001a9053506113df600a86611b00565b945061137f565b6000546001600160a01b03841661140f57604051622e076360e81b815260040160405180910390fd5b826000036114305760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611505575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114ce60008784806001019550876111ea565b6114eb576040516368d2bf6b60e11b815260040160405180910390fd5b80821061148357826000541461150057600080fd5b61154a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611506575b506000908155610d5f9085838684565b60006020828403121561156c57600080fd5b5035919050565b6001600160e01b031981168114610f3f57600080fd5b60006020828403121561159b57600080fd5b8135610fb581611573565b60005b838110156115c15781810151838201526020016115a9565b83811115610d5f5750506000910152565b600081518084526115ea8160208601602086016115a6565b601f01601f19169290920160200192915050565b602081526000610fb560208301846115d2565b80356001600160a01b038116811461162857600080fd5b919050565b6000806040838503121561164057600080fd5b61164983611611565b946020939093013593505050565b60008060006060848603121561166c57600080fd5b61167584611611565b925061168360208501611611565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116c4576116c4611693565b604051601f8501601f19908116603f011681019082821181831017156116ec576116ec611693565b8160405280935085815286868601111561170557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561173157600080fd5b813567ffffffffffffffff81111561174857600080fd5b8201601f8101841361175957600080fd5b6112ce848235602084016116a9565b60006020828403121561177a57600080fd5b610fb582611611565b6000806040838503121561179657600080fd5b61179f83611611565b9150602083013580151581146117b457600080fd5b809150509250929050565b600080600080608085870312156117d557600080fd5b6117de85611611565b93506117ec60208601611611565b925060408501359150606085013567ffffffffffffffff81111561180f57600080fd5b8501601f8101871361182057600080fd5b61182f878235602084016116a9565b91505092959194509250565b6000806040838503121561184e57600080fd5b61185783611611565b915061186560208401611611565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806118b757607f821691505b6020821081036118d757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107d757600081815260208120601f850160051c810160208610156119045750805b601f850160051c820191505b8181101561192357828155600101611910565b505050505050565b815167ffffffffffffffff81111561194557611945611693565b6119598161195384546118a3565b846118dd565b602080601f83116001811461198e57600084156119765750858301515b600019600386901b1c1916600185901b178555611923565b600085815260208120601f198616915b828110156119bd5788860151825594840194600190910190840161199e565b50858210156119db5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a1457611a146119eb565b500190565b6000816000190483118215151615611a3357611a336119eb565b500290565b60008351611a4a8184602088016115a6565b835190830190611a5e8183602088016115a6565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611aaa908301846115d2565b9695505050505050565b600060208284031215611ac657600080fd5b8151610fb581611573565b600060018201611ae357611ae36119eb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b0f57611b0f611aea565b500490565b600082821015611b2657611b266119eb565b500390565b600082611b3a57611b3a611aea565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a09a42f63be051250c0ad6957f3539e24559ac136c63c88ac5d9c470b0acca4864736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46882:2691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48675:124;;;;;;;;;;-1:-1:-1;48675:124:0;;;;;:::i;:::-;;:::i;:::-;;21551:615;;;;;;;;;;-1:-1:-1;21551:615:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;21551:615:0;;;;;;;;46993:39;;;;;;;;;;;;;;;;;;;923:25:1;;;911:2;896:18;46993:39:0;777:177:1;26564:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28632:204::-;;;;;;;;;;-1:-1:-1;28632:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;28632:204:0;1710:203:1;28092:474:0;;;;;;;;;;-1:-1:-1;28092:474:0;;;;;:::i;:::-;;:::i;20605:315::-;;;;;;;;;;-1:-1:-1;20871:12:0;;20658:7;20855:13;:28;20605:315;;46954:32;;;;;;;;;;;;;;;;29518:170;;;;;;;;;;-1:-1:-1;29518:170:0;;;;;:::i;:::-;;:::i;48803:113::-;;;;;;;;;;-1:-1:-1;48803:113:0;;;;;:::i;:::-;;:::i;49365:205::-;;;:::i;29759:185::-;;;;;;;;;;-1:-1:-1;29759:185:0;;;;;:::i;:::-;;:::i;48920:103::-;;;;;;;;;;-1:-1:-1;48920:103:0;;;;;:::i;:::-;;:::i;47126:40::-;;;;;;;;;;;;;;;;26353:144;;;;;;;;;;-1:-1:-1;26353:144:0;;;;;:::i;:::-;;:::i;47345:21::-;;;;;;;;;;;;;:::i;22230:224::-;;;;;;;;;;-1:-1:-1;22230:224:0;;;;;:::i;:::-;;:::i;7661:103::-;;;;;;;;;;;;;:::i;47173:56::-;;;;;;;;;;;;;;;;7010:87;;;;;;;;;;-1:-1:-1;7083:6:0;;-1:-1:-1;;;;;7083:6:0;7010:87;;49260:97;;;;;;;;;;-1:-1:-1;49260:97:0;;;;;:::i;:::-;;:::i;49148:104::-;;;;;;;;;;-1:-1:-1;49148:104:0;;;;;:::i;:::-;;:::i;26733:::-;;;;;;;;;;;;;:::i;47081:38::-;;;;;;;;;;;;;;;;47524:692;;;;;;:::i;:::-;;:::i;28908:308::-;;;;;;;;;;-1:-1:-1;28908:308:0;;;;;:::i;:::-;;:::i;30015:396::-;;;;;;;;;;-1:-1:-1;30015:396:0;;;;;:::i;:::-;;:::i;48224:445::-;;;;;;;;;;-1:-1:-1;48224:445:0;;;;;:::i;:::-;;:::i;47039:33::-;;;;;;;;;;;;;;;;29287:164;;;;;;;;;;-1:-1:-1;29287:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29408:25:0;;;29384:4;29408:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29287:164;7919:201;;;;;;;;;;-1:-1:-1;7919:201:0;;;;;:::i;:::-;;:::i;48675:124::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;;;;;;;;;48757:15:::1;:36:::0;48675:124::o;21551:615::-;21636:4;-1:-1:-1;;;;;;;;;21936:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22013:25:0;;;21936:102;:179;;;-1:-1:-1;;;;;;;;;;22090:25:0;;;21936:179;21916:199;21551:615;-1:-1:-1;;21551:615:0:o;26564:100::-;26618:13;26651:5;26644:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26564:100;:::o;28632:204::-;28700:7;28725:16;28733:7;28725;:16::i;:::-;28720:64;;28750:34;;-1:-1:-1;;;28750:34:0;;;;;;;;;;;28720:64;-1:-1:-1;28804:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28804:24:0;;28632:204::o;28092:474::-;28165:13;28197:27;28216:7;28197:18;:27::i;:::-;28165:61;;28247:5;-1:-1:-1;;;;;28241:11:0;:2;-1:-1:-1;;;;;28241:11:0;;28237:48;;28261:24;;-1:-1:-1;;;28261:24:0;;;;;;;;;;;28237:48;5814:10;-1:-1:-1;;;;;28302:28:0;;;28298:175;;28350:44;28367:5;5814:10;29287:164;:::i;28350:44::-;28345:128;;28422:35;;-1:-1:-1;;;28422:35:0;;;;;;;;;;;28345:128;28485:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28485:29:0;-1:-1:-1;;;;;28485:29:0;;;;;;;;;28530:28;;28485:24;;28530:28;;;;;;;28154:412;28092:474;;:::o;29518:170::-;29652:28;29662:4;29668:2;29672:7;29652:9;:28::i;:::-;29518:170;;;:::o;48803:113::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;48882:13:::1;:28;48898:12:::0;48882:13;:28:::1;:::i;:::-;;48803:113:::0;:::o;49365:205::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;4108:1:::1;4706:7;;:19:::0;4698:63:::1;;;::::0;-1:-1:-1;;;4698:63:0;;8545:2:1;4698:63:0::1;::::0;::::1;8527:21:1::0;8584:2;8564:18;;;8557:30;8623:33;8603:18;;;8596:61;8674:18;;4698:63:0::1;8343:355:1::0;4698:63:0::1;4108:1;4839:7;:18:::0;49453:82:::2;::::0;49435:12:::2;::::0;49461:10:::2;::::0;49499:21:::2;::::0;49435:12;49453:82;49435:12;49453:82;49499:21;49461:10;49453:82:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49434:101;;;49554:7;49546:16;;;::::0;::::2;;-1:-1:-1::0;4064:1:0::1;5018:7;:22:::0;49365:205::o;29759:185::-;29897:39;29914:4;29920:2;29924:7;29897:39;;;;;;;;;;;;:16;:39::i;48920:103::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;48990:16:::1;:27;49009:8:::0;48990:16;:27:::1;:::i;26353:144::-:0;26417:7;26460:27;26479:7;26460:18;:27::i;47345:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22230:224::-;22294:7;-1:-1:-1;;;;;22318:19:0;;22314:60;;22346:28;;-1:-1:-1;;;22346:28:0;;;;;;;;;;;22314:60;-1:-1:-1;;;;;;22392:25:0;;;;;:18;:25;;;;;;17569:13;22392:54;;22230:224::o;7661:103::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;7726:30:::1;7753:1;7726:18;:30::i;:::-;7661:103::o:0;49260:97::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;49327:10:::1;:22:::0;49260:97::o;49148:104::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;49217:18:::1;:27:::0;49148:104::o;26733:::-;26789:13;26822:7;26815:14;;;;;:::i;47524:692::-;47596:10;;47657:18;;47581:12;;47657:22;;47678:1;47657:22;:::i;:::-;47649:5;47633:13;20871:12;;20658:7;20855:13;:28;;20605:315;47633:13;:21;;;;:::i;:::-;:46;47632:127;;;;-1:-1:-1;47739:19:0;;47716:10;47698:29;;;;:17;:29;;;;;;:37;;47730:5;;47698:37;:::i;:::-;:60;;47632:127;47631:169;;;-1:-1:-1;7083:6:0;;-1:-1:-1;;;;;7083:6:0;47778:10;:21;47631:169;47617:183;;47817:6;47813:47;;;47847:1;47840:8;;47813:47;47893:12;47901:4;47893:5;:12;:::i;:::-;47880:9;:25;;47872:67;;;;-1:-1:-1;;;47872:67:0;;9553:2:1;47872:67:0;;;9535:21:1;9592:2;9572:18;;;9565:30;9631:31;9611:18;;;9604:59;9680:18;;47872:67:0;9351:353:1;47872:67:0;47982:10;;:14;;47995:1;47982:14;:::i;:::-;47974:5;47958:13;20871:12;;20658:7;20855:13;:28;;20605:315;47958:13;:21;;;;:::i;:::-;:38;47950:60;;;;-1:-1:-1;;;47950:60:0;;9911:2:1;47950:60:0;;;9893:21:1;9950:1;9930:18;;;9923:29;-1:-1:-1;;;9968:18:1;;;9961:39;10017:18;;47950:60:0;9709:332:1;47950:60:0;48037:13;;:17;;48053:1;48037:17;:::i;:::-;48029:5;:25;48021:57;;;;-1:-1:-1;;;48021:57:0;;10248:2:1;48021:57:0;;;10230:21:1;10287:2;10267:18;;;10260:30;-1:-1:-1;;;10306:18:1;;;10299:49;10365:18;;48021:57:0;10046:343:1;48021:57:0;48095:6;48091:77;;;48136:10;48118:29;;;;:17;:29;;;;;:38;;48151:5;;48118:29;:38;;48151:5;;48118:38;:::i;:::-;;;;-1:-1:-1;;48091:77:0;48180:28;48190:10;48202:5;48180:9;:28::i;28908:308::-;5814:10;-1:-1:-1;;;;;29007:31:0;;;29003:61;;29047:17;;-1:-1:-1;;;29047:17:0;;;;;;;;;;;29003:61;5814:10;29077:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29077:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29077:60:0;;;;;;;;;;29153:55;;725:41:1;;;29077:49:0;;5814:10;29153:55;;698:18:1;29153:55:0;;;;;;;28908:308;;:::o;30015:396::-;30182:28;30192:4;30198:2;30202:7;30182:9;:28::i;:::-;-1:-1:-1;;;;;30225:14:0;;;:19;30221:183;;30264:56;30295:4;30301:2;30305:7;30314:5;30264:30;:56::i;:::-;30259:145;;30348:40;;-1:-1:-1;;;30348:40:0;;;;;;;;;;;30259:145;30015:396;;;;:::o;48224:445::-;48342:13;48395:16;48403:7;48395;:16::i;:::-;48373:113;;;;-1:-1:-1;;;48373:113:0;;10596:2:1;48373:113:0;;;10578:21:1;10635:2;10615:18;;;10608:30;10674:34;10654:18;;;10647:62;-1:-1:-1;;;10725:18:1;;;10718:45;10780:19;;48373:113:0;10394:411:1;48373:113:0;48511:15;;48492;:34;48488:131;;48570:10;:8;:10::i;:::-;48582:18;:7;:16;:18::i;:::-;48553:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48539:72;;48224:445;;;:::o;48488:131::-;48641:13;48634:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48224:445;;;:::o;7919:201::-;7083:6;;-1:-1:-1;;;;;7083:6:0;5814:10;7230:23;7222:68;;;;-1:-1:-1;;;7222:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8008:22:0;::::1;8000:73;;;::::0;-1:-1:-1;;;8000:73:0;;11654:2:1;8000:73:0::1;::::0;::::1;11636:21:1::0;11693:2;11673:18;;;11666:30;11732:34;11712:18;;;11705:62;-1:-1:-1;;;11783:18:1;;;11776:36;11829:19;;8000:73:0::1;11452:402:1::0;8000:73:0::1;8084:28;8103:8;8084:18;:28::i;:::-;7919:201:::0;:::o;30666:273::-;30723:4;30813:13;;30803:7;:23;30760:152;;;;-1:-1:-1;;30864:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30864:43:0;:48;;30666:273::o;23868:1129::-;23935:7;23970;24072:13;;24065:4;:20;24061:869;;;24110:14;24127:23;;;:17;:23;;;;;;;-1:-1:-1;;;24216:23:0;;:28;;24212:699;;24735:113;24742:6;24752:1;24742:11;24735:113;;-1:-1:-1;;;24813:6:0;24795:25;;;;:17;:25;;;;;;24735:113;;;24881:6;23868:1129;-1:-1:-1;;;23868:1129:0:o;24212:699::-;24087:843;24061:869;24958:31;;-1:-1:-1;;;24958:31:0;;;;;;;;;;;35905:2515;36020:27;36050;36069:7;36050:18;:27::i;:::-;36020:57;;36135:4;-1:-1:-1;;;;;36094:45:0;36110:19;-1:-1:-1;;;;;36094:45:0;;36090:86;;36148:28;;-1:-1:-1;;;36148:28:0;;;;;;;;;;;36090:86;36189:22;5814:10;-1:-1:-1;;;;;36215:27:0;;;;:87;;-1:-1:-1;36259:43:0;36276:4;5814:10;29287:164;:::i;36259:43::-;36215:147;;;-1:-1:-1;5814:10:0;36319:20;36331:7;36319:11;:20::i;:::-;-1:-1:-1;;;;;36319:43:0;;36215:147;36189:174;;36381:17;36376:66;;36407:35;;-1:-1:-1;;;36407:35:0;;;;;;;;;;;36376:66;-1:-1:-1;;;;;36457:16:0;;36453:52;;36482:23;;-1:-1:-1;;;36482:23:0;;;;;;;;;;;36453:52;36634:24;;;;:15;:24;;;;;;;;36627:31;;-1:-1:-1;;;;;;36627:31:0;;;-1:-1:-1;;;;;37026:24:0;;;;;:18;:24;;;;;37024:26;;-1:-1:-1;;37024:26:0;;;37095:22;;;;;;;37093:24;;-1:-1:-1;37093:24:0;;;37388:26;;;:17;:26;;;;;-1:-1:-1;;;37476:15:0;18223:3;37476:41;37434:84;;:128;;37388:174;;;37682:46;;:51;;37678:626;;37786:1;37776:11;;37754:19;37909:30;;;:17;:30;;;;;;:35;;37905:384;;38047:13;;38032:11;:28;38028:242;;38194:30;;;;:17;:30;;;;;:52;;;38028:242;37735:569;37678:626;38351:7;38347:2;-1:-1:-1;;;;;38332:27:0;38341:4;-1:-1:-1;;;;;38332:27:0;;;;;;;;;;;36009:2411;;35905:2515;;;:::o;8280:191::-;8373:6;;;-1:-1:-1;;;;;8390:17:0;;;-1:-1:-1;;;;;;8390:17:0;;;;;;;8423:40;;8373:6;;;8390:17;8373:6;;8423:40;;8354:16;;8423:40;8343:128;8280:191;:::o;31023:104::-;31092:27;31102:2;31106:8;31092:27;;;;;;;;;;;;:9;:27::i;42117:716::-;42301:88;;-1:-1:-1;;;42301:88:0;;42280:4;;-1:-1:-1;;;;;42301:45:0;;;;;:88;;5814:10;;42368:4;;42374:7;;42383:5;;42301:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42301:88:0;;;;;;;;-1:-1:-1;;42301:88:0;;;;;;;;;;;;:::i;:::-;;;42297:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42584:6;:13;42601:1;42584:18;42580:235;;42630:40;;-1:-1:-1;;;42630:40:0;;;;;;;;;;;42580:235;42773:6;42767:13;42758:6;42754:2;42750:15;42743:38;42297:529;-1:-1:-1;;;;;;42460:64:0;-1:-1:-1;;;42460:64:0;;-1:-1:-1;42297:529:0;42117:716;;;;;;:::o;49029:111::-;49089:13;49118:16;49111:23;;;;;:::i;537:723::-;593:13;814:5;823:1;814:10;810:53;;-1:-1:-1;;841:10:0;;;;;;;;;;;;-1:-1:-1;;;841:10:0;;;;;537:723::o;810:53::-;888:5;873:12;929:78;936:9;;929:78;;962:8;;;;:::i;:::-;;-1:-1:-1;985:10:0;;-1:-1:-1;993:2:0;985:10;;:::i;:::-;;;929:78;;;1017:19;1049:6;1039:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1039:17:0;;1017:39;;1067:154;1074:10;;1067:154;;1101:11;1111:1;1101:11;;:::i;:::-;;-1:-1:-1;1170:10:0;1178:2;1170:5;:10;:::i;:::-;1157:24;;:2;:24;:::i;:::-;1144:39;;1127:6;1134;1127:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1127:56:0;;;;;;;;-1:-1:-1;1198:11:0;1207:2;1198:11;;:::i;:::-;;;1067:154;;31500:2236;31623:20;31646:13;-1:-1:-1;;;;;31674:16:0;;31670:48;;31699:19;;-1:-1:-1;;;31699:19:0;;;;;;;;;;;31670:48;31733:8;31745:1;31733:13;31729:44;;31755:18;;-1:-1:-1;;;31755:18:0;;;;;;;;;;;31729:44;-1:-1:-1;;;;;32322:22:0;;;;;;:18;:22;;;;17706:2;32322:22;;;:70;;32360:31;32348:44;;32322:70;;;32635:31;;;:17;:31;;;;;32728:15;18223:3;32728:41;32686:84;;-1:-1:-1;32806:13:0;;18486:3;32791:56;32686:162;32635:213;;:31;;32929:23;;;;32973:14;:19;32969:635;;33013:313;33044:38;;33069:12;;-1:-1:-1;;;;;33044:38:0;;;33061:1;;33044:38;;33061:1;;33044:38;33110:69;33149:1;33153:2;33157:14;;;;;;33173:5;33110:30;:69::i;:::-;33105:174;;33215:40;;-1:-1:-1;;;33215:40:0;;;;;;;;;;;33105:174;33321:3;33306:12;:18;33013:313;;33407:12;33390:13;;:29;33386:43;;33421:8;;;33386:43;32969:635;;;33470:119;33501:40;;33526:14;;;;;-1:-1:-1;;;;;33501:40:0;;;33518:1;;33501:40;;33518:1;;33501:40;33584:3;33569:12;:18;33470:119;;32969:635;-1:-1:-1;33618:13:0;:28;;;33668:60;;33701:2;33705:12;33719:8;33668:60;:::i;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;959:258::-;1031:1;1041:113;1055:6;1052:1;1049:13;1041:113;;;1131:11;;;1125:18;1112:11;;;1105:39;1077:2;1070:10;1041:113;;;1172:6;1169:1;1166:13;1163:48;;;-1:-1:-1;;1207:1:1;1189:16;;1182:27;959:258::o;1222:::-;1264:3;1302:5;1296:12;1329:6;1324:3;1317:19;1345:63;1401:6;1394:4;1389:3;1385:14;1378:4;1371:5;1367:16;1345:63;:::i;:::-;1462:2;1441:15;-1:-1:-1;;1437:29:1;1428:39;;;;1469:4;1424:50;;1222:258;-1:-1:-1;;1222:258:1:o;1485:220::-;1634:2;1623:9;1616:21;1597:4;1654:45;1695:2;1684:9;1680:18;1672:6;1654:45;:::i;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:356::-;5595:2;5577:21;;;5614:18;;;5607:30;5673:34;5668:2;5653:18;;5646:62;5740:2;5725:18;;5393:356::o;5754:380::-;5833:1;5829:12;;;;5876;;;5897:61;;5951:4;5943:6;5939:17;5929:27;;5897:61;6004:2;5996:6;5993:14;5973:18;5970:38;5967:161;;6050:10;6045:3;6041:20;6038:1;6031:31;6085:4;6082:1;6075:15;6113:4;6110:1;6103:15;5967:161;;5754:380;;;:::o;6265:545::-;6367:2;6362:3;6359:11;6356:448;;;6403:1;6428:5;6424:2;6417:17;6473:4;6469:2;6459:19;6543:2;6531:10;6527:19;6524:1;6520:27;6514:4;6510:38;6579:4;6567:10;6564:20;6561:47;;;-1:-1:-1;6602:4:1;6561:47;6657:2;6652:3;6648:12;6645:1;6641:20;6635:4;6631:31;6621:41;;6712:82;6730:2;6723:5;6720:13;6712:82;;;6775:17;;;6756:1;6745:13;6712:82;;;6716:3;;;6265:545;;;:::o;6986:1352::-;7112:3;7106:10;7139:18;7131:6;7128:30;7125:56;;;7161:18;;:::i;:::-;7190:97;7280:6;7240:38;7272:4;7266:11;7240:38;:::i;:::-;7234:4;7190:97;:::i;:::-;7342:4;;7406:2;7395:14;;7423:1;7418:663;;;;8125:1;8142:6;8139:89;;;-1:-1:-1;8194:19:1;;;8188:26;8139:89;-1:-1:-1;;6943:1:1;6939:11;;;6935:24;6931:29;6921:40;6967:1;6963:11;;;6918:57;8241:81;;7388:944;;7418:663;6212:1;6205:14;;;6249:4;6236:18;;-1:-1:-1;;7454:20:1;;;7572:236;7586:7;7583:1;7580:14;7572:236;;;7675:19;;;7669:26;7654:42;;7767:27;;;;7735:1;7723:14;;;;7602:19;;7572:236;;;7576:3;7836:6;7827:7;7824:19;7821:201;;;7897:19;;;7891:26;-1:-1:-1;;7980:1:1;7976:14;;;7992:3;7972:24;7968:37;7964:42;7949:58;7934:74;;7821:201;-1:-1:-1;;;;;8068:1:1;8052:14;;;8048:22;8035:36;;-1:-1:-1;6986:1352:1:o;8913:127::-;8974:10;8969:3;8965:20;8962:1;8955:31;9005:4;9002:1;8995:15;9029:4;9026:1;9019:15;9045:128;9085:3;9116:1;9112:6;9109:1;9106:13;9103:39;;;9122:18;;:::i;:::-;-1:-1:-1;9158:9:1;;9045:128::o;9178:168::-;9218:7;9284:1;9280;9276:6;9272:14;9269:1;9266:21;9261:1;9254:9;9247:17;9243:45;9240:71;;;9291:18;;:::i;:::-;-1:-1:-1;9331:9:1;;9178:168::o;10810:637::-;11090:3;11128:6;11122:13;11144:53;11190:6;11185:3;11178:4;11170:6;11166:17;11144:53;:::i;:::-;11260:13;;11219:16;;;;11282:57;11260:13;11219:16;11316:4;11304:17;;11282:57;:::i;:::-;-1:-1:-1;;;11361:20:1;;11390:22;;;11439:1;11428:13;;10810:637;-1:-1:-1;;;;10810:637:1:o;11859:489::-;-1:-1:-1;;;;;12128:15:1;;;12110:34;;12180:15;;12175:2;12160:18;;12153:43;12227:2;12212:18;;12205:34;;;12275:3;12270:2;12255:18;;12248:31;;;12053:4;;12296:46;;12322:19;;12314:6;12296:46;:::i;:::-;12288:54;11859:489;-1:-1:-1;;;;;;11859:489:1:o;12353:249::-;12422:6;12475:2;12463:9;12454:7;12450:23;12446:32;12443:52;;;12491:1;12488;12481:12;12443:52;12523:9;12517:16;12542:30;12566:5;12542:30;:::i;12607:135::-;12646:3;12667:17;;;12664:43;;12687:18;;:::i;:::-;-1:-1:-1;12734:1:1;12723:13;;12607:135::o;12747:127::-;12808:10;12803:3;12799:20;12796:1;12789:31;12839:4;12836:1;12829:15;12863:4;12860:1;12853:15;12879:120;12919:1;12945;12935:35;;12950:18;;:::i;:::-;-1:-1:-1;12984:9:1;;12879:120::o;13004:125::-;13044:4;13072:1;13069;13066:8;13063:34;;;13077:18;;:::i;:::-;-1:-1:-1;13114:9:1;;13004:125::o;13134:112::-;13166:1;13192;13182:35;;13197:18;;:::i;:::-;-1:-1:-1;13231:9:1;;13134:112::o;13251:127::-;13312:10;13307:3;13303:20;13300:1;13293:31;13343:4;13340:1;13333:15;13367:4;13364:1;13357:15

Swarm Source

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