ETH Price: $2,473.17 (+7.32%)

Token

PepeTrades Profit Pepes (PTPP)
 

Overview

Max Total Supply

119 PTPP

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PTPP
0x223b0d25bdadfe0cbfaad6efa0ce09167f08b6dc
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:
PepeTradesProfitPepes

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

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

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

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

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

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

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

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index)
        internal
        view
        virtual
        returns (bool)
    {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId)
        private
        view
        returns (uint256 packed)
    {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex)
                    _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId)
        public
        payable
        virtual
        override
    {
        _approve(to, tokenId, true);
    }

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) |
                    _nextExtraData(address(0), to, 0)
            );

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

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

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

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

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value)
        internal
        pure
        virtual
        returns (string memory str)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

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

contract PepeTradesProfitPepes is ERC721A, Ownable {
    bool public isMintEnabled = false;

    string private _baseURIextended;

    uint256 public constant MAX_SUPPLY = 200;
    uint256 public mintTime;
    uint256 public MAX_MINT_PER_WALLET = 4;
    uint256 public PRICE_PER_TOKEN = 0.25 ether;

    constructor()
        ERC721A("PepeTrades Profit Pepes", "PTPP")
        Ownable(_msgSender())
    {}

    function mint(uint256 numberOfTokens) public payable {
        require(isMintEnabled, "PTPP: Mint is not enabled");
        require(
            balanceOf(_msgSender()) + numberOfTokens <= MAX_MINT_PER_WALLET,
            "PTPP: Exceeded max mint per wallet"
        );
        require(
            totalSupply() + numberOfTokens <= MAX_SUPPLY,
            "PTPP: Purchase would exceed max supply"
        );
        require(
            PRICE_PER_TOKEN * numberOfTokens <= msg.value,
            "PTPP: Ether value sent is not correct"
        );

        _safeMint(_msgSender(), numberOfTokens);
    }

    function reserve(uint256 n) public onlyOwner {
        require(
            totalSupply() + n <= MAX_SUPPLY,
            "PTPP: Purchase would exceed max tokens"
        );
        _safeMint(_msgSender(), n);
    }

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

    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseURIextended = baseURI_;
    }

    function setMintEnabled(bool newState) public onlyOwner {
        isMintEnabled = newState;
        mintTime = block.timestamp;
    }

    function setMaxMintPerWallet(uint256 value) public onlyOwner {
        require(
            value >= 0,
            "PTPP: MAX_MINT_PER_WALLET should be higher or equal than zero."
        );
        MAX_MINT_PER_WALLET = value;
    }

    function setPricePerToken(uint256 value) public onlyOwner {
        require(
            value >= 0,
            "PTPP: PRICE_PER_TOKEN should be higher or equal than zero."
        );
        PRICE_PER_TOKEN = value;
    }

    function withdraw(address tkn) public onlyOwner {
        if (tkn == address(0)) {
            uint256 balance = address(this).balance;
            payable(_msgSender()).transfer(balance);
        } else {
            require(
                IERC20(tkn).balanceOf(address(this)) > 0,
                "PTPP: No tokens."
            );
            uint256 amount = IERC20(tkn).balanceOf(address(this));
            IERC20(tkn).transfer(_msgSender(), amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"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":"value","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPricePerToken","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805460ff60a01b191690556004600b556703782dace9d90000600c553480156200002f57600080fd5b50336040518060400160405280601781526020017f506570655472616465732050726f666974205065706573000000000000000000815250604051806040016040528060048152602001630505450560e41b8152508160029081620000959190620001b4565b506003620000a48282620001b4565b50506000805550620000b681620000bd565b5062000280565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013a57607f821691505b6020821081036200015b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001af57600081815260208120601f850160051c810160208610156200018a5750805b601f850160051c820191505b81811015620001ab5782815560010162000196565b5050505b505050565b81516001600160401b03811115620001d057620001d06200010f565b620001e881620001e1845462000125565b8462000161565b602080601f831160018114620002205760008415620002075750858301515b600019600386901b1c1916600185901b178555620001ab565b600085815260208120601f198616915b82811015620002515788860151825594840194600190910190840162000230565b5085821015620002705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61188980620002906000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461049a578063e985e9c5146104ba578063f2fde38b146104da578063f46a04eb146104fa57600080fd5b8063a22cb46514610431578063afdf613414610451578063b19960e614610471578063b88d4fde1461048757600080fd5b806386478122116100d157806386478122146103d55780638da5cb5b146103eb57806395d89b4114610409578063a0712d681461041e57600080fd5b8063715018a61461038a578063819b25ba1461039f578063833b9499146103bf57600080fd5b806332cb6b0c1161016457806351cff8d91161013e57806351cff8d91461030a57806355f804b31461032a5780636352211e1461034a57806370a082311461036a57600080fd5b806332cb6b0c146102c1578063346de50a146102d657806342842e0e146102f757600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e5780632bf2762f146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046112de565b61051a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161056c565b6040516101f3919061134b565b34801561022a57600080fd5b5061023e61023936600461135e565b6105fe565b6040516001600160a01b0390911681526020016101f3565b61026961026436600461138e565b610639565b005b34801561027757600080fd5b50600154600054035b6040519081526020016101f3565b61026961029c3660046113b8565b610649565b3480156102ad57600080fd5b506102696102bc36600461135e565b6107ae565b3480156102cd57600080fd5b5061028060c881565b3480156102e257600080fd5b506008546101e790600160a01b900460ff1681565b6102696103053660046113b8565b6107c4565b34801561031657600080fd5b506102696103253660046113f4565b6107e4565b34801561033657600080fd5b5061026961034536600461149b565b6109c5565b34801561035657600080fd5b5061023e61036536600461135e565b6109d9565b34801561037657600080fd5b506102806103853660046113f4565b6109e4565b34801561039657600080fd5b50610269610a2a565b3480156103ab57600080fd5b506102696103ba36600461135e565b610a3e565b3480156103cb57600080fd5b50610280600c5481565b3480156103e157600080fd5b50610280600a5481565b3480156103f757600080fd5b506008546001600160a01b031661023e565b34801561041557600080fd5b50610211610ac7565b61026961042c36600461135e565b610ad6565b34801561043d57600080fd5b5061026961044c3660046114f2565b610c81565b34801561045d57600080fd5b5061026961046c36600461135e565b610ced565b34801561047d57600080fd5b50610280600b5481565b610269610495366004611529565b610cfa565b3480156104a657600080fd5b506102116104b536600461135e565b610d3b565b3480156104c657600080fd5b506101e76104d53660046115a5565b610db6565b3480156104e657600080fd5b506102696104f53660046113f4565b610de4565b34801561050657600080fd5b506102696105153660046115d8565b610e1f565b60006301ffc9a760e01b6001600160e01b03198316148061054b57506380ac58cd60e01b6001600160e01b03198316145b806105665750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057b906115f5565b80601f01602080910402602001604051908101604052809291908181526020018280546105a7906115f5565b80156105f45780601f106105c9576101008083540402835291602001916105f4565b820191906000526020600020905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b600061060982610e49565b61061d5761061d6333d1c03960e21b610e8e565b506000908152600660205260409020546001600160a01b031690565b61064582826001610e98565b5050565b600061065482610f3b565b6001600160a01b03948516949091508116841461067a5761067a62a1148160e81b610e8e565b60008281526006602052604090208054338082146001600160a01b038816909114176106be576106aa8633610db6565b6106be576106be632ce44b5f60e11b610e8e565b80156106c957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361075b576001840160008181526004602052604081205490036107595760005481146107595760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4806000036107a5576107a5633a954ecd60e21b610e8e565b50505050505050565b6107b6610fd1565b600c55565b60405180910390fd5b6107df83838360405180602001604052806000815250610cfa565b505050565b6107ec610fd1565b6001600160a01b038116610829576040514790339082156108fc029083906000818181858888f193505050501580156107df573d6000803e3d6000fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610870573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610894919061162f565b116108d45760405162461bcd60e51b815260206004820152601060248201526f282a28281d102737903a37b5b2b7399760811b60448201526064016107bb565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561091b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093f919061162f565b90506001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af115801561099e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107df9190611648565b50565b6109cd610fd1565b600961064582826116b3565b600061056682610f3b565b60006001600160a01b038216610a0457610a046323d3ad8160e21b610e8e565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a32610fd1565b610a3c6000610ffe565b565b610a46610fd1565b60c881610a566001546000540390565b610a609190611789565b1115610abd5760405162461bcd60e51b815260206004820152602660248201527f505450503a20507572636861736520776f756c6420657863656564206d617820604482015265746f6b656e7360d01b60648201526084016107bb565b6109c23382611050565b60606003805461057b906115f5565b600854600160a01b900460ff16610b2f5760405162461bcd60e51b815260206004820152601960248201527f505450503a204d696e74206973206e6f7420656e61626c65640000000000000060448201526064016107bb565b600b5481610b3c336109e4565b610b469190611789565b1115610b9f5760405162461bcd60e51b815260206004820152602260248201527f505450503a204578636565646564206d6178206d696e74207065722077616c6c604482015261195d60f21b60648201526084016107bb565b60c881610baf6001546000540390565b610bb99190611789565b1115610c165760405162461bcd60e51b815260206004820152602660248201527f505450503a20507572636861736520776f756c6420657863656564206d617820604482015265737570706c7960d01b60648201526084016107bb565b3481600c54610c25919061179c565b1115610abd5760405162461bcd60e51b815260206004820152602560248201527f505450503a2045746865722076616c75652073656e74206973206e6f7420636f6044820152641c9c9958dd60da1b60648201526084016107bb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cf5610fd1565b600b55565b610d05848484610649565b6001600160a01b0383163b15610d3557610d218484848461106a565b610d3557610d356368d2bf6b60e11b610e8e565b50505050565b6060610d4682610e49565b610d5a57610d5a630a14c4b560e41b610e8e565b6000610d6461114d565b90508051600003610d845760405180602001604052806000815250610daf565b80610d8e8461115c565b604051602001610d9f9291906117b3565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610dec610fd1565b6001600160a01b038116610e1657604051631e4fbdf760e01b8152600060048201526024016107bb565b6109c281610ffe565b610e27610fd1565b60088054911515600160a01b0260ff60a01b1990921691909117905542600a55565b60008054821015610e895760005b5060008281526004602052604081205490819003610e7f57610e78836117e2565b9250610e57565b600160e01b161590505b919050565b8060005260046000fd5b6000610ea3836109d9565b9050818015610ebb5750336001600160a01b03821614155b15610ede57610eca8133610db6565b610ede57610ede6367d9dca160e11b610e8e565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b60008181526004602052604081205490819003610fae576000548210610f6b57610f6b636f96cda160e11b610e8e565b5b50600019016000818152600460205260409020548015610f6c57600160e01b8116600003610f9957919050565b610fa9636f96cda160e11b610e8e565b610f6c565b600160e01b8116600003610fc157919050565b610e89636f96cda160e11b610e8e565b6008546001600160a01b03163314610a3c5760405163118cdaa760e01b81523360048201526024016107bb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106458282604051806020016040528060008152506111a0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061109f9033908990889088906004016117f9565b6020604051808303816000875af19250505080156110da575060408051601f3d908101601f191682019092526110d791810190611836565b60015b61112f573d808015611108576040519150601f19603f3d011682016040523d82523d6000602084013e61110d565b606091505b508051600003611127576111276368d2bf6b60e11b610e8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461057b906115f5565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806111765750819003601f19909101908152919050565b6111aa8383611209565b6001600160a01b0383163b156107df576000548281035b6111d4600086838060010194508661106a565b6111e8576111e86368d2bf6b60e11b610e8e565b8181106111c1578160005414611202576112026000610e8e565b5050505050565b60008054908290036112255761122563b562e8dd60e01b610e8e565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526005909252822080546801000000000000000186020190559081900361128357611283622e076360e81b610e8e565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611288575060005550505050565b6001600160e01b0319811681146109c257600080fd5b6000602082840312156112f057600080fd5b8135610daf816112c8565b60005b838110156113165781810151838201526020016112fe565b50506000910152565b600081518084526113378160208601602086016112fb565b601f01601f19169290920160200192915050565b602081526000610daf602083018461131f565b60006020828403121561137057600080fd5b5035919050565b80356001600160a01b0381168114610e8957600080fd5b600080604083850312156113a157600080fd5b6113aa83611377565b946020939093013593505050565b6000806000606084860312156113cd57600080fd5b6113d684611377565b92506113e460208501611377565b9150604084013590509250925092565b60006020828403121561140657600080fd5b610daf82611377565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114405761144061140f565b604051601f8501601f19908116603f011681019082821181831017156114685761146861140f565b8160405280935085815286868601111561148157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156114ad57600080fd5b813567ffffffffffffffff8111156114c457600080fd5b8201601f810184136114d557600080fd5b61114584823560208401611425565b80151581146109c257600080fd5b6000806040838503121561150557600080fd5b61150e83611377565b9150602083013561151e816114e4565b809150509250929050565b6000806000806080858703121561153f57600080fd5b61154885611377565b935061155660208601611377565b925060408501359150606085013567ffffffffffffffff81111561157957600080fd5b8501601f8101871361158a57600080fd5b61159987823560208401611425565b91505092959194509250565b600080604083850312156115b857600080fd5b6115c183611377565b91506115cf60208401611377565b90509250929050565b6000602082840312156115ea57600080fd5b8135610daf816114e4565b600181811c9082168061160957607f821691505b60208210810361162957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561164157600080fd5b5051919050565b60006020828403121561165a57600080fd5b8151610daf816114e4565b601f8211156107df57600081815260208120601f850160051c8101602086101561168c5750805b601f850160051c820191505b818110156116ab57828155600101611698565b505050505050565b815167ffffffffffffffff8111156116cd576116cd61140f565b6116e1816116db84546115f5565b84611665565b602080601f83116001811461171657600084156116fe5750858301515b600019600386901b1c1916600185901b1785556116ab565b600085815260208120601f198616915b8281101561174557888601518255948401946001909101908401611726565b50858210156117635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056657610566611773565b808202811582820484141761056657610566611773565b600083516117c58184602088016112fb565b8351908301906117d98183602088016112fb565b01949350505050565b6000816117f1576117f1611773565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061182c9083018461131f565b9695505050505050565b60006020828403121561184857600080fd5b8151610daf816112c856fea26469706673582212207431f07d6bc8087dfa39b0fac4b38136e96b00f95724868e385161e5d6c0aeab64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461049a578063e985e9c5146104ba578063f2fde38b146104da578063f46a04eb146104fa57600080fd5b8063a22cb46514610431578063afdf613414610451578063b19960e614610471578063b88d4fde1461048757600080fd5b806386478122116100d157806386478122146103d55780638da5cb5b146103eb57806395d89b4114610409578063a0712d681461041e57600080fd5b8063715018a61461038a578063819b25ba1461039f578063833b9499146103bf57600080fd5b806332cb6b0c1161016457806351cff8d91161013e57806351cff8d91461030a57806355f804b31461032a5780636352211e1461034a57806370a082311461036a57600080fd5b806332cb6b0c146102c1578063346de50a146102d657806342842e0e146102f757600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e5780632bf2762f146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046112de565b61051a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161056c565b6040516101f3919061134b565b34801561022a57600080fd5b5061023e61023936600461135e565b6105fe565b6040516001600160a01b0390911681526020016101f3565b61026961026436600461138e565b610639565b005b34801561027757600080fd5b50600154600054035b6040519081526020016101f3565b61026961029c3660046113b8565b610649565b3480156102ad57600080fd5b506102696102bc36600461135e565b6107ae565b3480156102cd57600080fd5b5061028060c881565b3480156102e257600080fd5b506008546101e790600160a01b900460ff1681565b6102696103053660046113b8565b6107c4565b34801561031657600080fd5b506102696103253660046113f4565b6107e4565b34801561033657600080fd5b5061026961034536600461149b565b6109c5565b34801561035657600080fd5b5061023e61036536600461135e565b6109d9565b34801561037657600080fd5b506102806103853660046113f4565b6109e4565b34801561039657600080fd5b50610269610a2a565b3480156103ab57600080fd5b506102696103ba36600461135e565b610a3e565b3480156103cb57600080fd5b50610280600c5481565b3480156103e157600080fd5b50610280600a5481565b3480156103f757600080fd5b506008546001600160a01b031661023e565b34801561041557600080fd5b50610211610ac7565b61026961042c36600461135e565b610ad6565b34801561043d57600080fd5b5061026961044c3660046114f2565b610c81565b34801561045d57600080fd5b5061026961046c36600461135e565b610ced565b34801561047d57600080fd5b50610280600b5481565b610269610495366004611529565b610cfa565b3480156104a657600080fd5b506102116104b536600461135e565b610d3b565b3480156104c657600080fd5b506101e76104d53660046115a5565b610db6565b3480156104e657600080fd5b506102696104f53660046113f4565b610de4565b34801561050657600080fd5b506102696105153660046115d8565b610e1f565b60006301ffc9a760e01b6001600160e01b03198316148061054b57506380ac58cd60e01b6001600160e01b03198316145b806105665750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057b906115f5565b80601f01602080910402602001604051908101604052809291908181526020018280546105a7906115f5565b80156105f45780601f106105c9576101008083540402835291602001916105f4565b820191906000526020600020905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b600061060982610e49565b61061d5761061d6333d1c03960e21b610e8e565b506000908152600660205260409020546001600160a01b031690565b61064582826001610e98565b5050565b600061065482610f3b565b6001600160a01b03948516949091508116841461067a5761067a62a1148160e81b610e8e565b60008281526006602052604090208054338082146001600160a01b038816909114176106be576106aa8633610db6565b6106be576106be632ce44b5f60e11b610e8e565b80156106c957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361075b576001840160008181526004602052604081205490036107595760005481146107595760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4806000036107a5576107a5633a954ecd60e21b610e8e565b50505050505050565b6107b6610fd1565b600c55565b60405180910390fd5b6107df83838360405180602001604052806000815250610cfa565b505050565b6107ec610fd1565b6001600160a01b038116610829576040514790339082156108fc029083906000818181858888f193505050501580156107df573d6000803e3d6000fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610870573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610894919061162f565b116108d45760405162461bcd60e51b815260206004820152601060248201526f282a28281d102737903a37b5b2b7399760811b60448201526064016107bb565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561091b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093f919061162f565b90506001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af115801561099e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107df9190611648565b50565b6109cd610fd1565b600961064582826116b3565b600061056682610f3b565b60006001600160a01b038216610a0457610a046323d3ad8160e21b610e8e565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a32610fd1565b610a3c6000610ffe565b565b610a46610fd1565b60c881610a566001546000540390565b610a609190611789565b1115610abd5760405162461bcd60e51b815260206004820152602660248201527f505450503a20507572636861736520776f756c6420657863656564206d617820604482015265746f6b656e7360d01b60648201526084016107bb565b6109c23382611050565b60606003805461057b906115f5565b600854600160a01b900460ff16610b2f5760405162461bcd60e51b815260206004820152601960248201527f505450503a204d696e74206973206e6f7420656e61626c65640000000000000060448201526064016107bb565b600b5481610b3c336109e4565b610b469190611789565b1115610b9f5760405162461bcd60e51b815260206004820152602260248201527f505450503a204578636565646564206d6178206d696e74207065722077616c6c604482015261195d60f21b60648201526084016107bb565b60c881610baf6001546000540390565b610bb99190611789565b1115610c165760405162461bcd60e51b815260206004820152602660248201527f505450503a20507572636861736520776f756c6420657863656564206d617820604482015265737570706c7960d01b60648201526084016107bb565b3481600c54610c25919061179c565b1115610abd5760405162461bcd60e51b815260206004820152602560248201527f505450503a2045746865722076616c75652073656e74206973206e6f7420636f6044820152641c9c9958dd60da1b60648201526084016107bb565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cf5610fd1565b600b55565b610d05848484610649565b6001600160a01b0383163b15610d3557610d218484848461106a565b610d3557610d356368d2bf6b60e11b610e8e565b50505050565b6060610d4682610e49565b610d5a57610d5a630a14c4b560e41b610e8e565b6000610d6461114d565b90508051600003610d845760405180602001604052806000815250610daf565b80610d8e8461115c565b604051602001610d9f9291906117b3565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610dec610fd1565b6001600160a01b038116610e1657604051631e4fbdf760e01b8152600060048201526024016107bb565b6109c281610ffe565b610e27610fd1565b60088054911515600160a01b0260ff60a01b1990921691909117905542600a55565b60008054821015610e895760005b5060008281526004602052604081205490819003610e7f57610e78836117e2565b9250610e57565b600160e01b161590505b919050565b8060005260046000fd5b6000610ea3836109d9565b9050818015610ebb5750336001600160a01b03821614155b15610ede57610eca8133610db6565b610ede57610ede6367d9dca160e11b610e8e565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b60008181526004602052604081205490819003610fae576000548210610f6b57610f6b636f96cda160e11b610e8e565b5b50600019016000818152600460205260409020548015610f6c57600160e01b8116600003610f9957919050565b610fa9636f96cda160e11b610e8e565b610f6c565b600160e01b8116600003610fc157919050565b610e89636f96cda160e11b610e8e565b6008546001600160a01b03163314610a3c5760405163118cdaa760e01b81523360048201526024016107bb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106458282604051806020016040528060008152506111a0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061109f9033908990889088906004016117f9565b6020604051808303816000875af19250505080156110da575060408051601f3d908101601f191682019092526110d791810190611836565b60015b61112f573d808015611108576040519150601f19603f3d011682016040523d82523d6000602084013e61110d565b606091505b508051600003611127576111276368d2bf6b60e11b610e8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461057b906115f5565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806111765750819003601f19909101908152919050565b6111aa8383611209565b6001600160a01b0383163b156107df576000548281035b6111d4600086838060010194508661106a565b6111e8576111e86368d2bf6b60e11b610e8e565b8181106111c1578160005414611202576112026000610e8e565b5050505050565b60008054908290036112255761122563b562e8dd60e01b610e8e565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526005909252822080546801000000000000000186020190559081900361128357611283622e076360e81b610e8e565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103611288575060005550505050565b6001600160e01b0319811681146109c257600080fd5b6000602082840312156112f057600080fd5b8135610daf816112c8565b60005b838110156113165781810151838201526020016112fe565b50506000910152565b600081518084526113378160208601602086016112fb565b601f01601f19169290920160200192915050565b602081526000610daf602083018461131f565b60006020828403121561137057600080fd5b5035919050565b80356001600160a01b0381168114610e8957600080fd5b600080604083850312156113a157600080fd5b6113aa83611377565b946020939093013593505050565b6000806000606084860312156113cd57600080fd5b6113d684611377565b92506113e460208501611377565b9150604084013590509250925092565b60006020828403121561140657600080fd5b610daf82611377565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114405761144061140f565b604051601f8501601f19908116603f011681019082821181831017156114685761146861140f565b8160405280935085815286868601111561148157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156114ad57600080fd5b813567ffffffffffffffff8111156114c457600080fd5b8201601f810184136114d557600080fd5b61114584823560208401611425565b80151581146109c257600080fd5b6000806040838503121561150557600080fd5b61150e83611377565b9150602083013561151e816114e4565b809150509250929050565b6000806000806080858703121561153f57600080fd5b61154885611377565b935061155660208601611377565b925060408501359150606085013567ffffffffffffffff81111561157957600080fd5b8501601f8101871361158a57600080fd5b61159987823560208401611425565b91505092959194509250565b600080604083850312156115b857600080fd5b6115c183611377565b91506115cf60208401611377565b90509250929050565b6000602082840312156115ea57600080fd5b8135610daf816114e4565b600181811c9082168061160957607f821691505b60208210810361162957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561164157600080fd5b5051919050565b60006020828403121561165a57600080fd5b8151610daf816114e4565b601f8211156107df57600081815260208120601f850160051c8101602086101561168c5750805b601f850160051c820191505b818110156116ab57828155600101611698565b505050505050565b815167ffffffffffffffff8111156116cd576116cd61140f565b6116e1816116db84546115f5565b84611665565b602080601f83116001811461171657600084156116fe5750858301515b600019600386901b1c1916600185901b1785556116ab565b600085815260208120601f198616915b8281101561174557888601518255948401946001909101908401611726565b50858210156117635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056657610566611773565b808202811582820484141761056657610566611773565b600083516117c58184602088016112fb565b8351908301906117d98183602088016112fb565b01949350505050565b6000816117f1576117f1611773565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061182c9083018461131f565b9695505050505050565b60006020828403121561184857600080fd5b8151610daf816112c856fea26469706673582212207431f07d6bc8087dfa39b0fac4b38136e96b00f95724868e385161e5d6c0aeab64736f6c63430008110033

Deployed Bytecode Sourcemap

62390:2638:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25373:689;;;;;;;;;;-1:-1:-1;25373:689:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25373:689:0;;;;;;;;26325:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33868:290::-;;;;;;;;;;-1:-1:-1;33868:290:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;33868:290:0;1533:203:1;33544:165:0;;;;;;:::i;:::-;;:::i;:::-;;21889:323;;;;;;;;;;-1:-1:-1;22163:12:0;;21950:7;22147:13;:28;21889:323;;;2324:25:1;;;2312:2;2297:18;21889:323:0;2178:177:1;37788:3701:0;;;;;;:::i;:::-;;:::i;64303:229::-;;;;;;;;;;-1:-1:-1;64303:229:0;;;;;:::i;:::-;;:::i;62530:40::-;;;;;;;;;;;;62567:3;62530:40;;62448:33;;;;;;;;;;-1:-1:-1;62448:33:0;;;;-1:-1:-1;;;62448:33:0;;;;;;41585:193;;;;;;:::i;:::-;;:::i;64540:485::-;;;;;;;;;;-1:-1:-1;64540:485:0;;;;;:::i;:::-;;:::i;63796:107::-;;;;;;;;;;-1:-1:-1;63796:107:0;;;;;:::i;:::-;;:::i;27824:202::-;;;;;;;;;;-1:-1:-1;27824:202:0;;;;;:::i;:::-;;:::i;23073:292::-;;;;;;;;;;-1:-1:-1;23073:292:0;;;;;:::i;:::-;;:::i;3048:103::-;;;;;;;;;;;;;:::i;63443:220::-;;;;;;;;;;-1:-1:-1;63443:220:0;;;;;:::i;:::-;;:::i;62652:43::-;;;;;;;;;;;;;;;;62577:23;;;;;;;;;;;;;;;;2373:87;;;;;;;;;;-1:-1:-1;2446:6:0;;-1:-1:-1;;;;;2446:6:0;2373:87;;26501:104;;;;;;;;;;;;;:::i;62816:619::-;;;;;;:::i;:::-;;:::i;34498:266::-;;;;;;;;;;-1:-1:-1;34498:266:0;;;;;:::i;:::-;;:::i;64055:240::-;;;;;;;;;;-1:-1:-1;64055:240:0;;;;;:::i;:::-;;:::i;62607:38::-;;;;;;;;;;;;;;;;42376:416;;;;;;:::i;:::-;;:::i;26711:424::-;;;;;;;;;;-1:-1:-1;26711:424:0;;;;;:::i;:::-;;:::i;34921:214::-;;;;;;;;;;-1:-1:-1;34921:214:0;;;;;:::i;:::-;;:::i;3306:220::-;;;;;;;;;;-1:-1:-1;3306:220:0;;;;;:::i;:::-;;:::i;63911:136::-;;;;;;;;;;-1:-1:-1;63911:136:0;;;;;:::i;:::-;;:::i;25373:689::-;25503:4;-1:-1:-1;;;;;;;;;25832:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25909:25:0;;;25832:102;:179;;;-1:-1:-1;;;;;;;;;;25986:25:0;;;25832:179;25812:199;25373:689;-1:-1:-1;;25373:689:0:o;26325:100::-;26379:13;26412:5;26405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26325:100;:::o;33868:290::-;33989:7;34019:16;34027:7;34019;:16::i;:::-;34014:86;;34050:50;-1:-1:-1;;;34050:7:0;:50::i;:::-;-1:-1:-1;34120:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;34120:30:0;;33868:290::o;33544:165::-;33674:27;33683:2;33687:7;33696:4;33674:8;:27::i;:::-;33544:165;;:::o;37788:3701::-;37930:27;37960;37979:7;37960:18;:27::i;:::-;-1:-1:-1;;;;;38115:22:0;;;;37930:57;;-1:-1:-1;38175:45:0;;;;38171:108;;38235:44;-1:-1:-1;;;38235:7:0;:44::i;:::-;38307:27;36896:24;;;:15;:24;;;;;37124:26;;60245:10;36521:30;;;-1:-1:-1;;;;;36214:28:0;;36499:20;;;36496:56;38516:296;;38699:43;38716:4;60245:10;34921:214;:::i;38699:43::-;38694:118;;38761:51;-1:-1:-1;;;38761:7:0;:51::i;:::-;38961:15;38958:160;;;39101:1;39080:19;39073:30;38958:160;-1:-1:-1;;;;;39498:24:0;;;;;;;:18;:24;;;;;;39496:26;;-1:-1:-1;;39496:26:0;;;39567:22;;;;;;;;;39565:24;;-1:-1:-1;39565:24:0;;;32600:11;32575:23;32571:41;32523:112;-1:-1:-1;;;32523:112:0;39860:26;;;;:17;:26;;;;;:196;;;;-1:-1:-1;;;40176:47:0;;:52;;40172:627;;40281:1;40271:11;;40249:19;40404:30;;;:17;:30;;;;;;:35;;40400:384;;40542:13;;40527:11;:28;40523:242;;40689:30;;;;:17;:30;;;;;:52;;;40523:242;40230:569;40172:627;-1:-1:-1;;;;;40931:20:0;;41311:7;40931:20;41241:4;41183:25;40912:16;;41048:299;41372:8;41384:1;41372:13;41368:58;;41387:39;-1:-1:-1;;;41387:7:0;:39::i;:::-;37919:3570;;;;37788:3701;;;:::o;64303:229::-;2259:13;:11;:13::i;:::-;64501:15:::1;:23:::0;64303:229::o;64372:118::-:1;;;;;;;;41585:193:::0;41731:39;41748:4;41754:2;41758:7;41731:39;;;;;;;;;;;;:16;:39::i;:::-;41585:193;;;:::o;64540:485::-;2259:13;:11;:13::i;:::-;-1:-1:-1;;;;;64603:17:0;::::1;64599:419;;64691:39;::::0;64655:21:::1;::::0;60245:10;;64691:39;::::1;;;::::0;64655:21;;64691:39:::1;::::0;;;64655:21;60245:10;64691:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;64599:419;64789:36;::::0;-1:-1:-1;;;64789:36:0;;64819:4:::1;64789:36;::::0;::::1;1679:51:1::0;64828:1:0::1;::::0;-1:-1:-1;;;;;64789:21:0;::::1;::::0;::::1;::::0;1652:18:1;;64789:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;64763:118;;;::::0;-1:-1:-1;;;64763:118:0;;6938:2:1;64763:118:0::1;::::0;::::1;6920:21:1::0;6977:2;6957:18;;;6950:30;-1:-1:-1;;;6996:18:1;;;6989:46;7052:18;;64763:118:0::1;6736:340:1::0;64763:118:0::1;64913:36;::::0;-1:-1:-1;;;64913:36:0;;64943:4:::1;64913:36;::::0;::::1;1679:51:1::0;64896:14:0::1;::::0;-1:-1:-1;;;;;64913:21:0;::::1;::::0;::::1;::::0;1652:18:1;;64913:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64896:53:::0;-1:-1:-1;;;;;;64964:20:0;::::1;;60245:10:::0;64964:42:::1;::::0;-1:-1:-1;;;;;;64964:42:0::1;::::0;;;;;;-1:-1:-1;;;;;7273:32:1;;;64964:42:0::1;::::0;::::1;7255:51:1::0;7322:18;;;7315:34;;;7228:18;;64964:42:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;64599:419::-;64540:485:::0;:::o;63796:107::-;2259:13;:11;:13::i;:::-;63868:16:::1;:27;63887:8:::0;63868:16;:27:::1;:::i;27824:202::-:0;27941:7;27989:27;28008:7;27989:18;:27::i;23073:292::-;23190:7;-1:-1:-1;;;;;23219:19:0;;23215:69;;23240:44;-1:-1:-1;;;23240:7:0;:44::i;:::-;-1:-1:-1;;;;;;23302:25:0;;;;;:18;:25;;;;;;17232:13;23302:55;;23073:292::o;3048:103::-;2259:13;:11;:13::i;:::-;3113:30:::1;3140:1;3113:18;:30::i;:::-;3048:103::o:0;63443:220::-;2259:13;:11;:13::i;:::-;62567:3:::1;63537:1;63521:13;22163:12:::0;;21950:7;22147:13;:28;;21889:323;63521:13:::1;:17;;;;:::i;:::-;:31;;63499:119;;;::::0;-1:-1:-1;;;63499:119:0;;10278:2:1;63499:119:0::1;::::0;::::1;10260:21:1::0;10317:2;10297:18;;;10290:30;10356:34;10336:18;;;10329:62;-1:-1:-1;;;10407:18:1;;;10400:36;10453:19;;63499:119:0::1;10076:402:1::0;63499:119:0::1;63629:26;60245:10:::0;63653:1:::1;63629:9;:26::i;26501:104::-:0;26557:13;26590:7;26583:14;;;;;:::i;62816:619::-;62888:13;;-1:-1:-1;;;62888:13:0;;;;62880:51;;;;-1:-1:-1;;;62880:51:0;;10685:2:1;62880:51:0;;;10667:21:1;10724:2;10704:18;;;10697:30;10763:27;10743:18;;;10736:55;10808:18;;62880:51:0;10483:349:1;62880:51:0;63008:19;;62990:14;62964:23;60245:10;23073:292;:::i;62964:23::-;:40;;;;:::i;:::-;:63;;62942:147;;;;-1:-1:-1;;;62942:147:0;;11039:2:1;62942:147:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:1;;;11161:32;11210:19;;62942:147:0;10837:398:1;62942:147:0;62567:3;63138:14;63122:13;22163:12;;21950:7;22147:13;:28;;21889:323;63122:13;:30;;;;:::i;:::-;:44;;63100:132;;;;-1:-1:-1;;;63100:132:0;;11442:2:1;63100:132:0;;;11424:21:1;11481:2;11461:18;;;11454:30;11520:34;11500:18;;;11493:62;-1:-1:-1;;;11571:18:1;;;11564:36;11617:19;;63100:132:0;11240:402:1;63100:132:0;63301:9;63283:14;63265:15;;:32;;;;:::i;:::-;:45;;63243:132;;;;-1:-1:-1;;;63243:132:0;;12022:2:1;63243:132:0;;;12004:21:1;12061:2;12041:18;;;12034:30;12100:34;12080:18;;;12073:62;-1:-1:-1;;;12151:18:1;;;12144:35;12196:19;;63243:132:0;11820:401:1;34498:266:0;60245:10;34625:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;34625:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;34625:60:0;;;;;;;;;;34701:55;;540:41:1;;;34625:49:0;;60245:10;34701:55;;513:18:1;34701:55:0;;;;;;;34498:266;;:::o;64055:240::-;2259:13;:11;:13::i;:::-;64260:19:::1;:27:::0;64055:240::o;42376:416::-;42551:31;42564:4;42570:2;42574:7;42551:12;:31::i;:::-;-1:-1:-1;;;;;42597:14:0;;;:19;42593:192;;42636:56;42667:4;42673:2;42677:7;42686:5;42636:30;:56::i;:::-;42631:154;;42713:56;-1:-1:-1;;;42713:7:0;:56::i;:::-;42376:416;;;;:::o;26711:424::-;26829:13;26865:16;26873:7;26865;:16::i;:::-;26860:68;;26883:45;-1:-1:-1;;;26883:7:0;:45::i;:::-;26941:21;26965:10;:8;:10::i;:::-;26941:34;;27012:7;27006:21;27031:1;27006:26;:121;;;;;;;;;;;;;;;;;27076:7;27085:18;27095:7;27085:9;:18::i;:::-;27059:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27006:121;26986:141;26711:424;-1:-1:-1;;;26711:424:0:o;34921:214::-;-1:-1:-1;;;;;35092:25:0;;;35063:4;35092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34921:214::o;3306:220::-;2259:13;:11;:13::i;:::-;-1:-1:-1;;;;;3391:22:0;::::1;3387:93;;3437:31;::::0;-1:-1:-1;;;3437:31:0;;3465:1:::1;3437:31;::::0;::::1;1679:51:1::0;1652:18;;3437:31:0::1;1533:203:1::0;3387:93:0::1;3490:28;3509:8;3490:18;:28::i;63911:136::-:0;2259:13;:11;:13::i;:::-;63978::::1;:24:::0;;;::::1;;-1:-1:-1::0;;;63978:24:0::1;-1:-1:-1::0;;;;63978:24:0;;::::1;::::0;;;::::1;::::0;;64024:15:::1;64013:8;:26:::0;63911:136::o;35393:409::-;35494:11;35584:13;;35574:7;:23;35570:214;;;35618:14;35651:60;-1:-1:-1;35668:26:0;;;;:17;:26;;;;;;;35658:42;;;35651:60;;35702:9;;;:::i;:::-;;;35651:60;;;-1:-1:-1;;;35739:24:0;:29;;-1:-1:-1;35570:214:0;35393:409;;;:::o;62218:165::-;62319:13;62313:4;62306:27;62360:4;62354;62347:18;53391:474;53520:13;53536:16;53544:7;53536;:16::i;:::-;53520:32;;53569:13;:45;;;;-1:-1:-1;60245:10:0;-1:-1:-1;;;;;53586:28:0;;;;53569:45;53565:201;;;53634:44;53651:5;60245:10;34921:214;:::i;53634:44::-;53629:137;;53699:51;-1:-1:-1;;;53699:7:0;:51::i;:::-;53778:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;53778:35:0;-1:-1:-1;;;;;53778:35:0;;;;;;;;;53829:28;;53778:24;;53829:28;;;;;;;53509:356;53391:474;;;:::o;29477:2065::-;29659:26;;;;:17;:26;;;;;;;29785:11;;;29781:1313;;29832:13;;29821:7;:24;29817:98;;29868:47;-1:-1:-1;;;29868:7:0;:47::i;:::-;30472:607;-1:-1:-1;;;30568:9:0;30550:28;;;;:17;:28;;;;;;30624:25;;30472:607;30624:25;-1:-1:-1;;;30676:6:0;:24;30704:1;30676:29;30672:48;;29477:2065;;;:::o;30672:48::-;31012:47;-1:-1:-1;;;31012:7:0;:47::i;:::-;30472:607;;29781:1313;-1:-1:-1;;;31421:6:0;:24;31449:1;31421:29;31417:48;;29477:2065;;;:::o;31417:48::-;31487:47;-1:-1:-1;;;31487:7:0;:47::i;2538:166::-;2446:6;;-1:-1:-1;;;;;2446:6:0;60245:10;2598:23;2594:103;;2645:40;;-1:-1:-1;;;2645:40:0;;60245:10;2645:40;;;1679:51:1;1652:18;;2645:40:0;1533:203:1;3686:191:0;3779:6;;;-1:-1:-1;;;;;3796:17:0;;;-1:-1:-1;;;;;;3796:17:0;;;;;;;3829:40;;3779:6;;;3796:17;3779:6;;3829:40;;3760:16;;3829:40;3749:128;3686:191;:::o;52473:112::-;52550:27;52560:2;52564:8;52550:27;;;;;;;;;;;;:9;:27::i;44876:806::-;45073:171;;-1:-1:-1;;;45073:171:0;;45039:4;;-1:-1:-1;;;;;45073:45:0;;;;;:171;;60245:10;;45175:4;;45198:7;;45224:5;;45073:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45073:171:0;;;;;;;;-1:-1:-1;;45073:171:0;;;;;;;;;;;;:::i;:::-;;;45056:619;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45458:6;:13;45475:1;45458:18;45454:115;;45497:56;-1:-1:-1;;;45497:7:0;:56::i;:::-;45641:6;45635:13;45626:6;45622:2;45618:15;45611:38;45056:619;-1:-1:-1;;;;;;45317:81:0;-1:-1:-1;;;45317:81:0;;-1:-1:-1;45056:619:0;44876:806;;;;;;:::o;63671:117::-;63731:13;63764:16;63757:23;;;;;:::i;60365:1786::-;60466:17;60905:4;60898;60892:11;60888:22;60997:1;60991:4;60984:15;61072:4;61069:1;61065:12;61058:19;;;61154:1;61149:3;61142:14;61258:3;61497:5;61479:428;61545:1;61540:3;61536:11;61529:18;;61716:2;61710:4;61706:13;61702:2;61698:22;61693:3;61685:36;61810:2;61800:13;;61867:25;61479:428;61867:25;-1:-1:-1;61937:13:0;;;-1:-1:-1;;62052:14:0;;;62114:19;;;62052:14;60365:1786;-1:-1:-1;60365:1786:0:o;51434:955::-;51565:19;51571:2;51575:8;51565:5;:19::i;:::-;-1:-1:-1;;;;;51626:14:0;;;:19;51622:749;;51666:11;51680:13;51728:14;;;51761:489;51818:205;51887:1;51920:2;51953:7;;;;;;51991:5;51818:30;:205::i;:::-;51787:423;;52074:112;-1:-1:-1;;;52074:7:0;:112::i;:::-;52245:3;52237:5;:11;51761:489;;52332:3;52315:13;;:20;52311:44;;52337:18;52352:1;52337:7;:18::i;:::-;51647:724;;51434:955;;;:::o;46144:2360::-;46217:20;46240:13;;;46268;;;46264:53;;46283:34;-1:-1:-1;;;46283:7:0;:34::i;:::-;46830:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;32391:28:0;;32600:11;32575:23;32571:41;33090:1;33077:15;;33051:24;33047:46;32568:52;32523:112;;46830:194;;;47242:22;;;:18;:22;;;;;:105;;47314:32;47285:62;;47242:105;;;32391:28;47537:13;;;47533:54;;47552:35;-1:-1:-1;;;47552:7:0;:35::i;:::-;47618:23;;;:12;47703:676;48122:7;48078:8;48033:1;47967:25;47904:1;47839;47808:358;48374:3;48361:9;;;;;;:16;47703:676;;-1:-1:-1;48395:13:0;:19;-1:-1:-1;41585:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:451::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3831:9;3818:23;3864:18;3856:6;3853:30;3850:50;;;3896:1;3893;3886:12;3850:50;3919:22;;3972:4;3964:13;;3960:27;-1:-1:-1;3950:55:1;;4001:1;3998;3991:12;3950:55;4024:74;4090:7;4085:2;4072:16;4067:2;4063;4059:11;4024:74;:::i;4109:118::-;4195:5;4188:13;4181:21;4174:5;4171:32;4161:60;;4217:1;4214;4207:12;4232:315;4297:6;4305;4358:2;4346:9;4337:7;4333:23;4329:32;4326:52;;;4374:1;4371;4364:12;4326:52;4397:29;4416:9;4397:29;:::i;:::-;4387:39;;4476:2;4465:9;4461:18;4448:32;4489:28;4511:5;4489:28;:::i;:::-;4536:5;4526:15;;;4232:315;;;;;:::o;4552:667::-;4647:6;4655;4663;4671;4724:3;4712:9;4703:7;4699:23;4695:33;4692:53;;;4741:1;4738;4731:12;4692:53;4764:29;4783:9;4764:29;:::i;:::-;4754:39;;4812:38;4846:2;4835:9;4831:18;4812:38;:::i;:::-;4802:48;;4897:2;4886:9;4882:18;4869:32;4859:42;;4952:2;4941:9;4937:18;4924:32;4979:18;4971:6;4968:30;4965:50;;;5011:1;5008;5001:12;4965:50;5034:22;;5087:4;5079:13;;5075:27;-1:-1:-1;5065:55:1;;5116:1;5113;5106:12;5065:55;5139:74;5205:7;5200:2;5187:16;5182:2;5178;5174:11;5139:74;:::i;:::-;5129:84;;;4552:667;;;;;;;:::o;5224:260::-;5292:6;5300;5353:2;5341:9;5332:7;5328:23;5324:32;5321:52;;;5369:1;5366;5359:12;5321:52;5392:29;5411:9;5392:29;:::i;:::-;5382:39;;5440:38;5474:2;5463:9;5459:18;5440:38;:::i;:::-;5430:48;;5224:260;;;;;:::o;5489:241::-;5545:6;5598:2;5586:9;5577:7;5573:23;5569:32;5566:52;;;5614:1;5611;5604:12;5566:52;5653:9;5640:23;5672:28;5694:5;5672:28;:::i;5735:380::-;5814:1;5810:12;;;;5857;;;5878:61;;5932:4;5924:6;5920:17;5910:27;;5878:61;5985:2;5977:6;5974:14;5954:18;5951:38;5948:161;;6031:10;6026:3;6022:20;6019:1;6012:31;6066:4;6063:1;6056:15;6094:4;6091:1;6084:15;5948:161;;5735:380;;;:::o;6547:184::-;6617:6;6670:2;6658:9;6649:7;6645:23;6641:32;6638:52;;;6686:1;6683;6676:12;6638:52;-1:-1:-1;6709:16:1;;6547:184;-1:-1:-1;6547:184:1:o;7360:245::-;7427:6;7480:2;7468:9;7459:7;7455:23;7451:32;7448:52;;;7496:1;7493;7486:12;7448:52;7528:9;7522:16;7547:28;7569:5;7547:28;:::i;7736:545::-;7838:2;7833:3;7830:11;7827:448;;;7874:1;7899:5;7895:2;7888:17;7944:4;7940:2;7930:19;8014:2;8002:10;7998:19;7995:1;7991:27;7985:4;7981:38;8050:4;8038:10;8035:20;8032:47;;;-1:-1:-1;8073:4:1;8032:47;8128:2;8123:3;8119:12;8116:1;8112:20;8106:4;8102:31;8092:41;;8183:82;8201:2;8194:5;8191:13;8183:82;;;8246:17;;;8227:1;8216:13;8183:82;;;8187:3;;;7736:545;;;:::o;8457:1352::-;8583:3;8577:10;8610:18;8602:6;8599:30;8596:56;;;8632:18;;:::i;:::-;8661:97;8751:6;8711:38;8743:4;8737:11;8711:38;:::i;:::-;8705:4;8661:97;:::i;:::-;8813:4;;8877:2;8866:14;;8894:1;8889:663;;;;9596:1;9613:6;9610:89;;;-1:-1:-1;9665:19:1;;;9659:26;9610:89;-1:-1:-1;;8414:1:1;8410:11;;;8406:24;8402:29;8392:40;8438:1;8434:11;;;8389:57;9712:81;;8859:944;;8889:663;7683:1;7676:14;;;7720:4;7707:18;;-1:-1:-1;;8925:20:1;;;9043:236;9057:7;9054:1;9051:14;9043:236;;;9146:19;;;9140:26;9125:42;;9238:27;;;;9206:1;9194:14;;;;9073:19;;9043:236;;;9047:3;9307:6;9298:7;9295:19;9292:201;;;9368:19;;;9362:26;-1:-1:-1;;9451:1:1;9447:14;;;9463:3;9443:24;9439:37;9435:42;9420:58;9405:74;;9292:201;-1:-1:-1;;;;;9539:1:1;9523:14;;;9519:22;9506:36;;-1:-1:-1;8457:1352:1:o;9814:127::-;9875:10;9870:3;9866:20;9863:1;9856:31;9906:4;9903:1;9896:15;9930:4;9927:1;9920:15;9946:125;10011:9;;;10032:10;;;10029:36;;;10045:18;;:::i;11647:168::-;11720:9;;;11751;;11768:15;;;11762:22;;11748:37;11738:71;;11789:18;;:::i;12657:496::-;12836:3;12874:6;12868:13;12890:66;12949:6;12944:3;12937:4;12929:6;12925:17;12890:66;:::i;:::-;13019:13;;12978:16;;;;13041:70;13019:13;12978:16;13088:4;13076:17;;13041:70;:::i;:::-;13127:20;;12657:496;-1:-1:-1;;;;12657:496:1:o;13158:136::-;13197:3;13225:5;13215:39;;13234:18;;:::i;:::-;-1:-1:-1;;;13270:18:1;;13158:136::o;13299:489::-;-1:-1:-1;;;;;13568:15:1;;;13550:34;;13620:15;;13615:2;13600:18;;13593:43;13667:2;13652:18;;13645:34;;;13715:3;13710:2;13695:18;;13688:31;;;13493:4;;13736:46;;13762:19;;13754:6;13736:46;:::i;:::-;13728:54;13299:489;-1:-1:-1;;;;;;13299:489:1:o;13793:249::-;13862:6;13915:2;13903:9;13894:7;13890:23;13886:32;13883:52;;;13931:1;13928;13921:12;13883:52;13963:9;13957:16;13982:30;14006:5;13982:30;:::i

Swarm Source

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