ETH Price: $2,418.72 (-0.24%)

Token

NangoHentai (N-Hentai)
 

Overview

Max Total Supply

5,000 N-Hentai

Holders

461

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 N-Hentai
0x9152f00f13139Fac7cfc2F552cc1A6D9184e893F
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:
NangoHentai

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//   
//    ███▄    █  ▄▄▄       ███▄    █   ▄████  ▒█████      ██░ ██ ▓█████  ███▄    █ ▄▄▄█████▓ ▄▄▄       ██▓
//    ██ ▀█   █ ▒████▄     ██ ▀█   █  ██▒ ▀█▒▒██▒  ██▒   ▓██░ ██▒▓█   ▀  ██ ▀█   █ ▓  ██▒ ▓▒▒████▄    ▓██▒
//   ▓██  ▀█ ██▒▒██  ▀█▄  ▓██  ▀█ ██▒▒██░▄▄▄░▒██░  ██▒   ▒██▀▀██░▒███   ▓██  ▀█ ██▒▒ ▓██░ ▒░▒██  ▀█▄  ▒██▒
//   ▓██▒  ▐▌██▒░██▄▄▄▄██ ▓██▒  ▐▌██▒░▓█  ██▓▒██   ██░   ░▓█ ░██ ▒▓█  ▄ ▓██▒  ▐▌██▒░ ▓██▓ ░ ░██▄▄▄▄██ ░██░
//   ▒██░   ▓██░ ▓█   ▓██▒▒██░   ▓██░░▒▓███▀▒░ ████▓▒░   ░▓█▒░██▓░▒████▒▒██░   ▓██░  ▒██▒ ░  ▓█   ▓██▒░██░
//   ░ ▒░   ▒ ▒  ▒▒   ▓▒█░░ ▒░   ▒ ▒  ░▒   ▒ ░ ▒░▒░▒░     ▒ ░░▒░▒░░ ▒░ ░░ ▒░   ▒ ▒   ▒ ░░    ▒▒   ▓▒█░░▓  
//   ░ ░░   ░ ▒░  ▒   ▒▒ ░░ ░░   ░ ▒░  ░   ░   ░ ▒ ▒░     ▒ ░▒░ ░ ░ ░  ░░ ░░   ░ ▒░    ░      ▒   ▒▒ ░ ▒ ░
//      ░   ░ ░   ░   ▒      ░   ░ ░ ░ ░   ░ ░ ░ ░ ▒      ░  ░░ ░   ░      ░   ░ ░   ░        ░   ▒    ▒ ░
//            ░       ░  ░         ░       ░     ░ ░      ░  ░  ░   ░  ░         ░                ░  ░ ░  
//                                                                                                        
//   NANGO HENTAI...

//SPDX-License-Identifier: MIT

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

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

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/nangoHentai.sol


pragma solidity ^0.8.4;




