ETH Price: $3,157.29 (-8.24%)
Gas: 4 Gwei

Token

Gochi (GOCHI)
 

Overview

Max Total Supply

242 GOCHI

Holders

215

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vovan6996.eth
Balance
1 GOCHI
0x45e351cc1e6c28e16e74c8ade53149bd5368c772
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:
Gochi

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/Gochi.sol


pragma solidity ^0.8.14;




contract Gochi is Ownable, ERC721A {
    uint256 public maxSupply = 9999;
    uint256 public maxPublicSupply = 7500;

    uint256 public gochiListTime;
    uint256 public publicSaleTime;
    uint256 public publicPrice = 0.0099 ether;

    bytes32 public merkleRootGochi;

    string private _baseTokenURI;

    constructor() ERC721A("Gochi", "GOCHI") {}

    function gochiListMint(bytes32[] memory proof) external {
        uint256 supply = totalSupply();
        require(
            gochiListTime != 0 && block.timestamp >= gochiListTime,
            "Sale has not started yet"
        );
        require(_getAux(msg.sender) < 1, "Already minted");
        require(
            authGochiList(proof, keccak256(abi.encodePacked(msg.sender))),
            "Address not in Gochi List"
        );
        require(supply + 1 <= maxSupply, "Reached max supply");
        _setAux(msg.sender, 1);
        _mint(msg.sender, 1);
    }

    function publicMint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(
            publicSaleTime != 0 && block.timestamp >= publicSaleTime,
            "Sale has not started yet"
        );
        require(quantity < 3, "Can not mint this many");
        require(
            supply + quantity <= maxPublicSupply &&
                supply + quantity <= maxSupply,
            "Reached max supply"
        );
        require(msg.value >= publicPrice * quantity);
        _mint(msg.sender, quantity);
    }

    function authGochiList(bytes32[] memory proof, bytes32 leaf)
        public
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, merkleRootGochi, leaf);
    }

    function getGochiMinted() public view returns (uint256) {
        return _getAux(msg.sender);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function devMint(uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "Reached max supply");
        _safeMint(msg.sender, quantity);
    }

    function setPublicPrice(uint256 price) external onlyOwner {
        publicPrice = price;
    }

    function setMaxPublicSupply(uint256 _maxPublicSupply) external onlyOwner {
        maxPublicSupply = _maxPublicSupply;
    }

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

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

    function setGochiListTime(uint256 timestamp) external onlyOwner {
        gochiListTime = timestamp;
    }

    function setPublicSaleTime(uint256 timestamp) external onlyOwner {
        publicSaleTime = timestamp;
    }

    function setMerkleRootGochi(bytes32 root) external onlyOwner {
        merkleRootGochi = root;
    }

    function withdraw() external onlyOwner {
        uint256 funds = address(this).balance;
        (bool succ, ) = payable(msg.sender).call{value: funds}("");
        require(succ, "transfer failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"authGochiList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGochiMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"gochiListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gochiListTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootGochi","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleTime","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":[{"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":"timestamp","type":"uint256"}],"name":"setGochiListTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicSupply","type":"uint256"}],"name":"setMaxPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRootGochi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261270f600955611d4c600a5566232bff5f46c000600d553480156200002857600080fd5b5060405180604001604052806005815260200164476f63686960d81b81525060405180604001604052806005815260200164474f43484960d81b8152506200007f62000079620000b760201b60201c565b620000bb565b8151620000949060039060208501906200010b565b508051620000aa9060049060208401906200010b565b50506001805550620001ed565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200011990620001b1565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600181811c90821680620001c657607f821691505b602082108103620001e757634e487b7160e01b600052602260045260246000fd5b50919050565b611b6c80620001fd6000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063c87b56dd116100a0578063e5bcf0631161006f578063e5bcf063146105a9578063e985e9c5146105c9578063e9aea35c14610612578063edefc75014610628578063f2fde38b1461064857600080fd5b8063c87b56dd1461053d578063d5abeb011461055d578063e074064f14610573578063e3b6a7381461058957600080fd5b806395d89b41116100e757806395d89b41146104b2578063a22cb465146104c7578063a945bf80146104e7578063b88d4fde146104fd578063c62752551461051d57600080fd5b80636352211e1461043f57806370a082311461045f578063715018a61461047f5780638da5cb5b1461049457600080fd5b80632344be0a1161019b578063375a069a1161016a578063375a069a146103aa5780633ccfd60b146103ca5780634196de82146103df57806342842e0e146103ff57806355f804b31461041f57600080fd5b80632344be0a1461034b57806323b872dd1461036157806326a74d8e146103815780632db115441461039757600080fd5b806311b7e5e7116101d757806311b7e5e7146102ba57806318160ddd146102da5780631c1e605d14610306578063205d49581461032b57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046115ab565b610668565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ba565b6040516102359190611620565b34801561026c57600080fd5b5061028061027b366004611633565b61074c565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611668565b610790565b005b3480156102c657600080fd5b506102b86102d5366004611633565b610830565b3480156102e657600080fd5b506102f8600254600154036000190190565b604051908152602001610235565b34801561031257600080fd5b503360009081526006602052604090205460c01c6102f8565b34801561033757600080fd5b506102b8610346366004611759565b61083d565b34801561035757600080fd5b506102f8600c5481565b34801561036d57600080fd5b506102b861037c36600461178e565b6109f9565b34801561038d57600080fd5b506102f8600a5481565b6102b86103a5366004611633565b610b91565b3480156103b657600080fd5b506102b86103c5366004611633565b610cb1565b3480156103d657600080fd5b506102b8610d03565b3480156103eb57600080fd5b506102b86103fa366004611633565b610d97565b34801561040b57600080fd5b506102b861041a36600461178e565b610da4565b34801561042b57600080fd5b506102b861043a3660046117ca565b610dc4565b34801561044b57600080fd5b5061028061045a366004611633565b610dd8565b34801561046b57600080fd5b506102f861047a36600461183c565b610de3565b34801561048b57600080fd5b506102b8610e32565b3480156104a057600080fd5b506000546001600160a01b0316610280565b3480156104be57600080fd5b50610253610e46565b3480156104d357600080fd5b506102b86104e2366004611857565b610e55565b3480156104f357600080fd5b506102f8600d5481565b34801561050957600080fd5b506102b8610518366004611893565b610eea565b34801561052957600080fd5b506102b8610538366004611633565b610f34565b34801561054957600080fd5b50610253610558366004611633565b610f41565b34801561056957600080fd5b506102f860095481565b34801561057f57600080fd5b506102f8600b5481565b34801561059557600080fd5b506102b86105a4366004611633565b610fc5565b3480156105b557600080fd5b506102b86105c4366004611633565b610fd2565b3480156105d557600080fd5b506102296105e4366004611953565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b506102f8600e5481565b34801561063457600080fd5b50610229610643366004611986565b610fdf565b34801561065457600080fd5b506102b861066336600461183c565b610fee565b60006301ffc9a760e01b6001600160e01b03198316148061069957506380ac58cd60e01b6001600160e01b03198316145b806106b45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106c9906119cb565b80601f01602080910402602001604051908101604052809291908181526020018280546106f5906119cb565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b600061075782611064565b610774576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079b82610dd8565b9050336001600160a01b038216146107d4576107b781336105e4565b6107d4576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610838611099565b600c55565b6000610850600254600154036000190190565b9050600b546000141580156108675750600b544210155b6108b35760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064015b60405180910390fd5b3360009081526006602052604090205460019060c01c67ffffffffffffffff16106109115760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016108aa565b6040516bffffffffffffffffffffffff193360601b16602082015261095090839060340160405160208183030381529060405280519060200120610fdf565b61099c5760405162461bcd60e51b815260206004820152601960248201527f41646472657373206e6f7420696e20476f636869204c6973740000000000000060448201526064016108aa565b6009546109aa826001611a1b565b11156109c85760405162461bcd60e51b81526004016108aa90611a33565b33600090815260066020526040902080546001600160c01b0316600160c01b1790556109f53360016110f3565b5050565b6000610a04826111f1565b9050836001600160a01b0316816001600160a01b031614610a375760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a8457610a6786336105e4565b610a8457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610aab57604051633a954ecd60e21b815260040160405180910390fd5b8015610ab657600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610b4857600184016000818152600560205260408120549003610b46576001548114610b465760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000610ba4600254600154036000190190565b9050600c54600014158015610bbb5750600c544210155b610c025760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064016108aa565b60038210610c4b5760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108aa565b600a54610c588383611a1b565b11158015610c715750600954610c6e8383611a1b565b11155b610c8d5760405162461bcd60e51b81526004016108aa90611a33565b81600d54610c9b9190611a5f565b341015610ca757600080fd5b6109f533836110f3565b610cb9611099565b60095481610cce600254600154036000190190565b610cd89190611a1b565b1115610cf65760405162461bcd60e51b81526004016108aa90611a33565b610d003382611260565b50565b610d0b611099565b6040514790600090339083908381818185875af1925050503d8060008114610d4f576040519150601f19603f3d011682016040523d82523d6000602084013e610d54565b606091505b50509050806109f55760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016108aa565b610d9f611099565b600e55565b610dbf83838360405180602001604052806000815250610eea565b505050565b610dcc611099565b610dbf600f83836114fc565b60006106b4826111f1565b60006001600160a01b038216610e0c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610e3a611099565b610e44600061127a565b565b6060600480546106c9906119cb565b336001600160a01b03831603610e7e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef58484846109f9565b6001600160a01b0383163b15610f2e57610f11848484846112ca565b610f2e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f3c611099565b600d55565b6060610f4c82611064565b610f6957604051630a14c4b560e41b815260040160405180910390fd5b6000610f736113b6565b90508051600003610f935760405180602001604052806000815250610fbe565b80610f9d846113c5565b604051602001610fae929190611a7e565b6040516020818303038152906040525b9392505050565b610fcd611099565b600b55565b610fda611099565b600a55565b6000610fbe83600e54846113fd565b610ff6611099565b6001600160a01b03811661105b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108aa565b610d008161127a565b600081600111158015611078575060015482105b80156106b4575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610e445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108aa565b60015460008290036111185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146111c757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161118f565b50816000036111e857604051622e076360e81b815260040160405180910390fd5b60015550505050565b60008180600111611247576001548110156112475760008181526005602052604081205490600160e01b82169003611245575b80600003610fbe575060001901600081815260056020526040902054611224565b505b604051636f96cda160e11b815260040160405180910390fd5b6109f5828260405180602001604052806000815250611413565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112ff903390899088908890600401611aad565b6020604051808303816000875af192505050801561133a575060408051601f3d908101601f1916820190925261133791810190611aea565b60015b611398573d808015611368576040519150601f19603f3d011682016040523d82523d6000602084013e61136d565b606091505b508051600003611390576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546106c9906119cb565b604080516080019081905280825b600183039250600a81066030018353600a9004806113d35750819003601f19909101908152919050565b60008261140a8584611480565b14949350505050565b61141d83836110f3565b6001600160a01b0383163b15610dbf576001548281035b61144760008683806001019450866112ca565b611464576040516368d2bf6b60e11b815260040160405180910390fd5b81811061143457816001541461147957600080fd5b5050505050565b600081815b84518110156114c5576114b1828683815181106114a4576114a4611b07565b60200260200101516114cd565b9150806114bd81611b1d565b915050611485565b509392505050565b60008183106114e9576000828152602084905260409020610fbe565b6000838152602083905260409020610fbe565b828054611508906119cb565b90600052602060002090601f01602090048101928261152a5760008555611570565b82601f106115435782800160ff19823516178555611570565b82800160010185558215611570579182015b82811115611570578235825591602001919060010190611555565b5061157c929150611580565b5090565b5b8082111561157c5760008155600101611581565b6001600160e01b031981168114610d0057600080fd5b6000602082840312156115bd57600080fd5b8135610fbe81611595565b60005b838110156115e35781810151838201526020016115cb565b83811115610f2e5750506000910152565b6000815180845261160c8160208601602086016115c8565b601f01601f19169290920160200192915050565b602081526000610fbe60208301846115f4565b60006020828403121561164557600080fd5b5035919050565b80356001600160a01b038116811461166357600080fd5b919050565b6000806040838503121561167b57600080fd5b6116848361164c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156116d1576116d1611692565b604052919050565b600082601f8301126116ea57600080fd5b8135602067ffffffffffffffff82111561170657611706611692565b8160051b6117158282016116a8565b928352848101820192828101908785111561172f57600080fd5b83870192505b8483101561174e57823582529183019190830190611735565b979650505050505050565b60006020828403121561176b57600080fd5b813567ffffffffffffffff81111561178257600080fd5b6113ae848285016116d9565b6000806000606084860312156117a357600080fd5b6117ac8461164c565b92506117ba6020850161164c565b9150604084013590509250925092565b600080602083850312156117dd57600080fd5b823567ffffffffffffffff808211156117f557600080fd5b818501915085601f83011261180957600080fd5b81358181111561181857600080fd5b86602082850101111561182a57600080fd5b60209290920196919550909350505050565b60006020828403121561184e57600080fd5b610fbe8261164c565b6000806040838503121561186a57600080fd5b6118738361164c565b91506020830135801515811461188857600080fd5b809150509250929050565b600080600080608085870312156118a957600080fd5b6118b28561164c565b935060206118c181870161164c565b935060408601359250606086013567ffffffffffffffff808211156118e557600080fd5b818801915088601f8301126118f957600080fd5b81358181111561190b5761190b611692565b61191d601f8201601f191685016116a8565b9150808252898482850101111561193357600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561196657600080fd5b61196f8361164c565b915061197d6020840161164c565b90509250929050565b6000806040838503121561199957600080fd5b823567ffffffffffffffff8111156119b057600080fd5b6119bc858286016116d9565b95602094909401359450505050565b600181811c908216806119df57607f821691505b6020821081036119ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a2e57611a2e611a05565b500190565b60208082526012908201527152656163686564206d617820737570706c7960701b604082015260600190565b6000816000190483118215151615611a7957611a79611a05565b500290565b60008351611a908184602088016115c8565b835190830190611aa48183602088016115c8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ae0908301846115f4565b9695505050505050565b600060208284031215611afc57600080fd5b8151610fbe81611595565b634e487b7160e01b600052603260045260246000fd5b600060018201611b2f57611b2f611a05565b506001019056fea2646970667358221220e0c8159d85d6b769e33ecb8a39d25fdde863e1c44d0c80e5c0199c29cab1ba4364736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063c87b56dd116100a0578063e5bcf0631161006f578063e5bcf063146105a9578063e985e9c5146105c9578063e9aea35c14610612578063edefc75014610628578063f2fde38b1461064857600080fd5b8063c87b56dd1461053d578063d5abeb011461055d578063e074064f14610573578063e3b6a7381461058957600080fd5b806395d89b41116100e757806395d89b41146104b2578063a22cb465146104c7578063a945bf80146104e7578063b88d4fde146104fd578063c62752551461051d57600080fd5b80636352211e1461043f57806370a082311461045f578063715018a61461047f5780638da5cb5b1461049457600080fd5b80632344be0a1161019b578063375a069a1161016a578063375a069a146103aa5780633ccfd60b146103ca5780634196de82146103df57806342842e0e146103ff57806355f804b31461041f57600080fd5b80632344be0a1461034b57806323b872dd1461036157806326a74d8e146103815780632db115441461039757600080fd5b806311b7e5e7116101d757806311b7e5e7146102ba57806318160ddd146102da5780631c1e605d14610306578063205d49581461032b57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046115ab565b610668565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ba565b6040516102359190611620565b34801561026c57600080fd5b5061028061027b366004611633565b61074c565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611668565b610790565b005b3480156102c657600080fd5b506102b86102d5366004611633565b610830565b3480156102e657600080fd5b506102f8600254600154036000190190565b604051908152602001610235565b34801561031257600080fd5b503360009081526006602052604090205460c01c6102f8565b34801561033757600080fd5b506102b8610346366004611759565b61083d565b34801561035757600080fd5b506102f8600c5481565b34801561036d57600080fd5b506102b861037c36600461178e565b6109f9565b34801561038d57600080fd5b506102f8600a5481565b6102b86103a5366004611633565b610b91565b3480156103b657600080fd5b506102b86103c5366004611633565b610cb1565b3480156103d657600080fd5b506102b8610d03565b3480156103eb57600080fd5b506102b86103fa366004611633565b610d97565b34801561040b57600080fd5b506102b861041a36600461178e565b610da4565b34801561042b57600080fd5b506102b861043a3660046117ca565b610dc4565b34801561044b57600080fd5b5061028061045a366004611633565b610dd8565b34801561046b57600080fd5b506102f861047a36600461183c565b610de3565b34801561048b57600080fd5b506102b8610e32565b3480156104a057600080fd5b506000546001600160a01b0316610280565b3480156104be57600080fd5b50610253610e46565b3480156104d357600080fd5b506102b86104e2366004611857565b610e55565b3480156104f357600080fd5b506102f8600d5481565b34801561050957600080fd5b506102b8610518366004611893565b610eea565b34801561052957600080fd5b506102b8610538366004611633565b610f34565b34801561054957600080fd5b50610253610558366004611633565b610f41565b34801561056957600080fd5b506102f860095481565b34801561057f57600080fd5b506102f8600b5481565b34801561059557600080fd5b506102b86105a4366004611633565b610fc5565b3480156105b557600080fd5b506102b86105c4366004611633565b610fd2565b3480156105d557600080fd5b506102296105e4366004611953565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b506102f8600e5481565b34801561063457600080fd5b50610229610643366004611986565b610fdf565b34801561065457600080fd5b506102b861066336600461183c565b610fee565b60006301ffc9a760e01b6001600160e01b03198316148061069957506380ac58cd60e01b6001600160e01b03198316145b806106b45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106c9906119cb565b80601f01602080910402602001604051908101604052809291908181526020018280546106f5906119cb565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b600061075782611064565b610774576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079b82610dd8565b9050336001600160a01b038216146107d4576107b781336105e4565b6107d4576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610838611099565b600c55565b6000610850600254600154036000190190565b9050600b546000141580156108675750600b544210155b6108b35760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064015b60405180910390fd5b3360009081526006602052604090205460019060c01c67ffffffffffffffff16106109115760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016108aa565b6040516bffffffffffffffffffffffff193360601b16602082015261095090839060340160405160208183030381529060405280519060200120610fdf565b61099c5760405162461bcd60e51b815260206004820152601960248201527f41646472657373206e6f7420696e20476f636869204c6973740000000000000060448201526064016108aa565b6009546109aa826001611a1b565b11156109c85760405162461bcd60e51b81526004016108aa90611a33565b33600090815260066020526040902080546001600160c01b0316600160c01b1790556109f53360016110f3565b5050565b6000610a04826111f1565b9050836001600160a01b0316816001600160a01b031614610a375760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a8457610a6786336105e4565b610a8457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610aab57604051633a954ecd60e21b815260040160405180910390fd5b8015610ab657600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610b4857600184016000818152600560205260408120549003610b46576001548114610b465760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000610ba4600254600154036000190190565b9050600c54600014158015610bbb5750600c544210155b610c025760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064016108aa565b60038210610c4b5760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108aa565b600a54610c588383611a1b565b11158015610c715750600954610c6e8383611a1b565b11155b610c8d5760405162461bcd60e51b81526004016108aa90611a33565b81600d54610c9b9190611a5f565b341015610ca757600080fd5b6109f533836110f3565b610cb9611099565b60095481610cce600254600154036000190190565b610cd89190611a1b565b1115610cf65760405162461bcd60e51b81526004016108aa90611a33565b610d003382611260565b50565b610d0b611099565b6040514790600090339083908381818185875af1925050503d8060008114610d4f576040519150601f19603f3d011682016040523d82523d6000602084013e610d54565b606091505b50509050806109f55760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016108aa565b610d9f611099565b600e55565b610dbf83838360405180602001604052806000815250610eea565b505050565b610dcc611099565b610dbf600f83836114fc565b60006106b4826111f1565b60006001600160a01b038216610e0c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610e3a611099565b610e44600061127a565b565b6060600480546106c9906119cb565b336001600160a01b03831603610e7e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef58484846109f9565b6001600160a01b0383163b15610f2e57610f11848484846112ca565b610f2e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f3c611099565b600d55565b6060610f4c82611064565b610f6957604051630a14c4b560e41b815260040160405180910390fd5b6000610f736113b6565b90508051600003610f935760405180602001604052806000815250610fbe565b80610f9d846113c5565b604051602001610fae929190611a7e565b6040516020818303038152906040525b9392505050565b610fcd611099565b600b55565b610fda611099565b600a55565b6000610fbe83600e54846113fd565b610ff6611099565b6001600160a01b03811661105b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108aa565b610d008161127a565b600081600111158015611078575060015482105b80156106b4575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610e445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108aa565b60015460008290036111185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146111c757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161118f565b50816000036111e857604051622e076360e81b815260040160405180910390fd5b60015550505050565b60008180600111611247576001548110156112475760008181526005602052604081205490600160e01b82169003611245575b80600003610fbe575060001901600081815260056020526040902054611224565b505b604051636f96cda160e11b815260040160405180910390fd5b6109f5828260405180602001604052806000815250611413565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112ff903390899088908890600401611aad565b6020604051808303816000875af192505050801561133a575060408051601f3d908101601f1916820190925261133791810190611aea565b60015b611398573d808015611368576040519150601f19603f3d011682016040523d82523d6000602084013e61136d565b606091505b508051600003611390576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546106c9906119cb565b604080516080019081905280825b600183039250600a81066030018353600a9004806113d35750819003601f19909101908152919050565b60008261140a8584611480565b14949350505050565b61141d83836110f3565b6001600160a01b0383163b15610dbf576001548281035b61144760008683806001019450866112ca565b611464576040516368d2bf6b60e11b815260040160405180910390fd5b81811061143457816001541461147957600080fd5b5050505050565b600081815b84518110156114c5576114b1828683815181106114a4576114a4611b07565b60200260200101516114cd565b9150806114bd81611b1d565b915050611485565b509392505050565b60008183106114e9576000828152602084905260409020610fbe565b6000838152602083905260409020610fbe565b828054611508906119cb565b90600052602060002090601f01602090048101928261152a5760008555611570565b82601f106115435782800160ff19823516178555611570565b82800160010185558215611570579182015b82811115611570578235825591602001919060010190611555565b5061157c929150611580565b5090565b5b8082111561157c5760008155600101611581565b6001600160e01b031981168114610d0057600080fd5b6000602082840312156115bd57600080fd5b8135610fbe81611595565b60005b838110156115e35781810151838201526020016115cb565b83811115610f2e5750506000910152565b6000815180845261160c8160208601602086016115c8565b601f01601f19169290920160200192915050565b602081526000610fbe60208301846115f4565b60006020828403121561164557600080fd5b5035919050565b80356001600160a01b038116811461166357600080fd5b919050565b6000806040838503121561167b57600080fd5b6116848361164c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156116d1576116d1611692565b604052919050565b600082601f8301126116ea57600080fd5b8135602067ffffffffffffffff82111561170657611706611692565b8160051b6117158282016116a8565b928352848101820192828101908785111561172f57600080fd5b83870192505b8483101561174e57823582529183019190830190611735565b979650505050505050565b60006020828403121561176b57600080fd5b813567ffffffffffffffff81111561178257600080fd5b6113ae848285016116d9565b6000806000606084860312156117a357600080fd5b6117ac8461164c565b92506117ba6020850161164c565b9150604084013590509250925092565b600080602083850312156117dd57600080fd5b823567ffffffffffffffff808211156117f557600080fd5b818501915085601f83011261180957600080fd5b81358181111561181857600080fd5b86602082850101111561182a57600080fd5b60209290920196919550909350505050565b60006020828403121561184e57600080fd5b610fbe8261164c565b6000806040838503121561186a57600080fd5b6118738361164c565b91506020830135801515811461188857600080fd5b809150509250929050565b600080600080608085870312156118a957600080fd5b6118b28561164c565b935060206118c181870161164c565b935060408601359250606086013567ffffffffffffffff808211156118e557600080fd5b818801915088601f8301126118f957600080fd5b81358181111561190b5761190b611692565b61191d601f8201601f191685016116a8565b9150808252898482850101111561193357600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561196657600080fd5b61196f8361164c565b915061197d6020840161164c565b90509250929050565b6000806040838503121561199957600080fd5b823567ffffffffffffffff8111156119b057600080fd5b6119bc858286016116d9565b95602094909401359450505050565b600181811c908216806119df57607f821691505b6020821081036119ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a2e57611a2e611a05565b500190565b60208082526012908201527152656163686564206d617820737570706c7960701b604082015260600190565b6000816000190483118215151615611a7957611a79611a05565b500290565b60008351611a908184602088016115c8565b835190830190611aa48183602088016115c8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ae0908301846115f4565b9695505050505050565b600060208284031215611afc57600080fd5b8151610fbe81611595565b634e487b7160e01b600052603260045260246000fd5b600060018201611b2f57611b2f611a05565b506001019056fea2646970667358221220e0c8159d85d6b769e33ecb8a39d25fdde863e1c44d0c80e5c0199c29cab1ba4364736f6c634300080e0033

