ETH Price: $2,441.31 (+3.36%)

Token

Undefined Ghost (UDF GHOST)
 

Overview

Max Total Supply

3,692 UDF GHOST

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 UDF GHOST
0x1E18677d4c9391eCBbBf63A0Dc56f1B10F099f7f
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:
UndefinedGhost

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-10
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-02
*/

/*********************************************************

                ₙₒ ₒₙₑ wₐₛ dₑfᵢₙₑd ᵢₙ ₜₕᵢₛ wₒᵣₗd.
                            
*********************************************************/
// SPDX-License-Identifier: MIT

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

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

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

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/undf_ghost.sol

pragma solidity ^0.8.4;

contract UndefinedGhost is Ownable, ERC721A, ReentrancyGuard {
    mapping(address => uint256) public minted;
    uint256 public freeMint = 666;

    struct Ghost {
        uint256 price;
        uint256 maxMint;
        uint256 maxSupply;
    }

    Ghost public ghost;

    constructor() ERC721A("Undefined Ghost", "UDF GHOST") {
        ghost.price = 6000000000000000;
        ghost.maxMint = 6;
        ghost.maxSupply = 4000;
    }

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

        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable {
        Ghost memory config = ghost;
        uint256 price = uint256(config.price);
        uint256 maxMint = uint256(config.maxMint);
        uint256 numberToMint = quantity;

        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Insufficient quantity left."
        );
        require(
            getAddressBuyed(msg.sender) + quantity <= maxMint,
            "You mint too much."
        );

        if (freeMint >= numberToMint) {
            _safeMint(msg.sender, numberToMint);
            freeMint -= numberToMint;
            numberToMint = 0;
        } else if (freeMint > 0 && freeMint < numberToMint) {
            numberToMint -= freeMint;
            _safeMint(msg.sender, freeMint);
            freeMint = 0;
        }

        if (numberToMint > 0) {
            require(
                numberToMint * price <= msg.value,
                "Insufficient balance."
            );
            _safeMint(msg.sender, quantity);
        }

        minted[msg.sender] += quantity;
    }

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

    function setFreeMint(uint256 _slots) external onlyOwner {
        freeMint = _slots;
    }

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

    string private _baseTokenURI;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressBuyed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghost","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slots","type":"uint256"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261029a600b553480156200001757600080fd5b506040518060400160405280600f81526020016e155b9919599a5b99590811da1bdcdd608a1b815250604051806040016040528060098152602001681551118811d213d4d560ba1b8152506200007c62000076620000ce60201b60201c565b620000d2565b81516200009190600390602085019062000122565b508051620000a790600490602084019062000122565b5060018081556009555050661550f7dca70000600c556006600d55610fa0600e5562000205565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013090620001c8565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600181811c90821680620001dd57607f821691505b60208210811415620001ff57634e487b7160e01b600052602260045260246000fd5b50919050565b61196780620002156000396000f3fe60806040526004361061019c5760003560e01c80635b70ea9f116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde146104bc578063c87b56dd146104dc578063e985e9c5146104fc578063f2fde38b1461054557600080fd5b806395d89b4114610474578063a0712d6814610489578063a22cb4651461049c57600080fd5b806370e09369116100c657806370e0936914610401578063715018a6146104215780638da5cb5b1461043657806391b7f5ed1461045457600080fd5b80635b70ea9f146103ab5780636352211e146103c157806370a08231146103e157600080fd5b80631fc895db116101595780633ccfd60b116101335780633ccfd60b1461031c57806342842e0e1461033157806351dc71891461035157806355f804b31461038b57600080fd5b80631fc895db146102a657806323b872dd146102dc578063375a069a146102fc57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631e7269c514610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611695565b610565565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105b7565b6040516101cd91906117f2565b34801561020457600080fd5b50610218610213366004611741565b610649565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461166b565b61068d565b005b34801561025e57600080fd5b5060025460015403600019015b6040519081526020016101cd565b34801561028557600080fd5b5061026b6102943660046114c9565b600a6020526000908152604090205481565b3480156102b257600080fd5b5061026b6102c13660046114c9565b6001600160a01b03166000908152600a602052604090205490565b3480156102e857600080fd5b506102506102f7366004611517565b610760565b34801561030857600080fd5b50610250610317366004611741565b610770565b34801561032857600080fd5b50610250610835565b34801561033d57600080fd5b5061025061034c366004611517565b61094a565b34801561035d57600080fd5b50600c54600d54600e5461037092919083565b604080519384526020840192909252908201526060016101cd565b34801561039757600080fd5b506102506103a63660046116cf565b610965565b3480156103b757600080fd5b5061026b600b5481565b3480156103cd57600080fd5b506102186103dc366004611741565b61099b565b3480156103ed57600080fd5b5061026b6103fc3660046114c9565b6109a6565b34801561040d57600080fd5b5061025061041c366004611741565b6109f5565b34801561042d57600080fd5b50610250610a24565b34801561044257600080fd5b506000546001600160a01b0316610218565b34801561046057600080fd5b5061025061046f366004611741565b610a5a565b34801561048057600080fd5b506101eb610a89565b610250610497366004611741565b610a98565b3480156104a857600080fd5b506102506104b736600461162f565b610ca3565b3480156104c857600080fd5b506102506104d7366004611553565b610d39565b3480156104e857600080fd5b506101eb6104f7366004611741565b610d83565b34801561050857600080fd5b506101c16105173660046114e4565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561055157600080fd5b506102506105603660046114c9565b610e08565b60006301ffc9a760e01b6001600160e01b03198316148061059657506380ac58cd60e01b6001600160e01b03198316145b806105b15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105c6906118b4565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906118b4565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600061065482610ea0565b610671576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061069882610ed5565b9050806001600160a01b0316836001600160a01b031614156106cd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610704576106e78133610517565b610704576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61076b838383610f3e565b505050565b6000546001600160a01b031633146107a35760405162461bcd60e51b815260040161079a90611805565b60405180910390fd5b60408051606081018252600c548152600d546020820152600e54910181905260025460015483919003600019016107da919061183a565b11156108285760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e0000000000604482015260640161079a565b61083233826110e1565b50565b6000546001600160a01b0316331461085f5760405162461bcd60e51b815260040161079a90611805565b600260095414156108b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079a565b6002600955604051600090339047908381818185875af1925050503d80600081146108f9576040519150601f19603f3d011682016040523d82523d6000602084013e6108fe565b606091505b50509050806109425760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161079a565b506001600955565b61076b83838360405180602001604052806000815250610d39565b6000546001600160a01b0316331461098f5760405162461bcd60e51b815260040161079a90611805565b61076b600f8383611414565b60006105b182610ed5565b60006001600160a01b0382166109cf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161079a90611805565b600b55565b6000546001600160a01b03163314610a4e5760405162461bcd60e51b815260040161079a90611805565b610a5860006110ff565b565b6000546001600160a01b03163314610a845760405162461bcd60e51b815260040161079a90611805565b600c55565b6060600480546105c6906118b4565b60408051606081018252600c54808252600d5460208301819052600e5493830193909352909183610ae460408051606081018252600c548152600d546020820152600e54910181905290565b6002546001548791900360001901610afc919061183a565b1115610b4a5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e0000000000604482015260640161079a565b336000908152600a60205260409020548290610b6790879061183a565b1115610baa5760405162461bcd60e51b81526020600482015260126024820152712cb7ba9036b4b73a103a37b79036bab1b41760711b604482015260640161079a565b80600b5410610bde57610bbd33826110e1565b80600b6000828254610bcf9190611871565b9091555060009150610c179050565b6000600b54118015610bf1575080600b54105b15610c1757600b54610c039082611871565b9050610c1133600b546110e1565b6000600b555b8015610c785734610c288483611852565b1115610c6e5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b604482015260640161079a565b610c7833866110e1565b336000908152600a602052604081208054879290610c9790849061183a565b90915550505050505050565b6001600160a01b038216331415610ccd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d44848484610f3e565b6001600160a01b0383163b15610d7d57610d608484848461114f565b610d7d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d8e82610ea0565b610dab57604051630a14c4b560e41b815260040160405180910390fd5b6000610db5611246565b9050805160001415610dd65760405180602001604052806000815250610e01565b80610de084611255565b604051602001610df1929190611786565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610e325760405162461bcd60e51b815260040161079a90611805565b6001600160a01b038116610e975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079a565b610832816110ff565b600081600111158015610eb4575060015482105b80156105b1575050600090815260056020526040902054600160e01b161590565b60008180600111610f2557600154811015610f2557600081815260056020526040902054600160e01b8116610f23575b80610e01575060001901600081815260056020526040902054610f05565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610f4982610ed5565b9050836001600160a01b0316816001600160a01b031614610f7c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f9a5750610f9a8533610517565b80610fb5575033610faa84610649565b6001600160a01b0316145b905080610fd557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ffc57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b86178117909155821661109957600183016000818152600560205260409020546110975760015481146110975760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6110fb8282604051806020016040528060008152506112a4565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111849033908990889088906004016117b5565b602060405180830381600087803b15801561119e57600080fd5b505af19250505080156111ce575060408051601f3d908101601f191682019092526111cb918101906116b2565b60015b611229573d8080156111fc576040519150601f19603f3d011682016040523d82523d6000602084013e611201565b606091505b508051611221576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546105c6906118b4565b604080516080810191829052607f0190826030600a8206018353600a90045b801561129257600183039250600a81066030018353600a9004611274565b50819003601f19909101908152919050565b6001546001600160a01b0384166112cd57604051622e076360e81b815260040160405180910390fd5b826112eb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156113c0575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611389600087848060010195508761114f565b6113a6576040516368d2bf6b60e11b815260040160405180910390fd5b80821061133e5782600154146113bb57600080fd5b611405565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113c1575b50600155610d7d600085838684565b828054611420906118b4565b90600052602060002090601f0160209004810192826114425760008555611488565b82601f1061145b5782800160ff19823516178555611488565b82800160010185558215611488579182015b8281111561148857823582559160200191906001019061146d565b50611494929150611498565b5090565b5b808211156114945760008155600101611499565b80356001600160a01b03811681146114c457600080fd5b919050565b6000602082840312156114db57600080fd5b610e01826114ad565b600080604083850312156114f757600080fd5b611500836114ad565b915061150e602084016114ad565b90509250929050565b60008060006060848603121561152c57600080fd5b611535846114ad565b9250611543602085016114ad565b9150604084013590509250925092565b6000806000806080858703121561156957600080fd5b611572856114ad565b9350611580602086016114ad565b925060408501359150606085013567ffffffffffffffff808211156115a457600080fd5b818701915087601f8301126115b857600080fd5b8135818111156115ca576115ca611905565b604051601f8201601f19908116603f011681019083821181831017156115f2576115f2611905565b816040528281528a602084870101111561160b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561164257600080fd5b61164b836114ad565b91506020830135801515811461166057600080fd5b809150509250929050565b6000806040838503121561167e57600080fd5b611687836114ad565b946020939093013593505050565b6000602082840312156116a757600080fd5b8135610e018161191b565b6000602082840312156116c457600080fd5b8151610e018161191b565b600080602083850312156116e257600080fd5b823567ffffffffffffffff808211156116fa57600080fd5b818501915085601f83011261170e57600080fd5b81358181111561171d57600080fd5b86602082850101111561172f57600080fd5b60209290920196919550909350505050565b60006020828403121561175357600080fd5b5035919050565b60008151808452611772816020860160208601611888565b601f01601f19169290920160200192915050565b60008351611798818460208801611888565b8351908301906117ac818360208801611888565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117e89083018461175a565b9695505050505050565b602081526000610e01602083018461175a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561184d5761184d6118ef565b500190565b600081600019048311821515161561186c5761186c6118ef565b500290565b600082821015611883576118836118ef565b500390565b60005b838110156118a357818101518382015260200161188b565b83811115610d7d5750506000910152565b600181811c908216806118c857607f821691505b602082108114156118e957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083257600080fdfea2646970667358221220d2343ce437efcca0648cac0dcbae20f4adf8b0448ebf7cd430ceb890172ccc0764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80635b70ea9f116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde146104bc578063c87b56dd146104dc578063e985e9c5146104fc578063f2fde38b1461054557600080fd5b806395d89b4114610474578063a0712d6814610489578063a22cb4651461049c57600080fd5b806370e09369116100c657806370e0936914610401578063715018a6146104215780638da5cb5b1461043657806391b7f5ed1461045457600080fd5b80635b70ea9f146103ab5780636352211e146103c157806370a08231146103e157600080fd5b80631fc895db116101595780633ccfd60b116101335780633ccfd60b1461031c57806342842e0e1461033157806351dc71891461035157806355f804b31461038b57600080fd5b80631fc895db146102a657806323b872dd146102dc578063375a069a146102fc57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631e7269c514610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611695565b610565565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105b7565b6040516101cd91906117f2565b34801561020457600080fd5b50610218610213366004611741565b610649565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461166b565b61068d565b005b34801561025e57600080fd5b5060025460015403600019015b6040519081526020016101cd565b34801561028557600080fd5b5061026b6102943660046114c9565b600a6020526000908152604090205481565b3480156102b257600080fd5b5061026b6102c13660046114c9565b6001600160a01b03166000908152600a602052604090205490565b3480156102e857600080fd5b506102506102f7366004611517565b610760565b34801561030857600080fd5b50610250610317366004611741565b610770565b34801561032857600080fd5b50610250610835565b34801561033d57600080fd5b5061025061034c366004611517565b61094a565b34801561035d57600080fd5b50600c54600d54600e5461037092919083565b604080519384526020840192909252908201526060016101cd565b34801561039757600080fd5b506102506103a63660046116cf565b610965565b3480156103b757600080fd5b5061026b600b5481565b3480156103cd57600080fd5b506102186103dc366004611741565b61099b565b3480156103ed57600080fd5b5061026b6103fc3660046114c9565b6109a6565b34801561040d57600080fd5b5061025061041c366004611741565b6109f5565b34801561042d57600080fd5b50610250610a24565b34801561044257600080fd5b506000546001600160a01b0316610218565b34801561046057600080fd5b5061025061046f366004611741565b610a5a565b34801561048057600080fd5b506101eb610a89565b610250610497366004611741565b610a98565b3480156104a857600080fd5b506102506104b736600461162f565b610ca3565b3480156104c857600080fd5b506102506104d7366004611553565b610d39565b3480156104e857600080fd5b506101eb6104f7366004611741565b610d83565b34801561050857600080fd5b506101c16105173660046114e4565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561055157600080fd5b506102506105603660046114c9565b610e08565b60006301ffc9a760e01b6001600160e01b03198316148061059657506380ac58cd60e01b6001600160e01b03198316145b806105b15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105c6906118b4565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906118b4565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600061065482610ea0565b610671576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061069882610ed5565b9050806001600160a01b0316836001600160a01b031614156106cd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610704576106e78133610517565b610704576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61076b838383610f3e565b505050565b6000546001600160a01b031633146107a35760405162461bcd60e51b815260040161079a90611805565b60405180910390fd5b60408051606081018252600c548152600d546020820152600e54910181905260025460015483919003600019016107da919061183a565b11156108285760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e0000000000604482015260640161079a565b61083233826110e1565b50565b6000546001600160a01b0316331461085f5760405162461bcd60e51b815260040161079a90611805565b600260095414156108b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079a565b6002600955604051600090339047908381818185875af1925050503d80600081146108f9576040519150601f19603f3d011682016040523d82523d6000602084013e6108fe565b606091505b50509050806109425760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161079a565b506001600955565b61076b83838360405180602001604052806000815250610d39565b6000546001600160a01b0316331461098f5760405162461bcd60e51b815260040161079a90611805565b61076b600f8383611414565b60006105b182610ed5565b60006001600160a01b0382166109cf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161079a90611805565b600b55565b6000546001600160a01b03163314610a4e5760405162461bcd60e51b815260040161079a90611805565b610a5860006110ff565b565b6000546001600160a01b03163314610a845760405162461bcd60e51b815260040161079a90611805565b600c55565b6060600480546105c6906118b4565b60408051606081018252600c54808252600d5460208301819052600e5493830193909352909183610ae460408051606081018252600c548152600d546020820152600e54910181905290565b6002546001548791900360001901610afc919061183a565b1115610b4a5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74207175616e74697479206c6566742e0000000000604482015260640161079a565b336000908152600a60205260409020548290610b6790879061183a565b1115610baa5760405162461bcd60e51b81526020600482015260126024820152712cb7ba9036b4b73a103a37b79036bab1b41760711b604482015260640161079a565b80600b5410610bde57610bbd33826110e1565b80600b6000828254610bcf9190611871565b9091555060009150610c179050565b6000600b54118015610bf1575080600b54105b15610c1757600b54610c039082611871565b9050610c1133600b546110e1565b6000600b555b8015610c785734610c288483611852565b1115610c6e5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b604482015260640161079a565b610c7833866110e1565b336000908152600a602052604081208054879290610c9790849061183a565b90915550505050505050565b6001600160a01b038216331415610ccd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d44848484610f3e565b6001600160a01b0383163b15610d7d57610d608484848461114f565b610d7d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d8e82610ea0565b610dab57604051630a14c4b560e41b815260040160405180910390fd5b6000610db5611246565b9050805160001415610dd65760405180602001604052806000815250610e01565b80610de084611255565b604051602001610df1929190611786565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610e325760405162461bcd60e51b815260040161079a90611805565b6001600160a01b038116610e975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079a565b610832816110ff565b600081600111158015610eb4575060015482105b80156105b1575050600090815260056020526040902054600160e01b161590565b60008180600111610f2557600154811015610f2557600081815260056020526040902054600160e01b8116610f23575b80610e01575060001901600081815260056020526040902054610f05565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610f4982610ed5565b9050836001600160a01b0316816001600160a01b031614610f7c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f9a5750610f9a8533610517565b80610fb5575033610faa84610649565b6001600160a01b0316145b905080610fd557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ffc57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b86178117909155821661109957600183016000818152600560205260409020546110975760015481146110975760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6110fb8282604051806020016040528060008152506112a4565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111849033908990889088906004016117b5565b602060405180830381600087803b15801561119e57600080fd5b505af19250505080156111ce575060408051601f3d908101601f191682019092526111cb918101906116b2565b60015b611229573d8080156111fc576040519150601f19603f3d011682016040523d82523d6000602084013e611201565b606091505b508051611221576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546105c6906118b4565b604080516080810191829052607f0190826030600a8206018353600a90045b801561129257600183039250600a81066030018353600a9004611274565b50819003601f19909101908152919050565b6001546001600160a01b0384166112cd57604051622e076360e81b815260040160405180910390fd5b826112eb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156113c0575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611389600087848060010195508761114f565b6113a6576040516368d2bf6b60e11b815260040160405180910390fd5b80821061133e5782600154146113bb57600080fd5b611405565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113c1575b50600155610d7d600085838684565b828054611420906118b4565b90600052602060002090601f0160209004810192826114425760008555611488565b82601f1061145b5782800160ff19823516178555611488565b82800160010185558215611488579182015b8281111561148857823582559160200191906001019061146d565b50611494929150611498565b5090565b5b808211156114945760008155600101611499565b80356001600160a01b03811681146114c457600080fd5b919050565b6000602082840312156114db57600080fd5b610e01826114ad565b600080604083850312156114f757600080fd5b611500836114ad565b915061150e602084016114ad565b90509250929050565b60008060006060848603121561152c57600080fd5b611535846114ad565b9250611543602085016114ad565b9150604084013590509250925092565b6000806000806080858703121561156957600080fd5b611572856114ad565b9350611580602086016114ad565b925060408501359150606085013567ffffffffffffffff808211156115a457600080fd5b818701915087601f8301126115b857600080fd5b8135818111156115ca576115ca611905565b604051601f8201601f19908116603f011681019083821181831017156115f2576115f2611905565b816040528281528a602084870101111561160b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561164257600080fd5b61164b836114ad565b91506020830135801515811461166057600080fd5b809150509250929050565b6000806040838503121561167e57600080fd5b611687836114ad565b946020939093013593505050565b6000602082840312156116a757600080fd5b8135610e018161191b565b6000602082840312156116c457600080fd5b8151610e018161191b565b600080602083850312156116e257600080fd5b823567ffffffffffffffff808211156116fa57600080fd5b818501915085601f83011261170e57600080fd5b81358181111561171d57600080fd5b86602082850101111561172f57600080fd5b60209290920196919550909350505050565b60006020828403121561175357600080fd5b5035919050565b60008151808452611772816020860160208601611888565b601f01601f19169290920160200192915050565b60008351611798818460208801611888565b8351908301906117ac818360208801611888565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117e89083018461175a565b9695505050505050565b602081526000610e01602083018461175a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561184d5761184d6118ef565b500190565b600081600019048311821515161561186c5761186c6118ef565b500290565b600082821015611883576118836118ef565b500390565b60005b838110156118a357818101518382015260200161188b565b83811115610d7d5750506000910152565b600181811c908216806118c857607f821691505b602082108114156118e957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083257600080fdfea2646970667358221220d2343ce437efcca0648cac0dcbae20f4adf8b0448ebf7cd430ceb890172ccc0764736f6c63430008070033

