ETH Price: $3,400.67 (+1.27%)
Gas: 7 Gwei

Token

This is how we look like (TIHWLL)
 

Overview

Max Total Supply

2,455 TIHWLL

Holders

860

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TIHWLL
0x828f1fb1625af65cc521f75480b112c46f14364a
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:
TIHWLL

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.6.0/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT

// 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.6.0/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.6.0/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.6.0/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: https://github.com/chiru-labs/ERC721A/blob/v4.0.0/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: https://github.com/chiru-labs/ERC721A/blob/v4.0.0/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: contracts/TIHWLL.sol



pragma solidity >=0.8.9 <0.9.0;






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

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;

  uint256 public cost = 0.0059 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 6;
  uint256 public maxFreeMintAmount = 1;

  bool public revealed = false;
  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount,
       "Invalid mint amount!"
    );
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 costToSubtract = 0;
    
    if (numberMinted(msg.sender) < maxFreeMintAmount) {
      uint256 freeMintsLeft = maxFreeMintAmount - numberMinted(msg.sender);
      costToSubtract = cost * freeMintsLeft;
    }
   
    require(msg.value >= cost * _mintAmount - costToSubtract, "Insufficient funds!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

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

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

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

  function setMaxFreeMintAmount(uint256 _maxFreeMintAmount) public onlyOwner {
    maxFreeMintAmount = _maxFreeMintAmount;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

   function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    uint256 artistPayment = address(this).balance * 50 / 100;
    uint256 marketerPayment = address(this).balance * 50 / 100;

    (bool artistSuccess, ) = payable(0xcFF00c037cE5D7B23dEAd78BB2FF96e57be62b33).call{value: artistPayment}('');
    require(artistSuccess);

    (bool marketerSuccess, ) = payable(0xD1CE3a009B643299f9076261dBf137CEDFF2DDbf).call{value: marketerPayment}('');
    require(marketerSuccess);

    (bool devSuccess, ) = payable(owner()).call{value: address(this).balance}('');
    require(devSuccess);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintAmount","type":"uint256"}],"name":"setMaxFreeMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260006080908152600a906200001a908262000254565b50604080518082019091526005815264173539b7b760d91b6020820152600b9062000046908262000254565b506614f604cc2cc000600d55612710600e556006600f5560016010556011805461ffff19166101001790553480156200007e57600080fd5b50604051620024c3380380620024c3833981016040819052620000a191620003cf565b82826002620000b1838262000254565b506003620000c0828262000254565b5050600160005550620000d333620000ec565b6001600955620000e3816200013e565b50505062000460565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200019d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600c620001ab828262000254565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001da57607f821691505b602082108103620001fb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024f57600081815260208120601f850160051c810160208610156200022a5750805b601f850160051c820191505b818110156200024b5782815560010162000236565b5050505b505050565b81516001600160401b03811115620002705762000270620001af565b6200028881620002818454620001c5565b8462000201565b602080601f831160018114620002c05760008415620002a75750858301515b600019600386901b1c1916600185901b1785556200024b565b600085815260208120601f198616915b82811015620002f157888601518255948401946001909101908401620002d0565b5085821015620003105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200033257600080fd5b81516001600160401b03808211156200034f576200034f620001af565b604051601f8301601f19908116603f011681019082821181831017156200037a576200037a620001af565b816040528381526020925086838588010111156200039757600080fd5b600091505b83821015620003bb57858201830151818301840152908201906200039c565b600093810190920192909252949350505050565b600080600060608486031215620003e557600080fd5b83516001600160401b0380821115620003fd57600080fd5b6200040b8783880162000320565b945060208601519150808211156200042257600080fd5b620004308783880162000320565b935060408601519150808211156200044757600080fd5b50620004568682870162000320565b9150509250925092565b61205380620004706000396000f3fe6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063dc33e6811161006f578063dc33e68114610606578063e0a8085314610626578063e985e9c514610646578063efbd73f414610666578063f2fde38b1461068657600080fd5b8063a22cb4651461057b578063a45ba8e71461059b578063b88d4fde146105b0578063c87b56dd146105d0578063d5abeb01146105f057600080fd5b80637ec4a659116100f25780637ec4a659146104ff5780638da5cb5b1461051f57806395d89b411461053d5780639d3d41de14610552578063a0712d681461056857600080fd5b806362b99ad4146104955780636352211e146104aa57806370a08231146104ca578063715018a6146104ea57600080fd5b8063239c70ae116101b157806344a0d68a1161017557806344a0d68a146104075780634fdd43cb1461042757806351830227146104475780635503a0e8146104615780635c975abb1461047657600080fd5b8063239c70ae1461037c57806323b872dd146103925780632aba3832146103b25780633ccfd60b146103d257806342842e0e146103e757600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806316ba10e01461031f57806316c38b3c1461033f57806318160ddd1461035f57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063088a4ed0146102b9575b600080fd5b34801561023657600080fd5b5061024a6102453660046119b4565b6106a6565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106f8565b6040516102569190611a21565b34801561028d57600080fd5b506102a161029c366004611a34565b61078a565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611a34565b6107ce565b005b3480156102e757600080fd5b506102d96102f6366004611a69565b610806565b34801561030757600080fd5b50610311600d5481565b604051908152602001610256565b34801561032b57600080fd5b506102d961033a366004611b1f565b6108d8565b34801561034b57600080fd5b506102d961035a366004611b78565b610912565b34801561036b57600080fd5b506001546000540360001901610311565b34801561038857600080fd5b50610311600f5481565b34801561039e57600080fd5b506102d96103ad366004611b93565b610956565b3480156103be57600080fd5b506102d96103cd366004611a34565b610966565b3480156103de57600080fd5b506102d9610995565b3480156103f357600080fd5b506102d9610402366004611b93565b610b9c565b34801561041357600080fd5b506102d9610422366004611a34565b610bb7565b34801561043357600080fd5b506102d9610442366004611b1f565b610be6565b34801561045357600080fd5b5060115461024a9060ff1681565b34801561046d57600080fd5b50610274610c1c565b34801561048257600080fd5b5060115461024a90610100900460ff1681565b3480156104a157600080fd5b50610274610caa565b3480156104b657600080fd5b506102a16104c5366004611a34565b610cb7565b3480156104d657600080fd5b506103116104e5366004611bcf565b610cc2565b3480156104f657600080fd5b506102d9610d11565b34801561050b57600080fd5b506102d961051a366004611b1f565b610d47565b34801561052b57600080fd5b506008546001600160a01b03166102a1565b34801561054957600080fd5b50610274610d7d565b34801561055e57600080fd5b5061031160105481565b6102d9610576366004611a34565b610d8c565b34801561058757600080fd5b506102d9610596366004611bea565b610f5d565b3480156105a757600080fd5b50610274610ff2565b3480156105bc57600080fd5b506102d96105cb366004611c1d565b610fff565b3480156105dc57600080fd5b506102746105eb366004611a34565b611043565b3480156105fc57600080fd5b50610311600e5481565b34801561061257600080fd5b50610311610621366004611bcf565b6111b2565b34801561063257600080fd5b506102d9610641366004611b78565b6111dd565b34801561065257600080fd5b5061024a610661366004611c99565b61121a565b34801561067257600080fd5b506102d9610681366004611cc3565b611248565b34801561069257600080fd5b506102d96106a1366004611bcf565b6112dc565b60006301ffc9a760e01b6001600160e01b0319831614806106d757506380ac58cd60e01b6001600160e01b03198316145b806106f25750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070790611ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611ce6565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b600061079582611377565b6107b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108015760405162461bcd60e51b81526004016107f890611d20565b60405180910390fd5b600f55565b6000610811826113ac565b9050806001600160a01b0316836001600160a01b0316036108455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087c5761085f813361121a565b61087c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016107f890611d20565b600b61090e8282611da3565b5050565b6008546001600160a01b0316331461093c5760405162461bcd60e51b81526004016107f890611d20565b601180549115156101000261ff0019909216919091179055565b61096183838361141b565b505050565b6008546001600160a01b031633146109905760405162461bcd60e51b81526004016107f890611d20565b601055565b6008546001600160a01b031633146109bf5760405162461bcd60e51b81526004016107f890611d20565b600260095403610a115760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107f8565b600260095560006064610a25476032611e79565b610a2f9190611ea6565b905060006064610a40476032611e79565b610a4a9190611ea6565b60405190915060009073cff00c037ce5d7b23dead78bb2ff96e57be62b339084908381818185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610ab657600080fd5b60405160009073d1ce3a009b643299f9076261dbf137cedff2ddbf9084908381818185875af1925050503d8060008114610b0c576040519150601f19603f3d011682016040523d82523d6000602084013e610b11565b606091505b5050905080610b1f57600080fd5b6000610b336008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b7d576040519150601f19603f3d011682016040523d82523d6000602084013e610b82565b606091505b5050905080610b9057600080fd5b50506001600955505050565b61096183838360405180602001604052806000815250610fff565b6008546001600160a01b03163314610be15760405162461bcd60e51b81526004016107f890611d20565b600d55565b6008546001600160a01b03163314610c105760405162461bcd60e51b81526004016107f890611d20565b600c61090e8282611da3565b600b8054610c2990611ce6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590611ce6565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b600a8054610c2990611ce6565b60006106f2826113ac565b60006001600160a01b038216610ceb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b81526004016107f890611d20565b610d4560006115c2565b565b6008546001600160a01b03163314610d715760405162461bcd60e51b81526004016107f890611d20565b600a61090e8282611da3565b60606003805461070790611ce6565b6011548190610100900460ff1615610de65760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107f8565b600e546001546000548391900360001901610e019190611eba565b1115610e465760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107f8565b600081118015610e6b5750600f5481610e5e336111b2565b610e689190611eba565b11155b610eae5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107f8565b816000601054610ebd336111b2565b1015610eef576000610ece336111b2565b601054610edb9190611ecd565b905080600d54610eeb9190611e79565b9150505b8082600d54610efe9190611e79565b610f089190611ecd565b341015610f4d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107f8565b610f573385611614565b50505050565b336001600160a01b03831603610f865760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610c2990611ce6565b61100a84848461141b565b6001600160a01b0383163b15610f57576110268484848461162e565b610f57576040516368d2bf6b60e11b815260040160405180910390fd5b606061104e82611377565b6110b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f8565b60115460ff16151560000361115357600c80546110ce90611ce6565b80601f01602080910402602001604051908101604052809291908181526020018280546110fa90611ce6565b80156111475780601f1061111c57610100808354040283529160200191611147565b820191906000526020600020905b81548152906001019060200180831161112a57829003601f168201915b50505050509050919050565b600061115d61171a565b9050600081511161117d57604051806020016040528060008152506111ab565b8061118784611729565b600b60405160200161119b93929190611ee0565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106f2565b6008546001600160a01b031633146112075760405162461bcd60e51b81526004016107f890611d20565b6011805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112725760405162461bcd60e51b81526004016107f890611d20565b600e54600154600054849190036000190161128d9190611eba565b11156112d25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107f8565b61090e8183611614565b6008546001600160a01b031633146113065760405162461bcd60e51b81526004016107f890611d20565b6001600160a01b03811661136b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b611374816115c2565b50565b60008160011115801561138b575060005482105b80156106f2575050600090815260046020526040902054600160e01b161590565b60008180600111611402576000548110156114025760008181526004602052604081205490600160e01b82169003611400575b806000036111ab5750600019016000818152600460205260409020546113df565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611426826113ac565b9050836001600160a01b0316816001600160a01b0316146114595760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114775750611477853361121a565b806114925750336114878461078a565b6001600160a01b0316145b9050806114b257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114d957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361157a576001830160008181526004602052604081205490036115785760005481146115785760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61090e82826040518060200160405280600081525061182a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611663903390899088908890600401611f80565b6020604051808303816000875af192505050801561169e575060408051601f3d908101601f1916820190925261169b91810190611fbd565b60015b6116fc573d8080156116cc576040519150601f19603f3d011682016040523d82523d6000602084013e6116d1565b606091505b5080516000036116f4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461070790611ce6565b6060816000036117505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561177a578061176481611fda565b91506117739050600a83611ea6565b9150611754565b60008167ffffffffffffffff81111561179557611795611a93565b6040519080825280601f01601f1916602001820160405280156117bf576020820181803683370190505b5090505b8415611712576117d4600183611ecd565b91506117e1600a86611ff3565b6117ec906030611eba565b60f81b81838151811061180157611801612007565b60200101906001600160f81b031916908160001a905350611823600a86611ea6565b94506117c3565b6000546001600160a01b03841661185357604051622e076360e81b815260040160405180910390fd5b826000036118745760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611949575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611912600087848060010195508761162e565b61192f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118c757826000541461194457600080fd5b61198e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061194a575b506000908155610f579085838684565b6001600160e01b03198116811461137457600080fd5b6000602082840312156119c657600080fd5b81356111ab8161199e565b60005b838110156119ec5781810151838201526020016119d4565b50506000910152565b60008151808452611a0d8160208601602086016119d1565b601f01601f19169290920160200192915050565b6020815260006111ab60208301846119f5565b600060208284031215611a4657600080fd5b5035919050565b80356001600160a01b0381168114611a6457600080fd5b919050565b60008060408385031215611a7c57600080fd5b611a8583611a4d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ac457611ac4611a93565b604051601f8501601f19908116603f01168101908282118183101715611aec57611aec611a93565b81604052809350858152868686011115611b0557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b3157600080fd5b813567ffffffffffffffff811115611b4857600080fd5b8201601f81018413611b5957600080fd5b61171284823560208401611aa9565b80358015158114611a6457600080fd5b600060208284031215611b8a57600080fd5b6111ab82611b68565b600080600060608486031215611ba857600080fd5b611bb184611a4d565b9250611bbf60208501611a4d565b9150604084013590509250925092565b600060208284031215611be157600080fd5b6111ab82611a4d565b60008060408385031215611bfd57600080fd5b611c0683611a4d565b9150611c1460208401611b68565b90509250929050565b60008060008060808587031215611c3357600080fd5b611c3c85611a4d565b9350611c4a60208601611a4d565b925060408501359150606085013567ffffffffffffffff811115611c6d57600080fd5b8501601f81018713611c7e57600080fd5b611c8d87823560208401611aa9565b91505092959194509250565b60008060408385031215611cac57600080fd5b611cb583611a4d565b9150611c1460208401611a4d565b60008060408385031215611cd657600080fd5b82359150611c1460208401611a4d565b600181811c90821680611cfa57607f821691505b602082108103611d1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561096157600081815260208120601f850160051c81016020861015611d7c5750805b601f850160051c820191505b81811015611d9b57828155600101611d88565b505050505050565b815167ffffffffffffffff811115611dbd57611dbd611a93565b611dd181611dcb8454611ce6565b84611d55565b602080601f831160018114611e065760008415611dee5750858301515b600019600386901b1c1916600185901b178555611d9b565b600085815260208120601f198616915b82811015611e3557888601518255948401946001909101908401611e16565b5085821015611e535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106f2576106f2611e63565b634e487b7160e01b600052601260045260246000fd5b600082611eb557611eb5611e90565b500490565b808201808211156106f2576106f2611e63565b818103818111156106f2576106f2611e63565b600084516020611ef38285838a016119d1565b855191840191611f068184848a016119d1565b8554920191600090611f1781611ce6565b60018281168015611f2f5760018114611f4457611f70565b60ff1984168752821515830287019450611f70565b896000528560002060005b84811015611f6857815489820152908301908701611f4f565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fb3908301846119f5565b9695505050505050565b600060208284031215611fcf57600080fd5b81516111ab8161199e565b600060018201611fec57611fec611e63565b5060010190565b60008261200257612002611e90565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212200a23e8f80e4be199d4a9b3d56ebfe52122e4ee207ede387ac86ae2ab38ab25eb64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000185468697320697320686f77207765206c6f6f6b206c696b6500000000000000000000000000000000000000000000000000000000000000000000000000000006544948574c4c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063dc33e6811161006f578063dc33e68114610606578063e0a8085314610626578063e985e9c514610646578063efbd73f414610666578063f2fde38b1461068657600080fd5b8063a22cb4651461057b578063a45ba8e71461059b578063b88d4fde146105b0578063c87b56dd146105d0578063d5abeb01146105f057600080fd5b80637ec4a659116100f25780637ec4a659146104ff5780638da5cb5b1461051f57806395d89b411461053d5780639d3d41de14610552578063a0712d681461056857600080fd5b806362b99ad4146104955780636352211e146104aa57806370a08231146104ca578063715018a6146104ea57600080fd5b8063239c70ae116101b157806344a0d68a1161017557806344a0d68a146104075780634fdd43cb1461042757806351830227146104475780635503a0e8146104615780635c975abb1461047657600080fd5b8063239c70ae1461037c57806323b872dd146103925780632aba3832146103b25780633ccfd60b146103d257806342842e0e146103e757600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806316ba10e01461031f57806316c38b3c1461033f57806318160ddd1461035f57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063088a4ed0146102b9575b600080fd5b34801561023657600080fd5b5061024a6102453660046119b4565b6106a6565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106f8565b6040516102569190611a21565b34801561028d57600080fd5b506102a161029c366004611a34565b61078a565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611a34565b6107ce565b005b3480156102e757600080fd5b506102d96102f6366004611a69565b610806565b34801561030757600080fd5b50610311600d5481565b604051908152602001610256565b34801561032b57600080fd5b506102d961033a366004611b1f565b6108d8565b34801561034b57600080fd5b506102d961035a366004611b78565b610912565b34801561036b57600080fd5b506001546000540360001901610311565b34801561038857600080fd5b50610311600f5481565b34801561039e57600080fd5b506102d96103ad366004611b93565b610956565b3480156103be57600080fd5b506102d96103cd366004611a34565b610966565b3480156103de57600080fd5b506102d9610995565b3480156103f357600080fd5b506102d9610402366004611b93565b610b9c565b34801561041357600080fd5b506102d9610422366004611a34565b610bb7565b34801561043357600080fd5b506102d9610442366004611b1f565b610be6565b34801561045357600080fd5b5060115461024a9060ff1681565b34801561046d57600080fd5b50610274610c1c565b34801561048257600080fd5b5060115461024a90610100900460ff1681565b3480156104a157600080fd5b50610274610caa565b3480156104b657600080fd5b506102a16104c5366004611a34565b610cb7565b3480156104d657600080fd5b506103116104e5366004611bcf565b610cc2565b3480156104f657600080fd5b506102d9610d11565b34801561050b57600080fd5b506102d961051a366004611b1f565b610d47565b34801561052b57600080fd5b506008546001600160a01b03166102a1565b34801561054957600080fd5b50610274610d7d565b34801561055e57600080fd5b5061031160105481565b6102d9610576366004611a34565b610d8c565b34801561058757600080fd5b506102d9610596366004611bea565b610f5d565b3480156105a757600080fd5b50610274610ff2565b3480156105bc57600080fd5b506102d96105cb366004611c1d565b610fff565b3480156105dc57600080fd5b506102746105eb366004611a34565b611043565b3480156105fc57600080fd5b50610311600e5481565b34801561061257600080fd5b50610311610621366004611bcf565b6111b2565b34801561063257600080fd5b506102d9610641366004611b78565b6111dd565b34801561065257600080fd5b5061024a610661366004611c99565b61121a565b34801561067257600080fd5b506102d9610681366004611cc3565b611248565b34801561069257600080fd5b506102d96106a1366004611bcf565b6112dc565b60006301ffc9a760e01b6001600160e01b0319831614806106d757506380ac58cd60e01b6001600160e01b03198316145b806106f25750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461070790611ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611ce6565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b600061079582611377565b6107b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108015760405162461bcd60e51b81526004016107f890611d20565b60405180910390fd5b600f55565b6000610811826113ac565b9050806001600160a01b0316836001600160a01b0316036108455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461087c5761085f813361121a565b61087c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016107f890611d20565b600b61090e8282611da3565b5050565b6008546001600160a01b0316331461093c5760405162461bcd60e51b81526004016107f890611d20565b601180549115156101000261ff0019909216919091179055565b61096183838361141b565b505050565b6008546001600160a01b031633146109905760405162461bcd60e51b81526004016107f890611d20565b601055565b6008546001600160a01b031633146109bf5760405162461bcd60e51b81526004016107f890611d20565b600260095403610a115760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107f8565b600260095560006064610a25476032611e79565b610a2f9190611ea6565b905060006064610a40476032611e79565b610a4a9190611ea6565b60405190915060009073cff00c037ce5d7b23dead78bb2ff96e57be62b339084908381818185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610ab657600080fd5b60405160009073d1ce3a009b643299f9076261dbf137cedff2ddbf9084908381818185875af1925050503d8060008114610b0c576040519150601f19603f3d011682016040523d82523d6000602084013e610b11565b606091505b5050905080610b1f57600080fd5b6000610b336008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b7d576040519150601f19603f3d011682016040523d82523d6000602084013e610b82565b606091505b5050905080610b9057600080fd5b50506001600955505050565b61096183838360405180602001604052806000815250610fff565b6008546001600160a01b03163314610be15760405162461bcd60e51b81526004016107f890611d20565b600d55565b6008546001600160a01b03163314610c105760405162461bcd60e51b81526004016107f890611d20565b600c61090e8282611da3565b600b8054610c2990611ce6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590611ce6565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b505050505081565b600a8054610c2990611ce6565b60006106f2826113ac565b60006001600160a01b038216610ceb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b81526004016107f890611d20565b610d4560006115c2565b565b6008546001600160a01b03163314610d715760405162461bcd60e51b81526004016107f890611d20565b600a61090e8282611da3565b60606003805461070790611ce6565b6011548190610100900460ff1615610de65760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107f8565b600e546001546000548391900360001901610e019190611eba565b1115610e465760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107f8565b600081118015610e6b5750600f5481610e5e336111b2565b610e689190611eba565b11155b610eae5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107f8565b816000601054610ebd336111b2565b1015610eef576000610ece336111b2565b601054610edb9190611ecd565b905080600d54610eeb9190611e79565b9150505b8082600d54610efe9190611e79565b610f089190611ecd565b341015610f4d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107f8565b610f573385611614565b50505050565b336001600160a01b03831603610f865760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610c2990611ce6565b61100a84848461141b565b6001600160a01b0383163b15610f57576110268484848461162e565b610f57576040516368d2bf6b60e11b815260040160405180910390fd5b606061104e82611377565b6110b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f8565b60115460ff16151560000361115357600c80546110ce90611ce6565b80601f01602080910402602001604051908101604052809291908181526020018280546110fa90611ce6565b80156111475780601f1061111c57610100808354040283529160200191611147565b820191906000526020600020905b81548152906001019060200180831161112a57829003601f168201915b50505050509050919050565b600061115d61171a565b9050600081511161117d57604051806020016040528060008152506111ab565b8061118784611729565b600b60405160200161119b93929190611ee0565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106f2565b6008546001600160a01b031633146112075760405162461bcd60e51b81526004016107f890611d20565b6011805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112725760405162461bcd60e51b81526004016107f890611d20565b600e54600154600054849190036000190161128d9190611eba565b11156112d25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107f8565b61090e8183611614565b6008546001600160a01b031633146113065760405162461bcd60e51b81526004016107f890611d20565b6001600160a01b03811661136b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b611374816115c2565b50565b60008160011115801561138b575060005482105b80156106f2575050600090815260046020526040902054600160e01b161590565b60008180600111611402576000548110156114025760008181526004602052604081205490600160e01b82169003611400575b806000036111ab5750600019016000818152600460205260409020546113df565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611426826113ac565b9050836001600160a01b0316816001600160a01b0316146114595760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114775750611477853361121a565b806114925750336114878461078a565b6001600160a01b0316145b9050806114b257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114d957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361157a576001830160008181526004602052604081205490036115785760005481146115785760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61090e82826040518060200160405280600081525061182a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611663903390899088908890600401611f80565b6020604051808303816000875af192505050801561169e575060408051601f3d908101601f1916820190925261169b91810190611fbd565b60015b6116fc573d8080156116cc576040519150601f19603f3d011682016040523d82523d6000602084013e6116d1565b606091505b5080516000036116f4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461070790611ce6565b6060816000036117505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561177a578061176481611fda565b91506117739050600a83611ea6565b9150611754565b60008167ffffffffffffffff81111561179557611795611a93565b6040519080825280601f01601f1916602001820160405280156117bf576020820181803683370190505b5090505b8415611712576117d4600183611ecd565b91506117e1600a86611ff3565b6117ec906030611eba565b60f81b81838151811061180157611801612007565b60200101906001600160f81b031916908160001a905350611823600a86611ea6565b94506117c3565b6000546001600160a01b03841661185357604051622e076360e81b815260040160405180910390fd5b826000036118745760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611949575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611912600087848060010195508761162e565b61192f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118c757826000541461194457600080fd5b61198e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061194a575b506000908155610f579085838684565b6001600160e01b03198116811461137457600080fd5b6000602082840312156119c657600080fd5b81356111ab8161199e565b60005b838110156119ec5781810151838201526020016119d4565b50506000910152565b60008151808452611a0d8160208601602086016119d1565b601f01601f19169290920160200192915050565b6020815260006111ab60208301846119f5565b600060208284031215611a4657600080fd5b5035919050565b80356001600160a01b0381168114611a6457600080fd5b919050565b60008060408385031215611a7c57600080fd5b611a8583611a4d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ac457611ac4611a93565b604051601f8501601f19908116603f01168101908282118183101715611aec57611aec611a93565b81604052809350858152868686011115611b0557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b3157600080fd5b813567ffffffffffffffff811115611b4857600080fd5b8201601f81018413611b5957600080fd5b61171284823560208401611aa9565b80358015158114611a6457600080fd5b600060208284031215611b8a57600080fd5b6111ab82611b68565b600080600060608486031215611ba857600080fd5b611bb184611a4d565b9250611bbf60208501611a4d565b9150604084013590509250925092565b600060208284031215611be157600080fd5b6111ab82611a4d565b60008060408385031215611bfd57600080fd5b611c0683611a4d565b9150611c1460208401611b68565b90509250929050565b60008060008060808587031215611c3357600080fd5b611c3c85611a4d565b9350611c4a60208601611a4d565b925060408501359150606085013567ffffffffffffffff811115611c6d57600080fd5b8501601f81018713611c7e57600080fd5b611c8d87823560208401611aa9565b91505092959194509250565b60008060408385031215611cac57600080fd5b611cb583611a4d565b9150611c1460208401611a4d565b60008060408385031215611cd657600080fd5b82359150611c1460208401611a4d565b600181811c90821680611cfa57607f821691505b602082108103611d1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561096157600081815260208120601f850160051c81016020861015611d7c5750805b601f850160051c820191505b81811015611d9b57828155600101611d88565b505050505050565b815167ffffffffffffffff811115611dbd57611dbd611a93565b611dd181611dcb8454611ce6565b84611d55565b602080601f831160018114611e065760008415611dee5750858301515b600019600386901b1c1916600185901b178555611d9b565b600085815260208120601f198616915b82811015611e3557888601518255948401946001909101908401611e16565b5085821015611e535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106f2576106f2611e63565b634e487b7160e01b600052601260045260246000fd5b600082611eb557611eb5611e90565b500490565b808201808211156106f2576106f2611e63565b818103818111156106f2576106f2611e63565b600084516020611ef38285838a016119d1565b855191840191611f068184848a016119d1565b8554920191600090611f1781611ce6565b60018281168015611f2f5760018114611f4457611f70565b60ff1984168752821515830287019450611f70565b896000528560002060005b84811015611f6857815489820152908301908701611f4f565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fb3908301846119f5565b9695505050505050565b600060208284031215611fcf57600080fd5b81516111ab8161199e565b600060018201611fec57611fec611e63565b5060010190565b60008261200257612002611e90565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212200a23e8f80e4be199d4a9b3d56ebfe52122e4ee207ede387ac86ae2ab38ab25eb64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000185468697320697320686f77207765206c6f6f6b206c696b6500000000000000000000000000000000000000000000000000000000000000000000000000000006544948574c4c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): This is how we look like
Arg [1] : _tokenSymbol (string): TIHWLL
Arg [2] : _hiddenMetadataUri (string): ipfs

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 5468697320697320686f77207765206c6f6f6b206c696b650000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 544948574c4c0000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 6970667300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47062:3952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21706:615;;;;;;;;;;-1:-1:-1;21706:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21706:615:0;;;;;;;;26719:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28787:204::-;;;;;;;;;;-1:-1:-1;28787:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;28787:204:0;1533:203:1;49427:110:0;;;;;;;;;;-1:-1:-1;49427:110:0;;;;;:::i;:::-;;:::i;:::-;;28247:474;;;;;;;;;;-1:-1:-1;28247:474:0;;;;;:::i;:::-;;:::i;47261:34::-;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;47261:34:0;2178:177:1;50007:100:0;;;;;;;;;;-1:-1:-1;50007:100:0;;;;;:::i;:::-;;:::i;50113:77::-;;;;;;;;;;-1:-1:-1;50113:77:0;;;;;:::i;:::-;;:::i;20760:315::-;;;;;;;;;;-1:-1:-1;48883:1:0;21026:12;20813:7;21010:13;:28;-1:-1:-1;;21010:46:0;20760:315;;47337:32;;;;;;;;;;;;;;;;29673:170;;;;;;;;;;-1:-1:-1;29673:170:0;;;;;:::i;:::-;;:::i;49543:126::-;;;;;;;;;;-1:-1:-1;49543:126:0;;;;;:::i;:::-;;:::i;50196:592::-;;;;;;;;;;;;;:::i;29914:185::-;;;;;;;;;;-1:-1:-1;29914:185:0;;;;;:::i;:::-;;:::i;49347:74::-;;;;;;;;;;-1:-1:-1;49347:74:0;;;;;:::i;:::-;;:::i;49763:132::-;;;;;;;;;;-1:-1:-1;49763:132:0;;;;;:::i;:::-;;:::i;47417:28::-;;;;;;;;;;-1:-1:-1;47417:28:0;;;;;;;;47185:33;;;;;;;;;;;;;:::i;47450:25::-;;;;;;;;;;-1:-1:-1;47450:25:0;;;;;;;;;;;47152:28;;;;;;;;;;;;;:::i;26508:144::-;;;;;;;;;;-1:-1:-1;26508:144:0;;;;;:::i;:::-;;:::i;22385:224::-;;;;;;;;;;-1:-1:-1;22385:224:0;;;;;:::i;:::-;;:::i;7732:103::-;;;;;;;;;;;;;:::i;49901:100::-;;;;;;;;;;-1:-1:-1;49901:100:0;;;;;:::i;:::-;;:::i;7081:87::-;;;;;;;;;;-1:-1:-1;7154:6:0;;-1:-1:-1;;;;;7154:6:0;7081:87;;26888:104;;;;;;;;;;;;;:::i;47374:36::-;;;;;;;;;;;;;;;;48414:160;;;;;;:::i;:::-;;:::i;29063:308::-;;;;;;;;;;-1:-1:-1;29063:308:0;;;;;:::i;:::-;;:::i;47223:31::-;;;;;;;;;;;;;:::i;30170:396::-;;;;;;;;;;-1:-1:-1;30170:396:0;;;;;:::i;:::-;;:::i;48896:445::-;;;;;;;;;;-1:-1:-1;48896:445:0;;;;;:::i;:::-;;:::i;47300:32::-;;;;;;;;;;;;;;;;50794:107;;;;;;;;;;-1:-1:-1;50794:107:0;;;;;:::i;:::-;;:::i;49675:81::-;;;;;;;;;;-1:-1:-1;49675:81:0;;;;;:::i;:::-;;:::i;29442:164::-;;;;;;;;;;-1:-1:-1;29442:164:0;;;;;:::i;:::-;;:::i;48582:207::-;;;;;;;;;;-1:-1:-1;48582:207:0;;;;;:::i;:::-;;:::i;7990:201::-;;;;;;;;;;-1:-1:-1;7990:201:0;;;;;:::i;:::-;;:::i;21706:615::-;21791:4;-1:-1:-1;;;;;;;;;22091:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22168:25:0;;;22091:102;:179;;;-1:-1:-1;;;;;;;;;;22245:25:0;;;22091:179;22071:199;21706:615;-1:-1:-1;;21706:615:0:o;26719:100::-;26773:13;26806:5;26799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26719:100;:::o;28787:204::-;28855:7;28880:16;28888:7;28880;:16::i;:::-;28875:64;;28905:34;;-1:-1:-1;;;28905:34:0;;;;;;;;;;;28875:64;-1:-1:-1;28959:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28959:24:0;;28787:204::o;49427:110::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;;;;;;;;;49501:13:::1;:30:::0;49427:110::o;28247:474::-;28320:13;28352:27;28371:7;28352:18;:27::i;:::-;28320:61;;28402:5;-1:-1:-1;;;;;28396:11:0;:2;-1:-1:-1;;;;;28396:11:0;;28392:48;;28416:24;;-1:-1:-1;;;28416:24:0;;;;;;;;;;;28392:48;5832:10;-1:-1:-1;;;;;28457:28:0;;;28453:175;;28505:44;28522:5;5832:10;29442:164;:::i;28505:44::-;28500:128;;28577:35;;-1:-1:-1;;;28577:35:0;;;;;;;;;;;28500:128;28640:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28640:29:0;-1:-1:-1;;;;;28640:29:0;;;;;;;;;28685:28;;28640:24;;28685:28;;;;;;;28309:412;28247:474;;:::o;50007:100::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;50079:9:::1;:22;50091:10:::0;50079:9;:22:::1;:::i;:::-;;50007:100:::0;:::o;50113:77::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;50169:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;50169:15:0;;::::1;::::0;;;::::1;::::0;;50113:77::o;29673:170::-;29807:28;29817:4;29823:2;29827:7;29807:9;:28::i;:::-;29673:170;;;:::o;49543:126::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;49625:17:::1;:38:::0;49543:126::o;50196:592::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;4073:1:::1;4671:7;;:19:::0;4663:63:::1;;;::::0;-1:-1:-1;;;4663:63:0;;9066:2:1;4663:63:0::1;::::0;::::1;9048:21:1::0;9105:2;9085:18;;;9078:30;9144:33;9124:18;;;9117:61;9195:18;;4663:63:0::1;8864:355:1::0;4663:63:0::1;4073:1;4804:7;:18:::0;50253:21:::2;50306:3;50277:26;:21;50301:2;50277:26;:::i;:::-;:32;;;;:::i;:::-;50253:56:::0;-1:-1:-1;50316:23:0::2;50371:3;50342:26;:21;50366:2;50342:26;:::i;:::-;:32;;;;:::i;:::-;50408:82;::::0;50316:58;;-1:-1:-1;50384:18:0::2;::::0;50416:42:::2;::::0;50472:13;;50384:18;50408:82;50384:18;50408:82;50472:13;50416:42;50408:82:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50383:107;;;50505:13;50497:22;;;::::0;::::2;;50555:84;::::0;50529:20:::2;::::0;50563:42:::2;::::0;50619:15;;50529:20;50555:84;50529:20;50555:84;50619:15;50563:42;50555:84:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50528:111;;;50654:15;50646:24;;;::::0;::::2;;50680:15;50709:7;7154:6:::0;;-1:-1:-1;;;;;7154:6:0;;7081:87;50709:7:::2;-1:-1:-1::0;;;;;50701:21:0::2;50730;50701:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50679:77;;;50771:10;50763:19;;;::::0;::::2;;-1:-1:-1::0;;4029:1:0::1;4983:7;:22:::0;-1:-1:-1;;;50196:592:0:o;29914:185::-;30052:39;30069:4;30075:2;30079:7;30052:39;;;;;;;;;;;;:16;:39::i;49347:74::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;49403:4:::1;:12:::0;49347:74::o;49763:132::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;49851:17:::1;:38;49871:18:::0;49851:17;:38:::1;:::i;47185:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47152:28::-;;;;;;;:::i;26508:144::-;26572:7;26615:27;26634:7;26615:18;:27::i;22385:224::-;22449:7;-1:-1:-1;;;;;22473:19:0;;22469:60;;22501:28;;-1:-1:-1;;;22501:28:0;;;;;;;;;;;22469:60;-1:-1:-1;;;;;;22547:25:0;;;;;:18;:25;;;;;;17724:13;22547:54;;22385:224::o;7732:103::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;7797:30:::1;7824:1;7797:18;:30::i;:::-;7732:103::o:0;49901:100::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;49973:9:::1;:22;49985:10:::0;49973:9;:22:::1;:::i;26888:104::-:0;26944:13;26977:7;26970:14;;;;;:::i;48414:160::-;47756:6;;48479:11;;47756:6;;;;;47755:7;47747:43;;;;-1:-1:-1;;;47747:43:0;;10198:2:1;47747:43:0;;;10180:21:1;10237:2;10217:18;;;10210:30;10276:25;10256:18;;;10249:53;10319:18;;47747:43:0;9996:347:1;47747:43:0;47836:9;;48883:1;21026:12;20813:7;21010:13;47821:11;;21010:28;;-1:-1:-1;;21010:46:0;47805:27;;;;:::i;:::-;:40;;47797:73;;;;-1:-1:-1;;;47797:73:0;;10680:2:1;47797:73:0;;;10662:21:1;10719:2;10699:18;;;10692:30;-1:-1:-1;;;10738:18:1;;;10731:50;10798:18;;47797:73:0;10478:344:1;47797:73:0;47907:1;47893:11;:15;:74;;;;;47954:13;;47939:11;47912:24;47925:10;47912:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;47893:74;47877:129;;;;-1:-1:-1;;;47877:129:0;;11029:2:1;47877:129:0;;;11011:21:1;11068:2;11048:18;;;11041:30;-1:-1:-1;;;11087:18:1;;;11080:50;11147:18;;47877:129:0;10827:344:1;47877:129:0;48512:11:::1;48083:22;48153:17;;48126:24;48139:10;48126:12;:24::i;:::-;:44;48122:181;;;48181:21;48225:24;48238:10;48225:12;:24::i;:::-;48205:17;;:44;;;;:::i;:::-;48181:68;;48282:13;48275:4;;:20;;;;:::i;:::-;48258:37;;48172:131;48122:181;48356:14;48342:11;48335:4;;:18;;;;:::i;:::-;:35;;;;:::i;:::-;48322:9;:48;;48314:80;;;::::0;-1:-1:-1;;;48314:80:0;;11511:2:1;48314:80:0::1;::::0;::::1;11493:21:1::0;11550:2;11530:18;;;11523:30;-1:-1:-1;;;11569:18:1;;;11562:49;11628:18;;48314:80:0::1;11309:343:1::0;48314:80:0::1;48532:36:::2;5832:10:::0;48556:11:::2;48532:9;:36::i;:::-;48076:332:::1;48013:1;48414:160:::0;;:::o;29063:308::-;5832:10;-1:-1:-1;;;;;29162:31:0;;;29158:61;;29202:17;;-1:-1:-1;;;29202:17:0;;;;;;;;;;;29158:61;5832:10;29232:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29232:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29232:60:0;;;;;;;;;;29308:55;;540:41:1;;;29232:49:0;;5832:10;29308:55;;513:18:1;29308:55:0;;;;;;;29063:308;;:::o;47223:31::-;;;;;;;:::i;30170:396::-;30337:28;30347:4;30353:2;30357:7;30337:9;:28::i;:::-;-1:-1:-1;;;;;30380:14:0;;;:19;30376:183;;30419:56;30450:4;30456:2;30460:7;30469:5;30419:30;:56::i;:::-;30414:145;;30503:40;;-1:-1:-1;;;30503:40:0;;;;;;;;;;;48896:445;48970:13;49000:17;49008:8;49000:7;:17::i;:::-;48992:77;;;;-1:-1:-1;;;48992:77:0;;11859:2:1;48992:77:0;;;11841:21:1;11898:2;11878:18;;;11871:30;11937:34;11917:18;;;11910:62;-1:-1:-1;;;11988:18:1;;;11981:45;12043:19;;48992:77:0;11657:411:1;48992:77:0;49082:8;;;;:17;;:8;:17;49078:64;;49117:17;49110:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48896:445;;;:::o;49078:64::-;49150:28;49181:10;:8;:10::i;:::-;49150:41;;49236:1;49211:14;49205:28;:32;:130;;;;;;;;;;;;;;;;;49273:14;49289:19;:8;:17;:19::i;:::-;49310:9;49256:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49205:130;49198:137;48896:445;-1:-1:-1;;;48896:445:0:o;50794:107::-;-1:-1:-1;;;;;22780:25:0;;50852:7;22780:25;;;:18;:25;;17861:2;22780:25;;;;17724:13;22780:49;;22779:80;50875:20;22691:176;49675:81;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;49733:8:::1;:17:::0;;-1:-1:-1;;49733:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49675:81::o;29442:164::-;-1:-1:-1;;;;;29563:25:0;;;29539:4;29563:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29442:164::o;48582:207::-;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;48709:9:::1;::::0;48883:1;21026:12;20813:7;21010:13;48694:11;;21010:28;;-1:-1:-1;;21010:46:0;48678:27:::1;;;;:::i;:::-;:40;;48670:73;;;::::0;-1:-1:-1;;;48670:73:0;;10680:2:1;48670:73:0::1;::::0;::::1;10662:21:1::0;10719:2;10699:18;;;10692:30;-1:-1:-1;;;10738:18:1;;;10731:50;10798:18;;48670:73:0::1;10478:344:1::0;48670:73:0::1;48750:33;48760:9;48771:11;48750:9;:33::i;7990:201::-:0;7154:6;;-1:-1:-1;;;;;7154:6:0;5832:10;7301:23;7293:68;;;;-1:-1:-1;;;7293:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8079:22:0;::::1;8071:73;;;::::0;-1:-1:-1;;;8071:73:0;;13536:2:1;8071:73:0::1;::::0;::::1;13518:21:1::0;13575:2;13555:18;;;13548:30;13614:34;13594:18;;;13587:62;-1:-1:-1;;;13665:18:1;;;13658:36;13711:19;;8071:73:0::1;13334:402:1::0;8071:73:0::1;8155:28;8174:8;8155:18;:28::i;:::-;7990:201:::0;:::o;30821:273::-;30878:4;30934:7;48883:1;30915:26;;:66;;;;;30968:13;;30958:7;:23;30915:66;:152;;;;-1:-1:-1;;31019:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31019:43:0;:48;;30821:273::o;24023:1129::-;24090:7;24125;;48883:1;24174:23;24170:915;;24227:13;;24220:4;:20;24216:869;;;24265:14;24282:23;;;:17;:23;;;;;;;-1:-1:-1;;;24371:23:0;;:28;;24367:699;;24890:113;24897:6;24907:1;24897:11;24890:113;;-1:-1:-1;;;24968:6:0;24950:25;;;;:17;:25;;;;;;24890:113;;24367:699;24242:843;24216:869;25113:31;;-1:-1:-1;;;25113:31:0;;;;;;;;;;;36060:2515;36175:27;36205;36224:7;36205:18;:27::i;:::-;36175:57;;36290:4;-1:-1:-1;;;;;36249:45:0;36265:19;-1:-1:-1;;;;;36249:45:0;;36245:86;;36303:28;;-1:-1:-1;;;36303:28:0;;;;;;;;;;;36245:86;36344:22;5832:10;-1:-1:-1;;;;;36370:27:0;;;;:87;;-1:-1:-1;36414:43:0;36431:4;5832:10;29442:164;:::i;36414:43::-;36370:147;;;-1:-1:-1;5832:10:0;36474:20;36486:7;36474:11;:20::i;:::-;-1:-1:-1;;;;;36474:43:0;;36370:147;36344:174;;36536:17;36531:66;;36562:35;;-1:-1:-1;;;36562:35:0;;;;;;;;;;;36531:66;-1:-1:-1;;;;;36612:16:0;;36608:52;;36637:23;;-1:-1:-1;;;36637:23:0;;;;;;;;;;;36608:52;36789:24;;;;:15;:24;;;;;;;;36782:31;;-1:-1:-1;;;;;;36782:31:0;;;-1:-1:-1;;;;;37181:24:0;;;;;:18;:24;;;;;37179:26;;-1:-1:-1;;37179:26:0;;;37250:22;;;;;;;37248:24;;-1:-1:-1;37248:24:0;;;37543:26;;;:17;:26;;;;;-1:-1:-1;;;37631:15:0;18378:3;37631:41;37589:84;;:128;;37543:174;;;37837:46;;:51;;37833:626;;37941:1;37931:11;;37909:19;38064:30;;;:17;:30;;;;;;:35;;38060:384;;38202:13;;38187:11;:28;38183:242;;38349:30;;;;:17;:30;;;;;:52;;;38183:242;37890:569;37833:626;38506:7;38502:2;-1:-1:-1;;;;;38487:27:0;38496:4;-1:-1:-1;;;;;38487:27:0;;;;;;;;;;;36164:2411;;36060:2515;;;:::o;8351:191::-;8444:6;;;-1:-1:-1;;;;;8461:17:0;;;-1:-1:-1;;;;;;8461:17:0;;;;;;;8494:40;;8444:6;;;8461:17;8444:6;;8494:40;;8425:16;;8494:40;8414:128;8351:191;:::o;31178:104::-;31247:27;31257:2;31261:8;31247:27;;;;;;;;;;;;:9;:27::i;42272:716::-;42456:88;;-1:-1:-1;;;42456:88:0;;42435:4;;-1:-1:-1;;;;;42456:45:0;;;;;:88;;5832:10;;42523:4;;42529:7;;42538:5;;42456:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42456:88:0;;;;;;;;-1:-1:-1;;42456:88:0;;;;;;;;;;;;:::i;:::-;;;42452:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42739:6;:13;42756:1;42739:18;42735:235;;42785:40;;-1:-1:-1;;;42785:40:0;;;;;;;;;;;42735:235;42928:6;42922:13;42913:6;42909:2;42905:15;42898:38;42452:529;-1:-1:-1;;;;;;42615:64:0;-1:-1:-1;;;42615:64:0;;-1:-1:-1;42452:529:0;42272:716;;;;;;:::o;50907:104::-;50967:13;50996:9;50989:16;;;;;:::i;449:723::-;505:13;726:5;735:1;726:10;722:53;;-1:-1:-1;;753:10:0;;;;;;;;;;;;-1:-1:-1;;;753:10:0;;;;;449:723::o;722:53::-;800:5;785:12;841:78;848:9;;841:78;;874:8;;;;:::i;:::-;;-1:-1:-1;897:10:0;;-1:-1:-1;905:2:0;897:10;;:::i;:::-;;;841:78;;;929:19;961:6;951:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;951:17:0;;929:39;;979:154;986:10;;979:154;;1013:11;1023:1;1013:11;;:::i;:::-;;-1:-1:-1;1082:10:0;1090:2;1082:5;:10;:::i;:::-;1069:24;;:2;:24;:::i;:::-;1056:39;;1039:6;1046;1039:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1039:56:0;;;;;;;;-1:-1:-1;1110:11:0;1119:2;1110:11;;:::i;:::-;;;979:154;;31655:2236;31778:20;31801:13;-1:-1:-1;;;;;31829:16:0;;31825:48;;31854:19;;-1:-1:-1;;;31854:19:0;;;;;;;;;;;31825:48;31888:8;31900:1;31888:13;31884:44;;31910:18;;-1:-1:-1;;;31910:18:0;;;;;;;;;;;31884:44;-1:-1:-1;;;;;32477:22:0;;;;;;:18;:22;;;;17861:2;32477:22;;;:70;;32515:31;32503:44;;32477:70;;;32790:31;;;:17;:31;;;;;32883:15;18378:3;32883:41;32841:84;;-1:-1:-1;32961:13:0;;18641:3;32946:56;32841:162;32790:213;;:31;;33084:23;;;;33128:14;:19;33124:635;;33168:313;33199:38;;33224:12;;-1:-1:-1;;;;;33199:38:0;;;33216:1;;33199:38;;33216:1;;33199:38;33265:69;33304:1;33308:2;33312:14;;;;;;33328:5;33265:30;:69::i;:::-;33260:174;;33370:40;;-1:-1:-1;;;33370:40:0;;;;;;;;;;;33260:174;33476:3;33461:12;:18;33168:313;;33562:12;33545:13;;:29;33541:43;;33576:8;;;33541:43;33124:635;;;33625:119;33656:40;;33681:14;;;;;-1:-1:-1;;;;;33656:40:0;;;33673:1;;33656:40;;33673:1;;33656:40;33739:3;33724:12;:18;33625:119;;33124:635;-1:-1:-1;33773:13:0;:28;;;33823:60;;33856:2;33860:12;33874:8;33823:60;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:127::-;2421:10;2416:3;2412:20;2409:1;2402:31;2452:4;2449:1;2442:15;2476:4;2473:1;2466:15;2492:632;2557:5;2587:18;2628:2;2620:6;2617:14;2614:40;;;2634:18;;:::i;:::-;2709:2;2703:9;2677:2;2763:15;;-1:-1:-1;;2759:24:1;;;2785:2;2755:33;2751:42;2739:55;;;2809:18;;;2829:22;;;2806:46;2803:72;;;2855:18;;:::i;:::-;2895:10;2891:2;2884:22;2924:6;2915:15;;2954:6;2946;2939:22;2994:3;2985:6;2980:3;2976:16;2973:25;2970:45;;;3011:1;3008;3001:12;2970:45;3061:6;3056:3;3049:4;3041:6;3037:17;3024:44;3116:1;3109:4;3100:6;3092;3088:19;3084:30;3077:41;;;;2492:632;;;;;:::o;3129:451::-;3198:6;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3307:9;3294:23;3340:18;3332:6;3329:30;3326:50;;;3372:1;3369;3362:12;3326:50;3395:22;;3448:4;3440:13;;3436:27;-1:-1:-1;3426:55:1;;3477:1;3474;3467:12;3426:55;3500:74;3566:7;3561:2;3548:16;3543:2;3539;3535:11;3500:74;:::i;3585:160::-;3650:20;;3706:13;;3699:21;3689:32;;3679:60;;3735:1;3732;3725:12;3750:180;3806:6;3859:2;3847:9;3838:7;3834:23;3830:32;3827:52;;;3875:1;3872;3865:12;3827:52;3898:26;3914:9;3898:26;:::i;3935:328::-;4012:6;4020;4028;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;4120:29;4139:9;4120:29;:::i;:::-;4110:39;;4168:38;4202:2;4191:9;4187:18;4168:38;:::i;:::-;4158:48;;4253:2;4242:9;4238:18;4225:32;4215:42;;3935:328;;;;;:::o;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:667::-;4813:6;4821;4829;4837;4890:3;4878:9;4869:7;4865:23;4861:33;4858:53;;;4907:1;4904;4897:12;4858:53;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;:::-;4968:48;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:22;;5253:4;5245:13;;5241:27;-1:-1:-1;5231:55:1;;5282:1;5279;5272:12;5231:55;5305:74;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5305:74;:::i;:::-;5295:84;;;4718:667;;;;;;;:::o;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:254::-;5723:6;5731;5784:2;5772:9;5763:7;5759:23;5755:32;5752:52;;;5800:1;5797;5790:12;5752:52;5836:9;5823:23;5813:33;;5865:38;5899:2;5888:9;5884:18;5865:38;:::i;5914:380::-;5993:1;5989:12;;;;6036;;;6057:61;;6111:4;6103:6;6099:17;6089:27;;6057:61;6164:2;6156:6;6153:14;6133:18;6130:38;6127:161;;6210:10;6205:3;6201:20;6198:1;6191:31;6245:4;6242:1;6235:15;6273:4;6270:1;6263:15;6127:161;;5914:380;;;:::o;6299:356::-;6501:2;6483:21;;;6520:18;;;6513:30;6579:34;6574:2;6559:18;;6552:62;6646:2;6631:18;;6299:356::o;6786:545::-;6888:2;6883:3;6880:11;6877:448;;;6924:1;6949:5;6945:2;6938:17;6994:4;6990:2;6980:19;7064:2;7052:10;7048:19;7045:1;7041:27;7035:4;7031:38;7100:4;7088:10;7085:20;7082:47;;;-1:-1:-1;7123:4:1;7082:47;7178:2;7173:3;7169:12;7166:1;7162:20;7156:4;7152:31;7142:41;;7233:82;7251:2;7244:5;7241:13;7233:82;;;7296:17;;;7277:1;7266:13;7233:82;;;7237:3;;;6786:545;;;:::o;7507:1352::-;7633:3;7627:10;7660:18;7652:6;7649:30;7646:56;;;7682:18;;:::i;:::-;7711:97;7801:6;7761:38;7793:4;7787:11;7761:38;:::i;:::-;7755:4;7711:97;:::i;:::-;7863:4;;7927:2;7916:14;;7944:1;7939:663;;;;8646:1;8663:6;8660:89;;;-1:-1:-1;8715:19:1;;;8709:26;8660:89;-1:-1:-1;;7464:1:1;7460:11;;;7456:24;7452:29;7442:40;7488:1;7484:11;;;7439:57;8762:81;;7909:944;;7939:663;6733:1;6726:14;;;6770:4;6757:18;;-1:-1:-1;;7975:20:1;;;8093:236;8107:7;8104:1;8101:14;8093:236;;;8196:19;;;8190:26;8175:42;;8288:27;;;;8256:1;8244:14;;;;8123:19;;8093:236;;;8097:3;8357:6;8348:7;8345:19;8342:201;;;8418:19;;;8412:26;-1:-1:-1;;8501:1:1;8497:14;;;8513:3;8493:24;8489:37;8485:42;8470:58;8455:74;;8342:201;-1:-1:-1;;;;;8589:1:1;8573:14;;;8569:22;8556:36;;-1:-1:-1;7507:1352:1:o;9224:127::-;9285:10;9280:3;9276:20;9273:1;9266:31;9316:4;9313:1;9306:15;9340:4;9337:1;9330:15;9356:168;9429:9;;;9460;;9477:15;;;9471:22;;9457:37;9447:71;;9498:18;;:::i;9529:127::-;9590:10;9585:3;9581:20;9578:1;9571:31;9621:4;9618:1;9611:15;9645:4;9642:1;9635:15;9661:120;9701:1;9727;9717:35;;9732:18;;:::i;:::-;-1:-1:-1;9766:9:1;;9661:120::o;10348:125::-;10413:9;;;10434:10;;;10431:36;;;10447:18;;:::i;11176:128::-;11243:9;;;11264:11;;;11261:37;;;11278:18;;:::i;12073:1256::-;12297:3;12335:6;12329:13;12361:4;12374:64;12431:6;12426:3;12421:2;12413:6;12409:15;12374:64;:::i;:::-;12501:13;;12460:16;;;;12523:68;12501:13;12460:16;12558:15;;;12523:68;:::i;:::-;12680:13;;12613:20;;;12653:1;;12718:36;12680:13;12718:36;:::i;:::-;12773:1;12790:18;;;12817:141;;;;12972:1;12967:337;;;;12783:521;;12817:141;-1:-1:-1;;12852:24:1;;12838:39;;12929:16;;12922:24;12908:39;;12897:51;;;-1:-1:-1;12817:141:1;;12967:337;12998:6;12995:1;12988:17;13046:2;13043:1;13033:16;13071:1;13085:169;13099:8;13096:1;13093:15;13085:169;;;13181:14;;13166:13;;;13159:37;13224:16;;;;13116:10;;13085:169;;;13089:3;;13285:8;13278:5;13274:20;13267:27;;12783:521;-1:-1:-1;13320:3:1;;12073:1256;-1:-1:-1;;;;;;;;;;12073:1256:1:o;13741:489::-;-1:-1:-1;;;;;14010:15:1;;;13992:34;;14062:15;;14057:2;14042:18;;14035:43;14109:2;14094:18;;14087:34;;;14157:3;14152:2;14137:18;;14130:31;;;13935:4;;14178:46;;14204:19;;14196:6;14178:46;:::i;:::-;14170:54;13741:489;-1:-1:-1;;;;;;13741:489:1:o;14235:249::-;14304:6;14357:2;14345:9;14336:7;14332:23;14328:32;14325:52;;;14373:1;14370;14363:12;14325:52;14405:9;14399:16;14424:30;14448:5;14424:30;:::i;14489:135::-;14528:3;14549:17;;;14546:43;;14569:18;;:::i;:::-;-1:-1:-1;14616:1:1;14605:13;;14489:135::o;14629:112::-;14661:1;14687;14677:35;;14692:18;;:::i;:::-;-1:-1:-1;14726:9:1;;14629:112::o;14746:127::-;14807:10;14802:3;14798:20;14795:1;14788:31;14838:4;14835:1;14828:15;14862:4;14859:1;14852:15

Swarm Source

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