Deployed Bytecode Sourcemap

63212:3171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30753:639;;;;;;;;;;-1:-1:-1;30753:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30753:639:0;;;;;;;;31655:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38138:218::-;;;;;;;;;;-1:-1:-1;38138:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;38138:218:0;1528:203:1;37579:400:0;;;;;;;;;;-1:-1:-1;37579:400:0;;;;;:::i;:::-;;:::i;:::-;;65945:110;;;;;;;;;;-1:-1:-1;65945:110:0;;;;;:::i;:::-;;:::i;27406:323::-;;;;;;;;;;;;27680:12;;65147:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;;;;2319:25:1;;;2307:2;2292:18;27406:323:0;2173:177:1;64946:101:0;;;;;;;;;;-1:-1:-1;65028:10:0;64993:7;29565:25;;;:18;:25;;;;;;23123:3;29565:40;64946:101;;63585:581;;;;;;;;;;-1:-1:-1;63585:581:0;;;;;:::i;:::-;;:::i;63373:29::-;;;;;;;;;;;;;;;;41845:2817;;;;;;;;;;-1:-1:-1;41845:2817:0;;;;;:::i;:::-;;:::i;63292:37::-;;;;;;;;;;;;;;;;64174:562;;;;;;:::i;:::-;;:::i;65164:183::-;;;;;;;;;;-1:-1:-1;65164:183:0;;;;;:::i;:::-;;:::i;66173:207::-;;;;;;;;;;;;;:::i;66063:102::-;;;;;;;;;;-1:-1:-1;66063:102:0;;;;;:::i;:::-;;:::i;44758:185::-;;;;;;;;;;-1:-1:-1;44758:185:0;;;;;:::i;:::-;;:::i;65715:106::-;;;;;;;;;;-1:-1:-1;65715:106:0;;;;;:::i;:::-;;:::i;33048:152::-;;;;;;;;;;-1:-1:-1;33048:152:0;;;;;:::i;:::-;;:::i;28590:233::-;;;;;;;;;;-1:-1:-1;28590:233:0;;;;;:::i;:::-;;:::i;11501:103::-;;;;;;;;;;;;;:::i;10853:87::-;;;;;;;;;;-1:-1:-1;10899:7:0;10926:6;-1:-1:-1;;;;;10926:6:0;10853:87;;31831:104;;;;;;;;;;;;;:::i;38696:308::-;;;;;;;;;;-1:-1:-1;38696:308:0;;;;;:::i;:::-;;:::i;63409:41::-;;;;;;;;;;;;;;;;45541:399;;;;;;;;;;-1:-1:-1;45541:399:0;;;;;:::i;:::-;;:::i;65355:96::-;;;;;;;;;;-1:-1:-1;65355:96:0;;;;;:::i;:::-;;:::i;32041:318::-;;;;;;;;;;-1:-1:-1;32041:318:0;;;;;:::i;:::-;;:::i;63254:31::-;;;;;;;;;;;;;;;;63338:28;;;;;;;;;;;;;;;;65829:108;;;;;;;;;;-1:-1:-1;65829:108:0;;;;;:::i;:::-;;:::i;65459:126::-;;;;;;;;;;-1:-1:-1;65459:126:0;;;;;:::i;:::-;;:::i;39161:164::-;;;;;;;;;;-1:-1:-1;39161:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39282:25:0;;;39258:4;39282:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39161:164;63459:30;;;;;;;;;;;;;;;;64744:194;;;;;;;;;;-1:-1:-1;64744:194:0;;;;;:::i;:::-;;:::i;11759:201::-;;;;;;;;;;-1:-1:-1;11759:201:0;;;;;:::i;:::-;;:::i;30753:639::-;30838:4;-1:-1:-1;;;;;;;;;31162:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;31239:25:0;;;31162:102;:179;;;-1:-1:-1;;;;;;;;;;31316:25:0;;;31162:179;31142:199;30753:639;-1:-1:-1;;30753:639:0:o;31655:100::-;31709:13;31742:5;31735:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31655:100;:::o;38138:218::-;38214:7;38239:16;38247:7;38239;:16::i;:::-;38234:64;;38264:34;;-1:-1:-1;;;38264:34:0;;;;;;;;;;;38234:64;-1:-1:-1;38318:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;38318:30:0;;38138:218::o;37579:400::-;37660:13;37676:16;37684:7;37676;:16::i;:::-;37660:32;-1:-1:-1;61436:10:0;-1:-1:-1;;;;;37709:28:0;;;37705:175;;37757:44;37774:5;61436:10;39161:164;:::i;37757:44::-;37752:128;;37829:35;;-1:-1:-1;;;37829:35:0;;;;;;;;;;;37752:128;37892:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;37892:35:0;-1:-1:-1;;;;;37892:35:0;;;;;;;;;37943:28;;37892:24;;37943:28;;;;;;;37649:330;37579:400;;:::o;65945:110::-;10739:13;:11;:13::i;:::-;66021:14:::1;:26:::0;65945:110::o;63585:581::-;63652:14;63669:13;27680:12;;65147:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;63669:13;63652:30;;63715:13;;63732:1;63715:18;;:54;;;;;63756:13;;63737:15;:32;;63715:54;63693:128;;;;-1:-1:-1;;;63693:128:0;;7935:2:1;63693:128:0;;;7917:21:1;7974:2;7954:18;;;7947:30;-1:-1:-1;;;7993:18:1;;;7986:54;8057:18;;63693:128:0;;;;;;;;;63848:10;29532:6;29565:25;;;:18;:25;;;;;;63862:1;;23123:3;29565:40;63840:23;;;63832:50;;;;-1:-1:-1;;;63832:50:0;;8288:2:1;63832:50:0;;;8270:21:1;8327:2;8307:18;;;8300:30;-1:-1:-1;;;8346:18:1;;;8339:44;8400:18;;63832:50:0;8086:338:1;63832:50:0;63946:28;;-1:-1:-1;;63963:10:0;8578:2:1;8574:15;8570:53;63946:28:0;;;8558:66:1;63915:61:0;;63929:5;;8640:12:1;;63946:28:0;;;;;;;;;;;;63936:39;;;;;;63915:13;:61::i;:::-;63893:136;;;;-1:-1:-1;;;63893:136:0;;8865:2:1;63893:136:0;;;8847:21:1;8904:2;8884:18;;;8877:30;8943:27;8923:18;;;8916:55;8988:18;;63893:136:0;8663:349:1;63893:136:0;64062:9;;64048:10;:6;64057:1;64048:10;:::i;:::-;:23;;64040:54;;;;-1:-1:-1;;;64040:54:0;;;;;;;:::i;:::-;64113:10;29874:14;29891:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;30091:32:0;-1:-1:-1;;;30090:63:0;30164:34;;64138:20;64144:10;64156:1;64138:5;:20::i;:::-;63641:525;63585:581;:::o;41845:2817::-;41979:27;42009;42028:7;42009:18;:27::i;:::-;41979:57;;42094:4;-1:-1:-1;;;;;42053:45:0;42069:19;-1:-1:-1;;;;;42053:45:0;;42049:86;;42107:28;;-1:-1:-1;;;42107:28:0;;;;;;;;;;;42049:86;42149:27;40959:24;;;:15;:24;;;;;41181:26;;61436:10;40584:30;;;-1:-1:-1;;;;;40277:28:0;;40562:20;;;40559:56;42335:180;;42428:43;42445:4;61436:10;39161:164;:::i;42428:43::-;42423:92;;42480:35;;-1:-1:-1;;;42480:35:0;;;;;;;;;;;42423:92;-1:-1:-1;;;;;42532:16:0;;42528:52;;42557:23;;-1:-1:-1;;;42557:23:0;;;;;;;;;;;42528:52;42729:15;42726:160;;;42869:1;42848:19;42841:30;42726:160;-1:-1:-1;;;;;43266:24:0;;;;;;;:18;:24;;;;;;43264:26;;-1:-1:-1;;43264:26:0;;;43335:22;;;;;;;;;43333:24;;-1:-1:-1;43333:24:0;;;36437:11;36412:23;36408:41;36395:63;-1:-1:-1;;;36395:63:0;43628:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;43923:47:0;;:52;;43919:627;;44028:1;44018:11;;43996:19;44151:30;;;:17;:30;;;;;;:35;;44147:384;;44289:13;;44274:11;:28;44270:242;;44436:30;;;;:17;:30;;;;;:52;;;44270:242;43977:569;43919:627;44593:7;44589:2;-1:-1:-1;;;;;44574:27:0;44583:4;-1:-1:-1;;;;;44574:27:0;;;;;;;;;;;41968:2694;;;41845:2817;;;:::o;64174:562::-;64240:14;64257:13;27680:12;;65147:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;64257:13;64240:30;;64303:14;;64321:1;64303:19;;:56;;;;;64345:14;;64326:15;:33;;64303:56;64281:130;;;;-1:-1:-1;;;64281:130:0;;7935:2:1;64281:130:0;;;7917:21:1;7974:2;7954:18;;;7947:30;-1:-1:-1;;;7993:18:1;;;7986:54;8057:18;;64281:130:0;7733:348:1;64281:130:0;64441:1;64430:8;:12;64422:47;;;;-1:-1:-1;;;64422:47:0;;9831:2:1;64422:47:0;;;9813:21:1;9870:2;9850:18;;;9843:30;-1:-1:-1;;;9889:18:1;;;9882:52;9951:18;;64422:47:0;9629:346:1;64422:47:0;64523:15;;64502:17;64511:8;64502:6;:17;:::i;:::-;:36;;:87;;;;-1:-1:-1;64580:9:0;;64559:17;64568:8;64559:6;:17;:::i;:::-;:30;;64502:87;64480:155;;;;-1:-1:-1;;;64480:155:0;;;;;;;:::i;:::-;64681:8;64667:11;;:22;;;;:::i;:::-;64654:9;:35;;64646:44;;;;;;64701:27;64707:10;64719:8;64701:5;:27::i;65164:183::-;10739:13;:11;:13::i;:::-;65265:9:::1;;65253:8;65237:13;27680:12:::0;;65147:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;65237:13:::1;:24;;;;:::i;:::-;:37;;65229:68;;;;-1:-1:-1::0;;;65229:68:0::1;;;;;;;:::i;:::-;65308:31;65318:10;65330:8;65308:9;:31::i;:::-;65164:183:::0;:::o;66173:207::-;10739:13;:11;:13::i;:::-;66287:42:::1;::::0;66239:21:::1;::::0;66223:13:::1;::::0;66295:10:::1;::::0;66239:21;;66223:13;66287:42;66223:13;66287:42;66239:21;66295:10;66287:42:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66271:58;;;66348:4;66340:32;;;::::0;-1:-1:-1;;;66340:32:0;;10565:2:1;66340:32:0::1;::::0;::::1;10547:21:1::0;10604:2;10584:18;;;10577:30;-1:-1:-1;;;10623:18:1;;;10616:45;10678:18;;66340:32:0::1;10363:339:1::0;66063:102:0;10739:13;:11;:13::i;:::-;66135:15:::1;:22:::0;66063:102::o;44758:185::-;44896:39;44913:4;44919:2;44923:7;44896:39;;;;;;;;;;;;:16;:39::i;:::-;44758:185;;;:::o;65715:106::-;10739:13;:11;:13::i;:::-;65790:23:::1;:13;65806:7:::0;;65790:23:::1;:::i;33048:152::-:0;33120:7;33163:27;33182:7;33163:18;:27::i;28590:233::-;28662:7;-1:-1:-1;;;;;28686:19:0;;28682:60;;28714:28;;-1:-1:-1;;;28714:28:0;;;;;;;;;;;28682:60;-1:-1:-1;;;;;;28760:25:0;;;;;:18;:25;;;;;;22749:13;28760:55;;28590:233::o;11501:103::-;10739:13;:11;:13::i;:::-;11566:30:::1;11593:1;11566:18;:30::i;:::-;11501:103::o:0;31831:104::-;31887:13;31920:7;31913:14;;;;;:::i;38696:308::-;61436:10;-1:-1:-1;;;;;38795:31:0;;;38791:61;;38835:17;;-1:-1:-1;;;38835:17:0;;;;;;;;;;;38791:61;61436:10;38865:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;38865:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;38865:60:0;;;;;;;;;;38941:55;;540:41:1;;;38865:49:0;;61436:10;38941:55;;513:18:1;38941:55:0;;;;;;;38696:308;;:::o;45541:399::-;45708:31;45721:4;45727:2;45731:7;45708:12;:31::i;:::-;-1:-1:-1;;;;;45754:14:0;;;:19;45750:183;;45793:56;45824:4;45830:2;45834:7;45843:5;45793:30;:56::i;:::-;45788:145;;45877:40;;-1:-1:-1;;;45877:40:0;;;;;;;;;;;45788:145;45541:399;;;;:::o;65355:96::-;10739:13;:11;:13::i;:::-;65424:11:::1;:19:::0;65355:96::o;32041:318::-;32114:13;32145:16;32153:7;32145;:16::i;:::-;32140:59;;32170:29;;-1:-1:-1;;;32170:29:0;;;;;;;;;;;32140:59;32212:21;32236:10;:8;:10::i;:::-;32212:34;;32270:7;32264:21;32289:1;32264:26;:87;;;;;;;;;;;;;;;;;32317:7;32326:18;32336:7;32326:9;:18::i;:::-;32300:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32264:87;32257:94;32041:318;-1:-1:-1;;;32041:318:0:o;65829:108::-;10739:13;:11;:13::i;:::-;65904::::1;:25:::0;65829:108::o;65459:126::-;10739:13;:11;:13::i;:::-;65543:15:::1;:34:::0;65459:126::o;64744:194::-;64853:4;64882:48;64901:5;64908:15;;64925:4;64882:18;:48::i;11759:201::-;10739:13;:11;:13::i;:::-;-1:-1:-1;;;;;11848:22:0;::::1;11840:73;;;::::0;-1:-1:-1;;;11840:73:0;;11384:2:1;11840:73:0::1;::::0;::::1;11366:21:1::0;11423:2;11403:18;;;11396:30;11462:34;11442:18;;;11435:62;-1:-1:-1;;;11513:18:1;;;11506:36;11559:19;;11840:73:0::1;11182:402:1::0;11840:73:0::1;11924:28;11943:8;11924:18;:28::i;39583:282::-:0;39648:4;39704:7;65147:1;39685:26;;:66;;;;;39738:13;;39728:7;:23;39685:66;:153;;;;-1:-1:-1;;39789:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;39789:44:0;:49;;39583:282::o;11018:132::-;10899:7;10926:6;-1:-1:-1;;;;;10926:6:0;61436:10;11082:23;11074:68;;;;-1:-1:-1;;;11074:68:0;;11791:2:1;11074:68:0;;;11773:21:1;;;11810:18;;;11803:30;11869:34;11849:18;;;11842:62;11921:18;;11074:68:0;11589:356:1;49202:2454:0;49298:13;;49275:20;49326:13;;;49322:44;;49348:18;;-1:-1:-1;;;49348:18:0;;;;;;;;;;;49322:44;-1:-1:-1;;;;;49854:22:0;;;;;;:18;:22;;;;22887:2;49854:22;;;:71;;49892:32;49880:45;;49854:71;;;50168:31;;;:17;:31;;;;;-1:-1:-1;36868:15:0;;36842:24;36838:46;36437:11;36412:23;36408:41;36405:52;36395:63;;50168:173;;50403:23;;;;50168:31;;49854:22;;50902:25;49854:22;;50755:335;51170:1;51156:12;51152:20;51110:346;51211:3;51202:7;51199:16;51110:346;;51429:7;51419:8;51416:1;51389:25;51386:1;51383;51378:59;51264:1;51251:15;51110:346;;;51114:77;51489:8;51501:1;51489:13;51485:45;;51511:19;;-1:-1:-1;;;51511:19:0;;;;;;;;;;;51485:45;51547:13;:19;-1:-1:-1;44758:185:0;;;:::o;34203:1275::-;34270:7;34305;;65147:1;34354:23;34350:1061;;34407:13;;34400:4;:20;34396:1015;;;34445:14;34462:23;;;:17;:23;;;;;;;-1:-1:-1;;;34551:24:0;;:29;;34547:845;;35216:113;35223:6;35233:1;35223:11;35216:113;;-1:-1:-1;;;35294:6:0;35276:25;;;;:17;:25;;;;;;35216:113;;34547:845;34422:989;34396:1015;35439:31;;-1:-1:-1;;;35439:31:0;;;;;;;;;;;55181:112;55258:27;55268:2;55272:8;55258:27;;;;;;;;;;;;:9;:27::i;12120:191::-;12194:16;12213:6;;-1:-1:-1;;;;;12230:17:0;;;-1:-1:-1;;;;;;12230:17:0;;;;;;12263:40;;12213:6;;;;;;;12263:40;;12194:16;12263:40;12183:128;12120:191;:::o;48024:716::-;48208:88;;-1:-1:-1;;;48208:88:0;;48187:4;;-1:-1:-1;;;;;48208:45:0;;;;;:88;;61436:10;;48275:4;;48281:7;;48290:5;;48208:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48208:88:0;;;;;;;;-1:-1:-1;;48208:88:0;;;;;;;;;;;;:::i;:::-;;;48204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48491:6;:13;48508:1;48491:18;48487:235;;48537:40;;-1:-1:-1;;;48537:40:0;;;;;;;;;;;48487:235;48680:6;48674:13;48665:6;48661:2;48657:15;48650:38;48204:529;-1:-1:-1;;;;;;48367:64:0;-1:-1:-1;;;48367:64:0;;-1:-1:-1;48204:529:0;48024:716;;;;;;:::o;65593:114::-;65653:13;65686;65679:20;;;;;:::i;61556:1581::-;62039:4;62033:11;;62046:4;62029:22;62125:17;;;;62029:22;62483:5;62465:428;62531:1;62526:3;62522:11;62515:18;;62702:2;62696:4;62692:13;62688:2;62684:22;62679:3;62671:36;62796:2;62786:13;;62853:25;62465:428;62853:25;-1:-1:-1;62923:13:0;;;-1:-1:-1;;63038:14:0;;;63100:19;;;63038:14;61556:1581;-1:-1:-1;61556:1581:0:o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;54408:689::-;54539:19;54545:2;54549:8;54539:5;:19::i;:::-;-1:-1:-1;;;;;54600:14:0;;;:19;54596:483;;54654:13;;54702:14;;;54735:233;54766:62;54805:1;54809:2;54813:7;;;;;;54822:5;54766:30;:62::i;:::-;54761:167;;54864:40;;-1:-1:-1;;;54864:40:0;;;;;;;;;;;54761:167;54963:3;54955:5;:11;54735:233;;55050:3;55033:13;;:20;55029:34;;55055:8;;;55029:34;54621:458;;54408:689;;;:::o;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8391:20;8450:268;-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:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:712::-;2821:5;2874:3;2867:4;2859:6;2855:17;2851:27;2841:55;;2892:1;2889;2882:12;2841:55;2928:6;2915:20;2954:4;2977:18;2973:2;2970:26;2967:52;;;2999:18;;:::i;:::-;3045:2;3042:1;3038:10;3068:28;3092:2;3088;3084:11;3068:28;:::i;:::-;3130:15;;;3200;;;3196:24;;;3161:12;;;;3232:15;;;3229:35;;;3260:1;3257;3250:12;3229:35;3296:2;3288:6;3284:15;3273:26;;3308:142;3324:6;3319:3;3316:15;3308:142;;;3390:17;;3378:30;;3341:12;;;;3428;;;;3308:142;;;3468:5;2767:712;-1:-1:-1;;;;;;;2767:712:1:o;3484:348::-;3568:6;3621:2;3609:9;3600:7;3596:23;3592:32;3589:52;;;3637:1;3634;3627:12;3589:52;3677:9;3664:23;3710:18;3702:6;3699:30;3696:50;;;3742:1;3739;3732:12;3696:50;3765:61;3818:7;3809:6;3798:9;3794:22;3765:61;:::i;3837:328::-;3914:6;3922;3930;3983:2;3971:9;3962:7;3958:23;3954:32;3951:52;;;3999:1;3996;3989:12;3951:52;4022:29;4041:9;4022:29;:::i;:::-;4012:39;;4070:38;4104:2;4093:9;4089:18;4070:38;:::i;:::-;4060:48;;4155:2;4144:9;4140:18;4127:32;4117:42;;3837:328;;;;;:::o;4355:592::-;4426:6;4434;4487:2;4475:9;4466:7;4462:23;4458:32;4455:52;;;4503:1;4500;4493:12;4455:52;4543:9;4530:23;4572:18;4613:2;4605:6;4602:14;4599:34;;;4629:1;4626;4619:12;4599:34;4667:6;4656:9;4652:22;4642:32;;4712:7;4705:4;4701:2;4697:13;4693:27;4683:55;;4734:1;4731;4724:12;4683:55;4774:2;4761:16;4800:2;4792:6;4789:14;4786:34;;;4816:1;4813;4806:12;4786:34;4861:7;4856:2;4847:6;4843:2;4839:15;4835:24;4832:37;4829:57;;;4882:1;4879;4872:12;4829:57;4913:2;4905:11;;;;;4935:6;;-1:-1:-1;4355:592:1;;-1:-1:-1;;;;4355:592:1:o;4952:186::-;5011:6;5064:2;5052:9;5043:7;5039:23;5035:32;5032:52;;;5080:1;5077;5070:12;5032:52;5103:29;5122:9;5103:29;:::i;5143:347::-;5208:6;5216;5269:2;5257:9;5248:7;5244:23;5240:32;5237:52;;;5285:1;5282;5275:12;5237:52;5308:29;5327:9;5308:29;:::i;:::-;5298:39;;5387:2;5376:9;5372:18;5359:32;5434:5;5427:13;5420:21;5413:5;5410:32;5400:60;;5456:1;5453;5446:12;5400:60;5479:5;5469:15;;;5143:347;;;;;:::o;5495:980::-;5590:6;5598;5606;5614;5667:3;5655:9;5646:7;5642:23;5638:33;5635:53;;;5684:1;5681;5674:12;5635:53;5707:29;5726:9;5707:29;:::i;:::-;5697:39;;5755:2;5776:38;5810:2;5799:9;5795:18;5776:38;:::i;:::-;5766:48;;5861:2;5850:9;5846:18;5833:32;5823:42;;5916:2;5905:9;5901:18;5888:32;5939:18;5980:2;5972:6;5969:14;5966:34;;;5996:1;5993;5986:12;5966:34;6034:6;6023:9;6019:22;6009:32;;6079:7;6072:4;6068:2;6064:13;6060:27;6050:55;;6101:1;6098;6091:12;6050:55;6137:2;6124:16;6159:2;6155;6152:10;6149:36;;;6165:18;;:::i;:::-;6207:53;6250:2;6231:13;;-1:-1:-1;;6227:27:1;6223:36;;6207:53;:::i;:::-;6194:66;;6283:2;6276:5;6269:17;6323:7;6318:2;6313;6309;6305:11;6301:20;6298:33;6295:53;;;6344:1;6341;6334:12;6295:53;6399:2;6394;6390;6386:11;6381:2;6374:5;6370:14;6357:45;6443:1;6438:2;6433;6426:5;6422:14;6418:23;6411:34;;6464:5;6454:15;;;;;5495:980;;;;;;;:::o;6480:260::-;6548:6;6556;6609:2;6597:9;6588:7;6584:23;6580:32;6577:52;;;6625:1;6622;6615:12;6577:52;6648:29;6667:9;6648:29;:::i;:::-;6638:39;;6696:38;6730:2;6719:9;6715:18;6696:38;:::i;:::-;6686:48;;6480:260;;;;;:::o;6927:416::-;7020:6;7028;7081:2;7069:9;7060:7;7056:23;7052:32;7049:52;;;7097:1;7094;7087:12;7049:52;7137:9;7124:23;7170:18;7162:6;7159:30;7156:50;;;7202:1;7199;7192:12;7156:50;7225:61;7278:7;7269:6;7258:9;7254:22;7225:61;:::i;:::-;7215:71;7333:2;7318:18;;;;7305:32;;-1:-1:-1;;;;6927:416:1:o;7348:380::-;7427:1;7423:12;;;;7470;;;7491:61;;7545:4;7537:6;7533:17;7523:27;;7491:61;7598:2;7590:6;7587:14;7567:18;7564:38;7561:161;;7644:10;7639:3;7635:20;7632:1;7625:31;7679:4;7676:1;7669:15;7707:4;7704:1;7697:15;7561:161;;7348:380;;;:::o;9017:127::-;9078:10;9073:3;9069:20;9066:1;9059:31;9109:4;9106:1;9099:15;9133:4;9130:1;9123:15;9149:128;9189:3;9220:1;9216:6;9213:1;9210:13;9207:39;;;9226:18;;:::i;:::-;-1:-1:-1;9262:9:1;;9149:128::o;9282:342::-;9484:2;9466:21;;;9523:2;9503:18;;;9496:30;-1:-1:-1;;;9557:2:1;9542:18;;9535:48;9615:2;9600:18;;9282:342::o;9980:168::-;10020:7;10086:1;10082;10078:6;10074:14;10071:1;10068:21;10063:1;10056:9;10049:17;10045:45;10042:71;;;10093:18;;:::i;:::-;-1:-1:-1;10133:9:1;;9980:168::o;10707:470::-;10886:3;10924:6;10918:13;10940:53;10986:6;10981:3;10974:4;10966:6;10962:17;10940:53;:::i;:::-;11056:13;;11015:16;;;;11078:57;11056:13;11015:16;11112:4;11100:17;;11078:57;:::i;:::-;11151:20;;10707:470;-1:-1:-1;;;;10707:470:1:o;11950:489::-;-1:-1:-1;;;;;12219:15:1;;;12201:34;;12271:15;;12266:2;12251:18;;12244:43;12318:2;12303:18;;12296:34;;;12366:3;12361:2;12346:18;;12339:31;;;12144:4;;12387:46;;12413:19;;12405:6;12387:46;:::i;:::-;12379:54;11950:489;-1:-1:-1;;;;;;11950:489:1:o;12444:249::-;12513:6;12566:2;12554:9;12545:7;12541:23;12537:32;12534:52;;;12582:1;12579;12572:12;12534:52;12614:9;12608:16;12633:30;12657:5;12633:30;:::i;12698:127::-;12759:10;12754:3;12750:20;12747:1;12740:31;12790:4;12787:1;12780:15;12814:4;12811:1;12804:15;12830:135;12869:3;12890:17;;;12887:43;;12910:18;;:::i;:::-;-1:-1:-1;12957:1:1;12946:13;;12830:135::o

Swarm Source

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