Deployed Bytecode Sourcemap

44942:2787:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13422:615;;;;;;;;;;-1:-1:-1;13422:615:0;;;;;:::i;:::-;;:::i;:::-;;;5834:14:1;;5827:22;5809:41;;5797:2;5782:18;13422:615:0;;;;;;;;18435:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20503:204::-;;;;;;;;;;-1:-1:-1;20503:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5132:32:1;;;5114:51;;5102:2;5087:18;20503:204:0;4968:203:1;19963:474:0;;;;;;;;;;-1:-1:-1;19963:474:0;;;;;:::i;:::-;;:::i;:::-;;12476:315;;;;;;;;;;-1:-1:-1;12742:12:0;;12082:1;12726:13;:28;-1:-1:-1;;12726:46:0;12476:315;;;8757:25:1;;;8745:2;8730:18;12476:315:0;8611:177:1;45010:41:0;;;;;;;;;;-1:-1:-1;45010:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;46966:109;;;;;;;;;;-1:-1:-1;46966:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;47054:13:0;47027:7;47054:13;;;:6;:13;;;;;;;46966:109;21389:170;;;;;;;;;;-1:-1:-1;21389:170:0;;;;;:::i;:::-;;:::i;45402:236::-;;;;;;;;;;-1:-1:-1;45402:236:0;;;;;:::i;:::-;;:::i;47540:186::-;;;;;;;;;;;;;:::i;21630:185::-;;;;;;;;;;-1:-1:-1;21630:185:0;;;;;:::i;:::-;;:::i;45203:18::-;;;;;;;;;;-1:-1:-1;45203:18:0;;;;;;;;;;;;;;;;8995:25:1;;;9051:2;9036:18;;9029:34;;;;9079:18;;;9072:34;8983:2;8968:18;45203::0;8793:319:1;47426:106:0;;;;;;;;;;-1:-1:-1;47426:106:0;;;;;:::i;:::-;;:::i;45058:29::-;;;;;;;;;;;;;;;;18224:144;;;;;;;;;;-1:-1:-1;18224:144:0;;;;;:::i;:::-;;:::i;14101:224::-;;;;;;;;;;-1:-1:-1;14101:224:0;;;;;:::i;:::-;;:::i;46866:92::-;;;;;;;;;;-1:-1:-1;46866:92:0;;;;;:::i;:::-;;:::i;44061:103::-;;;;;;;;;;;;;:::i;43410:87::-;;;;;;;;;;-1:-1:-1;43456:7:0;43483:6;-1:-1:-1;;;;;43483:6:0;43410:87;;46766:92;;;;;;;;;;-1:-1:-1;46766:92:0;;;;;:::i;:::-;;:::i;18604:104::-;;;;;;;;;;;;;:::i;45646:1112::-;;;;;;:::i;:::-;;:::i;20779:308::-;;;;;;;;;;-1:-1:-1;20779:308:0;;;;;:::i;:::-;;:::i;21886:396::-;;;;;;;;;;-1:-1:-1;21886:396:0;;;;;:::i;:::-;;:::i;18779:318::-;;;;;;;;;;-1:-1:-1;18779:318:0;;;;;:::i;:::-;;:::i;21158:164::-;;;;;;;;;;-1:-1:-1;21158:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21279:25:0;;;21255:4;21279:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21158:164;44319:201;;;;;;;;;;-1:-1:-1;44319:201:0;;;;;:::i;:::-;;:::i;13422:615::-;13507:4;-1:-1:-1;;;;;;;;;13807:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13884:25:0;;;13807:102;:179;;;-1:-1:-1;;;;;;;;;;13961:25:0;;;13807:179;13787:199;13422:615;-1:-1:-1;;13422:615:0:o;18435:100::-;18489:13;18522:5;18515:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18435:100;:::o;20503:204::-;20571:7;20596:16;20604:7;20596;:16::i;:::-;20591:64;;20621:34;;-1:-1:-1;;;20621:34:0;;;;;;;;;;;20591:64;-1:-1:-1;20675:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20675:24:0;;20503:204::o;19963:474::-;20036:13;20068:27;20087:7;20068:18;:27::i;:::-;20036:61;;20118:5;-1:-1:-1;;;;;20112:11:0;:2;-1:-1:-1;;;;;20112:11:0;;20108:48;;;20132:24;;-1:-1:-1;;;20132:24:0;;;;;;;;;;;20108:48;36606:10;-1:-1:-1;;;;;20173:28:0;;;20169:175;;20221:44;20238:5;36606:10;21158:164;:::i;20221:44::-;20216:128;;20293:35;;-1:-1:-1;;;20293:35:0;;;;;;;;;;;20216:128;20356:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20356:29:0;-1:-1:-1;;;;;20356:29:0;;;;;;;;;20401:28;;20356:24;;20401:28;;;;;;;20025:412;19963:474;;:::o;21389:170::-;21523:28;21533:4;21539:2;21543:7;21523:9;:28::i;:::-;21389:170;;;:::o;45402:236::-;43456:7;43483:6;-1:-1:-1;;;;;43483:6:0;36606:10;43630:23;43622:68;;;;-1:-1:-1;;;43622:68:0;;;;;;;:::i;:::-;;;;;;;;;47153:27;;;;;;;;47175:5;47153:27;;;;;;;;;;;;;;;;12742:12;;12082:1;12726:13;45505:8;;12726:28;;-1:-1:-1;;12726:46:0;45489:24:::1;;;;:::i;:::-;:42;;45467:119;;;::::0;-1:-1:-1;;;45467:119:0;;8457:2:1;45467:119:0::1;::::0;::::1;8439:21:1::0;8496:2;8476:18;;;8469:30;8535:29;8515:18;;;8508:57;8582:18;;45467:119:0::1;8255:351:1::0;45467:119:0::1;45599:31;45609:10;45621:8;45599:9;:31::i;:::-;45402:236:::0;:::o;47540:186::-;43456:7;43483:6;-1:-1:-1;;;;;43483:6:0;36606:10;43630:23;43622:68;;;;-1:-1:-1;;;43622:68:0;;;;;;;:::i;:::-;40508:1:::1;41106:7;;:19;;41098:63;;;::::0;-1:-1:-1;;;41098:63:0;;8097:2:1;41098:63:0::1;::::0;::::1;8079:21:1::0;8136:2;8116:18;;;8109:30;8175:33;8155:18;;;8148:61;8226:18;;41098:63:0::1;7895:355:1::0;41098:63:0::1;40508:1;41239:7;:18:::0;47622:49:::2;::::0;47604:12:::2;::::0;47622:10:::2;::::0;47645:21:::2;::::0;47604:12;47622:49;47604:12;47622:49;47645:21;47622:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47603:68;;;47690:7;47682:36;;;::::0;-1:-1:-1;;;47682:36:0;;7405:2:1;47682:36:0::2;::::0;::::2;7387:21:1::0;7444:2;7424:18;;;7417:30;-1:-1:-1;;;7463:18:1;;;7456:46;7519:18;;47682:36:0::2;7203:340:1::0;47682:36:0::2;-1:-1:-1::0;40464:1:0::1;41418:7;:22:::0;47540:186::o;21630:185::-;21768:39;21785:4;21791:2;21795:7;21768:39;;;;;;;;;;;;:16;:39::i;47426:106::-;43456:7;43483:6;-1:-1:-1;;;;;43483:6:0;36606:10;43630:23;43622:68;;;;-1:-1:-1;;;43622:68:0;;;;;;;:::i;:::-;47501:23:::1;:13;47517:7:::0;;47501:23:::1;:::i;18224:144::-:0;18288:7;18331:27;18350:7;18331:18;:27::i;14101:224::-;14165:7;-1:-1:-1;;;;;14189:19:0;;14185:60;;14217:28;;-1:-1:-1;;;14217:28:0;;;;;;;;;;;14185:60;-1:-1:-1;;;;;;14263:25:0;;;;;:18;:25;;;;;;9440:13;14263:54;;14101:224::o;46866:92::-;43456:7;43483:6;-1:-1:-1;;;;;43483:6:0;36606:10;43630:23;43622:68;;;;-1:-1:-1;;;43622:68:0;;;;;;;:::i;:::-;46933:8:::1;:17:::0;46866:92::o;44061:103::-;43456:7;43483:6;-1:-1:-1;;;;;43483:6:0;36606:10;43630:23;43622:68;;;;-1:-1:-1;;;43622:68:0;;;;;;;:::i;:::-;44126:30:::1;44153:1;44126:18;:30::i;:::-;44061:103::o:0;46766:92::-;43456:7;43483:6;-1:-1:-1;;;;;43483:6:0;36606:10;43630:23;43622:68;;;;-1:-1:-1;;;43622:68:0;;;;;;;:::i;:::-;46830:5:::1;:20:::0;46766:92::o;18604:104::-;18660:13;18693:7;18686:14;;;;;:::i;45646:1112::-;45706:27;;;;;;;;45728:5;45706:27;;;;;;;;;;;;;;;;;;;;;;;45867:8;45938:14;47153:27;;;;;;;;47175:5;47153:27;;;;;;;;;;;;;;;;;47087:172;45938:14;12742:12;;12082:1;12726:13;45926:8;;12726:28;;-1:-1:-1;;12726:46:0;45910:24;;;;:::i;:::-;:42;;45888:119;;;;-1:-1:-1;;;45888:119:0;;8457:2:1;45888:119:0;;;8439:21:1;8496:2;8476:18;;;8469:30;8535:29;8515:18;;;8508:57;8582:18;;45888:119:0;8255:351:1;45888:119:0;46056:10;47027:7;47054:13;;;:6;:13;;;;;;46082:7;;46040:38;;46070:8;;46040:38;:::i;:::-;:49;;46018:117;;;;-1:-1:-1;;;46018:117:0;;7750:2:1;46018:117:0;;;7732:21:1;7789:2;7769:18;;;7762:30;-1:-1:-1;;;7808:18:1;;;7801:48;7866:18;;46018:117:0;7548:342:1;46018:117:0;46164:12;46152:8;;:24;46148:337;;46193:35;46203:10;46215:12;46193:9;:35::i;:::-;46255:12;46243:8;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;46297:1:0;;-1:-1:-1;46148:337:0;;-1:-1:-1;46148:337:0;;46331:1;46320:8;;:12;:39;;;;;46347:12;46336:8;;:23;46320:39;46316:169;;;46392:8;;46376:24;;;;:::i;:::-;;;46415:31;46425:10;46437:8;;46415:9;:31::i;:::-;46472:1;46461:8;:12;46316:169;46501:16;;46497:211;;46584:9;46560:20;46575:5;46560:12;:20;:::i;:::-;:33;;46534:116;;;;-1:-1:-1;;;46534:116:0;;6694:2:1;46534:116:0;;;6676:21:1;6733:2;6713:18;;;6706:30;-1:-1:-1;;;6752:18:1;;;6745:51;6813:18;;46534:116:0;6492:345:1;46534:116:0;46665:31;46675:10;46687:8;46665:9;:31::i;:::-;46727:10;46720:18;;;;:6;:18;;;;;:30;;46742:8;;46720:18;:30;;46742:8;;46720:30;:::i;:::-;;;;-1:-1:-1;;;;;;;45646:1112:0:o;20779:308::-;-1:-1:-1;;;;;20878:31:0;;36606:10;20878:31;20874:61;;;20918:17;;-1:-1:-1;;;20918:17:0;;;;;;;;;;;20874:61;36606:10;20948:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20948:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20948:60:0;;;;;;;;;;21024:55;;5809:41:1;;;20948:49:0;;36606:10;21024:55;;5782:18:1;21024:55:0;;;;;;;20779:308;;:::o;21886:396::-;22053:28;22063:4;22069:2;22073:7;22053:9;:28::i;:::-;-1:-1:-1;;;;;22096:14:0;;;:19;22092:183;;22135:56;22166:4;22172:2;22176:7;22185:5;22135:30;:56::i;:::-;22130:145;;22219:40;;-1:-1:-1;;;22219:40:0;;;;;;;;;;;22130:145;21886:396;;;;:::o;18779:318::-;18852:13;18883:16;18891:7;18883;:16::i;:::-;18878:59;;18908:29;;-1:-1:-1;;;18908:29:0;;;;;;;;;;;18878:59;18950:21;18974:10;:8;:10::i;:::-;18950:34;;19008:7;19002:21;19027:1;19002:26;;:87;;;;;;;;;;;;;;;;;19055:7;19064:18;19074:7;19064:9;:18::i;:::-;19038:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19002:87;18995:94;18779:318;-1:-1:-1;;;18779:318:0:o;44319:201::-;43456:7;43483:6;-1:-1:-1;;;;;43483:6:0;36606:10;43630:23;43622:68;;;;-1:-1:-1;;;43622:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44408:22:0;::::1;44400:73;;;::::0;-1:-1:-1;;;44400:73:0;;6287:2:1;44400:73:0::1;::::0;::::1;6269:21:1::0;6326:2;6306:18;;;6299:30;6365:34;6345:18;;;6338:62;-1:-1:-1;;;6416:18:1;;;6409:36;6462:19;;44400:73:0::1;6085:402:1::0;44400:73:0::1;44484:28;44503:8;44484:18;:28::i;22537:273::-:0;22594:4;22650:7;12082:1;22631:26;;:66;;;;;22684:13;;22674:7;:23;22631:66;:152;;;;-1:-1:-1;;22735:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22735:43:0;:48;;22537:273::o;15739:1129::-;15806:7;15841;;12082:1;15890:23;15886:915;;15943:13;;15936:4;:20;15932:869;;;15981:14;15998:23;;;:17;:23;;;;;;-1:-1:-1;;;16087:23:0;;16083:699;;16606:113;16613:11;16606:113;;-1:-1:-1;;;16684:6:0;16666:25;;;;:17;:25;;;;;;16606:113;;16083:699;15958:843;15932:869;16829:31;;-1:-1:-1;;;16829:31:0;;;;;;;;;;;27776:2515;27891:27;27921;27940:7;27921:18;:27::i;:::-;27891:57;;28006:4;-1:-1:-1;;;;;27965:45:0;27981:19;-1:-1:-1;;;;;27965:45:0;;27961:86;;28019:28;;-1:-1:-1;;;28019:28:0;;;;;;;;;;;27961:86;28060:22;36606:10;-1:-1:-1;;;;;28086:27:0;;;;:87;;-1:-1:-1;28130:43:0;28147:4;36606:10;21158:164;:::i;28130:43::-;28086:147;;;-1:-1:-1;36606:10:0;28190:20;28202:7;28190:11;:20::i;:::-;-1:-1:-1;;;;;28190:43:0;;28086:147;28060:174;;28252:17;28247:66;;28278:35;;-1:-1:-1;;;28278:35:0;;;;;;;;;;;28247:66;-1:-1:-1;;;;;28328:16:0;;28324:52;;28353:23;;-1:-1:-1;;;28353:23:0;;;;;;;;;;;28324:52;28505:24;;;;:15;:24;;;;;;;;28498:31;;-1:-1:-1;;;;;;28498:31:0;;;-1:-1:-1;;;;;28897:24:0;;;;;:18;:24;;;;;28895:26;;-1:-1:-1;;28895:26:0;;;28966:22;;;;;;;28964:24;;-1:-1:-1;28964:24:0;;;29259:26;;;:17;:26;;;;;-1:-1:-1;;;29347:15:0;10094:3;29347:41;29305:84;;:128;;29259:174;;;29553:46;;29549:626;;29657:1;29647:11;;29625:19;29780:30;;;:17;:30;;;;;;29776:384;;29918:13;;29903:11;:28;29899:242;;30065:30;;;;:17;:30;;;;;:52;;;29899:242;29606:569;29549:626;30222:7;30218:2;-1:-1:-1;;;;;30203:27:0;30212:4;-1:-1:-1;;;;;30203:27:0;;;;;;;;;;;27880:2411;;27776:2515;;;:::o;22894:104::-;22963:27;22973:2;22977:8;22963:27;;;;;;;;;;;;:9;:27::i;:::-;22894:104;;:::o;44680:191::-;44754:16;44773:6;;-1:-1:-1;;;;;44790:17:0;;;-1:-1:-1;;;;;;44790:17:0;;;;;;44823:40;;44773:6;;;;;;;44823:40;;44754:16;44823:40;44743:128;44680:191;:::o;33988:716::-;34172:88;;-1:-1:-1;;;34172:88:0;;34151:4;;-1:-1:-1;;;;;34172:45:0;;;;;:88;;36606:10;;34239:4;;34245:7;;34254:5;;34172:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34172:88:0;;;;;;;;-1:-1:-1;;34172:88:0;;;;;;;;;;;;:::i;:::-;;;34168:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34455:13:0;;34451:235;;34501:40;;-1:-1:-1;;;34501:40:0;;;;;;;;;;;34451:235;34644:6;34638:13;34629:6;34625:2;34621:15;34614:38;34168:529;-1:-1:-1;;;;;;34331:64:0;-1:-1:-1;;;34331:64:0;;-1:-1:-1;33988:716:0;;;;;;:::o;47304:114::-;47364:13;47397;47390:20;;;;;:::i;36730:1959::-;37201:4;37195:11;;37208:3;37191:21;;37286:17;;;;37983:11;;;37862:5;38115:2;38129;38119:13;;38111:22;37983:11;38098:36;38170:2;38160:13;;37753:682;38189:4;37753:682;;;38364:1;38359:3;38355:11;38348:18;;38415:2;38409:4;38405:13;38401:2;38397:22;38392:3;38384:36;38285:2;38275:13;;37753:682;;;-1:-1:-1;38477:13:0;;;-1:-1:-1;;38592:12:0;;;38652:19;;;38592:12;36730:1959;-1:-1:-1;36730:1959:0:o;23371:2236::-;23517:13;;-1:-1:-1;;;;;23545:16:0;;23541:48;;23570:19;;-1:-1:-1;;;23570:19:0;;;;;;;;;;;23541:48;23604:13;23600:44;;23626:18;;-1:-1:-1;;;23626:18:0;;;;;;;;;;;23600:44;-1:-1:-1;;;;;24193:22:0;;;;;;:18;:22;;;;9577:2;24193:22;;;:70;;24231:31;24219:44;;24193:70;;;24506:31;;;:17;:31;;;;;24599:15;10094:3;24599:41;24557:84;;-1:-1:-1;24677:13:0;;10357:3;24662:56;24557:162;24506:213;;:31;;24800:23;;;;24844:14;:19;24840:635;;24884:313;24915:38;;24940:12;;-1:-1:-1;;;;;24915:38:0;;;24932:1;;24915:38;;24932:1;;24915:38;24981:69;25020:1;25024:2;25028:14;;;;;;25044:5;24981:30;:69::i;:::-;24976:174;;25086:40;;-1:-1:-1;;;25086:40:0;;;;;;;;;;;24976:174;25192:3;25177:12;:18;24884:313;;25278:12;25261:13;;:29;25257:43;;25292:8;;;25257:43;24840:635;;;25341:119;25372:40;;25397:14;;;;;-1:-1:-1;;;;;25372:40:0;;;25389:1;;25372:40;;25389:1;;25372:40;25455:3;25440:12;:18;25341:119;;24840:635;-1:-1:-1;25489:13:0;:28;25539:60;25568:1;25572:2;25576:12;25590:8;25539:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;5176:488::-;-1:-1:-1;;;;;5445:15:1;;;5427:34;;5497:15;;5492:2;5477:18;;5470:43;5544:2;5529:18;;5522:34;;;5592:3;5587:2;5572:18;;5565:31;;;5370:4;;5613:45;;5638:19;;5630:6;5613:45;:::i;:::-;5605:53;5176:488;-1:-1:-1;;;;;;5176:488:1:o;5861:219::-;6010:2;5999:9;5992:21;5973:4;6030:44;6070:2;6059:9;6055:18;6047:6;6030:44;:::i;6842:356::-;7044:2;7026:21;;;7063:18;;;7056:30;7122:34;7117:2;7102:18;;7095:62;7189:2;7174:18;;6842:356::o;9117:128::-;9157:3;9188:1;9184:6;9181:1;9178:13;9175:39;;;9194:18;;:::i;:::-;-1:-1:-1;9230:9:1;;9117:128::o;9250:168::-;9290:7;9356:1;9352;9348:6;9344:14;9341:1;9338:21;9333:1;9326:9;9319:17;9315:45;9312:71;;;9363:18;;:::i;:::-;-1:-1:-1;9403:9:1;;9250:168::o;9423:125::-;9463:4;9491:1;9488;9485:8;9482:34;;;9496:18;;:::i;:::-;-1:-1:-1;9533:9:1;;9423:125::o;9553:258::-;9625:1;9635:113;9649:6;9646:1;9643:13;9635:113;;;9725:11;;;9719:18;9706:11;;;9699:39;9671:2;9664:10;9635:113;;;9766:6;9763:1;9760:13;9757:48;;;-1:-1:-1;;9801:1:1;9783:16;;9776:27;9553:258::o;9816:380::-;9895:1;9891:12;;;;9938;;;9959:61;;10013:4;10005:6;10001:17;9991:27;;9959:61;10066:2;10058:6;10055:14;10035:18;10032:38;10029:161;;;10112:10;10107:3;10103:20;10100:1;10093:31;10147:4;10144:1;10137:15;10175:4;10172:1;10165:15;10029:161;;9816:380;;;:::o;10201:127::-;10262:10;10257:3;10253:20;10250:1;10243:31;10293:4;10290:1;10283:15;10317:4;10314:1;10307:15;10333:127;10394:10;10389:3;10385:20;10382:1;10375:31;10425:4;10422:1;10415:15;10449:4;10446:1;10439:15;10465:131;-1:-1:-1;;;;;;10539:32:1;;10529:43;;10519:71;;10586:1;10583;10576:12

Swarm Source

ipfs://d2343ce437efcca0648cac0dcbae20f4adf8b0448ebf7cd430ceb890172ccc07
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.