ETH Price: $3,444.81 (+2.17%)
Gas: 5 Gwei

Token

Gohan-kun (GOHAN)
 

Overview

Max Total Supply

2,768 GOHAN

Holders

1,077

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GOHAN
0x5164370B3BA971474d10da1D409ce8872Cb8ca97
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:
GohanNFT

Compiler Version
v0.8.14+commit.80d49f37

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

// SPDX-License-Identifier: MIT

/**
 *Submitted for verification at Etherscan.io on 2022-05-30
 */

// 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, _toString(tokenId)))
                : "";
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: GohanNFT.sol

pragma solidity ^0.8.13;

contract GohanNFT is Ownable, ERC721A {
    uint256 public maxSupply = 2768;
    uint256 public maxFreeSupply = 1000;

    uint256 public maxPerTxDuringMint = 5;
    uint256 public maxPerAddressDuringMint = 20;
    uint256 public maxPerAddressDuringFreeMint = 2;

    uint256 public price = 0.0078 ether;
    bool public saleIsActive = false;

    address internal constant TEAM_ADDRESS =
        0x2530b1156De6aE90cE484cA699C9a382081B3cB3;

    string private _baseTokenURI;

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

    constructor() ERC721A("Gohan-kun", "GOHAN") {}

    modifier mintCompliance() {
        require(saleIsActive, "ERR: Sale is not active yet.");
        require(tx.origin == msg.sender, "ERR: Caller cannot be a contract.");
        _;
    }

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

    function freeMint(uint256 _quantity) external mintCompliance {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "ERR: Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "ERR: 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(),
            "ERR: 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 _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function withdrawBalance() external payable onlyOwner {
        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "ERR: 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"}]

