ETH Price: $2,611.88 (+0.80%)

Token

Cattietation (CMS)
 

Overview

Max Total Supply

800 CMS

Holders

749

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CMS
0x574b7f101c3a1dd02e05ca381cb5e15d684d4e37
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:
Cattietation

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-04
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * 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);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].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);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 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)
        }
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/Cattietation.sol



//   ____     _       _____    _____             U _____ u  _____      _       _____             U  ___ u  _   _     
//U /"___|U  /"\  u  |_ " _|  |_ " _|     ___    \| ___"|/ |_ " _| U  /"\  u  |_ " _|     ___     \/"_ \/ | \ |"|    
//\| | u   \/ _ \/     | |      | |      |_"_|    |  _|"     | |    \/ _ \/     | |      |_"_|    | | | |<|  \| |>   
// | |/__  / ___ \    /| |\    /| |\      | |     | |___    /| |\   / ___ \    /| |\      | | .-,_| |_| |U| |\  |u   
//  \____|/_/   \_\  u |_|U   u |_|U    U/| |\u   |_____|  u |_|U  /_/   \_\  u |_|U    U/| |\u\_)-\___/  |_| \_|    
// _// \\  \\    >>  _// \\_  _// \\_.-,_|___|_,-.<<   >>  _// \\_  \\    >>  _// \\_.-,_|___|_,-.  \\    ||   \\,-. 
//(__)(__)(__)  (__)(__) (__)(__) (__)\_)-' '-(_/(__) (__)(__) (__)(__)  (__)(__) (__)\_)-' '-(_/  (__)   (_")  (_/  

pragma solidity ^0.8.13;






