ETH Price: $3,049.67 (+1.14%)
Gas: 3 Gwei

ETH Ordinals (EO)
 

Overview

TokenID

967

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
EthOrdinals

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-10
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

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

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

    /**
     * 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 payable;

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

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

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

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

/**
 * @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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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.selector);
        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.selector);

        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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If not burned.
            if (packed & _BITMASK_BURNED == 0) {
                // If the data at the starting slot does not exist, start the scan.
                if (packed == 0) {
                    if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                    // 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, `tokenId` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    for (;;) {
                        unchecked {
                            packed = _packedOwnerships[--tokenId];
                        }
                        if (packed == 0) continue;
                        return packed;
                    }
                }
                // Otherwise, the data exists and is not burned. We can skip the scan.
                // This is possible because we have already achieved the target condition.
                // This saves 2143 gas on transfers of initialized tokens.
                return packed;
            }
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        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 {
        _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].value`.
        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 payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable 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 payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
    }

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

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

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

        _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.selector);
        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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00))
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

/**
 * @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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

interface IWETH {
    function balanceOf(address user) external view returns (uint256);

    function withdraw(uint256 wad) external;

    function deposit() external payable;

    function transfer(address dst, uint256 wad) external returns (bool);
}

interface IEthOrdinalsMetadata {
    function tokenURI(uint256 tokenId) external view returns (string memory);

    function baseURI() external view returns (string memory);
}

contract EthOrdinals is ERC721A, OperatorFilterer, Ownable, ReentrancyGuard {
    bool public operatorFilteringEnabled;
    bool public saleOpen;
    uint256 public mintableSupply;
    IEthOrdinalsMetadata public metadataContract;

    constructor(address metadataContract_, uint256 mintableSupply_)
        ERC721A("ETH Ordinals", "EO")
    {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        mintableSupply = mintableSupply_;
        metadataContract = IEthOrdinalsMetadata(metadataContract_);
    }

    function mint() public payable {
        require(saleOpen, "Sale Not Open");
        require(_totalMinted() + 1 <= mintableSupply, "Sold Out");
        require(_getAux(msg.sender) == 0, "Max 1 Per Wallet");
        require(tx.origin == msg.sender, "EOA Only");
        _setAux(msg.sender, 1);
        _mint(msg.sender, 1);
    }

    function freeMinted(address address_) public view returns (bool) {
        return _getAux(address_) == 1;
    }

    function mintAsAdmin(address recipient, uint256 quantity) public onlyOwner {
        require(_totalMinted() + quantity <= mintableSupply, "Max Supply Hit");
        _mint(recipient, quantity);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override(ERC721A)
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return metadataContract.tokenURI(tokenId);
    }

    function toggleSale() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function setMintableSupply(uint256 mintableSupply_) public onlyOwner {
        mintableSupply = mintableSupply_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return metadataContract.baseURI();
    }

    function repeatRegistration() public {
        _registerForOperatorFiltering();
    }

    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled()
        internal
        view
        virtual
        override
        returns (bool)
    {
        return operatorFilteringEnabled;
    }

    function changeMetadataContract(address metadataContract_)
        public
        onlyOwner
    {
        metadataContract = IEthOrdinalsMetadata(metadataContract_);
    }

    function withdrawWeth() public nonReentrant {
        IWETH wrappedEther = IWETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
        uint256 balance = wrappedEther.balanceOf(address(this));
        if (balance > 0) {
            wrappedEther.withdraw(balance);
        }
        _withdraw();
    }

    function withdraw() public nonReentrant {
        _withdraw();
    }

    function _withdraw() internal {
        uint256 balance = address(this).balance;
        Address.sendValue(
            payable(address(0xa4e96F19B0dA586A50136036b1B96982a603C65E)),
            (balance * 60) / 100
        );
        Address.sendValue(
            payable(address(0xa645Ffd68a6D623C5486cbd866ADED48B2bCbA18)),
            (balance * 40) / 100
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"metadataContract_","type":"address"},{"internalType":"uint256","name":"mintableSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"metadataContract_","type":"address"}],"name":"changeMetadataContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataContract","outputs":[{"internalType":"contract IEthOrdinalsMetadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintAsAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintableSupply","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":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"repeatRegistration","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":"payable","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":"payable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"mintableSupply_","type":"uint256"}],"name":"setMintableSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWeth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162001cf638038062001cf68339810160408190526200003491620001c4565b6040518060400160405280600c81526020016b455448204f7264696e616c7360a01b81525060405180604001604052806002815260200161454f60f01b8152508160029081620000859190620002a5565b506003620000948282620002a5565b50506000805550620000a633620000ec565b6001600955620000b56200013e565b600a805460ff19166001179055600b55600c80546001600160a01b039092166001600160a01b031990921691909117905562000371565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200015f733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000161565b565b6001600160a01b0390911690637d3e3dbe816200019157826200018a5750634420e48662000191565b5063a0af29035b8060e01b60005250306004528160245260008060446000806daaeb6d7670e522a718067333cd4e5af15060006024525050565b60008060408385031215620001d857600080fd5b82516001600160a01b0381168114620001f057600080fd5b6020939093015192949293505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022b57607f821691505b6020821081036200024c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a057600081815260208120601f850160051c810160208610156200027b5750805b601f850160051c820191505b818110156200029c5782815560010162000287565b5050505b505050565b81516001600160401b03811115620002c157620002c162000200565b620002d981620002d2845462000216565b8462000252565b602080601f831160018114620003115760008415620002f85750858301515b600019600386901b1c1916600185901b1785556200029c565b600085815260208120601f198616915b82811015620003425788860151825594840194600190910190840162000321565b5085821015620003615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61197580620003816000396000f3fe6080604052600436106101dc5760003560e01c80636352211e11610102578063b7c0b8e811610095578063e1b6d92e11610064578063e1b6d92e146104fd578063e985e9c51461051d578063f2fde38b1461053d578063fb796e6c1461055d57600080fd5b8063b7c0b8e814610494578063b88d4fde146104b4578063c87b56dd146104c7578063cc5c095c146104e757600080fd5b80638da5cb5b116100d15780638da5cb5b1461042257806395d89b411461044057806399288dbb14610455578063a22cb4651461047457600080fd5b80636352211e146103b857806370a08231146103d8578063715018a6146103f85780637d8966e41461040d57600080fd5b80632e8c31d11161017a57806342842e0e1161014957806342842e0e1461035b57806349281f731461036e5780635a862dcc1461038e5780635e1c0746146103a357600080fd5b80632e8c31d1146102ca57806335209821146102ea578063389fcf061461030a5780633ccfd60b1461034657600080fd5b8063095ea7b3116101b6578063095ea7b3146102775780631249c58b1461028c57806318160ddd1461029457806323b872dd146102b757600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f57600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506102086102033660046114df565b610577565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105c9565b6040516102149190611553565b34801561024b57600080fd5b5061025f61025a366004611566565b61065b565b6040516001600160a01b039091168152602001610214565b61028a610285366004611596565b610696565b005b61028a6106ba565b3480156102a057600080fd5b50600154600054035b604051908152602001610214565b61028a6102c53660046115c0565b61080c565b3480156102d657600080fd5b5061028a6102e53660046115fc565b610842565b3480156102f657600080fd5b50600c5461025f906001600160a01b031681565b34801561031657600080fd5b506102086103253660046115fc565b6001600160a01b031660009081526005602052604090205460c01c60011490565b34801561035257600080fd5b5061028a61086c565b61028a6103693660046115c0565b610886565b34801561037a57600080fd5b5061028a610389366004611566565b6108b6565b34801561039a57600080fd5b5061028a6108c3565b3480156103af57600080fd5b5061028a6109ba565b3480156103c457600080fd5b5061025f6103d3366004611566565b6109c2565b3480156103e457600080fd5b506102a96103f33660046115fc565b6109cd565b34801561040457600080fd5b5061028a610a13565b34801561041957600080fd5b5061028a610a25565b34801561042e57600080fd5b506008546001600160a01b031661025f565b34801561044c57600080fd5b50610232610a4a565b34801561046157600080fd5b50600a5461020890610100900460ff1681565b34801561048057600080fd5b5061028a61048f366004611627565b610a59565b3480156104a057600080fd5b5061028a6104af36600461165a565b610a78565b61028a6104c23660046116e4565b610a93565b3480156104d357600080fd5b506102326104e2366004611566565b610acb565b3480156104f357600080fd5b506102a9600b5481565b34801561050957600080fd5b5061028a610518366004611596565b610b64565b34801561052957600080fd5b5061020861053836600461178f565b610bd0565b34801561054957600080fd5b5061028a6105583660046115fc565b610bfe565b34801561056957600080fd5b50600a546102089060ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806105a857506380ac58cd60e01b6001600160e01b03198316145b806105c35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105d8906117b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610604906117b9565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682610c77565b61067a5761067a6333d1c03960e21b610c9e565b506000908152600660205260409020546001600160a01b031690565b81600a5460ff16156106ab576106ab81610ca8565b6106b58383610cec565b505050565b600a54610100900460ff166107065760405162461bcd60e51b815260206004820152600d60248201526c29b0b632902737ba1027b832b760991b60448201526064015b60405180910390fd5b600b54600054610717906001611809565b11156107505760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106fd565b3360009081526005602052604090205460c01c156107a35760405162461bcd60e51b815260206004820152601060248201526f13585e080c4814195c8815d85b1b195d60821b60448201526064016106fd565b3233146107dd5760405162461bcd60e51b8152602060048201526008602482015267454f41204f6e6c7960c01b60448201526064016106fd565b33600090815260056020526040902080546001600160c01b0316600160c01b17905561080a336001610cf8565b565b826001600160a01b038116331461083157600a5460ff16156108315761083133610ca8565b61083c848484610db7565b50505050565b61084a610f1c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610874610f76565b61087c610fcf565b61080a6001600955565b826001600160a01b03811633146108ab57600a5460ff16156108ab576108ab33610ca8565b61083c848484611029565b6108be610f1c565b600b55565b6108cb610f76565b6040516370a0823160e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29060009082906370a0823190602401602060405180830381865afa15801561091f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610943919061181c565b905080156109a657604051632e1a7d4d60e01b8152600481018290526001600160a01b03831690632e1a7d4d90602401600060405180830381600087803b15801561098d57600080fd5b505af11580156109a1573d6000803e3d6000fd5b505050505b6109ae610fcf565b505061080a6001600955565b61080a611044565b60006105c382611063565b60006001600160a01b0382166109ed576109ed6323d3ad8160e21b610c9e565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a1b610f1c565b61080a60006110d2565b610a2d610f1c565b600a805461ff001981166101009182900460ff1615909102179055565b6060600380546105d8906117b9565b81600a5460ff1615610a6e57610a6e81610ca8565b6106b58383611124565b610a80610f1c565b600a805460ff1916911515919091179055565b836001600160a01b0381163314610ab857600a5460ff1615610ab857610ab833610ca8565b610ac485858585611190565b5050505050565b6060610ad682610c77565b610af357604051630a14c4b560e41b815260040160405180910390fd5b600c5460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd90602401600060405180830381865afa158015610b3c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105c39190810190611835565b610b6c610f1c565b600b5481610b7960005490565b610b839190611809565b1115610bc25760405162461bcd60e51b815260206004820152600e60248201526d13585e0814dd5c1c1b1e48121a5d60921b60448201526064016106fd565b610bcc8282610cf8565b5050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c06610f1c565b6001600160a01b038116610c6b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fd565b610c74816110d2565b50565b60008054821080156105c3575050600090815260046020526040902054600160e01b161590565b8060005260046000fd5b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610ce4573d6000803e3d6000fd5b6000603a5250565b610bcc828260016111cb565b6000805490829003610d1457610d1463b562e8dd60e01b610c9e565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b17811790915580845260059092528220805468010000000000000001860201905590819003610d7257610d72622e076360e81b610c9e565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103610d77575060005550505050565b6000610dc282611063565b6001600160a01b039485169490915081168414610de857610de862a1148160e81b610c9e565b60008281526006602052604090208054338082146001600160a01b03881690911417610e2c57610e188633610bd0565b610e2c57610e2c632ce44b5f60e11b610c9e565b8015610e3757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610ec957600184016000818152600460205260408120549003610ec7576000548114610ec75760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610f1357610f13633a954ecd60e21b610c9e565b50505050505050565b6008546001600160a01b0316331461080a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106fd565b600260095403610fc85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106fd565b6002600955565b4761100473a4e96f19b0da586a50136036b1b96982a603c65e6064610ff584603c6118ac565b610fff91906118c3565b61126e565b610c7473a645ffd68a6d623c5486cbd866aded48b2bcba186064610ff58460286118ac565b6106b583838360405180602001604052806000815250610a93565b61080a733cc6cdda760b79bafa08df41ecfa224f810dceb66001611387565b60008181526004602052604081205490600160e01b821690036110c257806000036110bd5760005482106110a1576110a1636f96cda160e11b610c9e565b5b506000190160008181526004602052604090205480156110a2575b919050565b6110bd636f96cda160e11b610c9e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119b84848461080c565b6001600160a01b0383163b1561083c576111b7848484846113e7565b61083c5761083c6368d2bf6b60e11b610c9e565b60006111d6836109c2565b90508180156111ee5750336001600160a01b03821614155b15611211576111fd8133610bd0565b611211576112116367d9dca160e11b610c9e565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b804710156112be5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106fd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461130b576040519150601f19603f3d011682016040523d82523d6000602084013e611310565b606091505b50509050806106b55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106fd565b6001600160a01b0390911690637d3e3dbe816113b457826113ad5750634420e4866113b4565b5063a0af29035b8060e01b60005250306004528160245260008060446000806daaeb6d7670e522a718067333cd4e5af15060006024525050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061141c9033908990889088906004016118e5565b6020604051808303816000875af1925050508015611457575060408051601f3d908101601f1916820190925261145491810190611922565b60015b6114ac573d808015611485576040519150601f19603f3d011682016040523d82523d6000602084013e61148a565b606091505b5080516000036114a4576114a46368d2bf6b60e11b610c9e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b031981168114610c7457600080fd5b6000602082840312156114f157600080fd5b81356114fc816114c9565b9392505050565b60005b8381101561151e578181015183820152602001611506565b50506000910152565b6000815180845261153f816020860160208601611503565b601f01601f19169290920160200192915050565b6020815260006114fc6020830184611527565b60006020828403121561157857600080fd5b5035919050565b80356001600160a01b03811681146110bd57600080fd5b600080604083850312156115a957600080fd5b6115b28361157f565b946020939093013593505050565b6000806000606084860312156115d557600080fd5b6115de8461157f565b92506115ec6020850161157f565b9150604084013590509250925092565b60006020828403121561160e57600080fd5b6114fc8261157f565b803580151581146110bd57600080fd5b6000806040838503121561163a57600080fd5b6116438361157f565b915061165160208401611617565b90509250929050565b60006020828403121561166c57600080fd5b6114fc82611617565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156116b4576116b4611675565b604052919050565b600067ffffffffffffffff8211156116d6576116d6611675565b50601f01601f191660200190565b600080600080608085870312156116fa57600080fd5b6117038561157f565b93506117116020860161157f565b925060408501359150606085013567ffffffffffffffff81111561173457600080fd5b8501601f8101871361174557600080fd5b8035611758611753826116bc565b61168b565b81815288602083850101111561176d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156117a257600080fd5b6117ab8361157f565b91506116516020840161157f565b600181811c908216806117cd57607f821691505b6020821081036117ed57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105c3576105c36117f3565b60006020828403121561182e57600080fd5b5051919050565b60006020828403121561184757600080fd5b815167ffffffffffffffff81111561185e57600080fd5b8201601f8101841361186f57600080fd5b805161187d611753826116bc565b81815285602083850101111561189257600080fd5b6118a3826020830160208601611503565b95945050505050565b80820281158282048414176105c3576105c36117f3565b6000826118e057634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061191890830184611527565b9695505050505050565b60006020828403121561193457600080fd5b81516114fc816114c956fea26469706673582212207d8f27693a020556654850d849f0aefd8d5ad529ae0db8ff3eee2c6897b4891f64736f6c6343000811003300000000000000000000000036a66527c7c0449a4c0c135bba1c6c94ca56484a00000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80636352211e11610102578063b7c0b8e811610095578063e1b6d92e11610064578063e1b6d92e146104fd578063e985e9c51461051d578063f2fde38b1461053d578063fb796e6c1461055d57600080fd5b8063b7c0b8e814610494578063b88d4fde146104b4578063c87b56dd146104c7578063cc5c095c146104e757600080fd5b80638da5cb5b116100d15780638da5cb5b1461042257806395d89b411461044057806399288dbb14610455578063a22cb4651461047457600080fd5b80636352211e146103b857806370a08231146103d8578063715018a6146103f85780637d8966e41461040d57600080fd5b80632e8c31d11161017a57806342842e0e1161014957806342842e0e1461035b57806349281f731461036e5780635a862dcc1461038e5780635e1c0746146103a357600080fd5b80632e8c31d1146102ca57806335209821146102ea578063389fcf061461030a5780633ccfd60b1461034657600080fd5b8063095ea7b3116101b6578063095ea7b3146102775780631249c58b1461028c57806318160ddd1461029457806323b872dd146102b757600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f57600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506102086102033660046114df565b610577565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105c9565b6040516102149190611553565b34801561024b57600080fd5b5061025f61025a366004611566565b61065b565b6040516001600160a01b039091168152602001610214565b61028a610285366004611596565b610696565b005b61028a6106ba565b3480156102a057600080fd5b50600154600054035b604051908152602001610214565b61028a6102c53660046115c0565b61080c565b3480156102d657600080fd5b5061028a6102e53660046115fc565b610842565b3480156102f657600080fd5b50600c5461025f906001600160a01b031681565b34801561031657600080fd5b506102086103253660046115fc565b6001600160a01b031660009081526005602052604090205460c01c60011490565b34801561035257600080fd5b5061028a61086c565b61028a6103693660046115c0565b610886565b34801561037a57600080fd5b5061028a610389366004611566565b6108b6565b34801561039a57600080fd5b5061028a6108c3565b3480156103af57600080fd5b5061028a6109ba565b3480156103c457600080fd5b5061025f6103d3366004611566565b6109c2565b3480156103e457600080fd5b506102a96103f33660046115fc565b6109cd565b34801561040457600080fd5b5061028a610a13565b34801561041957600080fd5b5061028a610a25565b34801561042e57600080fd5b506008546001600160a01b031661025f565b34801561044c57600080fd5b50610232610a4a565b34801561046157600080fd5b50600a5461020890610100900460ff1681565b34801561048057600080fd5b5061028a61048f366004611627565b610a59565b3480156104a057600080fd5b5061028a6104af36600461165a565b610a78565b61028a6104c23660046116e4565b610a93565b3480156104d357600080fd5b506102326104e2366004611566565b610acb565b3480156104f357600080fd5b506102a9600b5481565b34801561050957600080fd5b5061028a610518366004611596565b610b64565b34801561052957600080fd5b5061020861053836600461178f565b610bd0565b34801561054957600080fd5b5061028a6105583660046115fc565b610bfe565b34801561056957600080fd5b50600a546102089060ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806105a857506380ac58cd60e01b6001600160e01b03198316145b806105c35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105d8906117b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610604906117b9565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682610c77565b61067a5761067a6333d1c03960e21b610c9e565b506000908152600660205260409020546001600160a01b031690565b81600a5460ff16156106ab576106ab81610ca8565b6106b58383610cec565b505050565b600a54610100900460ff166107065760405162461bcd60e51b815260206004820152600d60248201526c29b0b632902737ba1027b832b760991b60448201526064015b60405180910390fd5b600b54600054610717906001611809565b11156107505760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106fd565b3360009081526005602052604090205460c01c156107a35760405162461bcd60e51b815260206004820152601060248201526f13585e080c4814195c8815d85b1b195d60821b60448201526064016106fd565b3233146107dd5760405162461bcd60e51b8152602060048201526008602482015267454f41204f6e6c7960c01b60448201526064016106fd565b33600090815260056020526040902080546001600160c01b0316600160c01b17905561080a336001610cf8565b565b826001600160a01b038116331461083157600a5460ff16156108315761083133610ca8565b61083c848484610db7565b50505050565b61084a610f1c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610874610f76565b61087c610fcf565b61080a6001600955565b826001600160a01b03811633146108ab57600a5460ff16156108ab576108ab33610ca8565b61083c848484611029565b6108be610f1c565b600b55565b6108cb610f76565b6040516370a0823160e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29060009082906370a0823190602401602060405180830381865afa15801561091f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610943919061181c565b905080156109a657604051632e1a7d4d60e01b8152600481018290526001600160a01b03831690632e1a7d4d90602401600060405180830381600087803b15801561098d57600080fd5b505af11580156109a1573d6000803e3d6000fd5b505050505b6109ae610fcf565b505061080a6001600955565b61080a611044565b60006105c382611063565b60006001600160a01b0382166109ed576109ed6323d3ad8160e21b610c9e565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a1b610f1c565b61080a60006110d2565b610a2d610f1c565b600a805461ff001981166101009182900460ff1615909102179055565b6060600380546105d8906117b9565b81600a5460ff1615610a6e57610a6e81610ca8565b6106b58383611124565b610a80610f1c565b600a805460ff1916911515919091179055565b836001600160a01b0381163314610ab857600a5460ff1615610ab857610ab833610ca8565b610ac485858585611190565b5050505050565b6060610ad682610c77565b610af357604051630a14c4b560e41b815260040160405180910390fd5b600c5460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd90602401600060405180830381865afa158015610b3c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105c39190810190611835565b610b6c610f1c565b600b5481610b7960005490565b610b839190611809565b1115610bc25760405162461bcd60e51b815260206004820152600e60248201526d13585e0814dd5c1c1b1e48121a5d60921b60448201526064016106fd565b610bcc8282610cf8565b5050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c06610f1c565b6001600160a01b038116610c6b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fd565b610c74816110d2565b50565b60008054821080156105c3575050600090815260046020526040902054600160e01b161590565b8060005260046000fd5b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610ce4573d6000803e3d6000fd5b6000603a5250565b610bcc828260016111cb565b6000805490829003610d1457610d1463b562e8dd60e01b610c9e565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b17811790915580845260059092528220805468010000000000000001860201905590819003610d7257610d72622e076360e81b610c9e565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103610d77575060005550505050565b6000610dc282611063565b6001600160a01b039485169490915081168414610de857610de862a1148160e81b610c9e565b60008281526006602052604090208054338082146001600160a01b03881690911417610e2c57610e188633610bd0565b610e2c57610e2c632ce44b5f60e11b610c9e565b8015610e3757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610ec957600184016000818152600460205260408120549003610ec7576000548114610ec75760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610f1357610f13633a954ecd60e21b610c9e565b50505050505050565b6008546001600160a01b0316331461080a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106fd565b600260095403610fc85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106fd565b6002600955565b4761100473a4e96f19b0da586a50136036b1b96982a603c65e6064610ff584603c6118ac565b610fff91906118c3565b61126e565b610c7473a645ffd68a6d623c5486cbd866aded48b2bcba186064610ff58460286118ac565b6106b583838360405180602001604052806000815250610a93565b61080a733cc6cdda760b79bafa08df41ecfa224f810dceb66001611387565b60008181526004602052604081205490600160e01b821690036110c257806000036110bd5760005482106110a1576110a1636f96cda160e11b610c9e565b5b506000190160008181526004602052604090205480156110a2575b919050565b6110bd636f96cda160e11b610c9e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119b84848461080c565b6001600160a01b0383163b1561083c576111b7848484846113e7565b61083c5761083c6368d2bf6b60e11b610c9e565b60006111d6836109c2565b90508180156111ee5750336001600160a01b03821614155b15611211576111fd8133610bd0565b611211576112116367d9dca160e11b610c9e565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b804710156112be5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106fd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461130b576040519150601f19603f3d011682016040523d82523d6000602084013e611310565b606091505b50509050806106b55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106fd565b6001600160a01b0390911690637d3e3dbe816113b457826113ad5750634420e4866113b4565b5063a0af29035b8060e01b60005250306004528160245260008060446000806daaeb6d7670e522a718067333cd4e5af15060006024525050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061141c9033908990889088906004016118e5565b6020604051808303816000875af1925050508015611457575060408051601f3d908101601f1916820190925261145491810190611922565b60015b6114ac573d808015611485576040519150601f19603f3d011682016040523d82523d6000602084013e61148a565b606091505b5080516000036114a4576114a46368d2bf6b60e11b610c9e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b031981168114610c7457600080fd5b6000602082840312156114f157600080fd5b81356114fc816114c9565b9392505050565b60005b8381101561151e578181015183820152602001611506565b50506000910152565b6000815180845261153f816020860160208601611503565b601f01601f19169290920160200192915050565b6020815260006114fc6020830184611527565b60006020828403121561157857600080fd5b5035919050565b80356001600160a01b03811681146110bd57600080fd5b600080604083850312156115a957600080fd5b6115b28361157f565b946020939093013593505050565b6000806000606084860312156115d557600080fd5b6115de8461157f565b92506115ec6020850161157f565b9150604084013590509250925092565b60006020828403121561160e57600080fd5b6114fc8261157f565b803580151581146110bd57600080fd5b6000806040838503121561163a57600080fd5b6116438361157f565b915061165160208401611617565b90509250929050565b60006020828403121561166c57600080fd5b6114fc82611617565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156116b4576116b4611675565b604052919050565b600067ffffffffffffffff8211156116d6576116d6611675565b50601f01601f191660200190565b600080600080608085870312156116fa57600080fd5b6117038561157f565b93506117116020860161157f565b925060408501359150606085013567ffffffffffffffff81111561173457600080fd5b8501601f8101871361174557600080fd5b8035611758611753826116bc565b61168b565b81815288602083850101111561176d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156117a257600080fd5b6117ab8361157f565b91506116516020840161157f565b600181811c908216806117cd57607f821691505b6020821081036117ed57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105c3576105c36117f3565b60006020828403121561182e57600080fd5b5051919050565b60006020828403121561184757600080fd5b815167ffffffffffffffff81111561185e57600080fd5b8201601f8101841361186f57600080fd5b805161187d611753826116bc565b81815285602083850101111561189257600080fd5b6118a3826020830160208601611503565b95945050505050565b80820281158282048414176105c3576105c36117f3565b6000826118e057634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061191890830184611527565b9695505050505050565b60006020828403121561193457600080fd5b81516114fc816114c956fea26469706673582212207d8f27693a020556654850d849f0aefd8d5ad529ae0db8ff3eee2c6897b4891f64736f6c63430008110033

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

00000000000000000000000036a66527c7c0449a4c0c135bba1c6c94ca56484a00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : metadataContract_ (address): 0x36A66527c7C0449a4C0C135BBa1c6C94cA56484a
Arg [1] : mintableSupply_ (uint256): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000036a66527c7c0449a4c0c135bba1c6c94ca56484a
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

74832:4400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18329:639;;;;;;;;;;-1:-1:-1;18329:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18329:639:0;;;;;;;;19231:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25658:227::-;;;;;;;;;;-1:-1:-1;25658:227:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;25658:227:0;1533:203:1;77012:206:0;;;;;;:::i;:::-;;:::i;:::-;;75394:335;;;:::i;14973:323::-;;;;;;;;;;-1:-1:-1;15247:12:0;;15034:7;15231:13;:28;14973:323;;;2324:25:1;;;2312:2;2297:18;14973:323:0;2178:177:1;77226:205:0;;;;;;:::i;:::-;;:::i;78231:176::-;;;;;;;;;;-1:-1:-1;78231:176:0;;;;;:::i;:::-;;:::i;75021:44::-;;;;;;;;;;-1:-1:-1;75021:44:0;;;;-1:-1:-1;;;;;75021:44:0;;;75737:113;;;;;;;;;;-1:-1:-1;75737:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;17141:25:0;75796:4;17141:25;;;:18;:25;;;;;;10690:3;17141:40;75841:1;75820:22;;75737:113;78728:70;;;;;;;;;;;;;:::i;77439:213::-;;;;;;:::i;:::-;;:::i;76438:120::-;;;;;;;;;;-1:-1:-1;76438:120:0;;;;;:::i;:::-;;:::i;78415:305::-;;;;;;;;;;;;;:::i;76701:87::-;;;;;;;;;;;;;:::i;20633:152::-;;;;;;;;;;-1:-1:-1;20633:152:0;;;;;:::i;:::-;;:::i;16157:242::-;;;;;;;;;;-1:-1:-1;16157:242:0;;;;;:::i;:::-;;:::i;60872:103::-;;;;;;;;;;;;;:::i;76352:78::-;;;;;;;;;;;;;:::i;60224:87::-;;;;;;;;;;-1:-1:-1;60297:6:0;;-1:-1:-1;;;;;60297:6:0;60224:87;;19407:104;;;;;;;;;;;;;:::i;74958:20::-;;;;;;;;;;-1:-1:-1;74958:20:0;;;;;;;;;;;76796:208;;;;;;;;;;-1:-1:-1;76796:208:0;;;;;:::i;:::-;;:::i;77915:117::-;;;;;;;;;;-1:-1:-1;77915:117:0;;;;;:::i;:::-;;:::i;77660:247::-;;;;;;:::i;:::-;;:::i;76067:277::-;;;;;;;;;;-1:-1:-1;76067:277:0;;;;;:::i;:::-;;:::i;74985:29::-;;;;;;;;;;;;;;;;75858:201;;;;;;;;;;-1:-1:-1;75858:201:0;;;;;:::i;:::-;;:::i;26616:164::-;;;;;;;;;;-1:-1:-1;26616:164:0;;;;;:::i;:::-;;:::i;61130:201::-;;;;;;;;;;-1:-1:-1;61130:201:0;;;;;:::i;:::-;;:::i;74915:36::-;;;;;;;;;;-1:-1:-1;74915:36:0;;;;;;;;18329:639;18414:4;-1:-1:-1;;;;;;;;;18738:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18815:25:0;;;18738:102;:179;;;-1:-1:-1;;;;;;;;;;18892:25:0;;;18738:179;18718:199;18329:639;-1:-1:-1;;18329:639:0:o;19231:100::-;19285:13;19318:5;19311:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19231:100;:::o;25658:227::-;25734:7;25759:16;25767:7;25759;:16::i;:::-;25754:73;;25777:50;-1:-1:-1;;;25777:7:0;:50::i;:::-;-1:-1:-1;25847:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;25847:30:0;;25658:227::o;77012:206::-;77152:8;78191:24;;;;56149:59;;;56182:26;56199:8;56182:16;:26::i;:::-;77178:32:::1;77192:8;77202:7;77178:13;:32::i;:::-;77012:206:::0;;;:::o;75394:335::-;75444:8;;;;;;;75436:34;;;;-1:-1:-1;;;75436:34:0;;6078:2:1;75436:34:0;;;6060:21:1;6117:2;6097:18;;;6090:30;-1:-1:-1;;;6136:18:1;;;6129:43;6189:18;;75436:34:0;;;;;;;;;75511:14;;15449:7;15640:13;75489:18;;75506:1;75489:18;:::i;:::-;:36;;75481:57;;;;-1:-1:-1;;;75481:57:0;;6682:2:1;75481:57:0;;;6664:21:1;6721:1;6701:18;;;6694:29;-1:-1:-1;;;6739:18:1;;;6732:38;6787:18;;75481:57:0;6480:331:1;75481:57:0;75565:10;17108:6;17141:25;;;:18;:25;;;;;;10690:3;17141:40;75557:24;75549:53;;;;-1:-1:-1;;;75549:53:0;;7018:2:1;75549:53:0;;;7000:21:1;7057:2;7037:18;;;7030:30;-1:-1:-1;;;7076:18:1;;;7069:46;7132:18;;75549:53:0;6816:340:1;75549:53:0;75621:9;75634:10;75621:23;75613:44;;;;-1:-1:-1;;;75613:44:0;;7363:2:1;75613:44:0;;;7345:21:1;7402:1;7382:18;;;7375:29;-1:-1:-1;;;7420:18:1;;;7413:38;7468:18;;75613:44:0;7161:331:1;75613:44:0;75676:10;17450:14;17467:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;17667:32:0;-1:-1:-1;;;17666:63:0;17740:34;;75701:20;75707:10;75719:1;75701:5;:20::i;:::-;75394:335::o;77226:205::-;77369:4;-1:-1:-1;;;;;55738:18:0;;55746:10;55738:18;55734:184;;78191:24;;;;55830:61;;;55863:28;55880:10;55863:16;:28::i;:::-;77386:37:::1;77405:4;77411:2;77415:7;77386:18;:37::i;:::-;77226:205:::0;;;;:::o;78231:176::-;60110:13;:11;:13::i;:::-;78341:16:::1;:58:::0;;-1:-1:-1;;;;;;78341:58:0::1;-1:-1:-1::0;;;;;78341:58:0;;;::::1;::::0;;;::::1;::::0;;78231:176::o;78728:70::-;63940:21;:19;:21::i;:::-;78779:11:::1;:9;:11::i;:::-;63984:20:::0;63378:1;64504:7;:22;64321:213;77439;77586:4;-1:-1:-1;;;;;55738:18:0;;55746:10;55738:18;55734:184;;78191:24;;;;55830:61;;;55863:28;55880:10;55863:16;:28::i;:::-;77603:41:::1;77626:4;77632:2;77636:7;77603:22;:41::i;76438:120::-:0;60110:13;:11;:13::i;:::-;76518:14:::1;:32:::0;76438:120::o;78415:305::-;63940:21;:19;:21::i;:::-;78569:37:::1;::::0;-1:-1:-1;;;78569:37:0;;78600:4:::1;78569:37;::::0;::::1;1679:51:1::0;78497:42:0::1;::::0;78470:18:::1;::::0;78497:42;;78569:22:::1;::::0;1652:18:1;;78569:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;78551:55:::0;-1:-1:-1;78621:11:0;;78617:74:::1;;78649:30;::::0;-1:-1:-1;;;78649:30:0;;::::1;::::0;::::1;2324:25:1::0;;;-1:-1:-1;;;;;78649:21:0;::::1;::::0;::::1;::::0;2297:18:1;;78649:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;78617:74;78701:11;:9;:11::i;:::-;78459:261;;63984:20:::0;63378:1;64504:7;:22;64321:213;76701:87;76749:31;:29;:31::i;20633:152::-;20705:7;20748:27;20767:7;20748:18;:27::i;16157:242::-;16229:7;-1:-1:-1;;;;;16253:19:0;;16249:69;;16274:44;-1:-1:-1;;;16274:7:0;:44::i;:::-;-1:-1:-1;;;;;;16336:25:0;;;;;:18;:25;;;;;;10316:13;16336:55;;16157:242::o;60872:103::-;60110:13;:11;:13::i;:::-;60937:30:::1;60964:1;60937:18;:30::i;76352:78::-:0;60110:13;:11;:13::i;:::-;76414:8:::1;::::0;;-1:-1:-1;;76402:20:0;::::1;76414:8;::::0;;;::::1;;;76413:9;76402:20:::0;;::::1;;::::0;;76352:78::o;19407:104::-;19463:13;19496:7;19489:14;;;;;:::i;76796:208::-;76927:8;78191:24;;;;56149:59;;;56182:26;56199:8;56182:16;:26::i;:::-;76953:43:::1;76977:8;76987;76953:23;:43::i;77915:117::-:0;60110:13;:11;:13::i;:::-;77992:24:::1;:32:::0;;-1:-1:-1;;77992:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;77915:117::o;77660:247::-;77835:4;-1:-1:-1;;;;;55738:18:0;;55746:10;55738:18;55734:184;;78191:24;;;;55830:61;;;55863:28;55880:10;55863:16;:28::i;:::-;77852:47:::1;77875:4;77881:2;77885:7;77894:4;77852:22;:47::i;:::-;77660:247:::0;;;;;:::o;76067:277::-;76194:13;76230:16;76238:7;76230;:16::i;:::-;76225:59;;76255:29;;-1:-1:-1;;;76255:29:0;;;;;;;;;;;76225:59;76302:16;;:34;;-1:-1:-1;;;76302:34:0;;;;;2324:25:1;;;-1:-1:-1;;;;;76302:16:0;;;;:25;;2297:18:1;;76302:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;76302:34:0;;;;;;;;;;;;:::i;75858:201::-;60110:13;:11;:13::i;:::-;75981:14:::1;;75969:8;75952:14;15449:7:::0;15640:13;;15394:296;75952:14:::1;:25;;;;:::i;:::-;:43;;75944:70;;;::::0;-1:-1:-1;;;75944:70:0;;8541:2:1;75944:70:0::1;::::0;::::1;8523:21:1::0;8580:2;8560:18;;;8553:30;-1:-1:-1;;;8599:18:1;;;8592:44;8653:18;;75944:70:0::1;8339:338:1::0;75944:70:0::1;76025:26;76031:9;76042:8;76025:5;:26::i;:::-;75858:201:::0;;:::o;26616:164::-;-1:-1:-1;;;;;26737:25:0;;;26713:4;26737:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26616:164::o;61130:201::-;60110:13;:11;:13::i;:::-;-1:-1:-1;;;;;61219:22:0;::::1;61211:73;;;::::0;-1:-1:-1;;;61211:73:0;;8884:2:1;61211:73:0::1;::::0;::::1;8866:21:1::0;8923:2;8903:18;;;8896:30;8962:34;8942:18;;;8935:62;-1:-1:-1;;;9013:18:1;;;9006:36;9059:19;;61211:73:0::1;8682:402:1::0;61211:73:0::1;61295:28;61314:8;61295:18;:28::i;:::-;61130:201:::0;:::o;27038:282::-;27103:4;27193:13;;27183:7;:23;27140:153;;;;-1:-1:-1;;27244:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27244:44:0;:49;;27038:282::o;52730:165::-;52831:13;52825:4;52818:27;52872:4;52866;52859:18;56336:1359;56729:22;56723:4;56716:36;56822:9;56816:4;56809:23;56897:8;56891:4;56884:22;57074:4;57068;57062;57056;57029:25;57022:5;57011:68;57001:274;;57195:16;57189:4;57183;57168:44;57243:16;57237:4;57230:30;57001:274;57675:1;57669:4;57662:15;56336:1359;:::o;25375:124::-;25464:27;25473:2;25477:7;25486:4;25464:8;:27::i;37369:2305::-;37442:20;37465:13;;;37493;;;37489:53;;37508:34;-1:-1:-1;;;37508:7:0;:34::i;:::-;38055:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;24303:28:0;;24477:11;24452:23;24448:41;24921:1;24908:15;;24882:24;24878:46;24445:52;24435:63;;38055:173;;;38446:22;;;:18;:22;;;;;:71;;38484:32;38472:45;;38446:71;;;24303:28;38707:13;;;38703:54;;38722:35;-1:-1:-1;;;38722:7:0;:35::i;:::-;38788:23;;;:12;38873:676;39292:7;39248:8;39203:1;39137:25;39074:1;39009;38978:358;39544:3;39531:9;;;;;;:16;38873:676;;-1:-1:-1;39565:13:0;:19;-1:-1:-1;77012:206:0;;;:::o;29306:3523::-;29448:27;29478;29497:7;29478:18;:27::i;:::-;-1:-1:-1;;;;;29633:22:0;;;;29448:57;;-1:-1:-1;29693:45:0;;;;29689:95;;29740:44;-1:-1:-1;;;29740:7:0;:44::i;:::-;29798:27;28414:24;;;:15;:24;;;;;28642:26;;50798:10;28039:30;;;-1:-1:-1;;;;;27732:28:0;;28017:20;;;28014:56;29984:189;;30077:43;30094:4;50798:10;26616:164;:::i;30077:43::-;30072:101;;30122:51;-1:-1:-1;;;30122:7:0;:51::i;:::-;30322:15;30319:160;;;30462:1;30441:19;30434:30;30319:160;-1:-1:-1;;;;;30859:24:0;;;;;;;:18;:24;;;;;;30857:26;;-1:-1:-1;;30857:26:0;;;30928:22;;;;;;;;;30926:24;;-1:-1:-1;30926:24:0;;;24477:11;24452:23;24448:41;24435:63;-1:-1:-1;;;24435:63:0;31221:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31516:47:0;;:52;;31512:627;;31621:1;31611:11;;31589:19;31744:30;;;:17;:30;;;;;;:35;;31740:384;;31882:13;;31867:11;:28;31863:242;;32029:30;;;;:17;:30;;;;;:52;;;31863:242;31570:569;31512:627;-1:-1:-1;;;;;32271:20:0;;32651:7;32271:20;32581:4;32523:25;32252:16;;32388:299;32712:8;32724:1;32712:13;32708:58;;32727:39;-1:-1:-1;;;32727:7:0;:39::i;:::-;29437:3392;;;;29306:3523;;;:::o;60389:132::-;60297:6;;-1:-1:-1;;;;;60297:6:0;50798:10;60453:23;60445:68;;;;-1:-1:-1;;;60445:68:0;;9291:2:1;60445:68:0;;;9273:21:1;;;9310:18;;;9303:30;9369:34;9349:18;;;9342:62;9421:18;;60445:68:0;9089:356:1;64020:293:0;63422:1;64154:7;;:19;64146:63;;;;-1:-1:-1;;;64146:63:0;;9652:2:1;64146:63:0;;;9634:21:1;9691:2;9671:18;;;9664:30;9730:33;9710:18;;;9703:61;9781:18;;64146:63:0;9450:355:1;64146:63:0;63422:1;64287:7;:18;64020:293::o;78806:386::-;78865:21;78897:138;78945:42;79021:3;79005:12;78865:21;79015:2;79005:12;:::i;:::-;79004:20;;;;:::i;:::-;78897:17;:138::i;:::-;79046;79094:42;79170:3;79154:12;:7;79164:2;79154:12;:::i;32925:193::-;33071:39;33088:4;33094:2;33098:7;33071:39;;;;;;;;;;;;:16;:39::i;53774:135::-;53843:58;53338:42;53896:4;53843:29;:58::i;21788:1730::-;21938:26;;;;:17;:26;;;;;;;-1:-1:-1;;;22014:24:0;;:29;;22010:1432;;22153:6;22163:1;22153:11;22149:990;;22204:13;;22193:7;:24;22189:77;;22219:47;-1:-1:-1;;;22219:7:0;:47::i;:::-;22863:257;-1:-1:-1;;;22967:9:0;22949:28;;;;:17;:28;;;;;;23031:25;;22863:257;23031:25;;21788:1730;;;:::o;22010:1432::-;23463:47;-1:-1:-1;;;23463:7:0;:47::i;61491:191::-;61584:6;;;-1:-1:-1;;;;;61601:17:0;;;-1:-1:-1;;;;;;61601:17:0;;;;;;;61634:40;;61584:6;;;61601:17;61584:6;;61634:40;;61565:16;;61634:40;61554:128;61491:191;:::o;26225:234::-;50798:10;26320:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26320:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26320:60:0;;;;;;;;;;26396:55;;540:41:1;;;26320:49:0;;50798:10;26396:55;;513:18:1;26396:55:0;;;;;;;26225:234;;:::o;33716:416::-;33891:31;33904:4;33910:2;33914:7;33891:12;:31::i;:::-;-1:-1:-1;;;;;33937:14:0;;;:19;33933:192;;33976:56;34007:4;34013:2;34017:7;34026:5;33976:30;:56::i;:::-;33971:154;;34053:56;-1:-1:-1;;;34053:7:0;:56::i;44163:474::-;44292:13;44308:16;44316:7;44308;:16::i;:::-;44292:32;;44341:13;:45;;;;-1:-1:-1;50798:10:0;-1:-1:-1;;;;;44358:28:0;;;;44341:45;44337:201;;;44406:44;44423:5;50798:10;26616:164;:::i;44406:44::-;44401:137;;44471:51;-1:-1:-1;;;44471:7:0;:51::i;:::-;44550:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;44550:35:0;-1:-1:-1;;;;;44550:35:0;;;;;;;;;44601:28;;44550:24;;44601:28;;;;;;;44281:356;44163:474;;;:::o;67486:317::-;67601:6;67576:21;:31;;67568:73;;;;-1:-1:-1;;;67568:73:0;;10407:2:1;67568:73:0;;;10389:21:1;10446:2;10426:18;;;10419:30;10485:31;10465:18;;;10458:59;10534:18;;67568:73:0;10205:353:1;67568:73:0;67655:12;67673:9;-1:-1:-1;;;;;67673:14:0;67695:6;67673:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67654:52;;;67725:7;67717:78;;;;-1:-1:-1;;;67717:78:0;;10975:2:1;67717:78:0;;;10957:21:1;11014:2;10994:18;;;10987:30;11053:34;11033:18;;;11026:62;11124:28;11104:18;;;11097:56;11170:19;;67717:78:0;10773:422:1;54079:1494:0;-1:-1:-1;;;;;54521:48:0;;;;54317:10;54599:9;54585:344;;54642:30;54632:165;;-1:-1:-1;54717:10:0;54773:5;;54632:165;-1:-1:-1;54835:10:0;54585:344;55010:16;55005:3;55001:26;54995:4;54988:40;;55098:9;55092:4;55085:23;55195:30;55189:4;55182:44;55348:4;55342;55336;55330;55327:1;55300:25;55293:5;55288:65;55284:70;55553:1;55547:4;55540:15;54079:1494;;:::o;36216:691::-;36400:88;;-1:-1:-1;;;36400:88:0;;36379:4;;-1:-1:-1;;;;;36400:45:0;;;;;:88;;50798:10;;36467:4;;36473:7;;36482:5;;36400:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36400:88:0;;;;;;;;-1:-1:-1;;36400:88:0;;;;;;;;;;;;:::i;:::-;;;36396:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36683:6;:13;36700:1;36683:18;36679:115;;36722:56;-1:-1:-1;;;36722:7:0;:56::i;:::-;36866:6;36860:13;36851:6;36847:2;36843:15;36836:38;36396:504;-1:-1:-1;;;;;;36559:64:0;-1:-1:-1;;;36559:64:0;;-1:-1:-1;36216:691:0;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;3121:160::-;3186:20;;3242:13;;3235:21;3225:32;;3215:60;;3271:1;3268;3261:12;3286:254;3351:6;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3451:29;3470:9;3451:29;:::i;:::-;3441:39;;3499:35;3530:2;3519:9;3515:18;3499:35;:::i;:::-;3489:45;;3286:254;;;;;:::o;3545:180::-;3601:6;3654:2;3642:9;3633:7;3629:23;3625:32;3622:52;;;3670:1;3667;3660:12;3622:52;3693:26;3709:9;3693:26;:::i;3730:127::-;3791:10;3786:3;3782:20;3779:1;3772:31;3822:4;3819:1;3812:15;3846:4;3843:1;3836:15;3862:275;3933:2;3927:9;3998:2;3979:13;;-1:-1:-1;;3975:27:1;3963:40;;4033:18;4018:34;;4054:22;;;4015:62;4012:88;;;4080:18;;:::i;:::-;4116:2;4109:22;3862:275;;-1:-1:-1;3862:275:1:o;4142:186::-;4190:4;4223:18;4215:6;4212:30;4209:56;;;4245:18;;:::i;:::-;-1:-1:-1;4311:2:1;4290:15;-1:-1:-1;;4286:29:1;4317:4;4282:40;;4142:186::o;4333:888::-;4428:6;4436;4444;4452;4505:3;4493:9;4484:7;4480:23;4476:33;4473:53;;;4522:1;4519;4512:12;4473:53;4545:29;4564:9;4545:29;:::i;:::-;4535:39;;4593:38;4627:2;4616:9;4612:18;4593:38;:::i;:::-;4583:48;;4678:2;4667:9;4663:18;4650:32;4640:42;;4733:2;4722:9;4718:18;4705:32;4760:18;4752:6;4749:30;4746:50;;;4792:1;4789;4782:12;4746:50;4815:22;;4868:4;4860:13;;4856:27;-1:-1:-1;4846:55:1;;4897:1;4894;4887:12;4846:55;4933:2;4920:16;4958:48;4974:31;5002:2;4974:31;:::i;:::-;4958:48;:::i;:::-;5029:2;5022:5;5015:17;5069:7;5064:2;5059;5055;5051:11;5047:20;5044:33;5041:53;;;5090:1;5087;5080:12;5041:53;5145:2;5140;5136;5132:11;5127:2;5120:5;5116:14;5103:45;5189:1;5184:2;5179;5172:5;5168:14;5164:23;5157:34;5210:5;5200:15;;;;;4333:888;;;;;;;:::o;5226:260::-;5294:6;5302;5355:2;5343:9;5334:7;5330:23;5326:32;5323:52;;;5371:1;5368;5361:12;5323:52;5394:29;5413:9;5394:29;:::i;:::-;5384:39;;5442:38;5476:2;5465:9;5461:18;5442:38;:::i;5491:380::-;5570:1;5566:12;;;;5613;;;5634:61;;5688:4;5680:6;5676:17;5666:27;;5634:61;5741:2;5733:6;5730:14;5710:18;5707:38;5704:161;;5787:10;5782:3;5778:20;5775:1;5768:31;5822:4;5819:1;5812:15;5850:4;5847:1;5840:15;5704:161;;5491:380;;;:::o;6218:127::-;6279:10;6274:3;6270:20;6267:1;6260:31;6310:4;6307:1;6300:15;6334:4;6331:1;6324:15;6350:125;6415:9;;;6436:10;;;6433:36;;;6449:18;;:::i;7497:184::-;7567:6;7620:2;7608:9;7599:7;7595:23;7591:32;7588:52;;;7636:1;7633;7626:12;7588:52;-1:-1:-1;7659:16:1;;7497:184;-1:-1:-1;7497:184:1:o;7686:648::-;7766:6;7819:2;7807:9;7798:7;7794:23;7790:32;7787:52;;;7835:1;7832;7825:12;7787:52;7868:9;7862:16;7901:18;7893:6;7890:30;7887:50;;;7933:1;7930;7923:12;7887:50;7956:22;;8009:4;8001:13;;7997:27;-1:-1:-1;7987:55:1;;8038:1;8035;8028:12;7987:55;8067:2;8061:9;8092:48;8108:31;8136:2;8108:31;:::i;8092:48::-;8163:2;8156:5;8149:17;8203:7;8198:2;8193;8189;8185:11;8181:20;8178:33;8175:53;;;8224:1;8221;8214:12;8175:53;8237:67;8301:2;8296;8289:5;8285:14;8280:2;8276;8272:11;8237:67;:::i;:::-;8323:5;7686:648;-1:-1:-1;;;;;7686:648:1:o;9810:168::-;9883:9;;;9914;;9931:15;;;9925:22;;9911:37;9901:71;;9952:18;;:::i;9983:217::-;10023:1;10049;10039:132;;10093:10;10088:3;10084:20;10081:1;10074:31;10128:4;10125:1;10118:15;10156:4;10153:1;10146:15;10039:132;-1:-1:-1;10185:9:1;;9983:217::o;11200:489::-;-1:-1:-1;;;;;11469:15:1;;;11451:34;;11521:15;;11516:2;11501:18;;11494:43;11568:2;11553:18;;11546:34;;;11616:3;11611:2;11596:18;;11589:31;;;11394:4;;11637:46;;11663:19;;11655:6;11637:46;:::i;:::-;11629:54;11200:489;-1:-1:-1;;;;;;11200:489:1:o;11694:249::-;11763:6;11816:2;11804:9;11795:7;11791:23;11787:32;11784:52;;;11832:1;11829;11822:12;11784:52;11864:9;11858:16;11883:30;11907:5;11883:30;:::i

Swarm Source

ipfs://7d8f27693a020556654850d849f0aefd8d5ad529ae0db8ff3eee2c6897b4891f
Loading...
Loading
Loading...
Loading
[ 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.