6080604052610ad06009556103e8600a556005600b556014600c556002600d55661bb60f053f8000600e55600f805460ff191690553480156200004157600080fd5b506040518060400160405280600981526020016823b7b430b716b5bab760b91b8152506040518060400160405280600581526020016423a7a420a760d91b8152506200009c62000096620000d460201b60201c565b620000d8565b8151620000b190600390602085019062000128565b508051620000c790600490602084019062000128565b505060018055506200020a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013690620001ce565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600181811c90821680620001e357607f821691505b6020821081036200020457634e487b7160e01b600052602260045260246000fd5b50919050565b611cd9806200021a6000396000f3fe60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb01146105c4578063e985e9c5146105da578063eb8d244414610623578063f2fde38b1461063d578063fbbf8cc31461065d57600080fd5b8063bbb643191461054e578063c6f6f2161461056e578063c87b56dd1461058e578063d3464cbd146105ae57600080fd5b806396b10201116100e757806396b10201146104b8578063a035b1fe146104e5578063a0712d68146104fb578063a22cb4651461050e578063b88d4fde1461052e57600080fd5b80638bc35c2f1461044f5780638da5cb5b1461046557806391b7f5ed1461048357806395d89b41146104a357600080fd5b8063475133341161019b57806370a082311161016a57806370a08231146103c5578063715018a6146103e55780637ba5e621146103fa5780637bddd65b1461040f5780637c928fe91461042f57600080fd5b8063475133341461036757806355f804b31461037d5780635fd8c7101461039d5780636352211e146103a557600080fd5b80631141df20116101e25780631141df20146102c557806318160ddd146102e557806323b872dd146103115780632e0fd6eb1461033157806342842e0e1461034757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046117f5565b61068a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106dc565b604051610240919061186a565b34801561027757600080fd5b5061028b61028636600461187d565b61076e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046118b2565b6107b2565b005b3480156102d157600080fd5b506102c36102e036600461187d565b610884565b3480156102f157600080fd5b50610303600254600154036000190190565b604051908152602001610240565b34801561031d57600080fd5b506102c361032c3660046118dc565b610953565b34801561033d57600080fd5b50610303600d5481565b34801561035357600080fd5b506102c36103623660046118dc565b610963565b34801561037357600080fd5b50610303600a5481565b34801561038957600080fd5b506102c3610398366004611918565b61097e565b6102c36109b4565b3480156103b157600080fd5b5061028b6103c036600461187d565b610a85565b3480156103d157600080fd5b506103036103e036600461198a565b610a90565b3480156103f157600080fd5b506102c3610adf565b34801561040657600080fd5b506102c3610b15565b34801561041b57600080fd5b506102c361042a36600461187d565b610b53565b34801561043b57600080fd5b506102c361044a36600461187d565b610b82565b34801561045b57600080fd5b50610303600c5481565b34801561047157600080fd5b506000546001600160a01b031661028b565b34801561048f57600080fd5b506102c361049e36600461187d565b610d07565b3480156104af57600080fd5b5061025e610d36565b3480156104c457600080fd5b506103036104d336600461198a565b60116020526000908152604090205481565b3480156104f157600080fd5b50610303600e5481565b6102c361050936600461187d565b610d45565b34801561051a57600080fd5b506102c36105293660046119a5565b610f7c565b34801561053a57600080fd5b506102c36105493660046119f7565b611011565b34801561055a57600080fd5b506102c361056936600461187d565b61105b565b34801561057a57600080fd5b506102c361058936600461187d565b61108a565b34801561059a57600080fd5b5061025e6105a936600461187d565b6110b9565b3480156105ba57600080fd5b50610303600b5481565b3480156105d057600080fd5b5061030360095481565b3480156105e657600080fd5b506102346105f5366004611ad3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062f57600080fd5b50600f546102349060ff1681565b34801561064957600080fd5b506102c361065836600461198a565b61113d565b34801561066957600080fd5b5061030361067836600461198a565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106bb57506380ac58cd60e01b6001600160e01b03198316145b806106d65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106eb90611b06565b80601f016020809104026020016040519081016040528092919081815260200182805461071790611b06565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b6000610779826111d5565b610796576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107bd8261120a565b9050806001600160a01b0316836001600160a01b0316036107f15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108285761080b81336105f5565b610828576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108b75760405162461bcd60e51b81526004016108ae90611b40565b60405180910390fd5b6108c8600254600154036000190190565b816009546108d69190611b8b565b10156109395760405162461bcd60e51b815260206004820152602c60248201527f4552523a20537570706c792063616e6e6f742066616c6c2062656c6f77206d6960448201526b373a32b2103a37b5b2b7399760a11b60648201526084016108ae565b806009600082825461094b9190611b8b565b909155505050565b61095e838383611279565b505050565b61095e83838360405180602001604052806000815250611011565b6000546001600160a01b031633146109a85760405162461bcd60e51b81526004016108ae90611b40565b61095e60108383611746565b6000546001600160a01b031633146109de5760405162461bcd60e51b81526004016108ae90611b40565b604051600090732530b1156de6ae90ce484ca699c9a382081b3cb39047908381818185875af1925050503d8060008114610a34576040519150601f19603f3d011682016040523d82523d6000602084013e610a39565b606091505b5050905080610a825760405162461bcd60e51b815260206004820152601560248201527422a9291d103a3930b739b332b9103330b4b632b21760591b60448201526064016108ae565b50565b60006106d68261120a565b60006001600160a01b038216610ab9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610b095760405162461bcd60e51b81526004016108ae90611b40565b610b136000611420565b565b6000546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016108ae90611b40565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610b7d5760405162461bcd60e51b81526004016108ae90611b40565b600c55565b600f5460ff16610bd45760405162461bcd60e51b815260206004820152601c60248201527f4552523a2053616c65206973206e6f7420616374697665207965742e0000000060448201526064016108ae565b323314610bf35760405162461bcd60e51b81526004016108ae90611ba2565b80610c05600254600154036000190190565b610c0f9190611be3565b600a541015610c605760405162461bcd60e51b815260206004820152601d60248201527f4552523a2045786365656473206d6178206672656520737570706c792e00000060448201526064016108ae565b33600090815260116020526040902054600d54610c7d8383611be3565b1115610cdc5760405162461bcd60e51b815260206004820152602860248201527f4552523a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b60648201526084016108ae565b610ce68282611be3565b33600081815260116020526040902091909155610d039083611470565b5050565b6000546001600160a01b03163314610d315760405162461bcd60e51b81526004016108ae90611b40565b600e55565b6060600480546106eb90611b06565b600f5460ff16610d975760405162461bcd60e51b815260206004820152601c60248201527f4552523a2053616c65206973206e6f7420616374697665207965742e0000000060448201526064016108ae565b323314610db65760405162461bcd60e51b81526004016108ae90611ba2565b80600e54610dc49190611bfb565b341015610e135760405162461bcd60e51b815260206004820152601760248201527f4552523a20496e73756666696369656e742046756e642e00000000000000000060448201526064016108ae565b80610e25600254600154036000190190565b610e2f9190611be3565b6009541015610e805760405162461bcd60e51b815260206004820152601860248201527f4552523a2045786365656473206d617820737570706c792e000000000000000060448201526064016108ae565b33600090815260126020526040902054600c54610e9d8383611be3565b1115610ef75760405162461bcd60e51b815260206004820152602360248201527f4552523a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b60648201526084016108ae565b600082118015610f095750600b548211155b610f555760405162461bcd60e51b815260206004820152601960248201527f4552523a20496e76616c6964206d696e7420616d6f756e742e0000000000000060448201526064016108ae565b610f5f8282611be3565b33600081815260126020526040902091909155610d039083611470565b336001600160a01b03831603610fa55760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101c848484611279565b6001600160a01b0383163b15611055576110388484848461148a565b611055576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110855760405162461bcd60e51b81526004016108ae90611b40565b600d55565b6000546001600160a01b031633146110b45760405162461bcd60e51b81526004016108ae90611b40565b600b55565b60606110c4826111d5565b6110e157604051630a14c4b560e41b815260040160405180910390fd5b60006110eb611575565b9050805160000361110b5760405180602001604052806000815250611136565b8061111584611584565b604051602001611126929190611c1a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111675760405162461bcd60e51b81526004016108ae90611b40565b6001600160a01b0381166111cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ae565b610a8281611420565b6000816001111580156111e9575060015482105b80156106d6575050600090815260056020526040902054600160e01b161590565b60008180600111611260576001548110156112605760008181526005602052604081205490600160e01b8216900361125e575b8060000361113657506000190160008181526005602052604090205461123d565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112848261120a565b9050836001600160a01b0316816001600160a01b0316146112b75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112d557506112d585336105f5565b806112f05750336112e58461076e565b6001600160a01b0316145b90508061131057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661133757604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b87178117909155831690036113d8576001830160008181526005602052604081205490036113d65760015481146113d65760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610d038282604051806020016040528060008152506115d3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114bf903390899088908890600401611c49565b6020604051808303816000875af19250505080156114fa575060408051601f3d908101601f191682019092526114f791810190611c86565b60015b611558573d808015611528576040519150601f19603f3d011682016040523d82523d6000602084013e61152d565b606091505b508051600003611550576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546106eb90611b06565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115c157600183039250600a81066030018353600a90046115a3565b50819003601f19909101908152919050565b6001546001600160a01b0384166115fc57604051622e076360e81b815260040160405180910390fd5b8260000361161d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156116f2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116bb600087848060010195508761148a565b6116d8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116705782600154146116ed57600080fd5b611737565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116f3575b50600155611055600085838684565b82805461175290611b06565b90600052602060002090601f01602090048101928261177457600085556117ba565b82601f1061178d5782800160ff198235161785556117ba565b828001600101855582156117ba579182015b828111156117ba57823582559160200191906001019061179f565b506117c69291506117ca565b5090565b5b808211156117c657600081556001016117cb565b6001600160e01b031981168114610a8257600080fd5b60006020828403121561180757600080fd5b8135611136816117df565b60005b8381101561182d578181015183820152602001611815565b838111156110555750506000910152565b60008151808452611856816020860160208601611812565b601f01601f19169290920160200192915050565b602081526000611136602083018461183e565b60006020828403121561188f57600080fd5b5035919050565b80356001600160a01b03811681146118ad57600080fd5b919050565b600080604083850312156118c557600080fd5b6118ce83611896565b946020939093013593505050565b6000806000606084860312156118f157600080fd5b6118fa84611896565b925061190860208501611896565b9150604084013590509250925092565b6000806020838503121561192b57600080fd5b823567ffffffffffffffff8082111561194357600080fd5b818501915085601f83011261195757600080fd5b81358181111561196657600080fd5b86602082850101111561197857600080fd5b60209290920196919550909350505050565b60006020828403121561199c57600080fd5b61113682611896565b600080604083850312156119b857600080fd5b6119c183611896565b9150602083013580151581146119d657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a0d57600080fd5b611a1685611896565b9350611a2460208601611896565b925060408501359150606085013567ffffffffffffffff80821115611a4857600080fd5b818701915087601f830112611a5c57600080fd5b813581811115611a6e57611a6e6119e1565b604051601f8201601f19908116603f01168101908382118183101715611a9657611a966119e1565b816040528281528a6020848701011115611aaf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ae657600080fd5b611aef83611896565b9150611afd60208401611896565b90509250929050565b600181811c90821680611b1a57607f821691505b602082108103611b3a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611b9d57611b9d611b75565b500390565b60208082526021908201527f4552523a2043616c6c65722063616e6e6f74206265206120636f6e74726163746040820152601760f91b606082015260800190565b60008219821115611bf657611bf6611b75565b500190565b6000816000190483118215151615611c1557611c15611b75565b500290565b60008351611c2c818460208801611812565b835190830190611c40818360208801611812565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7c9083018461183e565b9695505050505050565b600060208284031215611c9857600080fd5b8151611136816117df56fea2646970667358221220cc60e94ea76ceea6a4ffe571b2a3ac5aac33d9f0b3adf1fa93c50bc8eaa1e70464736f6c634300080e0033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb01146105c4578063e985e9c5146105da578063eb8d244414610623578063f2fde38b1461063d578063fbbf8cc31461065d57600080fd5b8063bbb643191461054e578063c6f6f2161461056e578063c87b56dd1461058e578063d3464cbd146105ae57600080fd5b806396b10201116100e757806396b10201146104b8578063a035b1fe146104e5578063a0712d68146104fb578063a22cb4651461050e578063b88d4fde1461052e57600080fd5b80638bc35c2f1461044f5780638da5cb5b1461046557806391b7f5ed1461048357806395d89b41146104a357600080fd5b8063475133341161019b57806370a082311161016a57806370a08231146103c5578063715018a6146103e55780637ba5e621146103fa5780637bddd65b1461040f5780637c928fe91461042f57600080fd5b8063475133341461036757806355f804b31461037d5780635fd8c7101461039d5780636352211e146103a557600080fd5b80631141df20116101e25780631141df20146102c557806318160ddd146102e557806323b872dd146103115780632e0fd6eb1461033157806342842e0e1461034757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046117f5565b61068a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106dc565b604051610240919061186a565b34801561027757600080fd5b5061028b61028636600461187d565b61076e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046118b2565b6107b2565b005b3480156102d157600080fd5b506102c36102e036600461187d565b610884565b3480156102f157600080fd5b50610303600254600154036000190190565b604051908152602001610240565b34801561031d57600080fd5b506102c361032c3660046118dc565b610953565b34801561033d57600080fd5b50610303600d5481565b34801561035357600080fd5b506102c36103623660046118dc565b610963565b34801561037357600080fd5b50610303600a5481565b34801561038957600080fd5b506102c3610398366004611918565b61097e565b6102c36109b4565b3480156103b157600080fd5b5061028b6103c036600461187d565b610a85565b3480156103d157600080fd5b506103036103e036600461198a565b610a90565b3480156103f157600080fd5b506102c3610adf565b34801561040657600080fd5b506102c3610b15565b34801561041b57600080fd5b506102c361042a36600461187d565b610b53565b34801561043b57600080fd5b506102c361044a36600461187d565b610b82565b34801561045b57600080fd5b50610303600c5481565b34801561047157600080fd5b506000546001600160a01b031661028b565b34801561048f57600080fd5b506102c361049e36600461187d565b610d07565b3480156104af57600080fd5b5061025e610d36565b3480156104c457600080fd5b506103036104d336600461198a565b60116020526000908152604090205481565b3480156104f157600080fd5b50610303600e5481565b6102c361050936600461187d565b610d45565b34801561051a57600080fd5b506102c36105293660046119a5565b610f7c565b34801561053a57600080fd5b506102c36105493660046119f7565b611011565b34801561055a57600080fd5b506102c361056936600461187d565b61105b565b34801561057a57600080fd5b506102c361058936600461187d565b61108a565b34801561059a57600080fd5b5061025e6105a936600461187d565b6110b9565b3480156105ba57600080fd5b50610303600b5481565b3480156105d057600080fd5b5061030360095481565b3480156105e657600080fd5b506102346105f5366004611ad3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062f57600080fd5b50600f546102349060ff1681565b34801561064957600080fd5b506102c361065836600461198a565b61113d565b34801561066957600080fd5b5061030361067836600461198a565b60126020526000908152604090205481565b60006301ffc9a760e01b6001600160e01b0319831614806106bb57506380ac58cd60e01b6001600160e01b03198316145b806106d65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106eb90611b06565b80601f016020809104026020016040519081016040528092919081815260200182805461071790611b06565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b6000610779826111d5565b610796576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107bd8261120a565b9050806001600160a01b0316836001600160a01b0316036107f15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108285761080b81336105f5565b610828576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108b75760405162461bcd60e51b81526004016108ae90611b40565b60405180910390fd5b6108c8600254600154036000190190565b816009546108d69190611b8b565b10156109395760405162461bcd60e51b815260206004820152602c60248201527f4552523a20537570706c792063616e6e6f742066616c6c2062656c6f77206d6960448201526b373a32b2103a37b5b2b7399760a11b60648201526084016108ae565b806009600082825461094b9190611b8b565b909155505050565b61095e838383611279565b505050565b61095e83838360405180602001604052806000815250611011565b6000546001600160a01b031633146109a85760405162461bcd60e51b81526004016108ae90611b40565b61095e60108383611746565b6000546001600160a01b031633146109de5760405162461bcd60e51b81526004016108ae90611b40565b604051600090732530b1156de6ae90ce484ca699c9a382081b3cb39047908381818185875af1925050503d8060008114610a34576040519150601f19603f3d011682016040523d82523d6000602084013e610a39565b606091505b5050905080610a825760405162461bcd60e51b815260206004820152601560248201527422a9291d103a3930b739b332b9103330b4b632b21760591b60448201526064016108ae565b50565b60006106d68261120a565b60006001600160a01b038216610ab9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610b095760405162461bcd60e51b81526004016108ae90611b40565b610b136000611420565b565b6000546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016108ae90611b40565b600f805460ff19811660ff90911615179055565b6000546001600160a01b03163314610b7d5760405162461bcd60e51b81526004016108ae90611b40565b600c55565b600f5460ff16610bd45760405162461bcd60e51b815260206004820152601c60248201527f4552523a2053616c65206973206e6f7420616374697665207965742e0000000060448201526064016108ae565b323314610bf35760405162461bcd60e51b81526004016108ae90611ba2565b80610c05600254600154036000190190565b610c0f9190611be3565b600a541015610c605760405162461bcd60e51b815260206004820152601d60248201527f4552523a2045786365656473206d6178206672656520737570706c792e00000060448201526064016108ae565b33600090815260116020526040902054600d54610c7d8383611be3565b1115610cdc5760405162461bcd60e51b815260206004820152602860248201527f4552523a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b60648201526084016108ae565b610ce68282611be3565b33600081815260116020526040902091909155610d039083611470565b5050565b6000546001600160a01b03163314610d315760405162461bcd60e51b81526004016108ae90611b40565b600e55565b6060600480546106eb90611b06565b600f5460ff16610d975760405162461bcd60e51b815260206004820152601c60248201527f4552523a2053616c65206973206e6f7420616374697665207965742e0000000060448201526064016108ae565b323314610db65760405162461bcd60e51b81526004016108ae90611ba2565b80600e54610dc49190611bfb565b341015610e135760405162461bcd60e51b815260206004820152601760248201527f4552523a20496e73756666696369656e742046756e642e00000000000000000060448201526064016108ae565b80610e25600254600154036000190190565b610e2f9190611be3565b6009541015610e805760405162461bcd60e51b815260206004820152601860248201527f4552523a2045786365656473206d617820737570706c792e000000000000000060448201526064016108ae565b33600090815260126020526040902054600c54610e9d8383611be3565b1115610ef75760405162461bcd60e51b815260206004820152602360248201527f4552523a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b60648201526084016108ae565b600082118015610f095750600b548211155b610f555760405162461bcd60e51b815260206004820152601960248201527f4552523a20496e76616c6964206d696e7420616d6f756e742e0000000000000060448201526064016108ae565b610f5f8282611be3565b33600081815260126020526040902091909155610d039083611470565b336001600160a01b03831603610fa55760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61101c848484611279565b6001600160a01b0383163b15611055576110388484848461148a565b611055576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146110855760405162461bcd60e51b81526004016108ae90611b40565b600d55565b6000546001600160a01b031633146110b45760405162461bcd60e51b81526004016108ae90611b40565b600b55565b60606110c4826111d5565b6110e157604051630a14c4b560e41b815260040160405180910390fd5b60006110eb611575565b9050805160000361110b5760405180602001604052806000815250611136565b8061111584611584565b604051602001611126929190611c1a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111675760405162461bcd60e51b81526004016108ae90611b40565b6001600160a01b0381166111cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ae565b610a8281611420565b6000816001111580156111e9575060015482105b80156106d6575050600090815260056020526040902054600160e01b161590565b60008180600111611260576001548110156112605760008181526005602052604081205490600160e01b8216900361125e575b8060000361113657506000190160008181526005602052604090205461123d565b505b604051636f96cda160e11b815260040160405180910390fd5b60006112848261120a565b9050836001600160a01b0316816001600160a01b0316146112b75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112d557506112d585336105f5565b806112f05750336112e58461076e565b6001600160a01b0316145b90508061131057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661133757604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b87178117909155831690036113d8576001830160008181526005602052604081205490036113d65760015481146113d65760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610d038282604051806020016040528060008152506115d3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114bf903390899088908890600401611c49565b6020604051808303816000875af19250505080156114fa575060408051601f3d908101601f191682019092526114f791810190611c86565b60015b611558573d808015611528576040519150601f19603f3d011682016040523d82523d6000602084013e61152d565b606091505b508051600003611550576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060601080546106eb90611b06565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115c157600183039250600a81066030018353600a90046115a3565b50819003601f19909101908152919050565b6001546001600160a01b0384166115fc57604051622e076360e81b815260040160405180910390fd5b8260000361161d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156116f2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116bb600087848060010195508761148a565b6116d8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116705782600154146116ed57600080fd5b611737565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116f3575b50600155611055600085838684565b82805461175290611b06565b90600052602060002090601f01602090048101928261177457600085556117ba565b82601f1061178d5782800160ff198235161785556117ba565b828001600101855582156117ba579182015b828111156117ba57823582559160200191906001019061179f565b506117c69291506117ca565b5090565b5b808211156117c657600081556001016117cb565b6001600160e01b031981168114610a8257600080fd5b60006020828403121561180757600080fd5b8135611136816117df565b60005b8381101561182d578181015183820152602001611815565b838111156110555750506000910152565b60008151808452611856816020860160208601611812565b601f01601f19169290920160200192915050565b602081526000611136602083018461183e565b60006020828403121561188f57600080fd5b5035919050565b80356001600160a01b03811681146118ad57600080fd5b919050565b600080604083850312156118c557600080fd5b6118ce83611896565b946020939093013593505050565b6000806000606084860312156118f157600080fd5b6118fa84611896565b925061190860208501611896565b9150604084013590509250925092565b6000806020838503121561192b57600080fd5b823567ffffffffffffffff8082111561194357600080fd5b818501915085601f83011261195757600080fd5b81358181111561196657600080fd5b86602082850101111561197857600080fd5b60209290920196919550909350505050565b60006020828403121561199c57600080fd5b61113682611896565b600080604083850312156119b857600080fd5b6119c183611896565b9150602083013580151581146119d657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a0d57600080fd5b611a1685611896565b9350611a2460208601611896565b925060408501359150606085013567ffffffffffffffff80821115611a4857600080fd5b818701915087601f830112611a5c57600080fd5b813581811115611a6e57611a6e6119e1565b604051601f8201601f19908116603f01168101908382118183101715611a9657611a966119e1565b816040528281528a6020848701011115611aaf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611ae657600080fd5b611aef83611896565b9150611afd60208401611896565b90509250929050565b600181811c90821680611b1a57607f821691505b602082108103611b3a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611b9d57611b9d611b75565b500390565b60208082526021908201527f4552523a2043616c6c65722063616e6e6f74206265206120636f6e74726163746040820152601760f91b606082015260800190565b60008219821115611bf657611bf6611b75565b500190565b6000816000190483118215151615611c1557611c15611b75565b500290565b60008351611c2c818460208801611812565b835190830190611c40818360208801611812565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7c9083018461183e565b9695505050505050565b600060208284031215611c9857600080fd5b8151611136816117df56fea2646970667358221220cc60e94ea76ceea6a4ffe571b2a3ac5aac33d9f0b3adf1fa93c50bc8eaa1e70464736f6c634300080e0033