contract Cattietation is
    Ownable,
    Pausable,
    ReentrancyGuard,
    ERC721AQueryable,
    OperatorFilterer
{
    uint256 public constant MAX_SUPPLY = 800;

    string private _baseTokenURI;
    uint256 public mintPrice = 0 ether;
    uint256 public maxPerWallet = 1;
    mapping(address => uint256) public mintPerWallet;
    mapping(address => bool) public filteredAddress;

    modifier onlyEOA() {
        require(msg.sender == tx.origin, "Only EOA wallets can mint");
        _;
    }

    constructor()
        ERC721A("Cattietation", "CMS")
        OperatorFilterer(
            address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6),
            true
        )
    {
        filteredAddress[0x00000000000111AbE46ff893f3B2fdF1F759a8A8] = true;
        filteredAddress[0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e] = true;

        _pause();
    }


    function mint(uint256 _quantity) external payable nonReentrant onlyEOA whenNotPaused {
        require(
            (totalSupply() + _quantity) <= MAX_SUPPLY,
            "// Max supply exceeded."
        );
        require(
            (mintPerWallet[msg.sender] + _quantity) <= maxPerWallet,
            "// Max mint exceeded."
        );
        require(msg.value >= (mintPrice * _quantity), "// Wrong mint price.");

        mintPerWallet[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function reserveMint(address receiver, uint256 mintAmount)
        external
        onlyOwner
    {
        _safeMint(receiver, mintAmount);
    }

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

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

    function setFilteredAddress(address _address, bool _isFiltered)
        external
        onlyOwner
    {
        filteredAddress[_address] = _isFiltered;
    }

    function setMintPrice(uint256 _newPrice) external onlyOwner {
        mintPrice = _newPrice;
    }

    function setPause() external onlyOwner {
        if (paused()) _unpause();
        else _pause();
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function approve(address to, uint256 tokenId)
        public
        payable
        override(ERC721A, IERC721A)
    {
        require(!filteredAddress[to], "Not allowed to approve to this address");
        super.approve(to, tokenId);
    }

    function setApprovalForAll(address operator, bool approved)
        public
        override(ERC721A, IERC721A)
    {
        require(
            !filteredAddress[operator],
            "Not allowed to approval this address"
        );
        super.setApprovalForAll(operator, approved);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC721A)
        returns (bool)
    {
        return ERC721A.supportsInterface(interfaceId);
    }

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

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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"filteredAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"reserveMint","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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isFiltered","type":"bool"}],"name":"setFilteredAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPause","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b556001600c553480156200001b57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020016b21b0ba3a34b2ba30ba34b7b760a11b81525060405180604001604052806003815260200162434d5360e81b8152506200008e62000088620002a160201b60201c565b620002a5565b6000805460ff60a01b19169055600180558151620000b4906004906020850190620003b3565b508051620000ca906005906020840190620003b3565b50600160025550506daaeb6d7670e522a718067333cd4e3b15620002175780156200016557604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200014657600080fd5b505af11580156200015b573d6000803e3d6000fd5b5050505062000217565b6001600160a01b03821615620001b65760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200012b565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001fd57600080fd5b505af115801562000212573d6000803e3d6000fd5b505050505b5050600e6020527fca1fc1a6a0f37ef2fec1b9c2b5d58954931841df130389b11a25b18547dd0cb58054600160ff19918216811790925573f42aa99f011a1fa7cda90e5e98b277e306bca83e6000527f3f43c0c7a0071e4f19b8db356ef92ef9c17f6a73c60a57fcdd56c88e8de534c5805490911690911790556200029b620002f5565b62000495565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620002ff62000358565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200033b3390565b6040516001600160a01b03909116815260200160405180910390a1565b6200036c600054600160a01b900460ff1690565b15620003b15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b828054620003c19062000459565b90600052602060002090601f016020900481019282620003e5576000855562000430565b82601f106200040057805160ff191683800117855562000430565b8280016001018555821562000430579182015b828111156200043057825182559160200191906001019062000413565b506200043e92915062000442565b5090565b5b808211156200043e576000815560010162000443565b600181811c908216806200046e57607f821691505b6020821081036200048f57634e487b7160e01b600052602260045260246000fd5b50919050565b6121cb80620004a56000396000f3fe6080604052600436106102045760003560e01c80636817c76c11610118578063b0ea1802116100a0578063d431b1ac1161006f578063d431b1ac146105c8578063e6444282146105dd578063e985e9c5146105fd578063f2fde38b14610646578063f4a0a5281461066657600080fd5b8063b0ea180214610548578063b88d4fde14610568578063c23dc68f1461057b578063c87b56dd146105a857600080fd5b80638da5cb5b116100e75780638da5cb5b146104c257806395d89b41146104e057806399a2557a146104f5578063a0712d6814610515578063a22cb4651461052857600080fd5b80636817c76c1461044a57806370a0823114610460578063715018a6146104805780638462151c1461049557600080fd5b806332cb6b0c1161019b578063453c23101161016a578063453c2310146103a857806355f804b3146103be5780635bbb2177146103de5780635c975abb1461040b5780636352211e1461042a57600080fd5b806332cb6b0c146103485780633ccfd60b1461035e57806341f434341461037357806342842e0e1461039557600080fd5b806313413cd2116101d757806313413cd2146102ad578063147757f9146102e857806318160ddd1461031857806323b872dd1461033557600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611bdd565b610686565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610697565b6040516102359190611c52565b34801561026c57600080fd5b5061028061027b366004611c65565b610729565b6040516001600160a01b039091168152602001610235565b6102ab6102a6366004611c9a565b61076d565b005b3480156102b957600080fd5b506102da6102c8366004611cc4565b600d6020526000908152604090205481565b604051908152602001610235565b3480156102f457600080fd5b50610229610303366004611cc4565b600e6020526000908152604090205460ff1681565b34801561032457600080fd5b5060035460025403600019016102da565b6102ab610343366004611cdf565b6107f8565b34801561035457600080fd5b506102da61032081565b34801561036a57600080fd5b506102ab610823565b34801561037f57600080fd5b506102806daaeb6d7670e522a718067333cd4e81565b6102ab6103a3366004611cdf565b61085a565b3480156103b457600080fd5b506102da600c5481565b3480156103ca57600080fd5b506102ab6103d9366004611d1b565b61087f565b3480156103ea57600080fd5b506103fe6103f9366004611d8d565b610898565b6040516102359190611e2d565b34801561041757600080fd5b50600054600160a01b900460ff16610229565b34801561043657600080fd5b50610280610445366004611c65565b610964565b34801561045657600080fd5b506102da600b5481565b34801561046c57600080fd5b506102da61047b366004611cc4565b61096f565b34801561048c57600080fd5b506102ab6109be565b3480156104a157600080fd5b506104b56104b0366004611cc4565b6109d2565b6040516102359190611e6f565b3480156104ce57600080fd5b506000546001600160a01b0316610280565b3480156104ec57600080fd5b50610253610adb565b34801561050157600080fd5b506104b5610510366004611ea7565b610aea565b6102ab610523366004611c65565b610c72565b34801561053457600080fd5b506102ab610543366004611ee8565b610e2a565b34801561055457600080fd5b506102ab610563366004611c9a565b610ea9565b6102ab610576366004611f35565b610ebb565b34801561058757600080fd5b5061059b610596366004611c65565b610ee8565b6040516102359190612011565b3480156105b457600080fd5b506102536105c3366004611c65565b610f70565b3480156105d457600080fd5b506102ab610ff3565b3480156105e957600080fd5b506102ab6105f8366004611ee8565b61101d565b34801561060957600080fd5b5061022961061836600461201f565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561065257600080fd5b506102ab610661366004611cc4565b611050565b34801561067257600080fd5b506102ab610681366004611c65565b6110c6565b6000610691826110d3565b92915050565b6060600480546106a690612052565b80601f01602080910402602001604051908101604052809291908181526020018280546106d290612052565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b600061073482611121565b610751576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6001600160a01b0382166000908152600e602052604090205460ff16156107ea5760405162461bcd60e51b815260206004820152602660248201527f4e6f7420616c6c6f77656420746f20617070726f766520746f2074686973206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6107f48282611156565b5050565b826001600160a01b038116331461081257610812336111f6565b61081d8484846112af565b50505050565b61082b611447565b60405133904780156108fc02916000818181858888f19350505050158015610857573d6000803e3d6000fd5b50565b826001600160a01b038116331461087457610874336111f6565b61081d8484846114a1565b610887611447565b610893600a8383611b2e565b505050565b60608160008167ffffffffffffffff8111156108b6576108b6611f1f565b60405190808252806020026020018201604052801561090857816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816108d45790505b50905060005b82811461095b5761093686868381811061092a5761092a61208c565b90506020020135610ee8565b8282815181106109485761094861208c565b602090810291909101015260010161090e565b50949350505050565b6000610691826114bc565b60006001600160a01b038216610998576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6109c6611447565b6109d0600061152b565b565b606060008060006109e28561096f565b905060008167ffffffffffffffff8111156109ff576109ff611f1f565b604051908082528060200260200182016040528015610a28578160200160208202803683370190505b509050610a5560408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610acf57610a688161157b565b91508160400151610ac75781516001600160a01b031615610a8857815194505b876001600160a01b0316856001600160a01b031603610ac75780838780600101985081518110610aba57610aba61208c565b6020026020010181815250505b600101610a58565b50909695505050505050565b6060600580546106a690612052565b6060818310610b0c57604051631960ccad60e11b815260040160405180910390fd5b600080610b1860025490565b90506001851015610b2857600194505b80841115610b34578093505b6000610b3f8761096f565b905084861015610b5e5785850381811015610b58578091505b50610b62565b5060005b60008167ffffffffffffffff811115610b7d57610b7d611f1f565b604051908082528060200260200182016040528015610ba6578160200160208202803683370190505b50905081600003610bbc579350610c6b92505050565b6000610bc788610ee8565b905060008160400151610bd8575080515b885b888114158015610bea5750848714155b15610c5f57610bf88161157b565b92508260400151610c575782516001600160a01b031615610c1857825191505b8a6001600160a01b0316826001600160a01b031603610c575780848880600101995081518110610c4a57610c4a61208c565b6020026020010181815250505b600101610bda565b50505092835250909150505b9392505050565b610c7a6115b7565b333214610cc95760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920454f412077616c6c6574732063616e206d696e740000000000000060448201526064016107e1565b610cd1611610565b6003546002546103209183910360001901610cec91906120b8565b1115610d3a5760405162461bcd60e51b815260206004820152601760248201527f2f2f204d617820737570706c792065786365656465642e00000000000000000060448201526064016107e1565b600c54336000908152600d6020526040902054610d589083906120b8565b1115610d9e5760405162461bcd60e51b815260206004820152601560248201527417979026b0bc1036b4b73a1032bc31b2b2b232b21760591b60448201526064016107e1565b80600b54610dac91906120d0565b341015610df25760405162461bcd60e51b81526020600482015260146024820152731797902bb937b7339036b4b73a10383934b1b29760611b60448201526064016107e1565b336000908152600d602052604081208054839290610e119084906120b8565b90915550610e219050338261165d565b61085760018055565b6001600160a01b0382166000908152600e602052604090205460ff1615610e9f5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420616c6c6f77656420746f20617070726f76616c2074686973206164646044820152637265737360e01b60648201526084016107e1565b6107f48282611677565b610eb1611447565b6107f4828261165d565b836001600160a01b0381163314610ed557610ed5336111f6565b610ee1858585856116e3565b5050505050565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080610f4157506002548310155b15610f4c5792915050565b610f558361157b565b9050806040015115610f675792915050565b610c6b83611727565b6060610f7b82611121565b610f9857604051630a14c4b560e41b815260040160405180910390fd5b6000610fa261175c565b90508051600003610fc25760405180602001604052806000815250610c6b565b80610fcc8461176b565b604051602001610fdd9291906120ef565b6040516020818303038152906040529392505050565b610ffb611447565b600054600160a01b900460ff1615611015576109d06117af565b6109d0611804565b611025611447565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b611058611447565b6001600160a01b0381166110bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b6108578161152b565b6110ce611447565b600b55565b60006301ffc9a760e01b6001600160e01b03198316148061110457506380ac58cd60e01b6001600160e01b03198316145b806106915750506001600160e01b031916635b5e139f60e01b1490565b600081600111158015611135575060025482105b8015610691575050600090815260066020526040902054600160e01b161590565b600061116182610964565b9050336001600160a01b0382161461119a5761117d8133610618565b61119a576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6daaeb6d7670e522a718067333cd4e3b1561085757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611287919061211e565b61085757604051633b79c77360e21b81526001600160a01b03821660048201526024016107e1565b60006112ba826114bc565b9050836001600160a01b0316816001600160a01b0316146112ed5760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b0388169091141761133a5761131d8633610618565b61133a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661136157604051633a954ecd60e21b815260040160405180910390fd5b801561136c57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b841690036113fe576001840160008181526006602052604081205490036113fc5760025481146113fc5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b031633146109d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e1565b61089383838360405180602001604052806000815250610ebb565b60008180600111611512576002548110156115125760008181526006602052604081205490600160e01b82169003611510575b80600003610c6b5750600019016000818152600660205260409020546114ef565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526006602052604090205461069190611847565b6002600154036116095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e1565b6002600155565b600054600160a01b900460ff16156109d05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107e1565b6107f482826040518060200160405280600081525061188f565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116ee8484846107f8565b6001600160a01b0383163b1561081d5761170a848484846118f5565b61081d576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152610691611757836114bc565b611847565b6060600a80546106a690612052565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806117855750819003601f19909101908152919050565b6117b76119e0565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61180c611610565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117e73390565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6118998383611a30565b6001600160a01b0383163b15610893576002548281035b6118c360008683806001019450866118f5565b6118e0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118b0578160025414610ee157600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061192a90339089908890889060040161213b565b6020604051808303816000875af1925050508015611965575060408051601f3d908101601f1916820190925261196291810190612178565b60015b6119c3573d808015611993576040519150601f19603f3d011682016040523d82523d6000602084013e611998565b606091505b5080516000036119bb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600054600160a01b900460ff166109d05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107e1565b6002546000829003611a555760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b0457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611acc565b5081600003611b2557604051622e076360e81b815260040160405180910390fd5b60025550505050565b828054611b3a90612052565b90600052602060002090601f016020900481019282611b5c5760008555611ba2565b82601f10611b755782800160ff19823516178555611ba2565b82800160010185558215611ba2579182015b82811115611ba2578235825591602001919060010190611b87565b50611bae929150611bb2565b5090565b5b80821115611bae5760008155600101611bb3565b6001600160e01b03198116811461085757600080fd5b600060208284031215611bef57600080fd5b8135610c6b81611bc7565b60005b83811015611c15578181015183820152602001611bfd565b8381111561081d5750506000910152565b60008151808452611c3e816020860160208601611bfa565b601f01601f19169290920160200192915050565b602081526000610c6b6020830184611c26565b600060208284031215611c7757600080fd5b5035919050565b80356001600160a01b0381168114611c9557600080fd5b919050565b60008060408385031215611cad57600080fd5b611cb683611c7e565b946020939093013593505050565b600060208284031215611cd657600080fd5b610c6b82611c7e565b600080600060608486031215611cf457600080fd5b611cfd84611c7e565b9250611d0b60208501611c7e565b9150604084013590509250925092565b60008060208385031215611d2e57600080fd5b823567ffffffffffffffff80821115611d4657600080fd5b818501915085601f830112611d5a57600080fd5b813581811115611d6957600080fd5b866020828501011115611d7b57600080fd5b60209290920196919550909350505050565b60008060208385031215611da057600080fd5b823567ffffffffffffffff80821115611db857600080fd5b818501915085601f830112611dcc57600080fd5b813581811115611ddb57600080fd5b8660208260051b8501011115611d7b57600080fd5b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610acf57611e5c838551611df0565b9284019260809290920191600101611e49565b6020808252825182820181905260009190848201906040850190845b81811015610acf57835183529284019291840191600101611e8b565b600080600060608486031215611ebc57600080fd5b611ec584611c7e565b95602085013595506040909401359392505050565b801515811461085757600080fd5b60008060408385031215611efb57600080fd5b611f0483611c7e565b91506020830135611f1481611eda565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611f4b57600080fd5b611f5485611c7e565b9350611f6260208601611c7e565b925060408501359150606085013567ffffffffffffffff80821115611f8657600080fd5b818701915087601f830112611f9a57600080fd5b813581811115611fac57611fac611f1f565b604051601f8201601f19908116603f01168101908382118183101715611fd457611fd4611f1f565b816040528281528a6020848701011115611fed57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b608081016106918284611df0565b6000806040838503121561203257600080fd5b61203b83611c7e565b915061204960208401611c7e565b90509250929050565b600181811c9082168061206657607f821691505b60208210810361208657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156120cb576120cb6120a2565b500190565b60008160001904831182151516156120ea576120ea6120a2565b500290565b60008351612101818460208801611bfa565b835190830190612115818360208801611bfa565b01949350505050565b60006020828403121561213057600080fd5b8151610c6b81611eda565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216e90830184611c26565b9695505050505050565b60006020828403121561218a57600080fd5b8151610c6b81611bc756fea2646970667358221220c2e550aa71c5be82e11e59db7a70541d037bc0c9efa6e645fcb2606c5c98c8bc64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636817c76c11610118578063b0ea1802116100a0578063d431b1ac1161006f578063d431b1ac146105c8578063e6444282146105dd578063e985e9c5146105fd578063f2fde38b14610646578063f4a0a5281461066657600080fd5b8063b0ea180214610548578063b88d4fde14610568578063c23dc68f1461057b578063c87b56dd146105a857600080fd5b80638da5cb5b116100e75780638da5cb5b146104c257806395d89b41146104e057806399a2557a146104f5578063a0712d6814610515578063a22cb4651461052857600080fd5b80636817c76c1461044a57806370a0823114610460578063715018a6146104805780638462151c1461049557600080fd5b806332cb6b0c1161019b578063453c23101161016a578063453c2310146103a857806355f804b3146103be5780635bbb2177146103de5780635c975abb1461040b5780636352211e1461042a57600080fd5b806332cb6b0c146103485780633ccfd60b1461035e57806341f434341461037357806342842e0e1461039557600080fd5b806313413cd2116101d757806313413cd2146102ad578063147757f9146102e857806318160ddd1461031857806323b872dd1461033557600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611bdd565b610686565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610697565b6040516102359190611c52565b34801561026c57600080fd5b5061028061027b366004611c65565b610729565b6040516001600160a01b039091168152602001610235565b6102ab6102a6366004611c9a565b61076d565b005b3480156102b957600080fd5b506102da6102c8366004611cc4565b600d6020526000908152604090205481565b604051908152602001610235565b3480156102f457600080fd5b50610229610303366004611cc4565b600e6020526000908152604090205460ff1681565b34801561032457600080fd5b5060035460025403600019016102da565b6102ab610343366004611cdf565b6107f8565b34801561035457600080fd5b506102da61032081565b34801561036a57600080fd5b506102ab610823565b34801561037f57600080fd5b506102806daaeb6d7670e522a718067333cd4e81565b6102ab6103a3366004611cdf565b61085a565b3480156103b457600080fd5b506102da600c5481565b3480156103ca57600080fd5b506102ab6103d9366004611d1b565b61087f565b3480156103ea57600080fd5b506103fe6103f9366004611d8d565b610898565b6040516102359190611e2d565b34801561041757600080fd5b50600054600160a01b900460ff16610229565b34801561043657600080fd5b50610280610445366004611c65565b610964565b34801561045657600080fd5b506102da600b5481565b34801561046c57600080fd5b506102da61047b366004611cc4565b61096f565b34801561048c57600080fd5b506102ab6109be565b3480156104a157600080fd5b506104b56104b0366004611cc4565b6109d2565b6040516102359190611e6f565b3480156104ce57600080fd5b506000546001600160a01b0316610280565b3480156104ec57600080fd5b50610253610adb565b34801561050157600080fd5b506104b5610510366004611ea7565b610aea565b6102ab610523366004611c65565b610c72565b34801561053457600080fd5b506102ab610543366004611ee8565b610e2a565b34801561055457600080fd5b506102ab610563366004611c9a565b610ea9565b6102ab610576366004611f35565b610ebb565b34801561058757600080fd5b5061059b610596366004611c65565b610ee8565b6040516102359190612011565b3480156105b457600080fd5b506102536105c3366004611c65565b610f70565b3480156105d457600080fd5b506102ab610ff3565b3480156105e957600080fd5b506102ab6105f8366004611ee8565b61101d565b34801561060957600080fd5b5061022961061836600461201f565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561065257600080fd5b506102ab610661366004611cc4565b611050565b34801561067257600080fd5b506102ab610681366004611c65565b6110c6565b6000610691826110d3565b92915050565b6060600480546106a690612052565b80601f01602080910402602001604051908101604052809291908181526020018280546106d290612052565b801561071f5780601f106106f45761010080835404028352916020019161071f565b820191906000526020600020905b81548152906001019060200180831161070257829003601f168201915b5050505050905090565b600061073482611121565b610751576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6001600160a01b0382166000908152600e602052604090205460ff16156107ea5760405162461bcd60e51b815260206004820152602660248201527f4e6f7420616c6c6f77656420746f20617070726f766520746f2074686973206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6107f48282611156565b5050565b826001600160a01b038116331461081257610812336111f6565b61081d8484846112af565b50505050565b61082b611447565b60405133904780156108fc02916000818181858888f19350505050158015610857573d6000803e3d6000fd5b50565b826001600160a01b038116331461087457610874336111f6565b61081d8484846114a1565b610887611447565b610893600a8383611b2e565b505050565b60608160008167ffffffffffffffff8111156108b6576108b6611f1f565b60405190808252806020026020018201604052801561090857816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816108d45790505b50905060005b82811461095b5761093686868381811061092a5761092a61208c565b90506020020135610ee8565b8282815181106109485761094861208c565b602090810291909101015260010161090e565b50949350505050565b6000610691826114bc565b60006001600160a01b038216610998576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6109c6611447565b6109d0600061152b565b565b606060008060006109e28561096f565b905060008167ffffffffffffffff8111156109ff576109ff611f1f565b604051908082528060200260200182016040528015610a28578160200160208202803683370190505b509050610a5560408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610acf57610a688161157b565b91508160400151610ac75781516001600160a01b031615610a8857815194505b876001600160a01b0316856001600160a01b031603610ac75780838780600101985081518110610aba57610aba61208c565b6020026020010181815250505b600101610a58565b50909695505050505050565b6060600580546106a690612052565b6060818310610b0c57604051631960ccad60e11b815260040160405180910390fd5b600080610b1860025490565b90506001851015610b2857600194505b80841115610b34578093505b6000610b3f8761096f565b905084861015610b5e5785850381811015610b58578091505b50610b62565b5060005b60008167ffffffffffffffff811115610b7d57610b7d611f1f565b604051908082528060200260200182016040528015610ba6578160200160208202803683370190505b50905081600003610bbc579350610c6b92505050565b6000610bc788610ee8565b905060008160400151610bd8575080515b885b888114158015610bea5750848714155b15610c5f57610bf88161157b565b92508260400151610c575782516001600160a01b031615610c1857825191505b8a6001600160a01b0316826001600160a01b031603610c575780848880600101995081518110610c4a57610c4a61208c565b6020026020010181815250505b600101610bda565b50505092835250909150505b9392505050565b610c7a6115b7565b333214610cc95760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920454f412077616c6c6574732063616e206d696e740000000000000060448201526064016107e1565b610cd1611610565b6003546002546103209183910360001901610cec91906120b8565b1115610d3a5760405162461bcd60e51b815260206004820152601760248201527f2f2f204d617820737570706c792065786365656465642e00000000000000000060448201526064016107e1565b600c54336000908152600d6020526040902054610d589083906120b8565b1115610d9e5760405162461bcd60e51b815260206004820152601560248201527417979026b0bc1036b4b73a1032bc31b2b2b232b21760591b60448201526064016107e1565b80600b54610dac91906120d0565b341015610df25760405162461bcd60e51b81526020600482015260146024820152731797902bb937b7339036b4b73a10383934b1b29760611b60448201526064016107e1565b336000908152600d602052604081208054839290610e119084906120b8565b90915550610e219050338261165d565b61085760018055565b6001600160a01b0382166000908152600e602052604090205460ff1615610e9f5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420616c6c6f77656420746f20617070726f76616c2074686973206164646044820152637265737360e01b60648201526084016107e1565b6107f48282611677565b610eb1611447565b6107f4828261165d565b836001600160a01b0381163314610ed557610ed5336111f6565b610ee1858585856116e3565b5050505050565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080610f4157506002548310155b15610f4c5792915050565b610f558361157b565b9050806040015115610f675792915050565b610c6b83611727565b6060610f7b82611121565b610f9857604051630a14c4b560e41b815260040160405180910390fd5b6000610fa261175c565b90508051600003610fc25760405180602001604052806000815250610c6b565b80610fcc8461176b565b604051602001610fdd9291906120ef565b6040516020818303038152906040529392505050565b610ffb611447565b600054600160a01b900460ff1615611015576109d06117af565b6109d0611804565b611025611447565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b611058611447565b6001600160a01b0381166110bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b6108578161152b565b6110ce611447565b600b55565b60006301ffc9a760e01b6001600160e01b03198316148061110457506380ac58cd60e01b6001600160e01b03198316145b806106915750506001600160e01b031916635b5e139f60e01b1490565b600081600111158015611135575060025482105b8015610691575050600090815260066020526040902054600160e01b161590565b600061116182610964565b9050336001600160a01b0382161461119a5761117d8133610618565b61119a576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6daaeb6d7670e522a718067333cd4e3b1561085757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611287919061211e565b61085757604051633b79c77360e21b81526001600160a01b03821660048201526024016107e1565b60006112ba826114bc565b9050836001600160a01b0316816001600160a01b0316146112ed5760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b0388169091141761133a5761131d8633610618565b61133a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661136157604051633a954ecd60e21b815260040160405180910390fd5b801561136c57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b841690036113fe576001840160008181526006602052604081205490036113fc5760025481146113fc5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b031633146109d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e1565b61089383838360405180602001604052806000815250610ebb565b60008180600111611512576002548110156115125760008181526006602052604081205490600160e01b82169003611510575b80600003610c6b5750600019016000818152600660205260409020546114ef565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526006602052604090205461069190611847565b6002600154036116095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e1565b6002600155565b600054600160a01b900460ff16156109d05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107e1565b6107f482826040518060200160405280600081525061188f565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116ee8484846107f8565b6001600160a01b0383163b1561081d5761170a848484846118f5565b61081d576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152610691611757836114bc565b611847565b6060600a80546106a690612052565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806117855750819003601f19909101908152919050565b6117b76119e0565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61180c611610565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117e73390565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6118998383611a30565b6001600160a01b0383163b15610893576002548281035b6118c360008683806001019450866118f5565b6118e0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106118b0578160025414610ee157600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061192a90339089908890889060040161213b565b6020604051808303816000875af1925050508015611965575060408051601f3d908101601f1916820190925261196291810190612178565b60015b6119c3573d808015611993576040519150601f19603f3d011682016040523d82523d6000602084013e611998565b606091505b5080516000036119bb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600054600160a01b900460ff166109d05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107e1565b6002546000829003611a555760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b0457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611acc565b5081600003611b2557604051622e076360e81b815260040160405180910390fd5b60025550505050565b828054611b3a90612052565b90600052602060002090601f016020900481019282611b5c5760008555611ba2565b82601f10611b755782800160ff19823516178555611ba2565b82800160010185558215611ba2579182015b82811115611ba2578235825591602001919060010190611b87565b50611bae929150611bb2565b5090565b5b80821115611bae5760008155600101611bb3565b6001600160e01b03198116811461085757600080fd5b600060208284031215611bef57600080fd5b8135610c6b81611bc7565b60005b83811015611c15578181015183820152602001611bfd565b8381111561081d5750506000910152565b60008151808452611c3e816020860160208601611bfa565b601f01601f19169290920160200192915050565b602081526000610c6b6020830184611c26565b600060208284031215611c7757600080fd5b5035919050565b80356001600160a01b0381168114611c9557600080fd5b919050565b60008060408385031215611cad57600080fd5b611cb683611c7e565b946020939093013593505050565b600060208284031215611cd657600080fd5b610c6b82611c7e565b600080600060608486031215611cf457600080fd5b611cfd84611c7e565b9250611d0b60208501611c7e565b9150604084013590509250925092565b60008060208385031215611d2e57600080fd5b823567ffffffffffffffff80821115611d4657600080fd5b818501915085601f830112611d5a57600080fd5b813581811115611d6957600080fd5b866020828501011115611d7b57600080fd5b60209290920196919550909350505050565b60008060208385031215611da057600080fd5b823567ffffffffffffffff80821115611db857600080fd5b818501915085601f830112611dcc57600080fd5b813581811115611ddb57600080fd5b8660208260051b8501011115611d7b57600080fd5b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610acf57611e5c838551611df0565b9284019260809290920191600101611e49565b6020808252825182820181905260009190848201906040850190845b81811015610acf57835183529284019291840191600101611e8b565b600080600060608486031215611ebc57600080fd5b611ec584611c7e565b95602085013595506040909401359392505050565b801515811461085757600080fd5b60008060408385031215611efb57600080fd5b611f0483611c7e565b91506020830135611f1481611eda565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611f4b57600080fd5b611f5485611c7e565b9350611f6260208601611c7e565b925060408501359150606085013567ffffffffffffffff80821115611f8657600080fd5b818701915087601f830112611f9a57600080fd5b813581811115611fac57611fac611f1f565b604051601f8201601f19908116603f01168101908382118183101715611fd457611fd4611f1f565b816040528281528a6020848701011115611fed57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b608081016106918284611df0565b6000806040838503121561203257600080fd5b61203b83611c7e565b915061204960208401611c7e565b90509250929050565b600181811c9082168061206657607f821691505b60208210810361208657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156120cb576120cb6120a2565b500190565b60008160001904831182151516156120ea576120ea6120a2565b500290565b60008351612101818460208801611bfa565b835190830190612115818360208801611bfa565b01949350505050565b60006020828403121561213057600080fd5b8151610c6b81611eda565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216e90830184611c26565b9695505050505050565b60006020828403121561218a57600080fd5b8151610c6b81611bc756fea2646970667358221220c2e550aa71c5be82e11e59db7a70541d037bc0c9efa6e645fcb2606c5c98c8bc64736f6c634300080d0033

Deployed Bytecode Sourcemap

75452:3988:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79091:224;;;;;;;;;;-1:-1:-1;79091:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;79091:224:0;;;;;;;;33432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39923:218::-;;;;;;;;;;-1:-1:-1;39923:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;39923:218:0;1528:203:1;78524:248:0;;;;;;:::i;:::-;;:::i;:::-;;75744:48;;;;;;;;;;-1:-1:-1;75744:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;75744:48:0;2364:177:1;75799:47:0;;;;;;;;;;-1:-1:-1;75799:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29183:323;;;;;;;;;;-1:-1:-1;29457:12:0;;29441:13;;:28;-1:-1:-1;;29441:46:0;29183:323;;77778:224;;;;;;:::i;:::-;;:::i;75581:40::-;;;;;;;;;;;;75618:3;75581:40;;77661:109;;;;;;;;;;;;;:::i;5873:143::-;;;;;;;;;;;;5973:42;5873:143;;78010:232;;;;;;:::i;:::-;;:::i;75706:31::-;;;;;;;;;;;;;;;;77044:106;;;;;;;;;;-1:-1:-1;77044:106:0;;;;;:::i;:::-;;:::i;69753:528::-;;;;;;;;;;-1:-1:-1;69753:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10444:86::-;;;;;;;;;;-1:-1:-1;10491:4:0;10515:7;-1:-1:-1;;;10515:7:0;;;;10444:86;;34825:152;;;;;;;;;;-1:-1:-1;34825:152:0;;;;;:::i;:::-;;:::i;75665:34::-;;;;;;;;;;;;;;;;30367:233;;;;;;;;;;-1:-1:-1;30367:233:0;;;;;:::i;:::-;;:::i;13309:103::-;;;;;;;;;;;;;:::i;73629:900::-;;;;;;;;;;-1:-1:-1;73629:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;12661:87::-;;;;;;;;;;-1:-1:-1;12707:7:0;12734:6;-1:-1:-1;;;;;12734:6:0;12661:87;;33608:104;;;;;;;;;;;;;:::i;70669:2513::-;;;;;;;;;;-1:-1:-1;70669:2513:0;;;;;:::i;:::-;;:::i;76348:529::-;;;;;;:::i;:::-;;:::i;78780:303::-;;;;;;;;;;-1:-1:-1;78780:303:0;;;;;:::i;:::-;;:::i;76885:151::-;;;;;;;;;;-1:-1:-1;76885:151:0;;;;;:::i;:::-;;:::i;78250:266::-;;;;;;:::i;:::-;;:::i;69166:428::-;;;;;;;;;;-1:-1:-1;69166:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33818:318::-;;;;;;;;;;-1:-1:-1;33818:318:0;;;;;:::i;:::-;;:::i;77547:106::-;;;;;;;;;;;;;:::i;77267:164::-;;;;;;;;;;-1:-1:-1;77267:164:0;;;;;:::i;:::-;;:::i;40872:::-;;;;;;;;;;-1:-1:-1;40872:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40993:25:0;;;40969:4;40993:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40872:164;13567:201;;;;;;;;;;-1:-1:-1;13567:201:0;;;;;:::i;:::-;;:::i;77439:100::-;;;;;;;;;;-1:-1:-1;77439:100:0;;;;;:::i;:::-;;:::i;79091:224::-;79240:4;79269:38;79295:11;79269:25;:38::i;:::-;79262:45;79091:224;-1:-1:-1;;79091:224:0:o;33432:100::-;33486:13;33519:5;33512:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33432:100;:::o;39923:218::-;39999:7;40024:16;40032:7;40024;:16::i;:::-;40019:64;;40049:34;;-1:-1:-1;;;40049:34:0;;;;;;;;;;;40019:64;-1:-1:-1;40103:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;40103:30:0;;39923:218::o;78524:248::-;-1:-1:-1;;;;;78665:19:0;;;;;;:15;:19;;;;;;;;78664:20;78656:71;;;;-1:-1:-1;;;78656:71:0;;9221:2:1;78656:71:0;;;9203:21:1;9260:2;9240:18;;;9233:30;9299:34;9279:18;;;9272:62;-1:-1:-1;;;9350:18:1;;;9343:36;9396:19;;78656:71:0;;;;;;;;;78738:26;78752:2;78756:7;78738:13;:26::i;:::-;78524:248;;:::o;77778:224::-;77940:4;-1:-1:-1;;;;;7214:18:0;;7222:10;7214:18;7210:83;;7249:32;7270:10;7249:20;:32::i;:::-;77957:37:::1;77976:4;77982:2;77986:7;77957:18;:37::i;:::-;77778:224:::0;;;;:::o;77661:109::-;12547:13;:11;:13::i;:::-;77711:51:::1;::::0;77719:10:::1;::::0;77740:21:::1;77711:51:::0;::::1;;;::::0;::::1;::::0;;;77740:21;77719:10;77711:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;77661:109::o:0;78010:232::-;78176:4;-1:-1:-1;;;;;7214:18:0;;7222:10;7214:18;7210:83;;7249:32;7270:10;7249:20;:32::i;:::-;78193:41:::1;78216:4;78222:2;78226:7;78193:22;:41::i;77044:106::-:0;12547:13;:11;:13::i;:::-;77119:23:::1;:13;77135:7:::0;;77119:23:::1;:::i;:::-;;77044:106:::0;;:::o;69753:528::-;69897:23;69988:8;69963:22;69988:8;70055:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70055:36:0;;-1:-1:-1;;70055:36:0;;;;;;;;;;;;70018:73;;70111:9;70106:125;70127:14;70122:1;:19;70106:125;;70183:32;70203:8;;70212:1;70203:11;;;;;;;:::i;:::-;;;;;;;70183:19;:32::i;:::-;70167:10;70178:1;70167:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;70143:3;;70106:125;;;-1:-1:-1;70252:10:0;69753:528;-1:-1:-1;;;;69753:528:0:o;34825:152::-;34897:7;34940:27;34959:7;34940:18;:27::i;30367:233::-;30439:7;-1:-1:-1;;;;;30463:19:0;;30459:60;;30491:28;;-1:-1:-1;;;30491:28:0;;;;;;;;;;;30459:60;-1:-1:-1;;;;;;30537:25:0;;;;;:18;:25;;;;;;24526:13;30537:55;;30367:233::o;13309:103::-;12547:13;:11;:13::i;:::-;13374:30:::1;13401:1;13374:18;:30::i;:::-;13309:103::o:0;73629:900::-;73707:16;73761:19;73795:25;73835:22;73860:16;73870:5;73860:9;:16::i;:::-;73835:41;;73891:25;73933:14;73919:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73919:29:0;;73891:57;;73963:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73963:31:0;77250:1;74009:472;74058:14;74043:11;:29;74009:472;;74110:15;74123:1;74110:12;:15::i;:::-;74098:27;;74148:9;:16;;;74189:8;74144:73;74239:14;;-1:-1:-1;;;;;74239:28:0;;74235:111;;74312:14;;;-1:-1:-1;74235:111:0;74389:5;-1:-1:-1;;;;;74368:26:0;:17;-1:-1:-1;;;;;74368:26:0;;74364:102;;74445:1;74419:8;74428:13;;;;;;74419:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;74364:102;74074:3;;74009:472;;;-1:-1:-1;74502:8:0;;73629:900;-1:-1:-1;;;;;;73629:900:0:o;33608:104::-;33664:13;33697:7;33690:14;;;;;:::i;70669:2513::-;70812:16;70879:4;70870:5;:13;70866:45;;70892:19;;-1:-1:-1;;;70892:19:0;;;;;;;;;;;70866:45;70926:19;70960:17;70980:14;28952:13;;;28870:103;70980:14;70960:34;-1:-1:-1;77250:1:0;71072:5;:23;71068:87;;;77250:1;71116:23;;71068:87;71231:9;71224:4;:16;71220:73;;;71268:9;71261:16;;71220:73;71307:25;71335:16;71345:5;71335:9;:16::i;:::-;71307:44;;71529:4;71521:5;:12;71517:278;;;71576:12;;;71611:31;;;71607:111;;;71687:11;71667:31;;71607:111;71535:198;71517:278;;;-1:-1:-1;71778:1:0;71517:278;71809:25;71851:17;71837:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71837:32:0;;71809:60;;71888:17;71909:1;71888:22;71884:78;;71938:8;-1:-1:-1;71931:15:0;;-1:-1:-1;;;71931:15:0;71884:78;72106:31;72140:26;72160:5;72140:19;:26::i;:::-;72106:60;;72181:25;72426:9;:16;;;72421:92;;-1:-1:-1;72483:14:0;;72421:92;72544:5;72527:478;72556:4;72551:1;:9;;:45;;;;;72579:17;72564:11;:32;;72551:45;72527:478;;;72634:15;72647:1;72634:12;:15::i;:::-;72622:27;;72672:9;:16;;;72713:8;72668:73;72763:14;;-1:-1:-1;;;;;72763:28:0;;72759:111;;72836:14;;;-1:-1:-1;72759:111:0;72913:5;-1:-1:-1;;;;;72892:26:0;:17;-1:-1:-1;;;;;72892:26:0;;72888:102;;72969:1;72943:8;72952:13;;;;;;72943:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;72888:102;72598:3;;72527:478;;;-1:-1:-1;;;73090:29:0;;;-1:-1:-1;73097:8:0;;-1:-1:-1;;70669:2513:0;;;;;;:::o;76348:529::-;2345:21;:19;:21::i;:::-;75893:10:::1;75907:9;75893:23;75885:61;;;::::0;-1:-1:-1;;;75885:61:0;;9760:2:1;75885:61:0::1;::::0;::::1;9742:21:1::0;9799:2;9779:18;;;9772:30;9838:27;9818:18;;;9811:55;9883:18;;75885:61:0::1;9558:349:1::0;75885:61:0::1;10049:19:::2;:17;:19::i;:::-;29457:12:::0;;29441:13;;75618:3:::3;::::0;76483:9;;29441:28;-1:-1:-1;;29441:46:0;76467:25:::3;;;;:::i;:::-;76466:41;;76444:114;;;::::0;-1:-1:-1;;;76444:114:0;;10379:2:1;76444:114:0::3;::::0;::::3;10361:21:1::0;10418:2;10398:18;;;10391:30;10457:25;10437:18;;;10430:53;10500:18;;76444:114:0::3;10177:347:1::0;76444:114:0::3;76634:12;::::0;76606:10:::3;76592:25;::::0;;;:13:::3;:25;::::0;;;;;:37:::3;::::0;76620:9;;76592:37:::3;:::i;:::-;76591:55;;76569:126;;;::::0;-1:-1:-1;;;76569:126:0;;10731:2:1;76569:126:0::3;::::0;::::3;10713:21:1::0;10770:2;10750:18;;;10743:30;-1:-1:-1;;;10789:18:1;;;10782:51;10850:18;;76569:126:0::3;10529:345:1::0;76569:126:0::3;76740:9;76728;;:21;;;;:::i;:::-;76714:9;:36;;76706:69;;;::::0;-1:-1:-1;;;76706:69:0;;11254:2:1;76706:69:0::3;::::0;::::3;11236:21:1::0;11293:2;11273:18;;;11266:30;-1:-1:-1;;;11312:18:1;;;11305:50;11372:18;;76706:69:0::3;11052:344:1::0;76706:69:0::3;76802:10;76788:25;::::0;;;:13:::3;:25;::::0;;;;:38;;76817:9;;76788:25;:38:::3;::::0;76817:9;;76788:38:::3;:::i;:::-;::::0;;;-1:-1:-1;76837:32:0::3;::::0;-1:-1:-1;76847:10:0::3;76859:9:::0;76837::::3;:32::i;:::-;2389:20:::0;1783:1;2909:22;;2726:213;78780:303;-1:-1:-1;;;;;78932:25:0;;;;;;:15;:25;;;;;;;;78931:26;78909:112;;;;-1:-1:-1;;;78909:112:0;;11603:2:1;78909:112:0;;;11585:21:1;11642:2;11622:18;;;11615:30;11681:34;11661:18;;;11654:62;-1:-1:-1;;;11732:18:1;;;11725:34;11776:19;;78909:112:0;11401:400:1;78909:112:0;79032:43;79056:8;79066;79032:23;:43::i;76885:151::-;12547:13;:11;:13::i;:::-;76997:31:::1;77007:8;77017:10;76997:9;:31::i;78250:266::-:0;78444:4;-1:-1:-1;;;;;7214:18:0;;7222:10;7214:18;7210:83;;7249:32;7270:10;7249:20;:32::i;:::-;78461:47:::1;78484:4;78490:2;78494:7;78503:4;78461:22;:47::i;:::-;78250:266:::0;;;;;:::o;69166:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77250:1:0;69330:7;:25;:54;;;-1:-1:-1;28952:13:0;;69359:7;:25;;69330:54;69326:103;;;69408:9;69166:428;-1:-1:-1;;69166:428:0:o;69326:103::-;69451:21;69464:7;69451:12;:21::i;:::-;69439:33;;69487:9;:16;;;69483:65;;;69527:9;69166:428;-1:-1:-1;;69166:428:0:o;69483:65::-;69565:21;69578:7;69565:12;:21::i;33818:318::-;33891:13;33922:16;33930:7;33922;:16::i;:::-;33917:59;;33947:29;;-1:-1:-1;;;33947:29:0;;;;;;;;;;;33917:59;33989:21;34013:10;:8;:10::i;:::-;33989:34;;34047:7;34041:21;34066:1;34041:26;:87;;;;;;;;;;;;;;;;;34094:7;34103:18;34113:7;34103:9;:18::i;:::-;34077:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34034:94;33818:318;-1:-1:-1;;;33818:318:0:o;77547:106::-;12547:13;:11;:13::i;:::-;10491:4;10515:7;-1:-1:-1;;;10515:7:0;;;;77597:48:::1;;;77611:10;:8;:10::i;77597:48::-;77637:8;:6;:8::i;77267:164::-:0;12547:13;:11;:13::i;:::-;-1:-1:-1;;;;;77384:25:0;;;::::1;;::::0;;;:15:::1;:25;::::0;;;;:39;;-1:-1:-1;;77384:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;77267:164::o;13567:201::-;12547:13;:11;:13::i;:::-;-1:-1:-1;;;;;13656:22:0;::::1;13648:73;;;::::0;-1:-1:-1;;;13648:73:0;;12483:2:1;13648:73:0::1;::::0;::::1;12465:21:1::0;12522:2;12502:18;;;12495:30;12561:34;12541:18;;;12534:62;-1:-1:-1;;;12612:18:1;;;12605:36;12658:19;;13648:73:0::1;12281:402:1::0;13648:73:0::1;13732:28;13751:8;13732:18;:28::i;77439:100::-:0;12547:13;:11;:13::i;:::-;77510:9:::1;:21:::0;77439:100::o;32530:639::-;32615:4;-1:-1:-1;;;;;;;;;32939:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33016:25:0;;;32939:102;:179;;;-1:-1:-1;;;;;;;;33093:25:0;-1:-1:-1;;;33093:25:0;;32530:639::o;41294:282::-;41359:4;41415:7;77250:1;41396:26;;:66;;;;;41449:13;;41439:7;:23;41396:66;:153;;;;-1:-1:-1;;41500:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;41500:44:0;:49;;41294:282::o;39356:408::-;39445:13;39461:16;39469:7;39461;:16::i;:::-;39445:32;-1:-1:-1;63689:10:0;-1:-1:-1;;;;;39494:28:0;;;39490:175;;39542:44;39559:5;63689:10;40872:164;:::i;39542:44::-;39537:128;;39614:35;;-1:-1:-1;;;39614:35:0;;;;;;;;;;;39537:128;39677:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;39677:35:0;-1:-1:-1;;;;;39677:35:0;;;;;;;;;39728:28;;39677:24;;39728:28;;;;;;;39434:330;39356:408;;:::o;7452:419::-;5973:42;7643:45;:49;7639:225;;7714:67;;-1:-1:-1;;;7714:67:0;;7765:4;7714:67;;;12900:34:1;-1:-1:-1;;;;;12970:15:1;;12950:18;;;12943:43;5973:42:0;;7714;;12835:18:1;;7714:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7709:144;;7809:28;;-1:-1:-1;;;7809:28:0;;-1:-1:-1;;;;;1692:32:1;;7809:28:0;;;1674:51:1;1647:18;;7809:28:0;1528:203:1;43562:2825:0;43704:27;43734;43753:7;43734:18;:27::i;:::-;43704:57;;43819:4;-1:-1:-1;;;;;43778:45:0;43794:19;-1:-1:-1;;;;;43778:45:0;;43774:86;;43832:28;;-1:-1:-1;;;43832:28:0;;;;;;;;;;;43774:86;43874:27;42670:24;;;:15;:24;;;;;42898:26;;63689:10;42295:30;;;-1:-1:-1;;;;;41988:28:0;;42273:20;;;42270:56;44060:180;;44153:43;44170:4;63689:10;40872:164;:::i;44153:43::-;44148:92;;44205:35;;-1:-1:-1;;;44205:35:0;;;;;;;;;;;44148:92;-1:-1:-1;;;;;44257:16:0;;44253:52;;44282:23;;-1:-1:-1;;;44282:23:0;;;;;;;;;;;44253:52;44454:15;44451:160;;;44594:1;44573:19;44566:30;44451:160;-1:-1:-1;;;;;44991:24:0;;;;;;;:18;:24;;;;;;44989:26;;-1:-1:-1;;44989:26:0;;;45060:22;;;;;;;;;45058:24;;-1:-1:-1;45058:24:0;;;38214:11;38189:23;38185:41;38172:63;-1:-1:-1;;;38172:63:0;45353:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;45648:47:0;;:52;;45644:627;;45753:1;45743:11;;45721:19;45876:30;;;:17;:30;;;;;;:35;;45872:384;;46014:13;;45999:11;:28;45995:242;;46161:30;;;;:17;:30;;;;;:52;;;45995:242;45702:569;45644:627;46318:7;46314:2;-1:-1:-1;;;;;46299:27:0;46308:4;-1:-1:-1;;;;;46299:27:0;;;;;;;;;;;43693:2694;;;43562:2825;;;:::o;12826:132::-;12707:7;12734:6;-1:-1:-1;;;;;12734:6:0;63689:10;12890:23;12882:68;;;;-1:-1:-1;;;12882:68:0;;13449:2:1;12882:68:0;;;13431:21:1;;;13468:18;;;13461:30;13527:34;13507:18;;;13500:62;13579:18;;12882:68:0;13247:356:1;46483:193:0;46629:39;46646:4;46652:2;46656:7;46629:39;;;;;;;;;;;;:16;:39::i;35980:1275::-;36047:7;36082;;77250:1;36131:23;36127:1061;;36184:13;;36177:4;:20;36173:1015;;;36222:14;36239:23;;;:17;:23;;;;;;;-1:-1:-1;;;36328:24:0;;:29;;36324:845;;36993:113;37000:6;37010:1;37000:11;36993:113;;-1:-1:-1;;;37071:6:0;37053:25;;;;:17;:25;;;;;;36993:113;;36324:845;36199:989;36173:1015;37216:31;;-1:-1:-1;;;37216:31:0;;;;;;;;;;;13928:191;14002:16;14021:6;;-1:-1:-1;;;;;14038:17:0;;;-1:-1:-1;;;;;;14038:17:0;;;;;;14071:40;;14021:6;;;;;;;14071:40;;14002:16;14071:40;13991:128;13928:191;:::o;35428:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35556:24:0;;;;:17;:24;;;;;;35537:44;;:18;:44::i;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;-1:-1:-1;;;2551:63:0;;13810:2:1;2551:63:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:33;13868:18;;;13861:61;13939:18;;2551:63:0;13608:355:1;2551:63:0;1827:1;2692:7;:18;2425:293::o;10603:108::-;10491:4;10515:7;-1:-1:-1;;;10515:7:0;;;;10673:9;10665:38;;;;-1:-1:-1;;;10665:38:0;;14170:2:1;10665:38:0;;;14152:21:1;14209:2;14189:18;;;14182:30;-1:-1:-1;;;14228:18:1;;;14221:46;14284:18;;10665:38:0;13968:340:1;57434:112:0;57511:27;57521:2;57525:8;57511:27;;;;;;;;;;;;:9;:27::i;40481:234::-;63689:10;40576:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;40576:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;40576:60:0;;;;;;;;;;40652:55;;540:41:1;;;40576:49:0;;63689:10;40652:55;;513:18:1;40652:55:0;;;;;;;40481:234;;:::o;47274:407::-;47449:31;47462:4;47468:2;47472:7;47449:12;:31::i;:::-;-1:-1:-1;;;;;47495:14:0;;;:19;47491:183;;47534:56;47565:4;47571:2;47575:7;47584:5;47534:30;:56::i;:::-;47529:145;;47618:40;;-1:-1:-1;;;47618:40:0;;;;;;;;;;;35166:166;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35277:47:0;35296:27;35315:7;35296:18;:27::i;:::-;35277:18;:47::i;79323:114::-;79383:13;79416;79409:20;;;;;:::i;63809:1745::-;63874:17;64308:4;64301;64295:11;64291:22;64400:1;64394:4;64387:15;64475:4;64472:1;64468:12;64461:19;;;64557:1;64552:3;64545:14;64661:3;64900:5;64882:428;64948:1;64943:3;64939:11;64932:18;;65119:2;65113:4;65109:13;65105:2;65101:22;65096:3;65088:36;65213:2;65203:13;;65270:25;64882:428;65270:25;-1:-1:-1;65340:13:0;;;-1:-1:-1;;65455:14:0;;;65517:19;;;65455:14;63809:1745;-1:-1:-1;63809:1745:0:o;11299:120::-;10308:16;:14;:16::i;:::-;11368:5:::1;11358:15:::0;;-1:-1:-1;;;;11358:15:0::1;::::0;;11389:22:::1;63689:10:::0;11398:12:::1;11389:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;11389:22:0::1;;;;;;;11299:120::o:0;11040:118::-;10049:19;:17;:19::i;:::-;11100:7:::1;:14:::0;;-1:-1:-1;;;;11100:14:0::1;-1:-1:-1::0;;;11100:14:0::1;::::0;;11130:20:::1;11137:12;63689:10:::0;;63602:105;37354:366;-1:-1:-1;;;;;;;;;;;;;37464:41:0;;;;25185:3;37550:33;;;37516:68;;-1:-1:-1;;;37516:68:0;-1:-1:-1;;;37614:24:0;;:29;;-1:-1:-1;;;37595:48:0;;;;25706:3;37683:28;;;;-1:-1:-1;;;37654:58:0;-1:-1:-1;37354:366:0:o;56661:689::-;56792:19;56798:2;56802:8;56792:5;:19::i;:::-;-1:-1:-1;;;;;56853:14:0;;;:19;56849:483;;56907:13;;56955:14;;;56988:233;57019:62;57058:1;57062:2;57066:7;;;;;;57075:5;57019:30;:62::i;:::-;57014:167;;57117:40;;-1:-1:-1;;;57117:40:0;;;;;;;;;;;57014:167;57216:3;57208:5;:11;56988:233;;57303:3;57286:13;;:20;57282:34;;57308:8;;;49765:716;49949:88;;-1:-1:-1;;;49949:88:0;;49928:4;;-1:-1:-1;;;;;49949:45:0;;;;;:88;;63689:10;;50016:4;;50022:7;;50031:5;;49949:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49949:88:0;;;;;;;;-1:-1:-1;;49949:88:0;;;;;;;;;;;;:::i;:::-;;;49945:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50232:6;:13;50249:1;50232:18;50228:235;;50278:40;;-1:-1:-1;;;50278:40:0;;;;;;;;;;;50228:235;50421:6;50415:13;50406:6;50402:2;50398:15;50391:38;49945:529;-1:-1:-1;;;;;;50108:64:0;-1:-1:-1;;;50108:64:0;;-1:-1:-1;49765:716:0;;;;;;:::o;10788:108::-;10491:4;10515:7;-1:-1:-1;;;10515:7:0;;;;10847:41;;;;-1:-1:-1;;;10847:41:0;;15263:2:1;10847:41:0;;;15245:21:1;15302:2;15282:18;;;15275:30;-1:-1:-1;;;15321:18:1;;;15314:50;15381:18;;10847:41:0;15061:344:1;50943:2966:0;51039:13;;51016:20;51067:13;;;51063:44;;51089:18;;-1:-1:-1;;;51089:18:0;;;;;;;;;;;51063:44;-1:-1:-1;;;;;51595:22:0;;;;;;:18;:22;;;;24664:2;51595:22;;;:71;;51633:32;51621:45;;51595:71;;;51909:31;;;:17;:31;;;;;-1:-1:-1;38645:15:0;;38619:24;38615:46;38214:11;38189:23;38185:41;38182:52;38172:63;;51909:173;;52144:23;;;;51909:31;;51595:22;;52909:25;51595:22;;52762:335;53423:1;53409:12;53405:20;53363:346;53464:3;53455:7;53452:16;53363:346;;53682:7;53672:8;53669:1;53642:25;53639:1;53636;53631:59;53517:1;53504:15;53363:346;;;53367:77;53742:8;53754:1;53742:13;53738:45;;53764:19;;-1:-1:-1;;;53764:19:0;;;;;;;;;;;53738:45;53800:13;:19;-1:-1:-1;77119:23:0::1;77044:106:::0;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;3118:592::-;3189:6;3197;3250:2;3238:9;3229:7;3225:23;3221:32;3218:52;;;3266:1;3263;3256:12;3218:52;3306:9;3293:23;3335:18;3376:2;3368:6;3365:14;3362:34;;;3392:1;3389;3382:12;3362:34;3430:6;3419:9;3415:22;3405:32;;3475:7;3468:4;3464:2;3460:13;3456:27;3446:55;;3497:1;3494;3487:12;3446:55;3537:2;3524:16;3563:2;3555:6;3552:14;3549:34;;;3579:1;3576;3569:12;3549:34;3624:7;3619:2;3610:6;3606:2;3602:15;3598:24;3595:37;3592:57;;;3645:1;3642;3635:12;3592:57;3676:2;3668:11;;;;;3698:6;;-1:-1:-1;3118:592:1;;-1:-1:-1;;;;3118:592:1:o;3715:615::-;3801:6;3809;3862:2;3850:9;3841:7;3837:23;3833:32;3830:52;;;3878:1;3875;3868:12;3830:52;3918:9;3905:23;3947:18;3988:2;3980:6;3977:14;3974:34;;;4004:1;4001;3994:12;3974:34;4042:6;4031:9;4027:22;4017:32;;4087:7;4080:4;4076:2;4072:13;4068:27;4058:55;;4109:1;4106;4099:12;4058:55;4149:2;4136:16;4175:2;4167:6;4164:14;4161:34;;;4191:1;4188;4181:12;4161:34;4244:7;4239:2;4229:6;4226:1;4222:14;4218:2;4214:23;4210:32;4207:45;4204:65;;;4265:1;4262;4255:12;4335:349;4419:12;;-1:-1:-1;;;;;4415:38:1;4403:51;;4507:4;4496:16;;;4490:23;4515:18;4486:48;4470:14;;;4463:72;4598:4;4587:16;;;4581:23;4574:31;4567:39;4551:14;;;4544:63;4660:4;4649:16;;;4643:23;4668:8;4639:38;4623:14;;4616:62;4335:349::o;4689:722::-;4922:2;4974:21;;;5044:13;;4947:18;;;5066:22;;;4893:4;;4922:2;5145:15;;;;5119:2;5104:18;;;4893:4;5188:197;5202:6;5199:1;5196:13;5188:197;;;5251:52;5299:3;5290:6;5284:13;5251:52;:::i;:::-;5360:15;;;;5332:4;5323:14;;;;;5224:1;5217:9;5188:197;;5416:632;5587:2;5639:21;;;5709:13;;5612:18;;;5731:22;;;5558:4;;5587:2;5810:15;;;;5784:2;5769:18;;;5558:4;5853:169;5867:6;5864:1;5861:13;5853:169;;;5928:13;;5916:26;;5997:15;;;;5962:12;;;;5889:1;5882:9;5853:169;;6053:322;6130:6;6138;6146;6199:2;6187:9;6178:7;6174:23;6170:32;6167:52;;;6215:1;6212;6205:12;6167:52;6238:29;6257:9;6238:29;:::i;:::-;6228:39;6314:2;6299:18;;6286:32;;-1:-1:-1;6365:2:1;6350:18;;;6337:32;;6053:322;-1:-1:-1;;;6053:322:1:o;6380:118::-;6466:5;6459:13;6452:21;6445:5;6442:32;6432:60;;6488:1;6485;6478:12;6503:315;6568:6;6576;6629:2;6617:9;6608:7;6604:23;6600:32;6597:52;;;6645:1;6642;6635:12;6597:52;6668:29;6687:9;6668:29;:::i;:::-;6658:39;;6747:2;6736:9;6732:18;6719:32;6760:28;6782:5;6760:28;:::i;:::-;6807:5;6797:15;;;6503:315;;;;;:::o;6823:127::-;6884:10;6879:3;6875:20;6872:1;6865:31;6915:4;6912:1;6905:15;6939:4;6936:1;6929:15;6955:1138;7050:6;7058;7066;7074;7127:3;7115:9;7106:7;7102:23;7098:33;7095:53;;;7144:1;7141;7134:12;7095:53;7167:29;7186:9;7167:29;:::i;:::-;7157:39;;7215:38;7249:2;7238:9;7234:18;7215:38;:::i;:::-;7205:48;;7300:2;7289:9;7285:18;7272:32;7262:42;;7355:2;7344:9;7340:18;7327:32;7378:18;7419:2;7411:6;7408:14;7405:34;;;7435:1;7432;7425:12;7405:34;7473:6;7462:9;7458:22;7448:32;;7518:7;7511:4;7507:2;7503:13;7499:27;7489:55;;7540:1;7537;7530:12;7489:55;7576:2;7563:16;7598:2;7594;7591:10;7588:36;;;7604:18;;:::i;:::-;7679:2;7673:9;7647:2;7733:13;;-1:-1:-1;;7729:22:1;;;7753:2;7725:31;7721:40;7709:53;;;7777:18;;;7797:22;;;7774:46;7771:72;;;7823:18;;:::i;:::-;7863:10;7859:2;7852:22;7898:2;7890:6;7883:18;7938:7;7933:2;7928;7924;7920:11;7916:20;7913:33;7910:53;;;7959:1;7956;7949:12;7910:53;8015:2;8010;8006;8002:11;7997:2;7989:6;7985:15;7972:46;8060:1;8055:2;8050;8042:6;8038:15;8034:24;8027:35;8081:6;8071:16;;;;;;;6955:1138;;;;;;;:::o;8098:266::-;8294:3;8279:19;;8307:51;8283:9;8340:6;8307:51;:::i;8369:260::-;8437:6;8445;8498:2;8486:9;8477:7;8473:23;8469:32;8466:52;;;8514:1;8511;8504:12;8466:52;8537:29;8556:9;8537:29;:::i;:::-;8527:39;;8585:38;8619:2;8608:9;8604:18;8585:38;:::i;:::-;8575:48;;8369:260;;;;;:::o;8634:380::-;8713:1;8709:12;;;;8756;;;8777:61;;8831:4;8823:6;8819:17;8809:27;;8777:61;8884:2;8876:6;8873:14;8853:18;8850:38;8847:161;;8930:10;8925:3;8921:20;8918:1;8911:31;8965:4;8962:1;8955:15;8993:4;8990:1;8983:15;8847:161;;8634:380;;;:::o;9426:127::-;9487:10;9482:3;9478:20;9475:1;9468:31;9518:4;9515:1;9508:15;9542:4;9539:1;9532:15;9912:127;9973:10;9968:3;9964:20;9961:1;9954:31;10004:4;10001:1;9994:15;10028:4;10025:1;10018:15;10044:128;10084:3;10115:1;10111:6;10108:1;10105:13;10102:39;;;10121:18;;:::i;:::-;-1:-1:-1;10157:9:1;;10044:128::o;10879:168::-;10919:7;10985:1;10981;10977:6;10973:14;10970:1;10967:21;10962:1;10955:9;10948:17;10944:45;10941:71;;;10992:18;;:::i;:::-;-1:-1:-1;11032:9:1;;10879:168::o;11806:470::-;11985:3;12023:6;12017:13;12039:53;12085:6;12080:3;12073:4;12065:6;12061:17;12039:53;:::i;:::-;12155:13;;12114:16;;;;12177:57;12155:13;12114:16;12211:4;12199:17;;12177:57;:::i;:::-;12250:20;;11806:470;-1:-1:-1;;;;11806:470:1:o;12997:245::-;13064:6;13117:2;13105:9;13096:7;13092:23;13088:32;13085:52;;;13133:1;13130;13123:12;13085:52;13165:9;13159:16;13184:28;13206:5;13184:28;:::i;14313:489::-;-1:-1:-1;;;;;14582:15:1;;;14564:34;;14634:15;;14629:2;14614:18;;14607:43;14681:2;14666:18;;14659:34;;;14729:3;14724:2;14709:18;;14702:31;;;14507:4;;14750:46;;14776:19;;14768:6;14750:46;:::i;:::-;14742:54;14313:489;-1:-1:-1;;;;;;14313:489:1:o;14807:249::-;14876:6;14929:2;14917:9;14908:7;14904:23;14900:32;14897:52;;;14945:1;14942;14935:12;14897:52;14977:9;14971:16;14996:30;15020:5;14996:30;:::i

Swarm Source

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