contract NangoHentai is Ownable, ERC721A, ReentrancyGuard {
    mapping(address => uint256) public minted;
    NangoHentaiConfig public nangoHentaiConfig;

    uint256 public freeSlots = 600;

    struct NangoHentaiConfig {
        uint256 price;
        uint256 maxMint;
        uint256 maxSupply;
        uint256 maxFree;
    }

    constructor() ERC721A("NangoHentai", "N-Hentai") {
        nangoHentaiConfig.maxSupply = 5000;
        nangoHentaiConfig.price = 7500000000000000;
        nangoHentaiConfig.maxMint = 20;
        nangoHentaiConfig.maxFree = 3;
    }

    function mint(uint256 quantity) external payable {
        NangoHentaiConfig memory config = nangoHentaiConfig;
        uint256 price = uint256(config.price);
        uint256 maxMint = uint256(config.maxMint);
        uint256 maxFree = uint256(config.maxFree);
        uint256 buyed = getAddressBuyed(msg.sender);

        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Sold out."
        );
    
        require(
            buyed + quantity <= maxMint,
            "Exceed maxmium mint."
        );

        if (freeSlots == 0) {
            require(
                quantity * price <= msg.value,
                "No enough eth."
            );
        } else {
            require(
                buyed + quantity <= maxFree,
                "Exceed max free mint."
            );
            freeSlots -= quantity;
        }

        _safeMint(msg.sender, quantity);
        minted[msg.sender] += quantity;
    }

    function devMint(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Sold out."
        );

        _safeMint(msg.sender, quantity);
    }

    function getAddressBuyed(address owner) public view returns (uint256) {
        return minted[owner];
    }
    
    function getMaxSupply() private view returns (uint256) {
        NangoHentaiConfig memory config = nangoHentaiConfig;
        uint256 max = uint256(config.maxSupply);
        return max;
    }

    string private _baseTokenURI;

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

    function setURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPrice(uint256 _price) external onlyOwner {
        nangoHentaiConfig.price = _price;
    }

    function setMaxMint(uint256 _amount) external onlyOwner {
        nangoHentaiConfig.maxMint = _amount;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSlots","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressBuyed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nangoHentaiConfig","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxFree","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610258600f553480156200001757600080fd5b506040518060400160405280600b81526020016a4e616e676f48656e74616960a81b815250604051806040016040528060088152602001674e2d48656e74616960c01b8152506200007762000071620000d060201b60201c565b620000d4565b81516200008c90600390602085019062000124565b508051620000a290600490602084019062000124565b50600060019081556009555050611388600d55661aa535d3d0c000600b556014600c556003600e5562000207565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013290620001ca565b90600052602060002090601f016020900481019282620001565760008555620001a1565b82601f106200017157805160ff1916838001178555620001a1565b82800160010185558215620001a1579182015b82811115620001a157825182559160200191906001019062000184565b50620001af929150620001b3565b5090565b5b80821115620001af5760008155600101620001b4565b600181811c90821680620001df57607f821691505b602082108114156200020157634e487b7160e01b600052602260045260246000fd5b50919050565b6117f780620002176000396000f3fe60806040526004361061019c5760003560e01c8063547520fe116100ec578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146104c1578063c87b56dd146104e1578063e985e9c514610501578063f2fde38b1461054a57600080fd5b8063a0712d6814610478578063a22cb4651461048b578063b449810f146104ab57600080fd5b8063715018a6116100c6578063715018a6146104105780638da5cb5b1461042557806391b7f5ed1461044357806395d89b411461046357600080fd5b8063547520fe146103b05780636352211e146103d057806370a08231146103f057600080fd5b80631e7269c511610159578063375a069a11610133578063375a069a1461031857806339b1350a146103385780633ccfd60b1461037b57806342842e0e1461039057600080fd5b80631e7269c5146102955780631fc895db146102c257806323b872dd146102f857600080fd5b806301ffc9a7146101a157806302fe5305146101d657806306fdde03146101f8578063081812fc1461021a578063095ea7b31461025257806318160ddd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461155a565b61056a565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611594565b6105bc565b005b34801561020457600080fd5b5061020d6105d5565b6040516101cd91906116b7565b34801561022657600080fd5b5061023a610235366004611606565b610667565b6040516001600160a01b0390911681526020016101cd565b34801561025e57600080fd5b506101f661026d366004611530565b6106ab565b34801561027e57600080fd5b50600254600154035b6040519081526020016101cd565b3480156102a157600080fd5b506102876102b036600461138e565b600a6020526000908152604090205481565b3480156102ce57600080fd5b506102876102dd36600461138e565b6001600160a01b03166000908152600a602052604090205490565b34801561030457600080fd5b506101f66103133660046113dc565b61074b565b34801561032457600080fd5b506101f6610333366004611606565b6108dc565b34801561034457600080fd5b50600b54600c54600d54600e5461035b9392919084565b6040805194855260208501939093529183015260608201526080016101cd565b34801561038757600080fd5b506101f6610971565b34801561039c57600080fd5b506101f66103ab3660046113dc565b610a56565b3480156103bc57600080fd5b506101f66103cb366004611606565b610a71565b3480156103dc57600080fd5b5061023a6103eb366004611606565b610a7e565b3480156103fc57600080fd5b5061028761040b36600461138e565b610a89565b34801561041c57600080fd5b506101f6610ad8565b34801561043157600080fd5b506000546001600160a01b031661023a565b34801561044f57600080fd5b506101f661045e366004611606565b610aec565b34801561046f57600080fd5b5061020d610af9565b6101f6610486366004611606565b610b08565b34801561049757600080fd5b506101f66104a63660046114f4565b610d01565b3480156104b757600080fd5b50610287600f5481565b3480156104cd57600080fd5b506101f66104dc366004611418565b610d97565b3480156104ed57600080fd5b5061020d6104fc366004611606565b610de1565b34801561050d57600080fd5b506101c161051c3660046113a9565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561055657600080fd5b506101f661056536600461138e565b610e66565b60006301ffc9a760e01b6001600160e01b03198316148061059b57506380ac58cd60e01b6001600160e01b03198316145b806105b65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105c4610edc565b6105d0601083836112d9565b505050565b6060600380546105e490611744565b80601f016020809104026020016040519081016040528092919081815260200182805461061090611744565b801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067282610f36565b61068f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106b682610a7e565b9050336001600160a01b038216146106ef576106d2813361051c565b6106ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061075682610f5e565b9050836001600160a01b0316816001600160a01b0316146107895760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107d6576107b9863361051c565b6107d657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107fd57604051633a954ecd60e21b815260040160405180910390fd5b801561080857600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b831661089357600184016000818152600560205260409020546108915760015481146108915760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108e4610edc565b60408051608081018252600b548152600c546020820152600d54918101829052600e546060909101528161091b6002546001540390565b61092591906116ca565b11156109645760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064015b60405180910390fd5b61096e3382610fbf565b50565b610979610edc565b600260095414156109cc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161095b565b6002600955604051600090339047908381818185875af1925050503d8060008114610a13576040519150601f19603f3d011682016040523d82523d6000602084013e610a18565b606091505b5050905080610a4e5760405162461bcd60e51b81526020600482015260026024820152616f6b60f01b604482015260640161095b565b506001600955565b6105d083838360405180602001604052806000815250610d97565b610a79610edc565b600c55565b60006105b682610f5e565b60006001600160a01b038216610ab2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610ae0610edc565b610aea6000610fdd565b565b610af4610edc565b600b55565b6060600480546105e490611744565b6040805160808082018352600b54808352600c546020808501829052600d54858701819052600e546060808801829052336000908152600a85528990205489519788018a52868852938701859052978601829052949096018490529394919390929186610b786002546001540390565b610b8291906116ca565b1115610bbc5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161095b565b82610bc787836116ca565b1115610c0c5760405162461bcd60e51b815260206004820152601460248201527322bc31b2b2b21036b0bc36b4bab69036b4b73a1760611b604482015260640161095b565b600f54610c625734610c1e85886116e2565b1115610c5d5760405162461bcd60e51b815260206004820152600e60248201526d27379032b737bab3b41032ba341760911b604482015260640161095b565b610ccb565b81610c6d87836116ca565b1115610cb35760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b21036b0bc10333932b29036b4b73a1760591b604482015260640161095b565b85600f6000828254610cc59190611701565b90915550505b610cd53387610fbf565b336000908152600a602052604081208054889290610cf49084906116ca565b9091555050505050505050565b6001600160a01b038216331415610d2b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da284848461074b565b6001600160a01b0383163b15610ddb57610dbe8484848461102d565b610ddb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dec82610f36565b610e0957604051630a14c4b560e41b815260040160405180910390fd5b6000610e13611124565b9050805160001415610e345760405180602001604052806000815250610e5f565b80610e3e84611133565b604051602001610e4f92919061164b565b6040516020818303038152906040525b9392505050565b610e6e610edc565b6001600160a01b038116610ed35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095b565b61096e81610fdd565b6000546001600160a01b03163314610aea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095b565b6000600154821080156105b6575050600090815260056020526040902054600160e01b161590565b600081600154811015610fa657600081815260056020526040902054600160e01b8116610fa4575b80610e5f575060001901600081815260056020526040902054610f86565b505b604051636f96cda160e11b815260040160405180910390fd5b610fd9828260405180602001604052806000815250611175565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061106290339089908890889060040161167a565b602060405180830381600087803b15801561107c57600080fd5b505af19250505080156110ac575060408051601f3d908101601f191682019092526110a991810190611577565b60015b611107573d8080156110da576040519150601f19603f3d011682016040523d82523d6000602084013e6110df565b606091505b5080516110ff576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546105e490611744565b604080516080019081905280825b600183039250600a81066030018353600a90048061115e57611163565b611141565b50819003601f19909101908152919050565b61117f83836111e2565b6001600160a01b0383163b156105d0576001548281035b6111a9600086838060010194508661102d565b6111c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111965781600154146111db57600080fd5b5050505050565b600154816112035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146112b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161127a565b50816112d057604051622e076360e81b815260040160405180910390fd5b60015550505050565b8280546112e590611744565b90600052602060002090601f016020900481019282611307576000855561134d565b82601f106113205782800160ff1982351617855561134d565b8280016001018555821561134d579182015b8281111561134d578235825591602001919060010190611332565b5061135992915061135d565b5090565b5b80821115611359576000815560010161135e565b80356001600160a01b038116811461138957600080fd5b919050565b6000602082840312156113a057600080fd5b610e5f82611372565b600080604083850312156113bc57600080fd5b6113c583611372565b91506113d360208401611372565b90509250929050565b6000806000606084860312156113f157600080fd5b6113fa84611372565b925061140860208501611372565b9150604084013590509250925092565b6000806000806080858703121561142e57600080fd5b61143785611372565b935061144560208601611372565b925060408501359150606085013567ffffffffffffffff8082111561146957600080fd5b818701915087601f83011261147d57600080fd5b81358181111561148f5761148f611795565b604051601f8201601f19908116603f011681019083821181831017156114b7576114b7611795565b816040528281528a60208487010111156114d057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561150757600080fd5b61151083611372565b91506020830135801515811461152557600080fd5b809150509250929050565b6000806040838503121561154357600080fd5b61154c83611372565b946020939093013593505050565b60006020828403121561156c57600080fd5b8135610e5f816117ab565b60006020828403121561158957600080fd5b8151610e5f816117ab565b600080602083850312156115a757600080fd5b823567ffffffffffffffff808211156115bf57600080fd5b818501915085601f8301126115d357600080fd5b8135818111156115e257600080fd5b8660208285010111156115f457600080fd5b60209290920196919550909350505050565b60006020828403121561161857600080fd5b5035919050565b60008151808452611637816020860160208601611718565b601f01601f19169290920160200192915050565b6000835161165d818460208801611718565b835190830190611671818360208801611718565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116ad9083018461161f565b9695505050505050565b602081526000610e5f602083018461161f565b600082198211156116dd576116dd61177f565b500190565b60008160001904831182151516156116fc576116fc61177f565b500290565b6000828210156117135761171361177f565b500390565b60005b8381101561173357818101518382015260200161171b565b83811115610ddb5750506000910152565b600181811c9082168061175857607f821691505b6020821081141561177957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096e57600080fdfea264697066735822122034ba1e24c4f4320b18cf5b65c7d9d6ff346c5012ee66964df1a52330b78c50bc64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063547520fe116100ec578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146104c1578063c87b56dd146104e1578063e985e9c514610501578063f2fde38b1461054a57600080fd5b8063a0712d6814610478578063a22cb4651461048b578063b449810f146104ab57600080fd5b8063715018a6116100c6578063715018a6146104105780638da5cb5b1461042557806391b7f5ed1461044357806395d89b411461046357600080fd5b8063547520fe146103b05780636352211e146103d057806370a08231146103f057600080fd5b80631e7269c511610159578063375a069a11610133578063375a069a1461031857806339b1350a146103385780633ccfd60b1461037b57806342842e0e1461039057600080fd5b80631e7269c5146102955780631fc895db146102c257806323b872dd146102f857600080fd5b806301ffc9a7146101a157806302fe5305146101d657806306fdde03146101f8578063081812fc1461021a578063095ea7b31461025257806318160ddd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461155a565b61056a565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f1366004611594565b6105bc565b005b34801561020457600080fd5b5061020d6105d5565b6040516101cd91906116b7565b34801561022657600080fd5b5061023a610235366004611606565b610667565b6040516001600160a01b0390911681526020016101cd565b34801561025e57600080fd5b506101f661026d366004611530565b6106ab565b34801561027e57600080fd5b50600254600154035b6040519081526020016101cd565b3480156102a157600080fd5b506102876102b036600461138e565b600a6020526000908152604090205481565b3480156102ce57600080fd5b506102876102dd36600461138e565b6001600160a01b03166000908152600a602052604090205490565b34801561030457600080fd5b506101f66103133660046113dc565b61074b565b34801561032457600080fd5b506101f6610333366004611606565b6108dc565b34801561034457600080fd5b50600b54600c54600d54600e5461035b9392919084565b6040805194855260208501939093529183015260608201526080016101cd565b34801561038757600080fd5b506101f6610971565b34801561039c57600080fd5b506101f66103ab3660046113dc565b610a56565b3480156103bc57600080fd5b506101f66103cb366004611606565b610a71565b3480156103dc57600080fd5b5061023a6103eb366004611606565b610a7e565b3480156103fc57600080fd5b5061028761040b36600461138e565b610a89565b34801561041c57600080fd5b506101f6610ad8565b34801561043157600080fd5b506000546001600160a01b031661023a565b34801561044f57600080fd5b506101f661045e366004611606565b610aec565b34801561046f57600080fd5b5061020d610af9565b6101f6610486366004611606565b610b08565b34801561049757600080fd5b506101f66104a63660046114f4565b610d01565b3480156104b757600080fd5b50610287600f5481565b3480156104cd57600080fd5b506101f66104dc366004611418565b610d97565b3480156104ed57600080fd5b5061020d6104fc366004611606565b610de1565b34801561050d57600080fd5b506101c161051c3660046113a9565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561055657600080fd5b506101f661056536600461138e565b610e66565b60006301ffc9a760e01b6001600160e01b03198316148061059b57506380ac58cd60e01b6001600160e01b03198316145b806105b65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105c4610edc565b6105d0601083836112d9565b505050565b6060600380546105e490611744565b80601f016020809104026020016040519081016040528092919081815260200182805461061090611744565b801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067282610f36565b61068f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106b682610a7e565b9050336001600160a01b038216146106ef576106d2813361051c565b6106ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061075682610f5e565b9050836001600160a01b0316816001600160a01b0316146107895760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107d6576107b9863361051c565b6107d657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107fd57604051633a954ecd60e21b815260040160405180910390fd5b801561080857600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b831661089357600184016000818152600560205260409020546108915760015481146108915760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108e4610edc565b60408051608081018252600b548152600c546020820152600d54918101829052600e546060909101528161091b6002546001540390565b61092591906116ca565b11156109645760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064015b60405180910390fd5b61096e3382610fbf565b50565b610979610edc565b600260095414156109cc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161095b565b6002600955604051600090339047908381818185875af1925050503d8060008114610a13576040519150601f19603f3d011682016040523d82523d6000602084013e610a18565b606091505b5050905080610a4e5760405162461bcd60e51b81526020600482015260026024820152616f6b60f01b604482015260640161095b565b506001600955565b6105d083838360405180602001604052806000815250610d97565b610a79610edc565b600c55565b60006105b682610f5e565b60006001600160a01b038216610ab2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610ae0610edc565b610aea6000610fdd565b565b610af4610edc565b600b55565b6060600480546105e490611744565b6040805160808082018352600b54808352600c546020808501829052600d54858701819052600e546060808801829052336000908152600a85528990205489519788018a52868852938701859052978601829052949096018490529394919390929186610b786002546001540390565b610b8291906116ca565b1115610bbc5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161095b565b82610bc787836116ca565b1115610c0c5760405162461bcd60e51b815260206004820152601460248201527322bc31b2b2b21036b0bc36b4bab69036b4b73a1760611b604482015260640161095b565b600f54610c625734610c1e85886116e2565b1115610c5d5760405162461bcd60e51b815260206004820152600e60248201526d27379032b737bab3b41032ba341760911b604482015260640161095b565b610ccb565b81610c6d87836116ca565b1115610cb35760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b21036b0bc10333932b29036b4b73a1760591b604482015260640161095b565b85600f6000828254610cc59190611701565b90915550505b610cd53387610fbf565b336000908152600a602052604081208054889290610cf49084906116ca565b9091555050505050505050565b6001600160a01b038216331415610d2b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da284848461074b565b6001600160a01b0383163b15610ddb57610dbe8484848461102d565b610ddb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dec82610f36565b610e0957604051630a14c4b560e41b815260040160405180910390fd5b6000610e13611124565b9050805160001415610e345760405180602001604052806000815250610e5f565b80610e3e84611133565b604051602001610e4f92919061164b565b6040516020818303038152906040525b9392505050565b610e6e610edc565b6001600160a01b038116610ed35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095b565b61096e81610fdd565b6000546001600160a01b03163314610aea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095b565b6000600154821080156105b6575050600090815260056020526040902054600160e01b161590565b600081600154811015610fa657600081815260056020526040902054600160e01b8116610fa4575b80610e5f575060001901600081815260056020526040902054610f86565b505b604051636f96cda160e11b815260040160405180910390fd5b610fd9828260405180602001604052806000815250611175565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061106290339089908890889060040161167a565b602060405180830381600087803b15801561107c57600080fd5b505af19250505080156110ac575060408051601f3d908101601f191682019092526110a991810190611577565b60015b611107573d8080156110da576040519150601f19603f3d011682016040523d82523d6000602084013e6110df565b606091505b5080516110ff576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546105e490611744565b604080516080019081905280825b600183039250600a81066030018353600a90048061115e57611163565b611141565b50819003601f19909101908152919050565b61117f83836111e2565b6001600160a01b0383163b156105d0576001548281035b6111a9600086838060010194508661102d565b6111c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111965781600154146111db57600080fd5b5050505050565b600154816112035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146112b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161127a565b50816112d057604051622e076360e81b815260040160405180910390fd5b60015550505050565b8280546112e590611744565b90600052602060002090601f016020900481019282611307576000855561134d565b82601f106113205782800160ff1982351617855561134d565b8280016001018555821561134d579182015b8281111561134d578235825591602001919060010190611332565b5061135992915061135d565b5090565b5b80821115611359576000815560010161135e565b80356001600160a01b038116811461138957600080fd5b919050565b6000602082840312156113a057600080fd5b610e5f82611372565b600080604083850312156113bc57600080fd5b6113c583611372565b91506113d360208401611372565b90509250929050565b6000806000606084860312156113f157600080fd5b6113fa84611372565b925061140860208501611372565b9150604084013590509250925092565b6000806000806080858703121561142e57600080fd5b61143785611372565b935061144560208601611372565b925060408501359150606085013567ffffffffffffffff8082111561146957600080fd5b818701915087601f83011261147d57600080fd5b81358181111561148f5761148f611795565b604051601f8201601f19908116603f011681019083821181831017156114b7576114b7611795565b816040528281528a60208487010111156114d057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561150757600080fd5b61151083611372565b91506020830135801515811461152557600080fd5b809150509250929050565b6000806040838503121561154357600080fd5b61154c83611372565b946020939093013593505050565b60006020828403121561156c57600080fd5b8135610e5f816117ab565b60006020828403121561158957600080fd5b8151610e5f816117ab565b600080602083850312156115a757600080fd5b823567ffffffffffffffff808211156115bf57600080fd5b818501915085601f8301126115d357600080fd5b8135818111156115e257600080fd5b8660208285010111156115f457600080fd5b60209290920196919550909350505050565b60006020828403121561161857600080fd5b5035919050565b60008151808452611637816020860160208601611718565b601f01601f19169290920160200192915050565b6000835161165d818460208801611718565b835190830190611671818360208801611718565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116ad9083018461161f565b9695505050505050565b602081526000610e5f602083018461161f565b600082198211156116dd576116dd61177f565b500190565b60008160001904831182151516156116fc576116fc61177f565b500290565b6000828210156117135761171361177f565b500390565b60005b8381101561173357818101518382015260200161171b565b83811115610ddb5750506000910152565b600181811c9082168061175857607f821691505b6020821081141561177957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096e57600080fdfea264697066735822122034ba1e24c4f4320b18cf5b65c7d9d6ff346c5012ee66964df1a52330b78c50bc64736f6c63430008070033

Deployed Bytecode Sourcemap

59360:2806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20544:639;;;;;;;;;;-1:-1:-1;20544:639:0;;;;;:::i;:::-;;:::i;:::-;;;5834:14:1;;5827:22;5809:41;;5797:2;5782:18;20544:639:0;;;;;;;;61651:102;;;;;;;;;;-1:-1:-1;61651:102:0;;;;;:::i;:::-;;:::i;:::-;;21446:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27929:218::-;;;;;;;;;;-1:-1:-1;27929:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5132:32:1;;;5114:51;;5102:2;5087:18;27929:218:0;4968:203:1;27370:400:0;;;;;;;;;;-1:-1:-1;27370:400:0;;;;;:::i;:::-;;:::i;17197:323::-;;;;;;;;;;-1:-1:-1;17471:12:0;;17455:13;;:28;17197:323;;;9068:25:1;;;9056:2;9041:18;17197:323:0;8922:177:1;59425:41:0;;;;;;;;;;-1:-1:-1;59425:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;61167:109;;;;;;;;;;-1:-1:-1;61167:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;61255:13:0;61228:7;61255:13;;;:6;:13;;;;;;;61167:109;31636:2817;;;;;;;;;;-1:-1:-1;31636:2817:0;;;;;:::i;:::-;;:::i;60941:218::-;;;;;;;;;;-1:-1:-1;60941:218:0;;;;;:::i;:::-;;:::i;59473:42::-;;;;;;;;;;-1:-1:-1;59473:42:0;;;;;;;;;;;;;;;;;;;9335:25:1;;;9391:2;9376:18;;9369:34;;;;9419:18;;;9412:34;9477:2;9462:18;;9455:34;9322:3;9307:19;59473:42:0;9104:391:1;61991:172:0;;;;;;;;;;;;;:::i;34549:185::-;;;;;;;;;;-1:-1:-1;34549:185:0;;;;;:::i;:::-;;:::i;61873:110::-;;;;;;;;;;-1:-1:-1;61873:110:0;;;;;:::i;:::-;;:::i;22839:152::-;;;;;;;;;;-1:-1:-1;22839:152:0;;;;;:::i;:::-;;:::i;18381:233::-;;;;;;;;;;-1:-1:-1;18381:233:0;;;;;:::i;:::-;;:::i;58470:103::-;;;;;;;;;;;;;:::i;57822:87::-;;;;;;;;;;-1:-1:-1;57868:7:0;57895:6;-1:-1:-1;;;;;57895:6:0;57822:87;;61761:104;;;;;;;;;;-1:-1:-1;61761:104:0;;;;;:::i;:::-;;:::i;21622:::-;;;;;;;;;;;;;:::i;59952:981::-;;;;;;:::i;:::-;;:::i;28487:308::-;;;;;;;;;;-1:-1:-1;28487:308:0;;;;;:::i;:::-;;:::i;59524:30::-;;;;;;;;;;;;;;;;35332:399;;;;;;;;;;-1:-1:-1;35332:399:0;;;;;:::i;:::-;;:::i;21832:318::-;;;;;;;;;;-1:-1:-1;21832:318:0;;;;;:::i;:::-;;:::i;28952:164::-;;;;;;;;;;-1:-1:-1;28952:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29073:25:0;;;29049:4;29073:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28952:164;58728:201;;;;;;;;;;-1:-1:-1;58728:201:0;;;;;:::i;:::-;;:::i;20544:639::-;20629:4;-1:-1:-1;;;;;;;;;20953:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21030:25:0;;;20953:102;:179;;;-1:-1:-1;;;;;;;;;;21107:25:0;;;20953:179;20933:199;20544:639;-1:-1:-1;;20544:639:0:o;61651:102::-;57708:13;:11;:13::i;:::-;61722:23:::1;:13;61738:7:::0;;61722:23:::1;:::i;:::-;;61651:102:::0;;:::o;21446:100::-;21500:13;21533:5;21526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21446:100;:::o;27929:218::-;28005:7;28030:16;28038:7;28030;:16::i;:::-;28025:64;;28055:34;;-1:-1:-1;;;28055:34:0;;;;;;;;;;;28025:64;-1:-1:-1;28109:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28109:30:0;;27929:218::o;27370:400::-;27451:13;27467:16;27475:7;27467;:16::i;:::-;27451:32;-1:-1:-1;51227:10:0;-1:-1:-1;;;;;27500:28:0;;;27496:175;;27548:44;27565:5;51227:10;28952:164;:::i;27548:44::-;27543:128;;27620:35;;-1:-1:-1;;;27620:35:0;;;;;;;;;;;27543:128;27683:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;27683:35:0;-1:-1:-1;;;;;27683:35:0;;;;;;;;;27734:28;;27683:24;;27734:28;;;;;;;27440:330;27370:400;;:::o;31636:2817::-;31770:27;31800;31819:7;31800:18;:27::i;:::-;31770:57;;31885:4;-1:-1:-1;;;;;31844:45:0;31860:19;-1:-1:-1;;;;;31844:45:0;;31840:86;;31898:28;;-1:-1:-1;;;31898:28:0;;;;;;;;;;;31840:86;31940:27;30750:24;;;:15;:24;;;;;30972:26;;51227:10;30375:30;;;-1:-1:-1;;;;;30068:28:0;;30353:20;;;30350:56;32126:180;;32219:43;32236:4;51227:10;28952:164;:::i;32219:43::-;32214:92;;32271:35;;-1:-1:-1;;;32271:35:0;;;;;;;;;;;32214:92;-1:-1:-1;;;;;32323:16:0;;32319:52;;32348:23;;-1:-1:-1;;;32348:23:0;;;;;;;;;;;32319:52;32520:15;32517:160;;;32660:1;32639:19;32632:30;32517:160;-1:-1:-1;;;;;33057:24:0;;;;;;;:18;:24;;;;;;33055:26;;-1:-1:-1;;33055:26:0;;;33126:22;;;;;;;;;33124:24;;-1:-1:-1;33124:24:0;;;26228:11;26203:23;26199:41;26186:63;-1:-1:-1;;;26186:63:0;33419:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;33714:47:0;;33710:627;;33819:1;33809:11;;33787:19;33942:30;;;:17;:30;;;;;;33938:384;;34080:13;;34065:11;:28;34061:242;;34227:30;;;;:17;:30;;;;;:52;;;34061:242;33768:569;33710:627;34384:7;34380:2;-1:-1:-1;;;;;34365:27:0;34374:4;-1:-1:-1;;;;;34365:27:0;;;;;;;;;;;31759:2694;;;31636:2817;;;:::o;60941:218::-;57708:13;:11;:13::i;:::-;61354:51;;;;;;;;61388:17;61354:51;;;;;;;;;;;;;;;;;;;;;;;;61044:8:::1;61028:13;17471:12:::0;;17455:13;;:28;;17197:323;61028:13:::1;:24;;;;:::i;:::-;:42;;61006:101;;;::::0;-1:-1:-1;;;61006:101:0;;8427:2:1;61006:101:0::1;::::0;::::1;8409:21:1::0;8466:1;8446:18;;;8439:29;-1:-1:-1;;;8484:18:1;;;8477:39;8533:18;;61006:101:0::1;;;;;;;;;61120:31;61130:10;61142:8;61120:9;:31::i;:::-;60941:218:::0;:::o;61991:172::-;57708:13;:11;:13::i;:::-;54747:1:::1;55345:7;;:19;;55337:63;;;::::0;-1:-1:-1;;;55337:63:0;;8764:2:1;55337:63:0::1;::::0;::::1;8746:21:1::0;8803:2;8783:18;;;8776:30;8842:33;8822:18;;;8815:61;8893:18;;55337:63:0::1;8562:355:1::0;55337:63:0::1;54747:1;55478:7;:18:::0;62073:49:::2;::::0;62055:12:::2;::::0;62073:10:::2;::::0;62096:21:::2;::::0;62055:12;62073:49;62055:12;62073:49;62096:21;62073:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62054:68;;;62141:7;62133:22;;;::::0;-1:-1:-1;;;62133:22:0;;6287:2:1;62133:22:0::2;::::0;::::2;6269:21:1::0;6326:1;6306:18;;;6299:29;-1:-1:-1;;;6344:18:1;;;6337:32;6386:18;;62133:22:0::2;6085:325:1::0;62133:22:0::2;-1:-1:-1::0;54703:1:0::1;55657:7;:22:::0;61991:172::o;34549:185::-;34687:39;34704:4;34710:2;34714:7;34687:39;;;;;;;;;;;;:16;:39::i;61873:110::-;57708:13;:11;:13::i;:::-;61940:25;:35;61873:110::o;22839:152::-;22911:7;22954:27;22973:7;22954:18;:27::i;18381:233::-;18453:7;-1:-1:-1;;;;;18477:19:0;;18473:60;;18505:28;;-1:-1:-1;;;18505:28:0;;;;;;;;;;;18473:60;-1:-1:-1;;;;;;18551:25:0;;;;;:18;:25;;;;;;12540:13;18551:55;;18381:233::o;58470:103::-;57708:13;:11;:13::i;:::-;58535:30:::1;58562:1;58535:18;:30::i;:::-;58470:103::o:0;61761:104::-;57708:13;:11;:13::i;:::-;61825:17:::1;:32:::0;61761:104::o;21622:::-;21678:13;21711:7;21704:14;;;;;:::i;59952:981::-;60012:51;;;;;;;;;60046:17;60012:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60258:10;-1:-1:-1;61255:13:0;;;:6;:13;;;;;;61354:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60012;;;;;;;60320:8;60304:13;17471:12;;17455:13;;:28;;17197:323;60304:13;:24;;;;:::i;:::-;:42;;60282:101;;;;-1:-1:-1;;;60282:101:0;;8427:2:1;60282:101:0;;;8409:21:1;8466:1;8446:18;;;8439:29;-1:-1:-1;;;8484:18:1;;;8477:39;8533:18;;60282:101:0;8225:332:1;60282:101:0;60442:7;60422:16;60430:8;60422:5;:16;:::i;:::-;:27;;60400:97;;;;-1:-1:-1;;;60400:97:0;;7374:2:1;60400:97:0;;;7356:21:1;7413:2;7393:18;;;7386:30;-1:-1:-1;;;7432:18:1;;;7425:50;7492:18;;60400:97:0;7172:344:1;60400:97:0;60514:9;;60510:331;;60591:9;60571:16;60582:5;60571:8;:16;:::i;:::-;:29;;60545:105;;;;-1:-1:-1;;;60545:105:0;;8084:2:1;60545:105:0;;;8066:21:1;8123:2;8103:18;;;8096:30;-1:-1:-1;;;8142:18:1;;;8135:44;8196:18;;60545:105:0;7882:338:1;60545:105:0;60510:331;;;60729:7;60709:16;60717:8;60709:5;:16;:::i;:::-;:27;;60683:110;;;;-1:-1:-1;;;60683:110:0;;7024:2:1;60683:110:0;;;7006:21:1;7063:2;7043:18;;;7036:30;-1:-1:-1;;;7082:18:1;;;7075:51;7143:18;;60683:110:0;6822:345:1;60683:110:0;60821:8;60808:9;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;60510:331:0;60853:31;60863:10;60875:8;60853:9;:31::i;:::-;60902:10;60895:18;;;;:6;:18;;;;;:30;;60917:8;;60895:18;:30;;60917:8;;60895:30;:::i;:::-;;;;-1:-1:-1;;;;;;;;59952:981:0:o;28487:308::-;-1:-1:-1;;;;;28586:31:0;;51227:10;28586:31;28582:61;;;28626:17;;-1:-1:-1;;;28626:17:0;;;;;;;;;;;28582:61;51227:10;28656:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28656:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28656:60:0;;;;;;;;;;28732:55;;5809:41:1;;;28656:49:0;;51227:10;28732:55;;5782:18:1;28732:55:0;;;;;;;28487:308;;:::o;35332:399::-;35499:31;35512:4;35518:2;35522:7;35499:12;:31::i;:::-;-1:-1:-1;;;;;35545:14:0;;;:19;35541:183;;35584:56;35615:4;35621:2;35625:7;35634:5;35584:30;:56::i;:::-;35579:145;;35668:40;;-1:-1:-1;;;35668:40:0;;;;;;;;;;;35579:145;35332:399;;;;:::o;21832:318::-;21905:13;21936:16;21944:7;21936;:16::i;:::-;21931:59;;21961:29;;-1:-1:-1;;;21961:29:0;;;;;;;;;;;21931:59;22003:21;22027:10;:8;:10::i;:::-;22003:34;;22061:7;22055:21;22080:1;22055:26;;:87;;;;;;;;;;;;;;;;;22108:7;22117:18;22127:7;22117:9;:18::i;:::-;22091:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22055:87;22048:94;21832:318;-1:-1:-1;;;21832:318:0:o;58728:201::-;57708:13;:11;:13::i;:::-;-1:-1:-1;;;;;58817:22:0;::::1;58809:73;;;::::0;-1:-1:-1;;;58809:73:0;;6617:2:1;58809:73:0::1;::::0;::::1;6599:21:1::0;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:36;6792:19;;58809:73:0::1;6415:402:1::0;58809:73:0::1;58893:28;58912:8;58893:18;:28::i;57987:132::-:0;57868:7;57895:6;-1:-1:-1;;;;;57895:6:0;51227:10;58051:23;58043:68;;;;-1:-1:-1;;;58043:68:0;;7723:2:1;58043:68:0;;;7705:21:1;;;7742:18;;;7735:30;7801:34;7781:18;;;7774:62;7853:18;;58043:68:0;7521:356:1;29374:282:0;29439:4;29529:13;;29519:7;:23;29476:153;;;;-1:-1:-1;;29580:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29580:44:0;:49;;29374:282::o;23994:1275::-;24061:7;24096;24198:13;;24191:4;:20;24187:1015;;;24236:14;24253:23;;;:17;:23;;;;;;-1:-1:-1;;;24342:24:0;;24338:845;;25007:113;25014:11;25007:113;;-1:-1:-1;;;25085:6:0;25067:25;;;;:17;:25;;;;;;25007:113;;24338:845;24213:989;24187:1015;25230:31;;-1:-1:-1;;;25230:31:0;;;;;;;;;;;44972:112;45049:27;45059:2;45063:8;45049:27;;;;;;;;;;;;:9;:27::i;:::-;44972:112;;:::o;59089:191::-;59163:16;59182:6;;-1:-1:-1;;;;;59199:17:0;;;-1:-1:-1;;;;;;59199:17:0;;;;;;59232:40;;59182:6;;;;;;;59232:40;;59163:16;59232:40;59152:128;59089:191;:::o;37815:716::-;37999:88;;-1:-1:-1;;;37999:88:0;;37978:4;;-1:-1:-1;;;;;37999:45:0;;;;;:88;;51227:10;;38066:4;;38072:7;;38081:5;;37999:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37999:88:0;;;;;;;;-1:-1:-1;;37999:88:0;;;;;;;;;;;;:::i;:::-;;;37995:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38282:13:0;;38278:235;;38328:40;;-1:-1:-1;;;38328:40:0;;;;;;;;;;;38278:235;38471:6;38465:13;38456:6;38452:2;38448:15;38441:38;37995:529;-1:-1:-1;;;;;;38158:64:0;-1:-1:-1;;;38158:64:0;;-1:-1:-1;37815:716:0;;;;;;:::o;61529:114::-;61589:13;61622;61615:20;;;;;:::i;51347:1581::-;51830:4;51824:11;;51837:4;51820:22;51916:17;;;;51820:22;52274:5;52256:428;52322:1;52317:3;52313:11;52306:18;;52493:2;52487:4;52483:13;52479:2;52475:22;52470:3;52462:36;52587:2;52577:13;;;52644:25;;52662:5;;52644:25;52256:428;;;-1:-1:-1;52714:13:0;;;-1:-1:-1;;52829:14:0;;;52891:19;;;52829:14;51347:1581;-1:-1:-1;51347:1581:0:o;44199:689::-;44330:19;44336:2;44340:8;44330:5;:19::i;:::-;-1:-1:-1;;;;;44391:14:0;;;:19;44387:483;;44445:13;;44493:14;;;44526:233;44557:62;44596:1;44600:2;44604:7;;;;;;44613:5;44557:30;:62::i;:::-;44552:167;;44655:40;;-1:-1:-1;;;44655:40:0;;;;;;;;;;;44552:167;44754:3;44746:5;:11;44526:233;;44841:3;44824:13;;:20;44820:34;;44846:8;;;44820:34;44412:458;;44199:689;;;:::o;38993:2454::-;39089:13;;39117;39113:44;;39139:18;;-1:-1:-1;;;39139:18:0;;;;;;;;;;;39113:44;-1:-1:-1;;;;;39645:22:0;;;;;;:18;:22;;;;12678:2;39645:22;;;:71;;39683:32;39671:45;;39645:71;;;39959:31;;;:17;:31;;;;;-1:-1:-1;26659:15:0;;26633:24;26629:46;26228:11;26203:23;26199:41;26196:52;26186:63;;39959:173;;40194:23;;;;39959:31;;39645:22;;40693:25;39645:22;;40546:335;40961:1;40947:12;40943:20;40901:346;41002:3;40993:7;40990:16;40901:346;;41220:7;41210:8;41207:1;41180:25;41177:1;41174;41169:59;41055:1;41042:15;40901:346;;;-1:-1:-1;41280:13:0;41276:45;;41302:19;;-1:-1:-1;;;41302:19:0;;;;;;;;;;;41276:45;41338:13;:19;-1:-1:-1;61722:23:0::1;61651:102:::0;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;5176:488::-;-1:-1:-1;;;;;5445:15:1;;;5427:34;;5497:15;;5492:2;5477:18;;5470:43;5544:2;5529:18;;5522:34;;;5592:3;5587:2;5572:18;;5565:31;;;5370:4;;5613:45;;5638:19;;5630:6;5613:45;:::i;:::-;5605:53;5176:488;-1:-1:-1;;;;;;5176:488:1:o;5861:219::-;6010:2;5999:9;5992:21;5973:4;6030:44;6070:2;6059:9;6055:18;6047:6;6030:44;:::i;9500:128::-;9540:3;9571:1;9567:6;9564:1;9561:13;9558:39;;;9577:18;;:::i;:::-;-1:-1:-1;9613:9:1;;9500:128::o;9633:168::-;9673:7;9739:1;9735;9731:6;9727:14;9724:1;9721:21;9716:1;9709:9;9702:17;9698:45;9695:71;;;9746:18;;:::i;:::-;-1:-1:-1;9786:9:1;;9633:168::o;9806:125::-;9846:4;9874:1;9871;9868:8;9865:34;;;9879:18;;:::i;:::-;-1:-1:-1;9916:9:1;;9806:125::o;9936:258::-;10008:1;10018:113;10032:6;10029:1;10026:13;10018:113;;;10108:11;;;10102:18;10089:11;;;10082:39;10054:2;10047:10;10018:113;;;10149:6;10146:1;10143:13;10140:48;;;-1:-1:-1;;10184:1:1;10166:16;;10159:27;9936:258::o;10199:380::-;10278:1;10274:12;;;;10321;;;10342:61;;10396:4;10388:6;10384:17;10374:27;;10342:61;10449:2;10441:6;10438:14;10418:18;10415:38;10412:161;;;10495:10;10490:3;10486:20;10483:1;10476:31;10530:4;10527:1;10520:15;10558:4;10555:1;10548:15;10412:161;;10199:380;;;:::o;10584:127::-;10645:10;10640:3;10636:20;10633:1;10626:31;10676:4;10673:1;10666:15;10700:4;10697:1;10690:15;10716:127;10777:10;10772:3;10768:20;10765:1;10758:31;10808:4;10805:1;10798:15;10832:4;10829:1;10822:15;10848:131;-1:-1:-1;;;;;;10922:32:1;;10912:43;;10902:71;;10969:1;10966;10959:12

Swarm Source

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