Deployed Bytecode Sourcemap

43044:3512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16803:665;;;;;;;;;;-1:-1:-1;16803:665:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16803:665:0;;;;;;;;22059:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24256:245::-;;;;;;;;;;-1:-1:-1;24256:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;24256:245:0;1528:203:1;23716:474:0;;;;;;;;;;-1:-1:-1;23716:474:0;;;;;:::i;:::-;;:::i;:::-;;45736:236;;;;;;;;;;-1:-1:-1;45736:236:0;;;;;:::i;:::-;;:::i;15857:315::-;;;;;;;;;;;;16123:12;;46308:1;16107:13;:28;-1:-1:-1;;16107:46:0;;15857:315;;;;2319:25:1;;;2307:2;2292:18;15857:315:0;2173:177:1;25265:170:0;;;;;;;;;;-1:-1:-1;25265:170:0;;;;;:::i;:::-;;:::i;43265:46::-;;;;;;;;;;;;;;;;25506:185;;;;;;;;;;-1:-1:-1;25506:185:0;;;;;:::i;:::-;;:::i;43127:35::-;;;;;;;;;;;;;;;;45980:106;;;;;;;;;;-1:-1:-1;45980:106:0;;;;;:::i;:::-;;:::i;46325:228::-;;;:::i;21848:144::-;;;;;;;;;;-1:-1:-1;21848:144:0;;;;;:::i;:::-;;:::i;17532:224::-;;;;;;;;;;-1:-1:-1;17532:224:0;;;;;:::i;:::-;;:::i;2732:103::-;;;;;;;;;;;;;:::i;45644:84::-;;;;;;;;;;;;;:::i;45392:114::-;;;;;;;;;;-1:-1:-1;45392:114:0;;;;;:::i;:::-;;:::i;44635:543::-;;;;;;;;;;-1:-1:-1;44635:543:0;;;;;:::i;:::-;;:::i;43215:43::-;;;;;;;;;;;;;;;;2081:87;;;;;;;;;;-1:-1:-1;2127:7:0;2154:6;-1:-1:-1;;;;;2154:6:0;2081:87;;45186:86;;;;;;;;;;-1:-1:-1;45186:86:0;;;;;:::i;:::-;;:::i;22228:104::-;;;;;;;;;;;;;:::i;43541:51::-;;;;;;;;;;-1:-1:-1;43541:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;43320:35;;;;;;;;;;;;;;;;43907:720;;;;;;:::i;:::-;;:::i;24573:340::-;;;;;;;;;;-1:-1:-1;24573:340:0;;;;;:::i;:::-;;:::i;25762:396::-;;;;;;;;;;-1:-1:-1;25762:396:0;;;;;:::i;:::-;;:::i;45514:122::-;;;;;;;;;;-1:-1:-1;45514:122:0;;;;;:::i;:::-;;:::i;45280:104::-;;;;;;;;;;-1:-1:-1;45280:104:0;;;;;:::i;:::-;;:::i;22403:415::-;;;;;;;;;;-1:-1:-1;22403:415:0;;;;;:::i;:::-;;:::i;43171:37::-;;;;;;;;;;;;;;;;43089:31;;;;;;;;;;;;;;;;24984:214;;;;;;;;;;-1:-1:-1;24984:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25155:25:0;;;25126:4;25155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24984:214;43362:32;;;;;;;;;;-1:-1:-1;43362:32:0;;;;;;;;2990:238;;;;;;;;;;-1:-1:-1;2990:238:0;;;;;:::i;:::-;;:::i;43599:47::-;;;;;;;;;;-1:-1:-1;43599:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;16803:665;16933:4;-1:-1:-1;;;;;;;;;17238:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17315:25:0;;;17238:102;:179;;;-1:-1:-1;;;;;;;;;;17392:25:0;;;17238:179;17218:199;16803:665;-1:-1:-1;;16803:665:0:o;22059:100::-;22113:13;22146:5;22139:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22059:100;:::o;24256:245::-;24360:7;24390:16;24398:7;24390;:16::i;:::-;24385:64;;24415:34;;-1:-1:-1;;;24415:34:0;;;;;;;;;;;24385:64;-1:-1:-1;24469:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24469:24:0;;24256:245::o;23716:474::-;23789:13;23821:27;23840:7;23821:18;:27::i;:::-;23789:61;;23871:5;-1:-1:-1;;;;;23865:11:0;:2;-1:-1:-1;;;;;23865:11:0;;23861:48;;23885:24;;-1:-1:-1;;;23885:24:0;;;;;;;;;;;23861:48;40868:10;-1:-1:-1;;;;;23926:28:0;;;23922:175;;23974:44;23991:5;40868:10;24984:214;:::i;23974:44::-;23969:128;;24046:35;;-1:-1:-1;;;24046:35:0;;;;;;;;;;;23969:128;24109:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24109:29:0;-1:-1:-1;;;;;24109:29:0;;;;;;;;;24154:28;;24109:24;;24154:28;;;;;;;23778:412;23716:474;;:::o;45736:236::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;;;;;;;;;45848:13:::1;16123:12:::0;;46308:1;16107:13;:28;-1:-1:-1;;16107:46:0;;15857:315;45848:13:::1;45837:7;45825:9;;:19;;;;:::i;:::-;:36;;45803:130;;;::::0;-1:-1:-1;;;45803:130:0;;6578:2:1;45803:130:0::1;::::0;::::1;6560:21:1::0;6617:2;6597:18;;;6590:30;6656:34;6636:18;;;6629:62;-1:-1:-1;;;6707:18:1;;;6700:42;6759:19;;45803:130:0::1;6376:408:1::0;45803:130:0::1;45957:7;45944:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;45736:236:0:o;25265:170::-;25399:28;25409:4;25415:2;25419:7;25399:9;:28::i;:::-;25265:170;;;:::o;25506:185::-;25644:39;25661:4;25667:2;25671:7;25644:39;;;;;;;;;;;;:16;:39::i;45980:106::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;46055:23:::1;:13;46071:7:::0;;46055:23:::1;:::i;46325:228::-:0;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;46409:84:::1;::::0;46391:12:::1;::::0;43453:42:::1;::::0;46457:21:::1;::::0;46391:12;46409:84;46391:12;46409:84;46457:21;43453:42;46409:84:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46390:103;;;46512:7;46504:41;;;::::0;-1:-1:-1;;;46504:41:0;;7201:2:1;46504:41:0::1;::::0;::::1;7183:21:1::0;7240:2;7220:18;;;7213:30;-1:-1:-1;;;7259:18:1;;;7252:51;7320:18;;46504:41:0::1;6999:345:1::0;46504:41:0::1;46379:174;46325:228::o:0;21848:144::-;21912:7;21955:27;21974:7;21955:18;:27::i;17532:224::-;17596:7;-1:-1:-1;;;;;17620:19:0;;17616:60;;17648:28;;-1:-1:-1;;;17648:28:0;;;;;;;;;;;17616:60;-1:-1:-1;;;;;;17694:25:0;;;;;:18;:25;;;;;;12827:13;17694:54;;17532:224::o;2732:103::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;2797:30:::1;2824:1;2797:18;:30::i;:::-;2732:103::o:0;45644:84::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;45708:12:::1;::::0;;-1:-1:-1;;45692:28:0;::::1;45708:12;::::0;;::::1;45707:13;45692:28;::::0;;45644:84::o;45392:114::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;45465:23:::1;:33:::0;45392:114::o;44635:543::-;43754:12;;;;43746:53;;;;-1:-1:-1;;;43746:53:0;;7551:2:1;43746:53:0;;;7533:21:1;7590:2;7570:18;;;7563:30;7629;7609:18;;;7602:58;7677:18;;43746:53:0;7349:352:1;43746:53:0;43818:9;43831:10;43818:23;43810:69;;;;-1:-1:-1;;;43810:69:0;;;;;;;:::i;:::-;44762:9:::1;44746:13;16123:12:::0;;46308:1;16107:13;:28;-1:-1:-1;;16107:46:0;;15857:315;44746:13:::1;:25;;;;:::i;:::-;44729:13;;:42;;44707:121;;;::::0;-1:-1:-1;;;44707:121:0;;8443:2:1;44707:121:0::1;::::0;::::1;8425:21:1::0;8482:2;8462:18;;;8455:30;8521:31;8501:18;;;8494:59;8570:18;;44707:121:0::1;8241:353:1::0;44707:121:0::1;44884:10;44839:25;44867:28:::0;;;:16:::1;:28;::::0;;;;;44961:27:::1;::::0;44928:29:::1;44948:9:::0;44867:28;44928:29:::1;:::i;:::-;:60;;44906:150;;;::::0;-1:-1:-1;;;44906:150:0;;8801:2:1;44906:150:0::1;::::0;::::1;8783:21:1::0;8840:2;8820:18;;;8813:30;8879:34;8859:18;;;8852:62;-1:-1:-1;;;8930:18:1;;;8923:38;8978:19;;44906:150:0::1;8599:404:1::0;44906:150:0::1;45098:29;45118:9:::0;45098:17;:29:::1;:::i;:::-;45084:10;45067:28;::::0;;;:16:::1;:28;::::0;;;;:60;;;;45138:32:::1;::::0;45160:9;45138::::1;:32::i;:::-;44696:482;44635:543:::0;:::o;45186:86::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;45250:5:::1;:14:::0;45186:86::o;22228:104::-;22284:13;22317:7;22310:14;;;;;:::i;43907:720::-;43754:12;;;;43746:53;;;;-1:-1:-1;;;43746:53:0;;7551:2:1;43746:53:0;;;7533:21:1;7590:2;7570:18;;;7563:30;7629;7609:18;;;7602:58;7677:18;;43746:53:0;7349:352:1;43746:53:0;43818:9;43831:10;43818:23;43810:69;;;;-1:-1:-1;;;43810:69:0;;;;;;;:::i;:::-;44012:9:::1;44004:5;;:17;;;;:::i;:::-;43991:9;:30;;43983:66;;;::::0;-1:-1:-1;;;43983:66:0;;9383:2:1;43983:66:0::1;::::0;::::1;9365:21:1::0;9422:2;9402:18;;;9395:30;9461:25;9441:18;;;9434:53;9504:18;;43983:66:0::1;9181:347:1::0;43983:66:0::1;44111:9;44095:13;16123:12:::0;;46308:1;16107:13;:28;-1:-1:-1;;16107:46:0;;15857:315;44095:13:::1;:25;;;;:::i;:::-;44082:9;;:38;;44060:112;;;::::0;-1:-1:-1;;;44060:112:0;;9735:2:1;44060:112:0::1;::::0;::::1;9717:21:1::0;9774:2;9754:18;;;9747:30;9813:26;9793:18;;;9786:54;9857:18;;44060:112:0::1;9533:348:1::0;44060:112:0::1;44220:10;44183:21;44207:24:::0;;;:12:::1;:24;::::0;;;;;44293:23:::1;::::0;44264:25:::1;44280:9:::0;44207:24;44264:25:::1;:::i;:::-;:52;;44242:137;;;::::0;-1:-1:-1;;;44242:137:0;;10088:2:1;44242:137:0::1;::::0;::::1;10070:21:1::0;10127:2;10107:18;;;10100:30;10166:34;10146:18;;;10139:62;-1:-1:-1;;;10217:18:1;;;10210:33;10260:19;;44242:137:0::1;9886:399:1::0;44242:137:0::1;44424:1;44412:9;:13;:48;;;;;44442:18;;44429:9;:31;;44412:48;44390:123;;;::::0;-1:-1:-1;;;44390:123:0;;10492:2:1;44390:123:0::1;::::0;::::1;10474:21:1::0;10531:2;10511:18;;;10504:30;10570:27;10550:18;;;10543:55;10615:18;;44390:123:0::1;10290:349:1::0;44390:123:0::1;44551:25;44567:9:::0;44551:13;:25:::1;:::i;:::-;44537:10;44524:24;::::0;;;:12:::1;:24;::::0;;;;:52;;;;44587:32:::1;::::0;44609:9;44587::::1;:32::i;24573:340::-:0;40868:10;-1:-1:-1;;;;;24704:31:0;;;24700:61;;24744:17;;-1:-1:-1;;;24744:17:0;;;;;;;;;;;24700:61;40868:10;24774:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24774:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24774:60:0;;;;;;;;;;24850:55;;540:41:1;;;24774:49:0;;40868:10;24850:55;;513:18:1;24850:55:0;;;;;;;24573:340;;:::o;25762:396::-;25929:28;25939:4;25945:2;25949:7;25929:9;:28::i;:::-;-1:-1:-1;;;;;25972:14:0;;;:19;25968:183;;26011:56;26042:4;26048:2;26052:7;26061:5;26011:30;:56::i;:::-;26006:145;;26095:40;;-1:-1:-1;;;26095:40:0;;;;;;;;;;;26006:145;25762:396;;;;:::o;45514:122::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;45591:27:::1;:37:::0;45514:122::o;45280:104::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;45348:18:::1;:28:::0;45280:104::o;22403:415::-;22521:13;22557:16;22565:7;22557;:16::i;:::-;22552:59;;22582:29;;-1:-1:-1;;;22582:29:0;;;;;;;;;;;22552:59;22624:21;22648:10;:8;:10::i;:::-;22624:34;;22695:7;22689:21;22714:1;22689:26;:121;;;;;;;;;;;;;;;;;22759:7;22768:18;22778:7;22768:9;:18::i;:::-;22742:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22689:121;22669:141;22403:415;-1:-1:-1;;;22403:415:0:o;2990:238::-;2127:7;2154:6;-1:-1:-1;;;;;2154:6:0;40868:10;2301:23;2293:68;;;;-1:-1:-1;;;2293:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3093:22:0;::::1;3071:110;;;::::0;-1:-1:-1;;;3071:110:0;;11321:2:1;3071:110:0::1;::::0;::::1;11303:21:1::0;11360:2;11340:18;;;11333:30;11399:34;11379:18;;;11372:62;-1:-1:-1;;;11450:18:1;;;11443:36;11496:19;;3071:110:0::1;11119:402:1::0;3071:110:0::1;3192:28;3211:8;3192:18;:28::i;26413:273::-:0;26470:4;26526:7;46308:1;26507:26;;:66;;;;;26560:13;;26550:7;:23;26507:66;:152;;;;-1:-1:-1;;26611:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;26611:43:0;:48;;26413:273::o;19235:1161::-;19329:7;19369;;46308:1;19418:23;19414:915;;19471:13;;19464:4;:20;19460:869;;;19509:14;19526:23;;;:17;:23;;;;;;;-1:-1:-1;;;19615:23:0;;:28;;19611:699;;20134:113;20141:6;20151:1;20141:11;20134:113;;-1:-1:-1;;;20212:6:0;20194:25;;;;:17;:25;;;;;;20134:113;;19611:699;19486:843;19460:869;20357:31;;-1:-1:-1;;;20357:31:0;;;;;;;;;;;31911:2528;32026:27;32056;32075:7;32056:18;:27::i;:::-;32026:57;;32141:4;-1:-1:-1;;;;;32100:45:0;32116:19;-1:-1:-1;;;;;32100:45:0;;32096:99;;32167:28;;-1:-1:-1;;;32167:28:0;;;;;;;;;;;32096:99;32208:22;40868:10;-1:-1:-1;;;;;32234:27:0;;;;:87;;-1:-1:-1;32278:43:0;32295:4;40868:10;24984:214;:::i;32278:43::-;32234:147;;;-1:-1:-1;40868:10:0;32338:20;32350:7;32338:11;:20::i;:::-;-1:-1:-1;;;;;32338:43:0;;32234:147;32208:174;;32400:17;32395:66;;32426:35;;-1:-1:-1;;;32426:35:0;;;;;;;;;;;32395:66;-1:-1:-1;;;;;32476:16:0;;32472:52;;32501:23;;-1:-1:-1;;;32501:23:0;;;;;;;;;;;32472:52;32653:24;;;;:15;:24;;;;;;;;32646:31;;-1:-1:-1;;;;;;32646:31:0;;;-1:-1:-1;;;;;33045:24:0;;;;;:18;:24;;;;;33043:26;;-1:-1:-1;;33043:26:0;;;33114:22;;;;;;;33112:24;;-1:-1:-1;33112:24:0;;;33407:26;;;:17;:26;;;;;-1:-1:-1;;;33495:15:0;13481:3;33495:41;33453:84;;:128;;33407:174;;;33701:46;;:51;;33697:626;;33805:1;33795:11;;33773:19;33928:30;;;:17;:30;;;;;;:35;;33924:384;;34066:13;;34051:11;:28;34047:242;;34213:30;;;;:17;:30;;;;;:52;;;34047:242;33754:569;33697:626;34370:7;34366:2;-1:-1:-1;;;;;34351:27:0;34360:4;-1:-1:-1;;;;;34351:27:0;;;;;;;;;;;32015:2424;;31911:2528;;;:::o;3388:191::-;3462:16;3481:6;;-1:-1:-1;;;;;3498:17:0;;;-1:-1:-1;;;;;;3498:17:0;;;;;;3531:40;;3481:6;;;;;;;3531:40;;3462:16;3531:40;3451:128;3388:191;:::o;26770:104::-;26839:27;26849:2;26853:8;26839:27;;;;;;;;;;;;:9;:27::i;38135:831::-;38332:171;;-1:-1:-1;;;38332:171:0;;38298:4;;-1:-1:-1;;;;;38332:45:0;;;;;:171;;40868:10;;38434:4;;38457:7;;38483:5;;38332:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38332:171:0;;;;;;;;-1:-1:-1;;38332:171:0;;;;;;;;;;;;:::i;:::-;;;38315:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38717:6;:13;38734:1;38717:18;38713:235;;38763:40;;-1:-1:-1;;;38763:40:0;;;;;;;;;;;38713:235;38906:6;38900:13;38891:6;38887:2;38883:15;38876:38;38315:644;-1:-1:-1;;;;;;38576:81:0;-1:-1:-1;;;38576:81:0;;-1:-1:-1;38135:831:0;;;;;;:::o;46094:114::-;46154:13;46187;46180:20;;;;;:::i;40992:1992::-;41493:4;41487:11;;41500:3;41483:21;;41578:17;;;;42274:11;;;42153:5;42406:2;42420;42410:13;;42402:22;42274:11;42389:36;42461:2;42451:13;;42045:697;42480:4;42045:697;;;42671:1;42666:3;42662:11;42655:18;;42722:2;42716:4;42712:13;42708:2;42704:22;42699:3;42691:36;42575:2;42565:13;;42045:697;;;-1:-1:-1;42772:13:0;;;-1:-1:-1;;42887:12:0;;;42947:19;;;42887:12;40992:1992;-1:-1:-1;40992:1992:0:o;27247:2461::-;27393:13;;-1:-1:-1;;;;;27421:16:0;;27417:48;;27446:19;;-1:-1:-1;;;27446:19:0;;;;;;;;;;;27417:48;27480:8;27492:1;27480:13;27476:44;;27502:18;;-1:-1:-1;;;27502:18:0;;;;;;;;;;;27476:44;-1:-1:-1;;;;;28069:22:0;;;;;;:18;:22;;;;12964:2;28069:22;;;:104;;28141:31;28112:61;;28069:104;;;28416:31;;;:17;:31;;;;;28509:15;13481:3;28509:41;28467:84;;-1:-1:-1;28587:13:0;;13740:3;28572:56;28467:162;28416:213;;:31;;28710:23;;;;28754:14;:19;28750:826;;28794:504;28825:38;;28850:12;;-1:-1:-1;;;;;28825:38:0;;;28842:1;;28825:38;;28842:1;;28825:38;28917:212;28986:1;29019:2;29052:14;;;;;;29097:5;28917:30;:212::i;:::-;28886:365;;29187:40;;-1:-1:-1;;;29187:40:0;;;;;;;;;;;28886:365;29293:3;29278:12;:18;28794:504;;29379:12;29362:13;;:29;29358:43;;29393:8;;;29358:43;28750:826;;;29442:119;29473:40;;29498:14;;;;;-1:-1:-1;;;;;29473:40:0;;;29490:1;;29473:40;;29490:1;;29473:40;29556:3;29541:12;:18;29442:119;;28750:826;-1:-1:-1;29590:13:0;:28;29640:60;29669:1;29673:2;29677:12;29691:8;29640:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;5753:356::-;5955:2;5937:21;;;5974:18;;;5967:30;6033:34;6028:2;6013:18;;6006:62;6100:2;6085:18;;5753:356::o;6114:127::-;6175:10;6170:3;6166:20;6163:1;6156:31;6206:4;6203:1;6196:15;6230:4;6227:1;6220:15;6246:125;6286:4;6314:1;6311;6308:8;6305:34;;;6319:18;;:::i;:::-;-1:-1:-1;6356:9:1;;6246:125::o;7706:397::-;7908:2;7890:21;;;7947:2;7927:18;;;7920:30;7986:34;7981:2;7966:18;;7959:62;-1:-1:-1;;;8052:2:1;8037:18;;8030:31;8093:3;8078:19;;7706:397::o;8108:128::-;8148:3;8179:1;8175:6;8172:1;8169:13;8166:39;;;8185:18;;:::i;:::-;-1:-1:-1;8221:9:1;;8108:128::o;9008:168::-;9048:7;9114:1;9110;9106:6;9102:14;9099:1;9096:21;9091:1;9084:9;9077:17;9073:45;9070:71;;;9121:18;;:::i;:::-;-1:-1:-1;9161:9:1;;9008:168::o;10644:470::-;10823:3;10861:6;10855:13;10877:53;10923:6;10918:3;10911:4;10903:6;10899:17;10877:53;:::i;:::-;10993:13;;10952:16;;;;11015:57;10993:13;10952:16;11049:4;11037:17;;11015:57;:::i;:::-;11088:20;;10644:470;-1:-1:-1;;;;10644:470:1:o;11526:489::-;-1:-1:-1;;;;;11795:15:1;;;11777:34;;11847:15;;11842:2;11827:18;;11820:43;11894:2;11879:18;;11872:34;;;11942:3;11937:2;11922:18;;11915:31;;;11720:4;;11963:46;;11989:19;;11981:6;11963:46;:::i;:::-;11955:54;11526:489;-1:-1:-1;;;;;;11526:489:1:o;12020:249::-;12089:6;12142:2;12130:9;12121:7;12117:23;12113:32;12110:52;;;12158:1;12155;12148:12;12110:52;12190:9;12184:16;12209:30;12233:5;12209:30;:::i

Swarm Source

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