ETH Price: $3,406.03 (-1.93%)
Gas: 7 Gwei

Token

Jessie's Nightmare (NIGHTMARE)
 

Overview

Max Total Supply

36 NIGHTMARE

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
caiiiyua.eth
Balance
2 NIGHTMARE
0x84f6f9867ac2c4e8d990825d440cd6da1de3309f
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:
JessiesNightmare

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-03
*/

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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: nft.sol
// SPDX-License-Identifier: MIT


pragma solidity ^0.8.7;



contract JessiesNightmare is Ownable, ERC721A {
    uint256 public maxSupply                    = 4444;
    uint256 public maxFreeSupply                = 4444;
    
    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 100;
    uint256 public maxPerAddressDuringFreeMint  = 2;
    
    uint256 public price                        = 0.002 ether;
    bool    public saleIsActive                 = true;

    address constant internal TEAM_ADDRESS = 0x43Fa96b58aD10F3AC52f94b979CA9d91067968B7;

    string private _baseTokenURI = "ipfs://QmUPGqaHcJLRfN5fx9EBghoV8i6k4xEpz5d2JR2wN3a4yw/hidden.json";

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("Jessie's Nightmare", "NIGHTMARE") {
        _safeMint(msg.sender, 10);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Wrong Caller");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= price * _quantity,
            "GDZ: Insufficient Fund."
        );
        require(
            maxSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

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

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

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

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

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).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":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","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":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

61115c6009819055600a908155600b556064600c556002600d5566071afd498d0000600e55600f805460ff191660011790556101006040526041608081815290620021b160a03980516200005c91601091602090910190620003fc565b503480156200006a57600080fd5b50604051806040016040528060128152602001714a65737369652773204e696768746d61726560701b815250604051806040016040528060098152602001684e494748544d41524560b81b815250620000d2620000cc6200011860201b60201c565b6200011c565b8151620000e7906003906020850190620003fc565b508051620000fd906004906020840190620003fc565b50506000600155506200011233600a6200016c565b6200058d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200018e8282604051806020016040528060008152506200019260201b60201c565b5050565b6001546001600160a01b038416620001bc57604051622e076360e81b815260040160405180910390fd5b82620001db5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15620002a7575b60405182906001600160a01b03881690600090600080516020620021f2833981519152908290a460018201916200026c90600090889087620002fb565b6200028a576040516368d2bf6b60e11b815260040160405180910390fd5b8082106200022f578260015414620002a157600080fd5b620002dc565b5b6040516001830192906001600160a01b03881690600090600080516020620021f2833981519152908290a4808210620002a8575b50600155620002f560008583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000332903390899088908890600401620004d5565b602060405180830381600087803b1580156200034d57600080fd5b505af192505050801562000380575060408051601f3d908101601f191682019092526200037d91810190620004a2565b60015b620003df573d808015620003b1576040519150601f19603f3d011682016040523d82523d6000602084013e620003b6565b606091505b508051620003d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200040a9062000550565b90600052602060002090601f0160209004810192826200042e576000855562000479565b82601f106200044957805160ff191683800117855562000479565b8280016001018555821562000479579182015b82811115620004795782518255916020019190600101906200045c565b50620004879291506200048b565b5090565b5b808211156200048757600081556001016200048c565b600060208284031215620004b557600080fd5b81516001600160e01b031981168114620004ce57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005245785810182015185820160a00152810162000506565b828111156200053757600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c908216806200056557607f821691505b602082108114156200058757634e487b7160e01b600052602260045260246000fd5b50919050565b611c14806200059d6000396000f3fe60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb01146105bb578063e985e9c5146105d1578063eb8d24441461061a578063f2fde38b14610634578063fbbf8cc31461065457600080fd5b8063bbb6431914610545578063c6f6f21614610565578063c87b56dd14610585578063d3464cbd146105a557600080fd5b806396b10201116100e757806396b10201146104af578063a035b1fe146104dc578063a0712d68146104f2578063a22cb46514610505578063b88d4fde1461052557600080fd5b80638bc35c2f146104465780638da5cb5b1461045c57806391b7f5ed1461047a57806395d89b411461049a57600080fd5b8063475133341161019b57806370a082311161016a57806370a08231146103bc578063715018a6146103dc5780637ba5e621146103f15780637bddd65b146104065780637c928fe91461042657600080fd5b8063475133341461035e57806355f804b3146103745780635fd8c710146103945780636352211e1461039c57600080fd5b80631141df20116101e25780631141df20146102c557806318160ddd146102e557806323b872dd146103085780632e0fd6eb1461032857806342842e0e1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611955565b610681565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d3565b6040516102409190611a9f565b34801561027757600080fd5b5061028b610286366004611a01565b610765565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461192b565b6107a9565b005b3480156102d157600080fd5b506102c36102e0366004611a01565b61087c565b3480156102f157600080fd5b50600254600154035b604051908152602001610240565b34801561031457600080fd5b506102c36103233660046117d7565b61093c565b34801561033457600080fd5b506102fa600d5481565b34801561034a57600080fd5b506102c36103593660046117d7565b61094c565b34801561036a57600080fd5b506102fa600a5481565b34801561038057600080fd5b506102c361038f36600461198f565b610967565b6102c361099d565b3480156103a857600080fd5b5061028b6103b7366004611a01565b610a69565b3480156103c857600080fd5b506102fa6103d7366004611789565b610a74565b3480156103e857600080fd5b506102c3610ac3565b3480156103fd57600080fd5b506102c3610af9565b34801561041257600080fd5b506102c3610421366004611a01565b610b37565b34801561043257600080fd5b506102c3610441366004611a01565b610b66565b34801561045257600080fd5b506102fa600c5481565b34801561046857600080fd5b506000546001600160a01b031661028b565b34801561048657600080fd5b506102c3610495366004611a01565b610cfb565b3480156104a657600080fd5b5061025e610d2a565b3480156104bb57600080fd5b506102fa6104ca366004611789565b60116020526000908152604090205481565b3480156104e857600080fd5b506102fa600e5481565b6102c3610500366004611a01565b610d39565b34801561051157600080fd5b506102c36105203660046118ef565b610f77565b34801561053157600080fd5b506102c3610540366004611813565b61100d565b34801561055157600080fd5b506102c3610560366004611a01565b611057565b34801561057157600080fd5b506102c3610580366004611a01565b611086565b34801561059157600080fd5b5061025e6105a0366004611a01565b6110b5565b3480156105b157600080fd5b506102fa600b5481565b3480156105c757600080fd5b506102fa60095481565b3480156105dd57600080fd5b506102346105ec3660046117a4565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062657600080fd5b50600f546102349060ff1681565b34801561064057600080fd5b506102c361064f366004611789565b611130565b34801561066057600080fd5b506102fa61066f366004611789565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106b257506380ac58cd60e01b6001600160e01b03198316145b806106cd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106e290611b61565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90611b61565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000610770826111c8565b61078d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107b4826111f0565b9050806001600160a01b0316836001600160a01b031614156107e95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108205761080381336105ec565b610820576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a690611ab2565b60405180910390fd5b60025460015403816009546108c49190611b1e565b10156109225760405162461bcd60e51b815260206004820152602760248201527f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e746564206044820152663a37b5b2b7399760c91b60648201526084016108a6565b80600960008282546109349190611b1e565b909155505050565b610947838383611251565b505050565b6109478383836040518060200160405280600081525061100d565b6000546001600160a01b031633146109915760405162461bcd60e51b81526004016108a690611ab2565b610947601083836116d4565b6000546001600160a01b031633146109c75760405162461bcd60e51b81526004016108a690611ab2565b6040516000907343fa96b58ad10f3ac52f94b979ca9d91067968b79047908381818185875af1925050503d8060008114610a1d576040519150601f19603f3d011682016040523d82523d6000602084013e610a22565b606091505b5050905080610a665760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064016108a6565b50565b60006106cd826111f0565b60006001600160a01b038216610a9d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610aed5760405162461bcd60e51b81526004016108a690611ab2565b610af760006113f4565b565b6000546001600160a01b03163314610b235760405162461bcd60e51b81526004016108a690611ab2565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610b615760405162461bcd60e51b81526004016108a690611ab2565b600c55565b600f5460ff16610bb25760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108a6565b323314610bf05760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108a6565b80610bfe6002546001540390565b610c089190611ae7565b600a541015610c545760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108a6565b33600090815260116020526040902054600d54610c718383611ae7565b1115610cd05760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b60648201526084016108a6565b610cda8282611ae7565b33600081815260116020526040902091909155610cf79083611444565b5050565b6000546001600160a01b03163314610d255760405162461bcd60e51b81526004016108a690611ab2565b600e55565b6060600480546106e290611b61565b600f5460ff16610d855760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108a6565b323314610dc35760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108a6565b80600e54610dd19190611aff565b341015610e205760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e00000000000000000060448201526064016108a6565b80610e2e6002546001540390565b610e389190611ae7565b6009541015610e845760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108a6565b33600090815260126020526040902054600c54610ea18383611ae7565b1115610efb5760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b60648201526084016108a6565b600082118015610f0d5750600b548211155b610f505760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016108a6565b610f5a8282611ae7565b33600081815260126020526040902091909155610cf79083611444565b6001600160a01b038216331415610fa15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611018848484611251565b6001600160a01b0383163b15611051576110348484848461145e565b611051576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110815760405162461bcd60e51b81526004016108a690611ab2565b600d55565b6000546001600160a01b031633146110b05760405162461bcd60e51b81526004016108a690611ab2565b600b55565b60606110c0826111c8565b6110dd57604051630a14c4b560e41b815260040160405180910390fd5b60006110e7611555565b90508051600014156111085760405180602001604052806000815250611129565b806040516020016111199190611a46565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461115a5760405162461bcd60e51b81526004016108a690611ab2565b6001600160a01b0381166111bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b610a66816113f4565b6000600154821080156106cd575050600090815260056020526040902054600160e01b161590565b60008160015481101561123857600081815260056020526040902054600160e01b8116611236575b80611129575060001901600081815260056020526040902054611218565b505b604051636f96cda160e11b815260040160405180910390fd5b600061125c826111f0565b9050836001600160a01b0316816001600160a01b03161461128f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112ad57506112ad85336105ec565b806112c85750336112bd84610765565b6001600160a01b0316145b9050806112e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661130f57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b8617811790915582166113ac57600183016000818152600560205260409020546113aa5760015481146113aa5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cf7828260405180602001604052806000815250611564565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611493903390899088908890600401611a62565b602060405180830381600087803b1580156114ad57600080fd5b505af19250505080156114dd575060408051601f3d908101601f191682019092526114da91810190611972565b60015b611538573d80801561150b576040519150601f19603f3d011682016040523d82523d6000602084013e611510565b606091505b508051611530576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546106e290611b61565b6001546001600160a01b03841661158d57604051622e076360e81b815260040160405180910390fd5b826115ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611680575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611649600087848060010195508761145e565b611666576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115fe57826001541461167b57600080fd5b6116c5565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611681575b50600155611051600085838684565b8280546116e090611b61565b90600052602060002090601f0160209004810192826117025760008555611748565b82601f1061171b5782800160ff19823516178555611748565b82800160010185558215611748579182015b8281111561174857823582559160200191906001019061172d565b50611754929150611758565b5090565b5b808211156117545760008155600101611759565b80356001600160a01b038116811461178457600080fd5b919050565b60006020828403121561179b57600080fd5b6111298261176d565b600080604083850312156117b757600080fd5b6117c08361176d565b91506117ce6020840161176d565b90509250929050565b6000806000606084860312156117ec57600080fd5b6117f58461176d565b92506118036020850161176d565b9150604084013590509250925092565b6000806000806080858703121561182957600080fd5b6118328561176d565b93506118406020860161176d565b925060408501359150606085013567ffffffffffffffff8082111561186457600080fd5b818701915087601f83011261187857600080fd5b81358181111561188a5761188a611bb2565b604051601f8201601f19908116603f011681019083821181831017156118b2576118b2611bb2565b816040528281528a60208487010111156118cb57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561190257600080fd5b61190b8361176d565b91506020830135801515811461192057600080fd5b809150509250929050565b6000806040838503121561193e57600080fd5b6119478361176d565b946020939093013593505050565b60006020828403121561196757600080fd5b813561112981611bc8565b60006020828403121561198457600080fd5b815161112981611bc8565b600080602083850312156119a257600080fd5b823567ffffffffffffffff808211156119ba57600080fd5b818501915085601f8301126119ce57600080fd5b8135818111156119dd57600080fd5b8660208285010111156119ef57600080fd5b60209290920196919550909350505050565b600060208284031215611a1357600080fd5b5035919050565b60008151808452611a32816020860160208601611b35565b601f01601f19169290920160200192915050565b60008251611a58818460208701611b35565b9190910192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a9590830184611a1a565b9695505050505050565b6020815260006111296020830184611a1a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611afa57611afa611b9c565b500190565b6000816000190483118215151615611b1957611b19611b9c565b500290565b600082821015611b3057611b30611b9c565b500390565b60005b83811015611b50578181015183820152602001611b38565b838111156110515750506000910152565b600181811c90821680611b7557607f821691505b60208210811415611b9657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6657600080fdfea2646970667358221220475204649c4e54442ba85c987118f5d0573e49a498e96ecd34850dc3d7556abe64736f6c63430008070033697066733a2f2f516d555047716148634a4c52664e35667839454267686f563869366b347845707a3564324a5232774e33613479772f68696464656e2e6a736f6eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb01146105bb578063e985e9c5146105d1578063eb8d24441461061a578063f2fde38b14610634578063fbbf8cc31461065457600080fd5b8063bbb6431914610545578063c6f6f21614610565578063c87b56dd14610585578063d3464cbd146105a557600080fd5b806396b10201116100e757806396b10201146104af578063a035b1fe146104dc578063a0712d68146104f2578063a22cb46514610505578063b88d4fde1461052557600080fd5b80638bc35c2f146104465780638da5cb5b1461045c57806391b7f5ed1461047a57806395d89b411461049a57600080fd5b8063475133341161019b57806370a082311161016a57806370a08231146103bc578063715018a6146103dc5780637ba5e621146103f15780637bddd65b146104065780637c928fe91461042657600080fd5b8063475133341461035e57806355f804b3146103745780635fd8c710146103945780636352211e1461039c57600080fd5b80631141df20116101e25780631141df20146102c557806318160ddd146102e557806323b872dd146103085780632e0fd6eb1461032857806342842e0e1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611955565b610681565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d3565b6040516102409190611a9f565b34801561027757600080fd5b5061028b610286366004611a01565b610765565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461192b565b6107a9565b005b3480156102d157600080fd5b506102c36102e0366004611a01565b61087c565b3480156102f157600080fd5b50600254600154035b604051908152602001610240565b34801561031457600080fd5b506102c36103233660046117d7565b61093c565b34801561033457600080fd5b506102fa600d5481565b34801561034a57600080fd5b506102c36103593660046117d7565b61094c565b34801561036a57600080fd5b506102fa600a5481565b34801561038057600080fd5b506102c361038f36600461198f565b610967565b6102c361099d565b3480156103a857600080fd5b5061028b6103b7366004611a01565b610a69565b3480156103c857600080fd5b506102fa6103d7366004611789565b610a74565b3480156103e857600080fd5b506102c3610ac3565b3480156103fd57600080fd5b506102c3610af9565b34801561041257600080fd5b506102c3610421366004611a01565b610b37565b34801561043257600080fd5b506102c3610441366004611a01565b610b66565b34801561045257600080fd5b506102fa600c5481565b34801561046857600080fd5b506000546001600160a01b031661028b565b34801561048657600080fd5b506102c3610495366004611a01565b610cfb565b3480156104a657600080fd5b5061025e610d2a565b3480156104bb57600080fd5b506102fa6104ca366004611789565b60116020526000908152604090205481565b3480156104e857600080fd5b506102fa600e5481565b6102c3610500366004611a01565b610d39565b34801561051157600080fd5b506102c36105203660046118ef565b610f77565b34801561053157600080fd5b506102c3610540366004611813565b61100d565b34801561055157600080fd5b506102c3610560366004611a01565b611057565b34801561057157600080fd5b506102c3610580366004611a01565b611086565b34801561059157600080fd5b5061025e6105a0366004611a01565b6110b5565b3480156105b157600080fd5b506102fa600b5481565b3480156105c757600080fd5b506102fa60095481565b3480156105dd57600080fd5b506102346105ec3660046117a4565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062657600080fd5b50600f546102349060ff1681565b34801561064057600080fd5b506102c361064f366004611789565b611130565b34801561066057600080fd5b506102fa61066f366004611789565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106b257506380ac58cd60e01b6001600160e01b03198316145b806106cd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106e290611b61565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90611b61565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000610770826111c8565b61078d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107b4826111f0565b9050806001600160a01b0316836001600160a01b031614156107e95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108205761080381336105ec565b610820576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a690611ab2565b60405180910390fd5b60025460015403816009546108c49190611b1e565b10156109225760405162461bcd60e51b815260206004820152602760248201527f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e746564206044820152663a37b5b2b7399760c91b60648201526084016108a6565b80600960008282546109349190611b1e565b909155505050565b610947838383611251565b505050565b6109478383836040518060200160405280600081525061100d565b6000546001600160a01b031633146109915760405162461bcd60e51b81526004016108a690611ab2565b610947601083836116d4565b6000546001600160a01b031633146109c75760405162461bcd60e51b81526004016108a690611ab2565b6040516000907343fa96b58ad10f3ac52f94b979ca9d91067968b79047908381818185875af1925050503d8060008114610a1d576040519150601f19603f3d011682016040523d82523d6000602084013e610a22565b606091505b5050905080610a665760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064016108a6565b50565b60006106cd826111f0565b60006001600160a01b038216610a9d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610aed5760405162461bcd60e51b81526004016108a690611ab2565b610af760006113f4565b565b6000546001600160a01b03163314610b235760405162461bcd60e51b81526004016108a690611ab2565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610b615760405162461bcd60e51b81526004016108a690611ab2565b600c55565b600f5460ff16610bb25760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108a6565b323314610bf05760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108a6565b80610bfe6002546001540390565b610c089190611ae7565b600a541015610c545760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108a6565b33600090815260116020526040902054600d54610c718383611ae7565b1115610cd05760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b60648201526084016108a6565b610cda8282611ae7565b33600081815260116020526040902091909155610cf79083611444565b5050565b6000546001600160a01b03163314610d255760405162461bcd60e51b81526004016108a690611ab2565b600e55565b6060600480546106e290611b61565b600f5460ff16610d855760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b60448201526064016108a6565b323314610dc35760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016108a6565b80600e54610dd19190611aff565b341015610e205760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e00000000000000000060448201526064016108a6565b80610e2e6002546001540390565b610e389190611ae7565b6009541015610e845760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b60448201526064016108a6565b33600090815260126020526040902054600c54610ea18383611ae7565b1115610efb5760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b60648201526084016108a6565b600082118015610f0d5750600b548211155b610f505760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016108a6565b610f5a8282611ae7565b33600081815260126020526040902091909155610cf79083611444565b6001600160a01b038216331415610fa15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611018848484611251565b6001600160a01b0383163b15611051576110348484848461145e565b611051576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110815760405162461bcd60e51b81526004016108a690611ab2565b600d55565b6000546001600160a01b031633146110b05760405162461bcd60e51b81526004016108a690611ab2565b600b55565b60606110c0826111c8565b6110dd57604051630a14c4b560e41b815260040160405180910390fd5b60006110e7611555565b90508051600014156111085760405180602001604052806000815250611129565b806040516020016111199190611a46565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461115a5760405162461bcd60e51b81526004016108a690611ab2565b6001600160a01b0381166111bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b610a66816113f4565b6000600154821080156106cd575050600090815260056020526040902054600160e01b161590565b60008160015481101561123857600081815260056020526040902054600160e01b8116611236575b80611129575060001901600081815260056020526040902054611218565b505b604051636f96cda160e11b815260040160405180910390fd5b600061125c826111f0565b9050836001600160a01b0316816001600160a01b03161461128f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112ad57506112ad85336105ec565b806112c85750336112bd84610765565b6001600160a01b0316145b9050806112e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661130f57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b8617811790915582166113ac57600183016000818152600560205260409020546113aa5760015481146113aa5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cf7828260405180602001604052806000815250611564565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611493903390899088908890600401611a62565b602060405180830381600087803b1580156114ad57600080fd5b505af19250505080156114dd575060408051601f3d908101601f191682019092526114da91810190611972565b60015b611538573d80801561150b576040519150601f19603f3d011682016040523d82523d6000602084013e611510565b606091505b508051611530576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546106e290611b61565b6001546001600160a01b03841661158d57604051622e076360e81b815260040160405180910390fd5b826115ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611680575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611649600087848060010195508761145e565b611666576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115fe57826001541461167b57600080fd5b6116c5565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611681575b50600155611051600085838684565b8280546116e090611b61565b90600052602060002090601f0160209004810192826117025760008555611748565b82601f1061171b5782800160ff19823516178555611748565b82800160010185558215611748579182015b8281111561174857823582559160200191906001019061172d565b50611754929150611758565b5090565b5b808211156117545760008155600101611759565b80356001600160a01b038116811461178457600080fd5b919050565b60006020828403121561179b57600080fd5b6111298261176d565b600080604083850312156117b757600080fd5b6117c08361176d565b91506117ce6020840161176d565b90509250929050565b6000806000606084860312156117ec57600080fd5b6117f58461176d565b92506118036020850161176d565b9150604084013590509250925092565b6000806000806080858703121561182957600080fd5b6118328561176d565b93506118406020860161176d565b925060408501359150606085013567ffffffffffffffff8082111561186457600080fd5b818701915087601f83011261187857600080fd5b81358181111561188a5761188a611bb2565b604051601f8201601f19908116603f011681019083821181831017156118b2576118b2611bb2565b816040528281528a60208487010111156118cb57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561190257600080fd5b61190b8361176d565b91506020830135801515811461192057600080fd5b809150509250929050565b6000806040838503121561193e57600080fd5b6119478361176d565b946020939093013593505050565b60006020828403121561196757600080fd5b813561112981611bc8565b60006020828403121561198457600080fd5b815161112981611bc8565b600080602083850312156119a257600080fd5b823567ffffffffffffffff808211156119ba57600080fd5b818501915085601f8301126119ce57600080fd5b8135818111156119dd57600080fd5b8660208285010111156119ef57600080fd5b60209290920196919550909350505050565b600060208284031215611a1357600080fd5b5035919050565b60008151808452611a32816020860160208601611b35565b601f01601f19169290920160200192915050565b60008251611a58818460208701611b35565b9190910192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a9590830184611a1a565b9695505050505050565b6020815260006111296020830184611a1a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611afa57611afa611b9c565b500190565b6000816000190483118215151615611b1957611b19611b9c565b500290565b600082821015611b3057611b30611b9c565b500390565b60005b83811015611b50578181015183820152602001611b38565b838111156110515750506000910152565b600181811c90821680611b7557607f821691505b60208210811415611b9657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6657600080fdfea2646970667358221220475204649c4e54442ba85c987118f5d0573e49a498e96ecd34850dc3d7556abe64736f6c63430008070033

Deployed Bytecode Sourcemap

41907:3625:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16567:615;;;;;;;;;;-1:-1:-1;16567:615:0;;;;;:::i;:::-;;:::i;:::-;;;5640:14:1;;5633:22;5615:41;;5603:2;5588:18;16567:615:0;;;;;;;;21580:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23628:204::-;;;;;;;;;;-1:-1:-1;23628:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4938:32:1;;;4920:51;;4908:2;4893:18;23628:204:0;4774:203:1;23088:474:0;;;;;;;;;;-1:-1:-1;23088:474:0;;;;;:::i;:::-;;:::i;:::-;;44828:232;;;;;;;;;;-1:-1:-1;44828:232:0;;;;;:::i;:::-;;:::i;15621:315::-;;;;;;;;;;-1:-1:-1;15887:12:0;;15871:13;;:28;15621:315;;;10118:25:1;;;10106:2;10091:18;15621:315:0;9972:177:1;24514:170:0;;;;;;;;;;-1:-1:-1;24514:170:0;;;;;:::i;:::-;;:::i;42191:47::-;;;;;;;;;;;;;;;;24755:185;;;;;;;;;;-1:-1:-1;24755:185:0;;;;;:::i;:::-;;:::i;42017:50::-;;;;;;;;;;;;;;;;45068:106;;;;;;;;;;-1:-1:-1;45068:106:0;;;;;:::i;:::-;;:::i;45304:225::-;;;:::i;21369:144::-;;;;;;;;;;-1:-1:-1;21369:144:0;;;;;:::i;:::-;;:::i;17246:224::-;;;;;;;;;;-1:-1:-1;17246:224:0;;;;;:::i;:::-;;:::i;2677:103::-;;;;;;;;;;;;;:::i;44736:84::-;;;;;;;;;;;;;:::i;44484:114::-;;;;;;;;;;-1:-1:-1;44484:114:0;;;;;:::i;:::-;;:::i;43730:540::-;;;;;;;;;;-1:-1:-1;43730:540:0;;;;;:::i;:::-;;:::i;42135:49::-;;;;;;;;;;;;;;;;2026:87;;;;;;;;;;-1:-1:-1;2072:7:0;2099:6;-1:-1:-1;;;;;2099:6:0;2026:87;;44278:86;;;;;;;;;;-1:-1:-1;44278:86:0;;;;;:::i;:::-;;:::i;21749:104::-;;;;;;;;;;;;;:::i;42573:51::-;;;;;;;;;;-1:-1:-1;42573:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;42251:57;;;;;;;;;;;;;;;;42968:754;;;;;;:::i;:::-;;:::i;23904:308::-;;;;;;;;;;-1:-1:-1;23904:308:0;;;;;:::i;:::-;;:::i;25011:396::-;;;;;;;;;;-1:-1:-1;25011:396:0;;;;;:::i;:::-;;:::i;44606:122::-;;;;;;;;;;-1:-1:-1;44606:122:0;;;;;:::i;:::-;;:::i;44372:104::-;;;;;;;;;;-1:-1:-1;44372:104:0;;;;;:::i;:::-;;:::i;21924:298::-;;;;;;;;;;-1:-1:-1;21924:298:0;;;;;:::i;:::-;;:::i;42080:48::-;;;;;;;;;;;;;;;;41960:50;;;;;;;;;;;;;;;;24283:164;;;;;;;;;;-1:-1:-1;24283:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24404:25:0;;;24380:4;24404:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24283:164;42315:50;;;;;;;;;;-1:-1:-1;42315:50:0;;;;;;;;2935:201;;;;;;;;;;-1:-1:-1;2935:201:0;;;;;:::i;:::-;;:::i;42631:47::-;;;;;;;;;;-1:-1:-1;42631:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;16567:615;16652:4;-1:-1:-1;;;;;;;;;16952:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17029:25:0;;;16952:102;:179;;;-1:-1:-1;;;;;;;;;;17106:25:0;;;16952:179;16932:199;16567:615;-1:-1:-1;;16567:615:0:o;21580:100::-;21634:13;21667:5;21660:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21580:100;:::o;23628:204::-;23696:7;23721:16;23729:7;23721;:16::i;:::-;23716:64;;23746:34;;-1:-1:-1;;;23746:34:0;;;;;;;;;;;23716:64;-1:-1:-1;23800:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23800:24:0;;23628:204::o;23088:474::-;23161:13;23193:27;23212:7;23193:18;:27::i;:::-;23161:61;;23243:5;-1:-1:-1;;;;;23237:11:0;:2;-1:-1:-1;;;;;23237:11:0;;23233:48;;;23257:24;;-1:-1:-1;;;23257:24:0;;;;;;;;;;;23233:48;39731:10;-1:-1:-1;;;;;23298:28:0;;;23294:175;;23346:44;23363:5;39731:10;24283:164;:::i;23346:44::-;23341:128;;23418:35;;-1:-1:-1;;;23418:35:0;;;;;;;;;;;23341:128;23481:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23481:29:0;-1:-1:-1;;;;;23481:29:0;;;;;;;;;23526:28;;23481:24;;23526:28;;;;;;;23150:412;23088:474;;:::o;44828:232::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;;;;;;;;;15887:12;;15871:13;;:28;44929:7:::1;44917:9;;:19;;;;:::i;:::-;:36;;44895:126;;;::::0;-1:-1:-1;;;44895:126:0;;8018:2:1;44895:126:0::1;::::0;::::1;8000:21:1::0;8057:2;8037:18;;;8030:30;8096:34;8076:18;;;8069:62;-1:-1:-1;;;8147:18:1;;;8140:37;8194:19;;44895:126:0::1;7816:403:1::0;44895:126:0::1;45045:7;45032:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;44828:232:0:o;24514:170::-;24648:28;24658:4;24664:2;24668:7;24648:9;:28::i;:::-;24514:170;;;:::o;24755:185::-;24893:39;24910:4;24916:2;24920:7;24893:39;;;;;;;;;;;;:16;:39::i;45068:106::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;45143:23:::1;:13;45159:7:::0;;45143:23:::1;:::i;45304:225::-:0;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;45390:84:::1;::::0;45372:12:::1;::::0;42415:42:::1;::::0;45438:21:::1;::::0;45372:12;45390:84;45372:12;45390:84;45438:21;42415:42;45390:84:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45371:103;;;45493:7;45485:36;;;::::0;-1:-1:-1;;;45485:36:0;;8426:2:1;45485:36:0::1;::::0;::::1;8408:21:1::0;8465:2;8445:18;;;8438:30;-1:-1:-1;;;8484:18:1;;;8477:46;8540:18;;45485:36:0::1;8224:340:1::0;45485:36:0::1;45358:171;45304:225::o:0;21369:144::-;21433:7;21476:27;21495:7;21476:18;:27::i;17246:224::-;17310:7;-1:-1:-1;;;;;17334:19:0;;17330:60;;17362:28;;-1:-1:-1;;;17362:28:0;;;;;;;;;;;17330:60;-1:-1:-1;;;;;;17408:25:0;;;;;:18;:25;;;;;;12585:13;17408:54;;17246:224::o;2677:103::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;2742:30:::1;2769:1;2742:18;:30::i;:::-;2677:103::o:0;44736:84::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;44800:12:::1;::::0;;-1:-1:-1;;44784:28:0;::::1;44800:12;::::0;;::::1;44799:13;44784:28;::::0;;44736:84::o;44484:114::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;44557:23:::1;:33:::0;44484:114::o;43730:540::-;42841:12;;;;42833:48;;;;-1:-1:-1;;;42833:48:0;;6909:2:1;42833:48:0;;;6891:21:1;6948:2;6928:18;;;6921:30;-1:-1:-1;;;6967:18:1;;;6960:53;7030:18;;42833:48:0;6707:347:1;42833:48:0;42900:9;42913:10;42900:23;42892:48;;;;-1:-1:-1;;;42892:48:0;;9833:2:1;42892:48:0;;;9815:21:1;9872:2;9852:18;;;9845:30;-1:-1:-1;;;9891:18:1;;;9884:42;9943:18;;42892:48:0;9631:336:1;42892:48:0;43859:9:::1;43843:13;15887:12:::0;;15871:13;;:28;;15621:315;43843:13:::1;:25;;;;:::i;:::-;43826:13;;:42;;43804:116;;;::::0;-1:-1:-1;;;43804:116:0;;7261:2:1;43804:116:0::1;::::0;::::1;7243:21:1::0;7300:2;7280:18;;;7273:30;-1:-1:-1;;;7319:18:1;;;7312:54;7383:18;;43804:116:0::1;7059:348:1::0;43804:116:0::1;43976:10;43931:25;43959:28:::0;;;:16:::1;:28;::::0;;;;;44053:27:::1;::::0;44020:29:::1;44040:9:::0;43959:28;44020:29:::1;:::i;:::-;:60;;43998:150;;;::::0;-1:-1:-1;;;43998:150:0;;6500:2:1;43998:150:0::1;::::0;::::1;6482:21:1::0;6539:2;6519:18;;;6512:30;6578:34;6558:18;;;6551:62;-1:-1:-1;;;6629:18:1;;;6622:38;6677:19;;43998:150:0::1;6298:404:1::0;43998:150:0::1;44190:29;44210:9:::0;44190:17;:29:::1;:::i;:::-;44176:10;44159:28;::::0;;;:16:::1;:28;::::0;;;;:60;;;;44230:32:::1;::::0;44252:9;44230::::1;:32::i;:::-;43793:477;43730:540:::0;:::o;44278:86::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;44342:5:::1;:14:::0;44278:86::o;21749:104::-;21805:13;21838:7;21831:14;;;;;:::i;42968:754::-;42841:12;;;;42833:48;;;;-1:-1:-1;;;42833:48:0;;6909:2:1;42833:48:0;;;6891:21:1;6948:2;6928:18;;;6921:30;-1:-1:-1;;;6967:18:1;;;6960:53;7030:18;;42833:48:0;6707:347:1;42833:48:0;42900:9;42913:10;42900:23;42892:48;;;;-1:-1:-1;;;42892:48:0;;9833:2:1;42892:48:0;;;9815:21:1;9872:2;9852:18;;;9845:30;-1:-1:-1;;;9891:18:1;;;9884:42;9943:18;;42892:48:0;9631:336:1;42892:48:0;43089:9:::1;43081:5;;:17;;;;:::i;:::-;43068:9;:30;;43046:103;;;::::0;-1:-1:-1;;;43046:103:0;;9120:2:1;43046:103:0::1;::::0;::::1;9102:21:1::0;9159:2;9139:18;;;9132:30;9198:25;9178:18;;;9171:53;9241:18;;43046:103:0::1;8918:347:1::0;43046:103:0::1;43211:9;43195:13;15887:12:::0;;15871:13;;:28;;15621:315;43195:13:::1;:25;;;;:::i;:::-;43182:9;;:38;;43160:112;;;::::0;-1:-1:-1;;;43160:112:0;;7261:2:1;43160:112:0::1;::::0;::::1;7243:21:1::0;7300:2;7280:18;;;7273:30;-1:-1:-1;;;7319:18:1;;;7312:54;7383:18;;43160:112:0::1;7059:348:1::0;43160:112:0::1;43320:10;43283:21;43307:24:::0;;;:12:::1;:24;::::0;;;;;43393:23:::1;::::0;43364:25:::1;43380:9:::0;43307:24;43364:25:::1;:::i;:::-;:52;;43342:137;;;::::0;-1:-1:-1;;;43342:137:0;;7614:2:1;43342:137:0::1;::::0;::::1;7596:21:1::0;7653:2;7633:18;;;7626:30;7692:34;7672:18;;;7665:62;-1:-1:-1;;;7743:18:1;;;7736:33;7786:19;;43342:137:0::1;7412:399:1::0;43342:137:0::1;43524:1;43512:9;:13;:48;;;;;43542:18;;43529:9;:31;;43512:48;43490:118;;;::::0;-1:-1:-1;;;43490:118:0;;8771:2:1;43490:118:0::1;::::0;::::1;8753:21:1::0;8810:2;8790:18;;;8783:30;-1:-1:-1;;;8829:18:1;;;8822:50;8889:18;;43490:118:0::1;8569:344:1::0;43490:118:0::1;43646:25;43662:9:::0;43646:13;:25:::1;:::i;:::-;43632:10;43619:24;::::0;;;:12:::1;:24;::::0;;;;:52;;;;43682:32:::1;::::0;43704:9;43682::::1;:32::i;23904:308::-:0;-1:-1:-1;;;;;24003:31:0;;39731:10;24003:31;23999:61;;;24043:17;;-1:-1:-1;;;24043:17:0;;;;;;;;;;;23999:61;39731:10;24073:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24073:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24073:60:0;;;;;;;;;;24149:55;;5615:41:1;;;24073:49:0;;39731:10;24149:55;;5588:18:1;24149:55:0;;;;;;;23904:308;;:::o;25011:396::-;25178:28;25188:4;25194:2;25198:7;25178:9;:28::i;:::-;-1:-1:-1;;;;;25221:14:0;;;:19;25217:183;;25260:56;25291:4;25297:2;25301:7;25310:5;25260:30;:56::i;:::-;25255:145;;25344:40;;-1:-1:-1;;;25344:40:0;;;;;;;;;;;25255:145;25011:396;;;;:::o;44606:122::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;44683:27:::1;:37:::0;44606:122::o;44372:104::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;44440:18:::1;:28:::0;44372:104::o;21924:298::-;21997:13;22028:16;22036:7;22028;:16::i;:::-;22023:59;;22053:29;;-1:-1:-1;;;22053:29:0;;;;;;;;;;;22023:59;22095:21;22119:10;:8;:10::i;:::-;22095:34;;22153:7;22147:21;22172:1;22147:26;;:67;;;;;;;;;;;;;;;;;22200:7;22183:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;22147:67;22140:74;21924:298;-1:-1:-1;;;21924:298:0:o;2935:201::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;39731:10;2246:23;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:22:0;::::1;3016:73;;;::::0;-1:-1:-1;;;3016:73:0;;6093:2:1;3016:73:0::1;::::0;::::1;6075:21:1::0;6132:2;6112:18;;;6105:30;6171:34;6151:18;;;6144:62;-1:-1:-1;;;6222:18:1;;;6215:36;6268:19;;3016:73:0::1;5891:402:1::0;3016:73:0::1;3100:28;3119:8;3100:18;:28::i;25662:273::-:0;25719:4;25809:13;;25799:7;:23;25756:152;;;;-1:-1:-1;;25860:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25860:43:0;:48;;25662:273::o;18884:1129::-;18951:7;18986;19088:13;;19081:4;:20;19077:869;;;19126:14;19143:23;;;:17;:23;;;;;;-1:-1:-1;;;19232:23:0;;19228:699;;19751:113;19758:11;19751:113;;-1:-1:-1;;;19829:6:0;19811:25;;;;:17;:25;;;;;;19751:113;;19228:699;19103:843;19077:869;19974:31;;-1:-1:-1;;;19974:31:0;;;;;;;;;;;30901:2515;31016:27;31046;31065:7;31046:18;:27::i;:::-;31016:57;;31131:4;-1:-1:-1;;;;;31090:45:0;31106:19;-1:-1:-1;;;;;31090:45:0;;31086:86;;31144:28;;-1:-1:-1;;;31144:28:0;;;;;;;;;;;31086:86;31185:22;39731:10;-1:-1:-1;;;;;31211:27:0;;;;:87;;-1:-1:-1;31255:43:0;31272:4;39731:10;24283:164;:::i;31255:43::-;31211:147;;;-1:-1:-1;39731:10:0;31315:20;31327:7;31315:11;:20::i;:::-;-1:-1:-1;;;;;31315:43:0;;31211:147;31185:174;;31377:17;31372:66;;31403:35;;-1:-1:-1;;;31403:35:0;;;;;;;;;;;31372:66;-1:-1:-1;;;;;31453:16:0;;31449:52;;31478:23;;-1:-1:-1;;;31478:23:0;;;;;;;;;;;31449:52;31630:24;;;;:15;:24;;;;;;;;31623:31;;-1:-1:-1;;;;;;31623:31:0;;;-1:-1:-1;;;;;32022:24:0;;;;;:18;:24;;;;;32020:26;;-1:-1:-1;;32020:26:0;;;32091:22;;;;;;;32089:24;;-1:-1:-1;32089:24:0;;;32384:26;;;:17;:26;;;;;-1:-1:-1;;;32472:15:0;13239:3;32472:41;32430:84;;:128;;32384:174;;;32678:46;;32674:626;;32782:1;32772:11;;32750:19;32905:30;;;:17;:30;;;;;;32901:384;;33043:13;;33028:11;:28;33024:242;;33190:30;;;;:17;:30;;;;;:52;;;33024:242;32731:569;32674:626;33347:7;33343:2;-1:-1:-1;;;;;33328:27:0;33337:4;-1:-1:-1;;;;;33328:27:0;;;;;;;;;;;31005:2411;;30901:2515;;;:::o;3296:191::-;3370:16;3389:6;;-1:-1:-1;;;;;3406:17:0;;;-1:-1:-1;;;;;;3406:17:0;;;;;;3439:40;;3389:6;;;;;;;3439:40;;3370:16;3439:40;3359:128;3296:191;:::o;26019:104::-;26088:27;26098:2;26102:8;26088:27;;;;;;;;;;;;:9;:27::i;37113:716::-;37297:88;;-1:-1:-1;;;37297:88:0;;37276:4;;-1:-1:-1;;;;;37297:45:0;;;;;:88;;39731:10;;37364:4;;37370:7;;37379:5;;37297:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37297:88:0;;;;;;;;-1:-1:-1;;37297:88:0;;;;;;;;;;;;:::i;:::-;;;37293:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37580:13:0;;37576:235;;37626:40;;-1:-1:-1;;;37626:40:0;;;;;;;;;;;37576:235;37769:6;37763:13;37754:6;37750:2;37746:15;37739:38;37293:529;-1:-1:-1;;;;;;37456:64:0;-1:-1:-1;;;37456:64:0;;-1:-1:-1;37113:716:0;;;;;;:::o;45182:114::-;45242:13;45275;45268:20;;;;;:::i;26496:2236::-;26642:13;;-1:-1:-1;;;;;26670:16:0;;26666:48;;26695:19;;-1:-1:-1;;;26695:19:0;;;;;;;;;;;26666:48;26729:13;26725:44;;26751:18;;-1:-1:-1;;;26751:18:0;;;;;;;;;;;26725:44;-1:-1:-1;;;;;27318:22:0;;;;;;:18;:22;;;;12722:2;27318:22;;;:70;;27356:31;27344:44;;27318:70;;;27631:31;;;:17;:31;;;;;27724:15;13239:3;27724:41;27682:84;;-1:-1:-1;27802:13:0;;13502:3;27787:56;27682:162;27631:213;;:31;;27925:23;;;;27969:14;:19;27965:635;;28009:313;28040:38;;28065:12;;-1:-1:-1;;;;;28040:38:0;;;28057:1;;28040:38;;28057:1;;28040:38;28106:69;28145:1;28149:2;28153:14;;;;;;28169:5;28106:30;:69::i;:::-;28101:174;;28211:40;;-1:-1:-1;;;28211:40:0;;;;;;;;;;;28101:174;28317:3;28302:12;:18;28009:313;;28403:12;28386:13;;:29;28382:43;;28417:8;;;28382:43;27965:635;;;28466:119;28497:40;;28522:14;;;;;-1:-1:-1;;;;;28497:40:0;;;28514:1;;28497:40;;28514:1;;28497:40;28580:3;28565:12;:18;28466:119;;27965:635;-1:-1:-1;28614:13:0;:28;28664:60;28693:1;28697:2;28701:12;28715:8;28664: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:276::-;4414:3;4452:6;4446:13;4468:53;4514:6;4509:3;4502:4;4494:6;4490:17;4468:53;:::i;:::-;4537:16;;;;;4283:276;-1:-1:-1;;4283:276:1:o;4982:488::-;-1:-1:-1;;;;;5251:15:1;;;5233:34;;5303:15;;5298:2;5283:18;;5276:43;5350:2;5335:18;;5328:34;;;5398:3;5393:2;5378:18;;5371:31;;;5176:4;;5419:45;;5444:19;;5436:6;5419:45;:::i;:::-;5411:53;4982:488;-1:-1:-1;;;;;;4982:488:1:o;5667:219::-;5816:2;5805:9;5798:21;5779:4;5836:44;5876:2;5865:9;5861:18;5853:6;5836:44;:::i;9270:356::-;9472:2;9454:21;;;9491:18;;;9484:30;9550:34;9545:2;9530:18;;9523:62;9617:2;9602:18;;9270:356::o;10154:128::-;10194:3;10225:1;10221:6;10218:1;10215:13;10212:39;;;10231:18;;:::i;:::-;-1:-1:-1;10267:9:1;;10154:128::o;10287:168::-;10327:7;10393:1;10389;10385:6;10381:14;10378:1;10375:21;10370:1;10363:9;10356:17;10352:45;10349:71;;;10400:18;;:::i;:::-;-1:-1:-1;10440:9:1;;10287:168::o;10460:125::-;10500:4;10528:1;10525;10522:8;10519:34;;;10533:18;;:::i;:::-;-1:-1:-1;10570:9:1;;10460:125::o;10590:258::-;10662:1;10672:113;10686:6;10683:1;10680:13;10672:113;;;10762:11;;;10756:18;10743:11;;;10736:39;10708:2;10701:10;10672:113;;;10803:6;10800:1;10797:13;10794:48;;;-1:-1:-1;;10838:1:1;10820:16;;10813:27;10590:258::o;10853:380::-;10932:1;10928:12;;;;10975;;;10996:61;;11050:4;11042:6;11038:17;11028:27;;10996:61;11103:2;11095:6;11092:14;11072:18;11069:38;11066:161;;;11149:10;11144:3;11140:20;11137:1;11130:31;11184:4;11181:1;11174:15;11212:4;11209:1;11202:15;11066:161;;10853:380;;;:::o;11238:127::-;11299:10;11294:3;11290:20;11287:1;11280:31;11330:4;11327:1;11320:15;11354:4;11351:1;11344:15;11370:127;11431:10;11426:3;11422:20;11419:1;11412:31;11462:4;11459:1;11452:15;11486:4;11483:1;11476:15;11502:131;-1:-1:-1;;;;;;11576:32:1;;11566:43;;11556:71;;11623:1;11620;11613:12

Swarm Source

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