ETH Price: $2,279.24 (-5.41%)

Token

Fluff N Stuff (FNSNFT)
 

Overview

Max Total Supply

1,122 FNSNFT

Holders

288

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FNSNFT
0x171e994a6ea740b452a27a4b3edb50c576bbabe2
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:
FluffNStuff

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-15
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

// File: operator-filter-registry/src/lib/Constants.sol

pragma solidity ^0.8.17;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

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

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator)
        external
        view
        returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription)
        external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(
        address registrant,
        address registrantToCopy
    ) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(
        address registrant,
        address operator,
        bool filtered
    ) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(
        address registrant,
        address[] calldata operators,
        bool filtered
    ) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(
        address registrant,
        bytes32 codehash,
        bool filtered
    ) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(
        address registrant,
        bytes32[] calldata codeHashes,
        bool filtered
    ) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe)
        external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant)
        external
        returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index)
        external
        returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy)
        external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator)
        external
        returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode)
        external
        returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash)
        external
        returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr)
        external
        returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr)
        external
        returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index)
        external
        returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index)
        external
        returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    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.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    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));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    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);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    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) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (
                !OPERATOR_FILTER_REGISTRY.isOperatorAllowed(
                    address(this),
                    operator
                )
            ) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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

pragma solidity ^0.8.13;

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/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: contracts/RomailNew.sol

// Creator: Chiru Labs

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        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);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

pragma solidity 0.8.17;

contract FluffNStuff is ERC721A, DefaultOperatorFilterer, Ownable {
    IERC721 ERC721Interface;
    uint256 public MAX_SUPPLY = 5555;
    uint256 public FIRST_MINT_PRICE = 0.01 ether;
    uint256 public WHITELIST_PRICE = 0.01 ether;
    uint256 public MINT_PRICE = 0.01 ether;
    uint256 public MAX_PER_WALLET = 10;
    uint256 public WHITELIST_AMOUNT = 1;

    string public baseURI;
    string public hiddenURI;
    string public uriSuffix = ".json";

    bytes32 public merkleRoot =
        0x64fc14ca6e2b59bc58ea20dbfaeaf02a6ee0e126d28749a08f9c30dee7720797;
    bytes32 public merkleRootClaim =
        0x886ec691ecccdcabe6f20c3fa963c3efbcaca49415383925c9c91435961c5052;

    bool public PUBLIC_MINT_STATUS = false;
    bool public WL_MINT_STATUS = false;
    bool public CLAIM_STATUS = true;
    bool public REVEAL_STATUS = false;

    address TEAM_WALLET = 0x55D045e01B2Ba961933B56ca395D3474EAFDbDFb;

    mapping(address => uint256) public whitelistClaimed;
    mapping(address => uint256) public nftMinted;
    mapping(address => bool) public nftClaim;

    event Minted(address indexed owner, uint256 count);

    constructor(address _NFTAddress, uint256 _supply) ERC721A("Fluff N Stuff", "FNSNFT") {
        ERC721Interface = IERC721(_NFTAddress);
        MAX_SUPPLY = _supply;
    }

    function whitelistMint(bytes32[] calldata _merkeProof, uint256 _amount)
        external
        payable
    {
        require(totalSupply() + _amount <= MAX_SUPPLY, "Sold out");
        require(WL_MINT_STATUS, "WL Mint is turned off at the moment");
        require(_amount > 0, "Can't mint 0 amount");
        uint256 canMint = WHITELIST_AMOUNT - whitelistClaimed[msg.sender];
        require(_amount <= canMint, "Limit exceeded, try reducing amount");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkeProof, merkleRoot, leaf),
            "Invalid Proof"
        );
        require(
            msg.value >= WHITELIST_PRICE * _amount,
            "Value provided is insufficient!"
        );
        whitelistClaimed[msg.sender] = whitelistClaimed[msg.sender] + _amount;
        _safeMint(msg.sender, _amount);
    }

    function mint(uint256 _amount) external payable {
        require(totalSupply() + _amount <= MAX_SUPPLY, "Sold out");
        require(PUBLIC_MINT_STATUS, "Public Mint is turned off at the moment");
        require(_amount > 0, "Can't mint 0 amount");
        uint256 canMint = MAX_PER_WALLET - nftMinted[msg.sender];
        require(
            _amount <= canMint,
            "Exceeded mint limit, try reducing the mint amount"
        );
        uint256 value = 0;
        uint256 mintAmount = _amount;

        if (nftMinted[msg.sender] < 1) {
            value = value + FIRST_MINT_PRICE;
            nftMinted[msg.sender] = nftMinted[msg.sender] + 1;
            mintAmount--;
        }

        if (nftMinted[msg.sender] >= 1 && mintAmount > 0) {
            value = value + (mintAmount * MINT_PRICE);
            nftMinted[msg.sender] = nftMinted[msg.sender] + mintAmount;
        }

        require(msg.value >= value, "Ether provided is insufficient!");
        _safeMint(msg.sender, _amount);

        emit Minted(msg.sender, _amount);
    }

    function claim(bytes32[] calldata _merkeProof) external {
        require(CLAIM_STATUS, "Claim is turned off at the moment");
        require(!nftClaim[msg.sender], "Already claimed!");
        uint256 nftToMint = ERC721Interface.balanceOf(msg.sender);
        require(nftToMint > 0, "Not owner of NFT collection");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkeProof, merkleRootClaim, leaf),
            "Invalid Proof"
        );
        nftClaim[msg.sender] = true;
        require(totalSupply() + nftToMint <= MAX_SUPPLY, "Sold out");
        _safeMint(msg.sender, nftToMint);
    }

    function airdrop(address[] calldata _to, uint256 amount)
        external
        payable
        onlyOwner
    {
        require(totalSupply() + amount <= MAX_SUPPLY, "Sold out");
        for (uint256 i = 0; i < _to.length; i++) {
            _safeMint(_to[i], amount);
        }
    }

    function treasuryMint(uint256 quantity) public onlyOwner {
        require(quantity > 0, "Invalid mint amount");
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "Maximum supply exceeded"
        );
        _safeMint(TEAM_WALLET, quantity);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "Err: ERC721AMetadata - URI query for nonexistent token"
        );
        if (REVEAL_STATUS == true) {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(baseURI, _toString(tokenId), uriSuffix)
                    )
                    : "";
        } else {
            return hiddenURI;
        }
    }

    function withdraw() public payable onlyOwner {
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }

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

    function setPrice(uint256 _price) public onlyOwner {
        MINT_PRICE = _price;
    }

    function setFirstMintPrice(uint256 _price) public onlyOwner {
        FIRST_MINT_PRICE = _price;
    }

    function setWhitelistPrice(uint256 _price) public onlyOwner {
        WHITELIST_PRICE = _price;
    }

    function toggleMintStatus() public onlyOwner {
        PUBLIC_MINT_STATUS = !PUBLIC_MINT_STATUS;
    }

    function toggleClaimStatus() public onlyOwner {
        CLAIM_STATUS = !CLAIM_STATUS;
    }

    function toggleRevealStatus() public onlyOwner {
        REVEAL_STATUS = !REVEAL_STATUS;
    }

    function toggleWLMintStatus() public onlyOwner {
        WL_MINT_STATUS = !WL_MINT_STATUS;
    }

    function setALLSTATUS(bool _status) public onlyOwner {
        PUBLIC_MINT_STATUS = _status;
        CLAIM_STATUS = _status;
        WL_MINT_STATUS = _status;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setHiddenURI(string memory _newHiddenURI) public onlyOwner {
        hiddenURI = _newHiddenURI;
    }

    function setMaxPerWallet(uint256 _value) public onlyOwner {
        MAX_PER_WALLET = _value;
    }

    function setWhitelistAmount(uint256 _value) public onlyOwner {
        WHITELIST_AMOUNT = _value;
    }

    function claimQuantity() public view returns (uint256) {
        uint256 NftOwned = ERC721Interface.walletOfOwner(msg.sender).length;
        return NftOwned;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setMerkleRootClaim(bytes32 _merkleRoot) external onlyOwner {
        merkleRootClaim = _merkleRoot;
    }

    function setTeamWallet(address _wallet) external onlyOwner {
        TEAM_WALLET = _wallet;
    }

    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.approve(operator, tokenId);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_NFTAddress","type":"address"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"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":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLAIM_STATUS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FIRST_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","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":[],"name":"PUBLIC_MINT_STATUS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_STATUS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINT_STATUS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkeProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootClaim","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nftClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nftMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"bool","name":"_status","type":"bool"}],"name":"setALLSTATUS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setFirstMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newHiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setWhitelistAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWhitelistPrice","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":[],"name":"toggleClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRevealStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWLMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkeProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6115b3600a908155662386f26fc10000600b819055600c819055600d55600e556001600f5560c06040526005608090815264173539b7b760d91b60a0526012906200004b9082620003e5565b507f64fc14ca6e2b59bc58ea20dbfaeaf02a6ee0e126d28749a08f9c30dee77207976013557f886ec691ecccdcabe6f20c3fa963c3efbcaca49415383925c9c91435961c5052601455601580546001600160c01b0319167755d045e01b2ba961933b56ca395d3474eafdbdfb00010000179055348015620000cb57600080fd5b5060405162002fde38038062002fde833981016040819052620000ee91620004b1565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c23363ab33310271029ba3ab33360991b81525060405180604001604052806006815260200165119394d3919560d21b81525081600290816200015b9190620003e5565b5060036200016a8282620003e5565b506000805550506daaeb6d7670e522a718067333cd4e3b15620002b65780156200020457604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001e557600080fd5b505af1158015620001fa573d6000803e3d6000fd5b50505050620002b6565b6001600160a01b03821615620002555760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001ca565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200029c57600080fd5b505af1158015620002b1573d6000803e3d6000fd5b505050505b50620002c4905033620002ee565b600980546001600160a01b0319166001600160a01b039390931692909217909155600a55620004ed565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200036b57607f821691505b6020821081036200038c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e057600081815260208120601f850160051c81016020861015620003bb5750805b601f850160051c820191505b81811015620003dc57828155600101620003c7565b5050505b505050565b81516001600160401b0381111562000401576200040162000340565b620004198162000412845462000356565b8462000392565b602080601f831160018114620004515760008415620004385750858301515b600019600386901b1c1916600185901b178555620003dc565b600085815260208120601f198616915b82811015620004825788860151825594840194600190910190840162000461565b5085821015620004a15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008060408385031215620004c557600080fd5b82516001600160a01b0381168114620004dd57600080fd5b6020939093015192949293505050565b612ae180620004fd6000396000f3fe6080604052600436106103815760003560e01c8063717d57d3116101d1578063b600ab2211610102578063c87b56dd116100a0578063e268e4d31161006f578063e268e4d314610971578063e985e9c514610991578063efdc7788146109b1578063f2fde38b146109d157600080fd5b8063c87b56dd146108ee578063d8cfb9991461090e578063db4bec4414610923578063e08976b41461095057600080fd5b8063bfe558bc116100dc578063bfe558bc14610890578063c002d23d146108b0578063c204642c146108c6578063c3a25fef146108d957600080fd5b8063b600ab2214610848578063b88d4fde1461085d578063bbaac02f1461087057600080fd5b806392ee40251161016f578063a22cb46511610149578063a22cb465146107c9578063a258fd2d146107e9578063ade2e7c814610808578063b391c5081461082857600080fd5b806392ee40251461078b57806395d89b41146107a1578063a0712d68146107b657600080fd5b8063896f3cfb116101ab578063896f3cfb146107185780638cc54e7f146107385780638da5cb5b1461074d57806391b7f5ed1461076b57600080fd5b8063717d57d3146106c35780637cb64759146106e35780637dd328801461070357600080fd5b806332cb6b0c116102b6578063541bda0c116102545780636c0360eb116102235780636c0360eb1461065f5780636d57c9e11461067457806370a082311461068e578063715018a6146106ae57600080fd5b8063541bda0c146105f55780635503a0e81461060a57806355f804b31461061f5780636352211e1461063f57600080fd5b806341f434341161029057806341f434341461059457806342842e0e146105b657806345718a79146105c95780634c57390e146105df57600080fd5b806332cb6b0c146105565780633465b5451461056c5780633ccfd60b1461058c57600080fd5b806318160ddd1161032357806323b872dd116102fd57806323b872dd146104ed5780632904e6d9146105005780632eb4a7ab146105135780632f6f92b31461052957600080fd5b806318160ddd146104845780631f88bc381461049d5780632052e89d146104cd57600080fd5b8063095ea7b31161035f578063095ea7b3146104155780630f2cdd6c1461042a5780631525ff7d1461044e57806317e7f2951461046e57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122c8565b6109f1565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610a43565b6040516103b29190612335565b3480156103e957600080fd5b506103fd6103f8366004612348565b610ad5565b6040516001600160a01b0390911681526020016103b2565b610428610423366004612378565b610b10565b005b34801561043657600080fd5b50610440600e5481565b6040519081526020016103b2565b34801561045a57600080fd5b506104286104693660046123a2565b610b29565b34801561047a57600080fd5b50610440600c5481565b34801561049057600080fd5b5060015460005403610440565b3480156104a957600080fd5b506103a66104b83660046123a2565b60186020526000908152604090205460ff1681565b3480156104d957600080fd5b506104286104e8366004612348565b610b5f565b6104286104fb3660046123bd565b610b6c565b61042861050e366004612445565b610b97565b34801561051f57600080fd5b5061044060135481565b34801561053557600080fd5b506104406105443660046123a2565b60176020526000908152604090205481565b34801561056257600080fd5b50610440600a5481565b34801561057857600080fd5b50610428610587366004612348565b610e4f565b610428610e5c565b3480156105a057600080fd5b506103fd6daaeb6d7670e522a718067333cd4e81565b6104286105c43660046123bd565b610ed8565b3480156105d557600080fd5b5061044060145481565b3480156105eb57600080fd5b50610440600f5481565b34801561060157600080fd5b50610428610efd565b34801561061657600080fd5b506103d0610f26565b34801561062b57600080fd5b5061042861063a366004612530565b610fb4565b34801561064b57600080fd5b506103fd61065a366004612348565b610fcc565b34801561066b57600080fd5b506103d0610fd7565b34801561068057600080fd5b506015546103a69060ff1681565b34801561069a57600080fd5b506104406106a93660046123a2565b610fe4565b3480156106ba57600080fd5b5061042861102a565b3480156106cf57600080fd5b506104286106de366004612348565b61103e565b3480156106ef57600080fd5b506104286106fe366004612348565b61104b565b34801561070f57600080fd5b50610440611058565b34801561072457600080fd5b50610428610733366004612348565b6110d3565b34801561074457600080fd5b506103d06110e0565b34801561075957600080fd5b506008546001600160a01b03166103fd565b34801561077757600080fd5b50610428610786366004612348565b6110ed565b34801561079757600080fd5b50610440600b5481565b3480156107ad57600080fd5b506103d06110fa565b6104286107c4366004612348565b611109565b3480156107d557600080fd5b506104286107e4366004612587565b6113d6565b3480156107f557600080fd5b506015546103a690610100900460ff1681565b34801561081457600080fd5b506104286108233660046125be565b6113ea565b34801561083457600080fd5b506104286108433660046125db565b611422565b34801561085457600080fd5b506104286116a9565b61042861086b36600461261d565b6116ce565b34801561087c57600080fd5b5061042861088b366004612530565b6116f4565b34801561089c57600080fd5b506015546103a69062010000900460ff1681565b3480156108bc57600080fd5b50610440600d5481565b6104286108d4366004612445565b611708565b3480156108e557600080fd5b50610428611796565b3480156108fa57600080fd5b506103d0610909366004612348565b6117bd565b34801561091a57600080fd5b5061042861193f565b34801561092f57600080fd5b5061044061093e3660046123a2565b60166020526000908152604090205481565b34801561095c57600080fd5b506015546103a6906301000000900460ff1681565b34801561097d57600080fd5b5061042861098c366004612348565b61195b565b34801561099d57600080fd5b506103a66109ac366004612699565b611968565b3480156109bd57600080fd5b506104286109cc366004612348565b611996565b3480156109dd57600080fd5b506104286109ec3660046123a2565b611a6b565b60006301ffc9a760e01b6001600160e01b031983161480610a2257506380ac58cd60e01b6001600160e01b03198316145b80610a3d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a52906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e906126cc565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b6000610ae082611ae1565b610af457610af46333d1c03960e21b611b08565b506000908152600660205260409020546001600160a01b031690565b81610b1a81611b12565b610b248383611bcb565b505050565b610b31611bd7565b601580546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b610b67611bd7565b600b55565b826001600160a01b0381163314610b8657610b8633611b12565b610b91848484611c31565b50505050565b600a5481610ba86001546000540390565b610bb2919061271c565b1115610bd95760405162461bcd60e51b8152600401610bd09061272f565b60405180910390fd5b601554610100900460ff16610c3c5760405162461bcd60e51b815260206004820152602360248201527f574c204d696e74206973207475726e6564206f666620617420746865206d6f6d604482015262195b9d60ea1b6064820152608401610bd0565b60008111610c825760405162461bcd60e51b815260206004820152601360248201527210d85b89dd081b5a5b9d080c08185b5bdd5b9d606a1b6044820152606401610bd0565b33600090815260166020526040812054600f54610c9f9190612751565b905080821115610cfd5760405162461bcd60e51b815260206004820152602360248201527f4c696d69742065786365656465642c20747279207265647563696e6720616d6f6044820152621d5b9d60ea1b6064820152608401610bd0565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d77858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611d96565b610db35760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b6044820152606401610bd0565b82600c54610dc19190612764565b341015610e105760405162461bcd60e51b815260206004820152601f60248201527f56616c75652070726f766964656420697320696e73756666696369656e7421006044820152606401610bd0565b33600090815260166020526040902054610e2b90849061271c565b33600081815260166020526040902091909155610e489084611dac565b5050505050565b610e57611bd7565b601455565b610e64611bd7565b6000610e786008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ec2576040519150601f19603f3d011682016040523d82523d6000602084013e610ec7565b606091505b5050905080610ed557600080fd5b50565b826001600160a01b0381163314610ef257610ef233611b12565b610b91848484611dc6565b610f05611bd7565b6015805463ff00000019811663010000009182900460ff1615909102179055565b60128054610f33906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5f906126cc565b8015610fac5780601f10610f8157610100808354040283529160200191610fac565b820191906000526020600020905b815481529060010190602001808311610f8f57829003601f168201915b505050505081565b610fbc611bd7565b6010610fc882826127c9565b5050565b6000610a3d82611de1565b60108054610f33906126cc565b60006001600160a01b038216611004576110046323d3ad8160e21b611b08565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611032611bd7565b61103c6000611e4f565b565b611046611bd7565b600c55565b611053611bd7565b601355565b60095460405162438b6360e81b815233600482015260009182916001600160a01b039091169063438b630090602401600060405180830381865afa1580156110a4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110cc9190810190612889565b5192915050565b6110db611bd7565b600f55565b60118054610f33906126cc565b6110f5611bd7565b600d55565b606060038054610a52906126cc565b600a548161111a6001546000540390565b611124919061271c565b11156111425760405162461bcd60e51b8152600401610bd09061272f565b60155460ff166111a45760405162461bcd60e51b815260206004820152602760248201527f5075626c6963204d696e74206973207475726e6564206f666620617420746865604482015266081b5bdb595b9d60ca1b6064820152608401610bd0565b600081116111ea5760405162461bcd60e51b815260206004820152601360248201527210d85b89dd081b5a5b9d080c08185b5bdd5b9d606a1b6044820152606401610bd0565b33600090815260176020526040812054600e546112079190612751565b9050808211156112735760405162461bcd60e51b815260206004820152603160248201527f4578636565646564206d696e74206c696d69742c20747279207265647563696e60448201527019c81d1a19481b5a5b9d08185b5bdd5b9d607a1b6064820152608401610bd0565b336000908152601760205260408120548390600111156112d657600b5461129a908361271c565b336000908152601760205260409020549092506112b890600161271c565b33600090815260176020526040902055806112d28161292f565b9150505b336000908152601760205260409020546001118015906112f65750600081115b1561134157600d546113089082612764565b611312908361271c565b3360009081526017602052604090205490925061133090829061271c565b336000908152601760205260409020555b813410156113915760405162461bcd60e51b815260206004820152601f60248201527f45746865722070726f766964656420697320696e73756666696369656e7421006044820152606401610bd0565b61139b3385611dac565b60405184815233907f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9060200160405180910390a250505050565b816113e081611b12565b610b248383611ea1565b6113f2611bd7565b6015805462ff00ff191662ff000019921515928316176201000083021761ff001916610100909202919091179055565b60155462010000900460ff166114845760405162461bcd60e51b815260206004820152602160248201527f436c61696d206973207475726e6564206f666620617420746865206d6f6d656e6044820152601d60fa1b6064820152608401610bd0565b3360009081526018602052604090205460ff16156114d75760405162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b6044820152606401610bd0565b6009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611520573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115449190612946565b9050600081116115965760405162461bcd60e51b815260206004820152601b60248201527f4e6f74206f776e6572206f66204e465420636f6c6c656374696f6e00000000006044820152606401610bd0565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611610848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050611d96565b61164c5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b6044820152606401610bd0565b336000908152601860205260409020805460ff19166001179055600a54826116776001546000540390565b611681919061271c565b111561169f5760405162461bcd60e51b8152600401610bd09061272f565b610b913383611dac565b6116b1611bd7565b6015805461ff001981166101009182900460ff1615909102179055565b836001600160a01b03811633146116e8576116e833611b12565b610e4885858585611f0d565b6116fc611bd7565b6011610fc882826127c9565b611710611bd7565b600a54816117216001546000540390565b61172b919061271c565b11156117495760405162461bcd60e51b8152600401610bd09061272f565b60005b82811015610b91576117848484838181106117695761176961295f565b905060200201602081019061177e91906123a2565b83611dac565b8061178e81612975565b91505061174c565b61179e611bd7565b6015805462ff0000198116620100009182900460ff1615909102179055565b60606117c882611ae1565b6118335760405162461bcd60e51b815260206004820152603660248201527f4572723a20455243373231414d65746164617461202d20555249207175657279604482015275103337b9103737b732bc34b9ba32b73a103a37b5b2b760511b6064820152608401610bd0565b6015546301000000900460ff1615156001036118a857600060108054611858906126cc565b9050116118745760405180602001604052806000815250610a3d565b601061187f83611f48565b601260405160200161189393929190612a01565b60405160208183030381529060405292915050565b601180546118b5906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546118e1906126cc565b801561192e5780601f106119035761010080835404028352916020019161192e565b820191906000526020600020905b81548152906001019060200180831161191157829003601f168201915b50505050509050919050565b919050565b611947611bd7565b6015805460ff19811660ff90911615179055565b611963611bd7565b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61199e611bd7565b600081116119e45760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610bd0565b600a54816119f56001546000540390565b6119ff919061271c565b1115611a4d5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610bd0565b601554610ed59064010000000090046001600160a01b031682611dac565b611a73611bd7565b6001600160a01b038116611ad85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd0565b610ed581611e4f565b6000805482108015610a3d575050600090815260046020526040902054600160e01b161590565b8060005260046000fd5b6daaeb6d7670e522a718067333cd4e3b15610ed557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba39190612a34565b610ed557604051633b79c77360e21b81526001600160a01b0382166004820152602401610bd0565b610fc882826001611f8c565b6008546001600160a01b0316331461103c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bd0565b6000611c3c82611de1565b6001600160a01b039485169490915081168414611c6257611c6262a1148160e81b611b08565b60008281526006602052604090208054338082146001600160a01b03881690911417611ca657611c928633611968565b611ca657611ca6632ce44b5f60e11b611b08565b8015611cb157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611d4357600184016000818152600460205260408120549003611d41576000548114611d415760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003611d8d57611d8d633a954ecd60e21b611b08565b50505050505050565b600082611da3858461202f565b14949350505050565b610fc882826040518060200160405280600081525061207c565b610b24838383604051806020016040528060008152506116ce565b60008181526004602052604081205490600160e01b82169003611e3f578060000361193a576000548210611e1f57611e1f636f96cda160e11b611b08565b5b50600019016000818152600460205260409020548015611e2057919050565b61193a636f96cda160e11b611b08565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f18848484610b6c565b6001600160a01b0383163b15610b9157611f34848484846120de565b610b9157610b916368d2bf6b60e11b611b08565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611f625750819003601f19909101908152919050565b6000611f9783610fcc565b9050818015611faf5750336001600160a01b03821614155b15611fd257611fbe8133611968565b611fd257611fd26367d9dca160e11b611b08565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081815b845181101561207457612060828683815181106120535761205361295f565b60200260200101516121c1565b91508061206c81612975565b915050612034565b509392505050565b61208683836121f3565b6001600160a01b0383163b15610b24576000548281035b6120b060008683806001019450866120de565b6120c4576120c46368d2bf6b60e11b611b08565b81811061209d578160005414610e4857610e486000611b08565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612113903390899088908890600401612a51565b6020604051808303816000875af192505050801561214e575060408051601f3d908101601f1916820190925261214b91810190612a8e565b60015b6121a3573d80801561217c576040519150601f19603f3d011682016040523d82523d6000602084013e612181565b606091505b50805160000361219b5761219b6368d2bf6b60e11b611b08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008183106121dd5760008281526020849052604090206121ec565b60008381526020839052604090205b9392505050565b600080549082900361220f5761220f63b562e8dd60e01b611b08565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526005909252822080546801000000000000000186020190559081900361226d5761226d622e076360e81b611b08565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103612272575060005550505050565b6001600160e01b031981168114610ed557600080fd5b6000602082840312156122da57600080fd5b81356121ec816122b2565b60005b838110156123005781810151838201526020016122e8565b50506000910152565b600081518084526123218160208601602086016122e5565b601f01601f19169290920160200192915050565b6020815260006121ec6020830184612309565b60006020828403121561235a57600080fd5b5035919050565b80356001600160a01b038116811461193a57600080fd5b6000806040838503121561238b57600080fd5b61239483612361565b946020939093013593505050565b6000602082840312156123b457600080fd5b6121ec82612361565b6000806000606084860312156123d257600080fd5b6123db84612361565b92506123e960208501612361565b9150604084013590509250925092565b60008083601f84011261240b57600080fd5b50813567ffffffffffffffff81111561242357600080fd5b6020830191508360208260051b850101111561243e57600080fd5b9250929050565b60008060006040848603121561245a57600080fd5b833567ffffffffffffffff81111561247157600080fd5b61247d868287016123f9565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124d0576124d0612491565b604052919050565b600067ffffffffffffffff8311156124f2576124f2612491565b612505601f8401601f19166020016124a7565b905082815283838301111561251957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561254257600080fd5b813567ffffffffffffffff81111561255957600080fd5b8201601f8101841361256a57600080fd5b6121b9848235602084016124d8565b8015158114610ed557600080fd5b6000806040838503121561259a57600080fd5b6125a383612361565b915060208301356125b381612579565b809150509250929050565b6000602082840312156125d057600080fd5b81356121ec81612579565b600080602083850312156125ee57600080fd5b823567ffffffffffffffff81111561260557600080fd5b612611858286016123f9565b90969095509350505050565b6000806000806080858703121561263357600080fd5b61263c85612361565b935061264a60208601612361565b925060408501359150606085013567ffffffffffffffff81111561266d57600080fd5b8501601f8101871361267e57600080fd5b61268d878235602084016124d8565b91505092959194509250565b600080604083850312156126ac57600080fd5b6126b583612361565b91506126c360208401612361565b90509250929050565b600181811c908216806126e057607f821691505b60208210810361270057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a3d57610a3d612706565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b81810381811115610a3d57610a3d612706565b8082028115828204841417610a3d57610a3d612706565b601f821115610b2457600081815260208120601f850160051c810160208610156127a25750805b601f850160051c820191505b818110156127c1578281556001016127ae565b505050505050565b815167ffffffffffffffff8111156127e3576127e3612491565b6127f7816127f184546126cc565b8461277b565b602080601f83116001811461282c57600084156128145750858301515b600019600386901b1c1916600185901b1785556127c1565b600085815260208120601f198616915b8281101561285b5788860151825594840194600190910190840161283c565b50858210156128795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602080838503121561289c57600080fd5b825167ffffffffffffffff808211156128b457600080fd5b818501915085601f8301126128c857600080fd5b8151818111156128da576128da612491565b8060051b91506128eb8483016124a7565b818152918301840191848101908884111561290557600080fd5b938501935b838510156129235784518252938501939085019061290a565b98975050505050505050565b60008161293e5761293e612706565b506000190190565b60006020828403121561295857600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006001820161298757612987612706565b5060010190565b6000815461299b816126cc565b600182811680156129b357600181146129c8576129f7565b60ff19841687528215158302870194506129f7565b8560005260208060002060005b858110156129ee5781548a8201529084019082016129d5565b50505082870194505b5050505092915050565b6000612a0d828661298e565b8451612a1d8183602089016122e5565b612a298183018661298e565b979650505050505050565b600060208284031215612a4657600080fd5b81516121ec81612579565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a8490830184612309565b9695505050505050565b600060208284031215612aa057600080fd5b81516121ec816122b256fea264697066735822122044ace7002c4a4f28e8ad45ab7199fb915fb70bad40b569170631e4a61d5c9a1e64736f6c6343000811003300000000000000000000000099512aac7f817d29ff69245eb39a16b7c43e85b700000000000000000000000000000000000000000000000000000000000015b3

Deployed Bytecode

0x6080604052600436106103815760003560e01c8063717d57d3116101d1578063b600ab2211610102578063c87b56dd116100a0578063e268e4d31161006f578063e268e4d314610971578063e985e9c514610991578063efdc7788146109b1578063f2fde38b146109d157600080fd5b8063c87b56dd146108ee578063d8cfb9991461090e578063db4bec4414610923578063e08976b41461095057600080fd5b8063bfe558bc116100dc578063bfe558bc14610890578063c002d23d146108b0578063c204642c146108c6578063c3a25fef146108d957600080fd5b8063b600ab2214610848578063b88d4fde1461085d578063bbaac02f1461087057600080fd5b806392ee40251161016f578063a22cb46511610149578063a22cb465146107c9578063a258fd2d146107e9578063ade2e7c814610808578063b391c5081461082857600080fd5b806392ee40251461078b57806395d89b41146107a1578063a0712d68146107b657600080fd5b8063896f3cfb116101ab578063896f3cfb146107185780638cc54e7f146107385780638da5cb5b1461074d57806391b7f5ed1461076b57600080fd5b8063717d57d3146106c35780637cb64759146106e35780637dd328801461070357600080fd5b806332cb6b0c116102b6578063541bda0c116102545780636c0360eb116102235780636c0360eb1461065f5780636d57c9e11461067457806370a082311461068e578063715018a6146106ae57600080fd5b8063541bda0c146105f55780635503a0e81461060a57806355f804b31461061f5780636352211e1461063f57600080fd5b806341f434341161029057806341f434341461059457806342842e0e146105b657806345718a79146105c95780634c57390e146105df57600080fd5b806332cb6b0c146105565780633465b5451461056c5780633ccfd60b1461058c57600080fd5b806318160ddd1161032357806323b872dd116102fd57806323b872dd146104ed5780632904e6d9146105005780632eb4a7ab146105135780632f6f92b31461052957600080fd5b806318160ddd146104845780631f88bc381461049d5780632052e89d146104cd57600080fd5b8063095ea7b31161035f578063095ea7b3146104155780630f2cdd6c1461042a5780631525ff7d1461044e57806317e7f2951461046e57600080fd5b806301ffc9a71461038657806306fdde03146103bb578063081812fc146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122c8565b6109f1565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d0610a43565b6040516103b29190612335565b3480156103e957600080fd5b506103fd6103f8366004612348565b610ad5565b6040516001600160a01b0390911681526020016103b2565b610428610423366004612378565b610b10565b005b34801561043657600080fd5b50610440600e5481565b6040519081526020016103b2565b34801561045a57600080fd5b506104286104693660046123a2565b610b29565b34801561047a57600080fd5b50610440600c5481565b34801561049057600080fd5b5060015460005403610440565b3480156104a957600080fd5b506103a66104b83660046123a2565b60186020526000908152604090205460ff1681565b3480156104d957600080fd5b506104286104e8366004612348565b610b5f565b6104286104fb3660046123bd565b610b6c565b61042861050e366004612445565b610b97565b34801561051f57600080fd5b5061044060135481565b34801561053557600080fd5b506104406105443660046123a2565b60176020526000908152604090205481565b34801561056257600080fd5b50610440600a5481565b34801561057857600080fd5b50610428610587366004612348565b610e4f565b610428610e5c565b3480156105a057600080fd5b506103fd6daaeb6d7670e522a718067333cd4e81565b6104286105c43660046123bd565b610ed8565b3480156105d557600080fd5b5061044060145481565b3480156105eb57600080fd5b50610440600f5481565b34801561060157600080fd5b50610428610efd565b34801561061657600080fd5b506103d0610f26565b34801561062b57600080fd5b5061042861063a366004612530565b610fb4565b34801561064b57600080fd5b506103fd61065a366004612348565b610fcc565b34801561066b57600080fd5b506103d0610fd7565b34801561068057600080fd5b506015546103a69060ff1681565b34801561069a57600080fd5b506104406106a93660046123a2565b610fe4565b3480156106ba57600080fd5b5061042861102a565b3480156106cf57600080fd5b506104286106de366004612348565b61103e565b3480156106ef57600080fd5b506104286106fe366004612348565b61104b565b34801561070f57600080fd5b50610440611058565b34801561072457600080fd5b50610428610733366004612348565b6110d3565b34801561074457600080fd5b506103d06110e0565b34801561075957600080fd5b506008546001600160a01b03166103fd565b34801561077757600080fd5b50610428610786366004612348565b6110ed565b34801561079757600080fd5b50610440600b5481565b3480156107ad57600080fd5b506103d06110fa565b6104286107c4366004612348565b611109565b3480156107d557600080fd5b506104286107e4366004612587565b6113d6565b3480156107f557600080fd5b506015546103a690610100900460ff1681565b34801561081457600080fd5b506104286108233660046125be565b6113ea565b34801561083457600080fd5b506104286108433660046125db565b611422565b34801561085457600080fd5b506104286116a9565b61042861086b36600461261d565b6116ce565b34801561087c57600080fd5b5061042861088b366004612530565b6116f4565b34801561089c57600080fd5b506015546103a69062010000900460ff1681565b3480156108bc57600080fd5b50610440600d5481565b6104286108d4366004612445565b611708565b3480156108e557600080fd5b50610428611796565b3480156108fa57600080fd5b506103d0610909366004612348565b6117bd565b34801561091a57600080fd5b5061042861193f565b34801561092f57600080fd5b5061044061093e3660046123a2565b60166020526000908152604090205481565b34801561095c57600080fd5b506015546103a6906301000000900460ff1681565b34801561097d57600080fd5b5061042861098c366004612348565b61195b565b34801561099d57600080fd5b506103a66109ac366004612699565b611968565b3480156109bd57600080fd5b506104286109cc366004612348565b611996565b3480156109dd57600080fd5b506104286109ec3660046123a2565b611a6b565b60006301ffc9a760e01b6001600160e01b031983161480610a2257506380ac58cd60e01b6001600160e01b03198316145b80610a3d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a52906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e906126cc565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b6000610ae082611ae1565b610af457610af46333d1c03960e21b611b08565b506000908152600660205260409020546001600160a01b031690565b81610b1a81611b12565b610b248383611bcb565b505050565b610b31611bd7565b601580546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b610b67611bd7565b600b55565b826001600160a01b0381163314610b8657610b8633611b12565b610b91848484611c31565b50505050565b600a5481610ba86001546000540390565b610bb2919061271c565b1115610bd95760405162461bcd60e51b8152600401610bd09061272f565b60405180910390fd5b601554610100900460ff16610c3c5760405162461bcd60e51b815260206004820152602360248201527f574c204d696e74206973207475726e6564206f666620617420746865206d6f6d604482015262195b9d60ea1b6064820152608401610bd0565b60008111610c825760405162461bcd60e51b815260206004820152601360248201527210d85b89dd081b5a5b9d080c08185b5bdd5b9d606a1b6044820152606401610bd0565b33600090815260166020526040812054600f54610c9f9190612751565b905080821115610cfd5760405162461bcd60e51b815260206004820152602360248201527f4c696d69742065786365656465642c20747279207265647563696e6720616d6f6044820152621d5b9d60ea1b6064820152608401610bd0565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d77858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611d96565b610db35760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b6044820152606401610bd0565b82600c54610dc19190612764565b341015610e105760405162461bcd60e51b815260206004820152601f60248201527f56616c75652070726f766964656420697320696e73756666696369656e7421006044820152606401610bd0565b33600090815260166020526040902054610e2b90849061271c565b33600081815260166020526040902091909155610e489084611dac565b5050505050565b610e57611bd7565b601455565b610e64611bd7565b6000610e786008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ec2576040519150601f19603f3d011682016040523d82523d6000602084013e610ec7565b606091505b5050905080610ed557600080fd5b50565b826001600160a01b0381163314610ef257610ef233611b12565b610b91848484611dc6565b610f05611bd7565b6015805463ff00000019811663010000009182900460ff1615909102179055565b60128054610f33906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5f906126cc565b8015610fac5780601f10610f8157610100808354040283529160200191610fac565b820191906000526020600020905b815481529060010190602001808311610f8f57829003601f168201915b505050505081565b610fbc611bd7565b6010610fc882826127c9565b5050565b6000610a3d82611de1565b60108054610f33906126cc565b60006001600160a01b038216611004576110046323d3ad8160e21b611b08565b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611032611bd7565b61103c6000611e4f565b565b611046611bd7565b600c55565b611053611bd7565b601355565b60095460405162438b6360e81b815233600482015260009182916001600160a01b039091169063438b630090602401600060405180830381865afa1580156110a4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110cc9190810190612889565b5192915050565b6110db611bd7565b600f55565b60118054610f33906126cc565b6110f5611bd7565b600d55565b606060038054610a52906126cc565b600a548161111a6001546000540390565b611124919061271c565b11156111425760405162461bcd60e51b8152600401610bd09061272f565b60155460ff166111a45760405162461bcd60e51b815260206004820152602760248201527f5075626c6963204d696e74206973207475726e6564206f666620617420746865604482015266081b5bdb595b9d60ca1b6064820152608401610bd0565b600081116111ea5760405162461bcd60e51b815260206004820152601360248201527210d85b89dd081b5a5b9d080c08185b5bdd5b9d606a1b6044820152606401610bd0565b33600090815260176020526040812054600e546112079190612751565b9050808211156112735760405162461bcd60e51b815260206004820152603160248201527f4578636565646564206d696e74206c696d69742c20747279207265647563696e60448201527019c81d1a19481b5a5b9d08185b5bdd5b9d607a1b6064820152608401610bd0565b336000908152601760205260408120548390600111156112d657600b5461129a908361271c565b336000908152601760205260409020549092506112b890600161271c565b33600090815260176020526040902055806112d28161292f565b9150505b336000908152601760205260409020546001118015906112f65750600081115b1561134157600d546113089082612764565b611312908361271c565b3360009081526017602052604090205490925061133090829061271c565b336000908152601760205260409020555b813410156113915760405162461bcd60e51b815260206004820152601f60248201527f45746865722070726f766964656420697320696e73756666696369656e7421006044820152606401610bd0565b61139b3385611dac565b60405184815233907f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9060200160405180910390a250505050565b816113e081611b12565b610b248383611ea1565b6113f2611bd7565b6015805462ff00ff191662ff000019921515928316176201000083021761ff001916610100909202919091179055565b60155462010000900460ff166114845760405162461bcd60e51b815260206004820152602160248201527f436c61696d206973207475726e6564206f666620617420746865206d6f6d656e6044820152601d60fa1b6064820152608401610bd0565b3360009081526018602052604090205460ff16156114d75760405162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b6044820152606401610bd0565b6009546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611520573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115449190612946565b9050600081116115965760405162461bcd60e51b815260206004820152601b60248201527f4e6f74206f776e6572206f66204e465420636f6c6c656374696f6e00000000006044820152606401610bd0565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611610848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050611d96565b61164c5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b6044820152606401610bd0565b336000908152601860205260409020805460ff19166001179055600a54826116776001546000540390565b611681919061271c565b111561169f5760405162461bcd60e51b8152600401610bd09061272f565b610b913383611dac565b6116b1611bd7565b6015805461ff001981166101009182900460ff1615909102179055565b836001600160a01b03811633146116e8576116e833611b12565b610e4885858585611f0d565b6116fc611bd7565b6011610fc882826127c9565b611710611bd7565b600a54816117216001546000540390565b61172b919061271c565b11156117495760405162461bcd60e51b8152600401610bd09061272f565b60005b82811015610b91576117848484838181106117695761176961295f565b905060200201602081019061177e91906123a2565b83611dac565b8061178e81612975565b91505061174c565b61179e611bd7565b6015805462ff0000198116620100009182900460ff1615909102179055565b60606117c882611ae1565b6118335760405162461bcd60e51b815260206004820152603660248201527f4572723a20455243373231414d65746164617461202d20555249207175657279604482015275103337b9103737b732bc34b9ba32b73a103a37b5b2b760511b6064820152608401610bd0565b6015546301000000900460ff1615156001036118a857600060108054611858906126cc565b9050116118745760405180602001604052806000815250610a3d565b601061187f83611f48565b601260405160200161189393929190612a01565b60405160208183030381529060405292915050565b601180546118b5906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546118e1906126cc565b801561192e5780601f106119035761010080835404028352916020019161192e565b820191906000526020600020905b81548152906001019060200180831161191157829003601f168201915b50505050509050919050565b919050565b611947611bd7565b6015805460ff19811660ff90911615179055565b611963611bd7565b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61199e611bd7565b600081116119e45760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610bd0565b600a54816119f56001546000540390565b6119ff919061271c565b1115611a4d5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610bd0565b601554610ed59064010000000090046001600160a01b031682611dac565b611a73611bd7565b6001600160a01b038116611ad85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd0565b610ed581611e4f565b6000805482108015610a3d575050600090815260046020526040902054600160e01b161590565b8060005260046000fd5b6daaeb6d7670e522a718067333cd4e3b15610ed557604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba39190612a34565b610ed557604051633b79c77360e21b81526001600160a01b0382166004820152602401610bd0565b610fc882826001611f8c565b6008546001600160a01b0316331461103c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bd0565b6000611c3c82611de1565b6001600160a01b039485169490915081168414611c6257611c6262a1148160e81b611b08565b60008281526006602052604090208054338082146001600160a01b03881690911417611ca657611c928633611968565b611ca657611ca6632ce44b5f60e11b611b08565b8015611cb157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611d4357600184016000818152600460205260408120549003611d41576000548114611d415760008181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003611d8d57611d8d633a954ecd60e21b611b08565b50505050505050565b600082611da3858461202f565b14949350505050565b610fc882826040518060200160405280600081525061207c565b610b24838383604051806020016040528060008152506116ce565b60008181526004602052604081205490600160e01b82169003611e3f578060000361193a576000548210611e1f57611e1f636f96cda160e11b611b08565b5b50600019016000818152600460205260409020548015611e2057919050565b61193a636f96cda160e11b611b08565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f18848484610b6c565b6001600160a01b0383163b15610b9157611f34848484846120de565b610b9157610b916368d2bf6b60e11b611b08565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611f625750819003601f19909101908152919050565b6000611f9783610fcc565b9050818015611faf5750336001600160a01b03821614155b15611fd257611fbe8133611968565b611fd257611fd26367d9dca160e11b611b08565b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081815b845181101561207457612060828683815181106120535761205361295f565b60200260200101516121c1565b91508061206c81612975565b915050612034565b509392505050565b61208683836121f3565b6001600160a01b0383163b15610b24576000548281035b6120b060008683806001019450866120de565b6120c4576120c46368d2bf6b60e11b611b08565b81811061209d578160005414610e4857610e486000611b08565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612113903390899088908890600401612a51565b6020604051808303816000875af192505050801561214e575060408051601f3d908101601f1916820190925261214b91810190612a8e565b60015b6121a3573d80801561217c576040519150601f19603f3d011682016040523d82523d6000602084013e612181565b606091505b50805160000361219b5761219b6368d2bf6b60e11b611b08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008183106121dd5760008281526020849052604090206121ec565b60008381526020839052604090205b9392505050565b600080549082900361220f5761220f63b562e8dd60e01b611b08565b60008181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526005909252822080546801000000000000000186020190559081900361226d5761226d622e076360e81b611b08565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4818160010191508103612272575060005550505050565b6001600160e01b031981168114610ed557600080fd5b6000602082840312156122da57600080fd5b81356121ec816122b2565b60005b838110156123005781810151838201526020016122e8565b50506000910152565b600081518084526123218160208601602086016122e5565b601f01601f19169290920160200192915050565b6020815260006121ec6020830184612309565b60006020828403121561235a57600080fd5b5035919050565b80356001600160a01b038116811461193a57600080fd5b6000806040838503121561238b57600080fd5b61239483612361565b946020939093013593505050565b6000602082840312156123b457600080fd5b6121ec82612361565b6000806000606084860312156123d257600080fd5b6123db84612361565b92506123e960208501612361565b9150604084013590509250925092565b60008083601f84011261240b57600080fd5b50813567ffffffffffffffff81111561242357600080fd5b6020830191508360208260051b850101111561243e57600080fd5b9250929050565b60008060006040848603121561245a57600080fd5b833567ffffffffffffffff81111561247157600080fd5b61247d868287016123f9565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124d0576124d0612491565b604052919050565b600067ffffffffffffffff8311156124f2576124f2612491565b612505601f8401601f19166020016124a7565b905082815283838301111561251957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561254257600080fd5b813567ffffffffffffffff81111561255957600080fd5b8201601f8101841361256a57600080fd5b6121b9848235602084016124d8565b8015158114610ed557600080fd5b6000806040838503121561259a57600080fd5b6125a383612361565b915060208301356125b381612579565b809150509250929050565b6000602082840312156125d057600080fd5b81356121ec81612579565b600080602083850312156125ee57600080fd5b823567ffffffffffffffff81111561260557600080fd5b612611858286016123f9565b90969095509350505050565b6000806000806080858703121561263357600080fd5b61263c85612361565b935061264a60208601612361565b925060408501359150606085013567ffffffffffffffff81111561266d57600080fd5b8501601f8101871361267e57600080fd5b61268d878235602084016124d8565b91505092959194509250565b600080604083850312156126ac57600080fd5b6126b583612361565b91506126c360208401612361565b90509250929050565b600181811c908216806126e057607f821691505b60208210810361270057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a3d57610a3d612706565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b81810381811115610a3d57610a3d612706565b8082028115828204841417610a3d57610a3d612706565b601f821115610b2457600081815260208120601f850160051c810160208610156127a25750805b601f850160051c820191505b818110156127c1578281556001016127ae565b505050505050565b815167ffffffffffffffff8111156127e3576127e3612491565b6127f7816127f184546126cc565b8461277b565b602080601f83116001811461282c57600084156128145750858301515b600019600386901b1c1916600185901b1785556127c1565b600085815260208120601f198616915b8281101561285b5788860151825594840194600190910190840161283c565b50858210156128795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602080838503121561289c57600080fd5b825167ffffffffffffffff808211156128b457600080fd5b818501915085601f8301126128c857600080fd5b8151818111156128da576128da612491565b8060051b91506128eb8483016124a7565b818152918301840191848101908884111561290557600080fd5b938501935b838510156129235784518252938501939085019061290a565b98975050505050505050565b60008161293e5761293e612706565b506000190190565b60006020828403121561295857600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006001820161298757612987612706565b5060010190565b6000815461299b816126cc565b600182811680156129b357600181146129c8576129f7565b60ff19841687528215158302870194506129f7565b8560005260208060002060005b858110156129ee5781548a8201529084019082016129d5565b50505082870194505b5050505092915050565b6000612a0d828661298e565b8451612a1d8183602089016122e5565b612a298183018661298e565b979650505050505050565b600060208284031215612a4657600080fd5b81516121ec81612579565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a8490830184612309565b9695505050505050565b600060208284031215612aa057600080fd5b81516121ec816122b256fea264697066735822122044ace7002c4a4f28e8ad45ab7199fb915fb70bad40b569170631e4a61d5c9a1e64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000099512aac7f817d29ff69245eb39a16b7c43e85b700000000000000000000000000000000000000000000000000000000000015b3

-----Decoded View---------------
Arg [0] : _NFTAddress (address): 0x99512aaC7F817D29fF69245EB39A16B7C43e85b7
Arg [1] : _supply (uint256): 5555

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000099512aac7f817d29ff69245eb39a16b7c43e85b7
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3


Deployed Bytecode Sourcemap

86138:8664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42617:689;;;;;;;;;;-1:-1:-1;42617:689:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42617:689:0;;;;;;;;43569:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50468:290::-;;;;;;;;;;-1:-1:-1;50468:290:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;50468:290:0;1533:203:1;93904:206:0;;;;;;:::i;:::-;;:::i;:::-;;86426:34;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;86426:34:0;2178:177:1;93581:99:0;;;;;;;;;;-1:-1:-1;93581:99:0;;;;;:::i;:::-;;:::i;86331:43::-;;;;;;;;;;;;;;;;39133:323;;;;;;;;;;-1:-1:-1;39407:12:0;;39194:7;39391:13;:28;39133:323;;87186:40;;;;;;;;;;-1:-1:-1;87186:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;91893:104;;;;;;;;;;-1:-1:-1;91893:104:0;;;;;:::i;:::-;;:::i;94118:205::-;;;;;;:::i;:::-;;:::i;87475:908::-;;;;;;:::i;:::-;;:::i;86611:103::-;;;;;;;;;;;;;;;;87135:44;;;;;;;;;;-1:-1:-1;87135:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;86241:32;;;;;;;;;;;;;;;;93457:116;;;;;;;;;;-1:-1:-1;93457:116:0;;;;;:::i;:::-;;:::i;91345:335::-;;;:::i;18151:143::-;;;;;;;;;;;;10196:42;18151:143;;94331:213;;;;;;:::i;:::-;;:::i;86721:108::-;;;;;;;;;;;;;;;;86467:35;;;;;;;;;;;;;;;;92329:96;;;;;;;;;;;;;:::i;86569:33::-;;;;;;;;;;;;;:::i;92715:104::-;;;;;;;;;;-1:-1:-1;92715:104:0;;;;;:::i;:::-;;:::i;45068:202::-;;;;;;;;;;-1:-1:-1;45068:202:0;;;;;:::i;:::-;;:::i;86511:21::-;;;;;;;;;;;;;:::i;86838:38::-;;;;;;;;;;-1:-1:-1;86838:38:0;;;;;;;;40317:292;;;;;;;;;;-1:-1:-1;40317:292:0;;;;;:::i;:::-;;:::i;85257:103::-;;;;;;;;;;;;;:::i;92005:::-;;;;;;;;;;-1:-1:-1;92005:103:0;;;;;:::i;:::-;;:::i;93343:106::-;;;;;;;;;;-1:-1:-1;93343:106:0;;;;;:::i;:::-;;:::i;93168:167::-;;;;;;;;;;;;;:::i;93055:105::-;;;;;;;;;;-1:-1:-1;93055:105:0;;;;;:::i;:::-;;:::i;86539:23::-;;;;;;;;;;;;;:::i;84609:87::-;;;;;;;;;;-1:-1:-1;84682:6:0;;-1:-1:-1;;;;;84682:6:0;84609:87;;91796:89;;;;;;;;;;-1:-1:-1;91796:89:0;;;;;:::i;:::-;;:::i;86280:44::-;;;;;;;;;;;;;;;;43745:104;;;;;;;;;;;;;:::i;88391:1079::-;;;;;;:::i;:::-;;:::i;93688:208::-;;;;;;;;;;-1:-1:-1;93688:208:0;;;;;:::i;:::-;;:::i;86883:34::-;;;;;;;;;;-1:-1:-1;86883:34:0;;;;;;;;;;;92539:168;;;;;;;;;;-1:-1:-1;92539:168:0;;;;;:::i;:::-;;:::i;89478:671::-;;;;;;;;;;-1:-1:-1;89478:671:0;;;;;:::i;:::-;;:::i;92433:98::-;;;;;;;;;;;;;:::i;94552:247::-;;;;;;:::i;:::-;;:::i;92827:112::-;;;;;;;;;;-1:-1:-1;92827:112:0;;;;;:::i;:::-;;:::i;86924:31::-;;;;;;;;;;-1:-1:-1;86924:31:0;;;;;;;;;;;86381:38;;;;;;;;;;;;;;;;90157:295;;;;;;:::i;:::-;;:::i;92228:93::-;;;;;;;;;;;;;:::i;90753:584::-;;;;;;;;;;-1:-1:-1;90753:584:0;;;;;:::i;:::-;;:::i;92116:104::-;;;;;;;;;;;;;:::i;87077:51::-;;;;;;;;;;-1:-1:-1;87077:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;86962:33;;;;;;;;;;-1:-1:-1;86962:33:0;;;;;;;;;;;92947:100;;;;;;;;;;-1:-1:-1;92947:100:0;;;;;:::i;:::-;;:::i;51521:214::-;;;;;;;;;;-1:-1:-1;51521:214:0;;;;;:::i;:::-;;:::i;90460:285::-;;;;;;;;;;-1:-1:-1;90460:285:0;;;;;:::i;:::-;;:::i;85515:238::-;;;;;;;;;;-1:-1:-1;85515:238:0;;;;;:::i;:::-;;:::i;42617:689::-;42747:4;-1:-1:-1;;;;;;;;;43076:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;43153:25:0;;;43076:102;:179;;;-1:-1:-1;;;;;;;;;;43230:25:0;;;43076:179;43056:199;42617:689;-1:-1:-1;;42617:689:0:o;43569:100::-;43623:13;43656:5;43649:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43569:100;:::o;50468:290::-;50589:7;50619:16;50627:7;50619;:16::i;:::-;50614:86;;50650:50;-1:-1:-1;;;50650:7:0;:50::i;:::-;-1:-1:-1;50720:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;50720:30:0;;50468:290::o;93904:206::-;94044:8;20067:30;20088:8;20067:20;:30::i;:::-;94070:32:::1;94084:8;94094:7;94070:13;:32::i;:::-;93904:206:::0;;;:::o;93581:99::-;84495:13;:11;:13::i;:::-;93651:11:::1;:21:::0;;-1:-1:-1;;;;;93651:21:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;93651:21:0;;::::1;::::0;;;::::1;::::0;;93581:99::o;91893:104::-;84495:13;:11;:13::i;:::-;91964:16:::1;:25:::0;91893:104::o;94118:205::-;94261:4;-1:-1:-1;;;;;19793:18:0;;19801:10;19793:18;19789:83;;19828:32;19849:10;19828:20;:32::i;:::-;94278:37:::1;94297:4;94303:2;94307:7;94278:18;:37::i;:::-;94118:205:::0;;;;:::o;87475:908::-;87633:10;;87622:7;87606:13;39407:12;;39194:7;39391:13;:28;;39133:323;87606:13;:23;;;;:::i;:::-;:37;;87598:58;;;;-1:-1:-1;;;87598:58:0;;;;;;;:::i;:::-;;;;;;;;;87675:14;;;;;;;87667:62;;;;-1:-1:-1;;;87667:62:0;;9415:2:1;87667:62:0;;;9397:21:1;9454:2;9434:18;;;9427:30;9493:34;9473:18;;;9466:62;-1:-1:-1;;;9544:18:1;;;9537:33;9587:19;;87667:62:0;9213:399:1;87667:62:0;87758:1;87748:7;:11;87740:43;;;;-1:-1:-1;;;87740:43:0;;9819:2:1;87740:43:0;;;9801:21:1;9858:2;9838:18;;;9831:30;-1:-1:-1;;;9877:18:1;;;9870:49;9936:18;;87740:43:0;9617:343:1;87740:43:0;87848:10;87794:15;87831:28;;;:16;:28;;;;;;87812:16;;:47;;87831:28;87812:47;:::i;:::-;87794:65;;87889:7;87878;:18;;87870:66;;;;-1:-1:-1;;;87870:66:0;;10300:2:1;87870:66:0;;;10282:21:1;10339:2;10319:18;;;10312:30;10378:34;10358:18;;;10351:62;-1:-1:-1;;;10429:18:1;;;10422:33;10472:19;;87870:66:0;10098:399:1;87870:66:0;87972:28;;-1:-1:-1;;87989:10:0;10651:2:1;10647:15;10643:53;87972:28:0;;;10631:66:1;87947:12:0;;10713::1;;87972:28:0;;;;;;;;;;;;87962:39;;;;;;87947:54;;88034:49;88053:11;;88034:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;88066:10:0;;;-1:-1:-1;88078:4:0;;-1:-1:-1;88034:18:0;:49::i;:::-;88012:112;;;;-1:-1:-1;;;88012:112:0;;10938:2:1;88012:112:0;;;10920:21:1;10977:2;10957:18;;;10950:30;-1:-1:-1;;;10996:18:1;;;10989:43;11049:18;;88012:112:0;10736:337:1;88012:112:0;88188:7;88170:15;;:25;;;;:::i;:::-;88157:9;:38;;88135:119;;;;-1:-1:-1;;;88135:119:0;;11453:2:1;88135:119:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:33;11511:18;;;11504:61;11582:18;;88135:119:0;11251:355:1;88135:119:0;88313:10;88296:28;;;;:16;:28;;;;;;:38;;88327:7;;88296:38;:::i;:::-;88282:10;88265:28;;;;:16;:28;;;;;:69;;;;88345:30;;88367:7;88345:9;:30::i;:::-;87587:796;;87475:908;;;:::o;93457:116::-;84495:13;:11;:13::i;:::-;93536:15:::1;:29:::0;93457:116::o;91345:335::-;84495:13;:11;:13::i;:::-;91492:7:::1;91513;84682:6:::0;;-1:-1:-1;;;;;84682:6:0;;84609:87;91513:7:::1;-1:-1:-1::0;;;;;91505:21:0::1;91534;91505:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91491:69;;;91579:2;91571:11;;;::::0;::::1;;91390:290;91345:335::o:0;94331:213::-;94478:4;-1:-1:-1;;;;;19793:18:0;;19801:10;19793:18;19789:83;;19828:32;19849:10;19828:20;:32::i;:::-;94495:41:::1;94518:4;94524:2;94528:7;94495:22;:41::i;92329:96::-:0;84495:13;:11;:13::i;:::-;92404::::1;::::0;;-1:-1:-1;;92387:30:0;::::1;92404:13:::0;;;;::::1;;;92403:14;92387:30:::0;;::::1;;::::0;;92329:96::o;86569:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;92715:104::-;84495:13;:11;:13::i;:::-;92790:7:::1;:21;92800:11:::0;92790:7;:21:::1;:::i;:::-;;92715:104:::0;:::o;45068:202::-;45185:7;45233:27;45252:7;45233:18;:27::i;86511:21::-;;;;;;;:::i;40317:292::-;40434:7;-1:-1:-1;;;;;40463:19:0;;40459:69;;40484:44;-1:-1:-1;;;40484:7:0;:44::i;:::-;-1:-1:-1;;;;;;40546:25:0;;;;;:18;:25;;;;;;34476:13;40546:55;;40317:292::o;85257:103::-;84495:13;:11;:13::i;:::-;85322:30:::1;85349:1;85322:18;:30::i;:::-;85257:103::o:0;92005:::-;84495:13;:11;:13::i;:::-;92076:15:::1;:24:::0;92005:103::o;93343:106::-;84495:13;:11;:13::i;:::-;93417:10:::1;:24:::0;93343:106::o;93168:167::-;93253:15;;:41;;-1:-1:-1;;;93253:41:0;;93283:10;93253:41;;;1679:51:1;93214:7:0;;;;-1:-1:-1;;;;;93253:15:0;;;;:29;;1652:18:1;;93253:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;93253:41:0;;;;;;;;;;;;:::i;:::-;:48;;93168:167;-1:-1:-1;;93168:167:0:o;93055:105::-;84495:13;:11;:13::i;:::-;93127:16:::1;:25:::0;93055:105::o;86539:23::-;;;;;;;:::i;91796:89::-;84495:13;:11;:13::i;:::-;91858:10:::1;:19:::0;91796:89::o;43745:104::-;43801:13;43834:7;43827:14;;;;;:::i;88391:1079::-;88485:10;;88474:7;88458:13;39407:12;;39194:7;39391:13;:28;;39133:323;88458:13;:23;;;;:::i;:::-;:37;;88450:58;;;;-1:-1:-1;;;88450:58:0;;;;;;;:::i;:::-;88527:18;;;;88519:70;;;;-1:-1:-1;;;88519:70:0;;15168:2:1;88519:70:0;;;15150:21:1;15207:2;15187:18;;;15180:30;15246:34;15226:18;;;15219:62;-1:-1:-1;;;15297:18:1;;;15290:37;15344:19;;88519:70:0;14966:403:1;88519:70:0;88618:1;88608:7;:11;88600:43;;;;-1:-1:-1;;;88600:43:0;;9819:2:1;88600:43:0;;;9801:21:1;9858:2;9838:18;;;9831:30;-1:-1:-1;;;9877:18:1;;;9870:49;9936:18;;88600:43:0;9617:343:1;88600:43:0;88699:10;88654:15;88689:21;;;:9;:21;;;;;;88672:14;;:38;;88689:21;88672:38;:::i;:::-;88654:56;;88754:7;88743;:18;;88721:117;;;;-1:-1:-1;;;88721:117:0;;15576:2:1;88721:117:0;;;15558:21:1;15615:2;15595:18;;;15588:30;15654:34;15634:18;;;15627:62;-1:-1:-1;;;15705:18:1;;;15698:47;15762:19;;88721:117:0;15374:413:1;88721:117:0;88932:10;88849:13;88922:21;;;:9;:21;;;;;;88898:7;;88946:1;-1:-1:-1;88918:181:0;;;88980:16;;88972:24;;:5;:24;:::i;:::-;89045:10;89035:21;;;;:9;:21;;;;;;88964:32;;-1:-1:-1;89035:25:0;;89059:1;89035:25;:::i;:::-;89021:10;89011:21;;;;:9;:21;;;;;:49;89075:12;;;;:::i;:::-;;;;88918:181;89125:10;89115:21;;;;:9;:21;;;;;;89140:1;-1:-1:-1;89115:26:0;;;:44;;;89158:1;89145:10;:14;89115:44;89111:191;;;89206:10;;89193:23;;:10;:23;:::i;:::-;89184:33;;:5;:33;:::i;:::-;89266:10;89256:21;;;;:9;:21;;;;;;89176:41;;-1:-1:-1;89256:34:0;;89280:10;;89256:34;:::i;:::-;89242:10;89232:21;;;;:9;:21;;;;;:58;89111:191;89335:5;89322:9;:18;;89314:62;;;;-1:-1:-1;;;89314:62:0;;16135:2:1;89314:62:0;;;16117:21:1;16174:2;16154:18;;;16147:30;16213:33;16193:18;;;16186:61;16264:18;;89314:62:0;15933:355:1;89314:62:0;89387:30;89397:10;89409:7;89387:9;:30::i;:::-;89435:27;;2324:25:1;;;89442:10:0;;89435:27;;2312:2:1;2297:18;89435:27:0;;;;;;;88439:1031;;;88391:1079;:::o;93688:208::-;93819:8;20067:30;20088:8;20067:20;:30::i;:::-;93845:43:::1;93869:8;93879;93845:23;:43::i;92539:168::-:0;84495:13;:11;:13::i;:::-;92603:18:::1;:28:::0;;-1:-1:-1;;92642:22:0;-1:-1:-1;;92603:28:0;::::1;;92642:22:::0;;;;;;::::1;;-1:-1:-1::0;;92675:24:0::1;92603:28;92675:24:::0;;::::1;::::0;;;::::1;::::0;;92539:168::o;89478:671::-;89553:12;;;;;;;89545:58;;;;-1:-1:-1;;;89545:58:0;;16495:2:1;89545:58:0;;;16477:21:1;16534:2;16514:18;;;16507:30;16573:34;16553:18;;;16546:62;-1:-1:-1;;;16624:18:1;;;16617:31;16665:19;;89545:58:0;16293:397:1;89545:58:0;89632:10;89623:20;;;;:8;:20;;;;;;;;89622:21;89614:50;;;;-1:-1:-1;;;89614:50:0;;16897:2:1;89614:50:0;;;16879:21:1;16936:2;16916:18;;;16909:30;-1:-1:-1;;;16955:18:1;;;16948:46;17011:18;;89614:50:0;16695:340:1;89614:50:0;89695:15;;:37;;-1:-1:-1;;;89695:37:0;;89721:10;89695:37;;;1679:51:1;89675:17:0;;-1:-1:-1;;;;;89695:15:0;;:25;;1652:18:1;;89695:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89675:57;;89763:1;89751:9;:13;89743:53;;;;-1:-1:-1;;;89743:53:0;;17431:2:1;89743:53:0;;;17413:21:1;17470:2;17450:18;;;17443:30;17509:29;17489:18;;;17482:57;17556:18;;89743:53:0;17229:351:1;89743:53:0;89832:28;;-1:-1:-1;;89849:10:0;10651:2:1;10647:15;10643:53;89832:28:0;;;10631:66:1;89807:12:0;;10713::1;;89832:28:0;;;;;;;;;;;;89822:39;;;;;;89807:54;;89894;89913:11;;89894:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;89926:15:0;;;-1:-1:-1;89943:4:0;;-1:-1:-1;89894:18:0;:54::i;:::-;89872:117;;;;-1:-1:-1;;;89872:117:0;;10938:2:1;89872:117:0;;;10920:21:1;10977:2;10957:18;;;10950:30;-1:-1:-1;;;10996:18:1;;;10989:43;11049:18;;89872:117:0;10736:337:1;89872:117:0;90009:10;90000:20;;;;:8;:20;;;;;:27;;-1:-1:-1;;90000:27:0;90023:4;90000:27;;;90075:10;;90062:9;90046:13;39407:12;;39194:7;39391:13;:28;;39133:323;90046:13;:25;;;;:::i;:::-;:39;;90038:60;;;;-1:-1:-1;;;90038:60:0;;;;;;;:::i;:::-;90109:32;90119:10;90131:9;90109;:32::i;92433:98::-;84495:13;:11;:13::i;:::-;92509:14:::1;::::0;;-1:-1:-1;;92491:32:0;::::1;92509:14;::::0;;;::::1;;;92508:15;92491:32:::0;;::::1;;::::0;;92433:98::o;94552:247::-;94727:4;-1:-1:-1;;;;;19793:18:0;;19801:10;19793:18;19789:83;;19828:32;19849:10;19828:20;:32::i;:::-;94744:47:::1;94767:4;94773:2;94777:7;94786:4;94744:22;:47::i;92827:112::-:0;84495:13;:11;:13::i;:::-;92906:9:::1;:25;92918:13:::0;92906:9;:25:::1;:::i;90157:295::-:0;84495:13;:11;:13::i;:::-;90318:10:::1;;90308:6;90292:13;39407:12:::0;;39194:7;39391:13;:28;;39133:323;90292:13:::1;:22;;;;:::i;:::-;:36;;90284:57;;;;-1:-1:-1::0;;;90284:57:0::1;;;;;;;:::i;:::-;90357:9;90352:93;90372:14:::0;;::::1;90352:93;;;90408:25;90418:3;;90422:1;90418:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;90426;90408:9;:25::i;:::-;90388:3:::0;::::1;::::0;::::1;:::i;:::-;;;;90352:93;;92228::::0;84495:13;:11;:13::i;:::-;92301:12:::1;::::0;;-1:-1:-1;;92285:28:0;::::1;92301:12:::0;;;;::::1;;;92300:13;92285:28:::0;;::::1;;::::0;;92228:93::o;90753:584::-;90854:13;90907:16;90915:7;90907;:16::i;:::-;90885:120;;;;-1:-1:-1;;;90885:120:0;;18059:2:1;90885:120:0;;;18041:21:1;18098:2;18078:18;;;18071:30;18137:34;18117:18;;;18110:62;-1:-1:-1;;;18188:18:1;;;18181:52;18250:19;;90885:120:0;17857:418:1;90885:120:0;91020:13;;;;;;;:21;;91037:4;91020:21;91016:314;;91106:1;91088:7;91082:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;91181:7;91190:18;91200:7;91190:9;:18::i;:::-;91210:9;91164:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91058:211;90753:584;-1:-1:-1;;90753:584:0:o;91016:314::-;91309:9;91302:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90753:584;;;:::o;91016:314::-;90753:584;;;:::o;92116:104::-;84495:13;:11;:13::i;:::-;92194:18:::1;::::0;;-1:-1:-1;;92172:40:0;::::1;92194:18;::::0;;::::1;92193:19;92172:40;::::0;;92116:104::o;92947:100::-;84495:13;:11;:13::i;:::-;93016:14:::1;:23:::0;92947:100::o;51521:214::-;-1:-1:-1;;;;;51692:25:0;;;51663:4;51692:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51521:214::o;90460:285::-;84495:13;:11;:13::i;:::-;90547:1:::1;90536:8;:12;90528:44;;;::::0;-1:-1:-1;;;90528:44:0;;19683:2:1;90528:44:0::1;::::0;::::1;19665:21:1::0;19722:2;19702:18;;;19695:30;-1:-1:-1;;;19741:18:1;;;19734:49;19800:18;;90528:44:0::1;19481:343:1::0;90528:44:0::1;90633:10;;90621:8;90605:13;39407:12:::0;;39194:7;39391:13;:28;;39133:323;90605:13:::1;:24;;;;:::i;:::-;:38;;90583:111;;;::::0;-1:-1:-1;;;90583:111:0;;20031:2:1;90583:111:0::1;::::0;::::1;20013:21:1::0;20070:2;20050:18;;;20043:30;20109:25;20089:18;;;20082:53;20152:18;;90583:111:0::1;19829:347:1::0;90583:111:0::1;90715:11;::::0;90705:32:::1;::::0;90715:11;;::::1;-1:-1:-1::0;;;;;90715:11:0::1;90728:8:::0;90705:9:::1;:32::i;85515:238::-:0;84495:13;:11;:13::i;:::-;-1:-1:-1;;;;;85618:22:0;::::1;85596:110;;;::::0;-1:-1:-1;;;85596:110:0;;20383:2:1;85596:110:0::1;::::0;::::1;20365:21:1::0;20422:2;20402:18;;;20395:30;20461:34;20441:18;;;20434:62;-1:-1:-1;;;20512:18:1;;;20505:36;20558:19;;85596:110:0::1;20181:402:1::0;85596:110:0::1;85717:28;85736:8;85717:18;:28::i;51993:282::-:0;52058:4;52148:13;;52138:7;:23;52095:153;;;;-1:-1:-1;;52199:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;52199:44:0;:49;;51993:282::o;78691:165::-;78792:13;78786:4;78779:27;78833:4;78827;78820:18;20210:740;10196:42;20401:45;:49;20397:546;;20718:128;;-1:-1:-1;;;20718:128:0;;20791:4;20718:128;;;20800:34:1;-1:-1:-1;;;;;20870:15:1;;20850:18;;;20843:43;10196:42:0;;20718;;20735:18:1;;20718:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20695:237;;20888:28;;-1:-1:-1;;;20888:28:0;;-1:-1:-1;;;;;1697:32:1;;20888:28:0;;;1679:51:1;1652:18;;20888:28:0;1533:203:1;50144:165:0;50274:27;50283:2;50287:7;50296:4;50274:8;:27::i;84774:132::-;84682:6;;-1:-1:-1;;;;;84682:6:0;83880:10;84838:23;84830:68;;;;-1:-1:-1;;;84830:68:0;;21349:2:1;84830:68:0;;;21331:21:1;;;21368:18;;;21361:30;21427:34;21407:18;;;21400:62;21479:18;;84830:68:0;21147:356:1;54261:3701:0;54403:27;54433;54452:7;54433:18;:27::i;:::-;-1:-1:-1;;;;;54588:22:0;;;;54403:57;;-1:-1:-1;54648:45:0;;;;54644:108;;54708:44;-1:-1:-1;;;54708:7:0;:44::i;:::-;54780:27;53369:24;;;:15;:24;;;;;53597:26;;83880:10;52994:30;;;-1:-1:-1;;;;;52687:28:0;;52972:20;;;52969:56;54989:296;;55172:43;55189:4;83880:10;51521:214;:::i;55172:43::-;55167:118;;55234:51;-1:-1:-1;;;55234:7:0;:51::i;:::-;55434:15;55431:160;;;55574:1;55553:19;55546:30;55431:160;-1:-1:-1;;;;;55971:24:0;;;;;;;:18;:24;;;;;;55969:26;;-1:-1:-1;;55969:26:0;;;56040:22;;;;;;;;;56038:24;;-1:-1:-1;56038:24:0;;;49200:11;49175:23;49171:41;49123:112;-1:-1:-1;;;49123:112:0;56333:26;;;;:17;:26;;;;;:196;;;;-1:-1:-1;;;56649:47:0;;:52;;56645:627;;56754:1;56744:11;;56722:19;56877:30;;;:17;:30;;;;;;:35;;56873:384;;57015:13;;57000:11;:28;56996:242;;57162:30;;;;:17;:30;;;;;:52;;;56996:242;56703:569;56645:627;-1:-1:-1;;;;;57404:20:0;;57784:7;57404:20;57714:4;57656:25;57385:16;;57521:299;57845:8;57857:1;57845:13;57841:58;;57860:39;-1:-1:-1;;;57860:7:0;:39::i;:::-;54392:3570;;;;54261:3701;;;:::o;1306:190::-;1431:4;1484;1455:25;1468:5;1475:4;1455:12;:25::i;:::-;:33;;1306:190;-1:-1:-1;;;;1306:190:0:o;68946:112::-;69023:27;69033:2;69037:8;69023:27;;;;;;;;;;;;:9;:27::i;58058:193::-;58204:39;58221:4;58227:2;58231:7;58204:39;;;;;;;;;;;;:16;:39::i;46355:1787::-;46537:26;;;;:17;:26;;;;;;;-1:-1:-1;;;46613:24:0;;:29;;46609:1457;;46752:6;46762:1;46752:11;46748:1015;;46803:13;;46792:7;:24;46788:102;;46843:47;-1:-1:-1;;;46843:7:0;:47::i;:::-;47487:257;-1:-1:-1;;;47591:9:0;47573:28;;;;:17;:28;;;;;;47655:25;;47487:257;47655:25;46355:1787;;;:::o;46609:1457::-;48087:47;-1:-1:-1;;;48087:7:0;:47::i;85913:191::-;86006:6;;;-1:-1:-1;;;;;86023:17:0;;;-1:-1:-1;;;;;;86023:17:0;;;;;;;86056:40;;86006:6;;;86023:17;86006:6;;86056:40;;85987:16;;86056:40;85976:128;85913:191;:::o;51098:266::-;83880:10;51225:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;51225:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;51225:60:0;;;;;;;;;;51301:55;;540:41:1;;;51225:49:0;;83880:10;51301:55;;513:18:1;51301:55:0;;;;;;;51098:266;;:::o;58849:416::-;59024:31;59037:4;59043:2;59047:7;59024:12;:31::i;:::-;-1:-1:-1;;;;;59070:14:0;;;:19;59066:192;;59109:56;59140:4;59146:2;59150:7;59159:5;59109:30;:56::i;:::-;59104:154;;59186:56;-1:-1:-1;;;59186:7:0;:56::i;76838:1786::-;76939:17;77378:4;77371;77365:11;77361:22;77470:1;77464:4;77457:15;77545:4;77542:1;77538:12;77531:19;;;77627:1;77622:3;77615:14;77731:3;77970:5;77952:428;78018:1;78013:3;78009:11;78002:18;;78189:2;78183:4;78179:13;78175:2;78171:22;78166:3;78158:36;78283:2;78273:13;;78340:25;77952:428;78340:25;-1:-1:-1;78410:13:0;;;-1:-1:-1;;78525:14:0;;;78587:19;;;78525:14;76838:1786;-1:-1:-1;76838:1786:0:o;69864:474::-;69993:13;70009:16;70017:7;70009;:16::i;:::-;69993:32;;70042:13;:45;;;;-1:-1:-1;83880:10:0;-1:-1:-1;;;;;70059:28:0;;;;70042:45;70038:201;;;70107:44;70124:5;83880:10;51521:214;:::i;70107:44::-;70102:137;;70172:51;-1:-1:-1;;;70172:7:0;:51::i;:::-;70251:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;70251:35:0;-1:-1:-1;;;;;70251:35:0;;;;;;;;;70302:28;;70251:24;;70302:28;;;;;;;69982:356;69864:474;;;:::o;2173:328::-;2283:7;2331:4;2283:7;2346:118;2370:5;:12;2366:1;:16;2346:118;;;2419:33;2429:12;2443:5;2449:1;2443:8;;;;;;;;:::i;:::-;;;;;;;2419:9;:33::i;:::-;2404:48;-1:-1:-1;2384:3:0;;;;:::i;:::-;;;;2346:118;;;-1:-1:-1;2481:12:0;2173:328;-1:-1:-1;;;2173:328:0:o;67907:955::-;68038:19;68044:2;68048:8;68038:5;:19::i;:::-;-1:-1:-1;;;;;68099:14:0;;;:19;68095:749;;68139:11;68153:13;68201:14;;;68234:489;68291:205;68360:1;68393:2;68426:7;;;;;;68464:5;68291:30;:205::i;:::-;68260:423;;68547:112;-1:-1:-1;;;68547:7:0;:112::i;:::-;68718:3;68710:5;:11;68234:489;;68805:3;68788:13;;:20;68784:44;;68810:18;68825:1;68810:7;:18::i;61349:806::-;61546:171;;-1:-1:-1;;;61546:171:0;;61512:4;;-1:-1:-1;;;;;61546:45:0;;;;;:171;;83880:10;;61648:4;;61671:7;;61697:5;;61546:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61546:171:0;;;;;;;;-1:-1:-1;;61546:171:0;;;;;;;;;;;;:::i;:::-;;;61529:619;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61931:6;:13;61948:1;61931:18;61927:115;;61970:56;-1:-1:-1;;;61970:7:0;:56::i;:::-;62114:6;62108:13;62099:6;62095:2;62091:15;62084:38;61529:619;-1:-1:-1;;;;;;61790:81:0;-1:-1:-1;;;61790:81:0;;-1:-1:-1;61529:619:0;61349:806;;;;;;:::o;9583:149::-;9646:7;9677:1;9673;:5;:51;;9835:13;9934:15;;;9970:4;9963:15;;;10017:4;10001:21;;9673:51;;;9835:13;9934:15;;;9970:4;9963:15;;;10017:4;10001:21;;9681:20;9666:58;9583:149;-1:-1:-1;;;9583:149:0:o;62617:2360::-;62690:20;62713:13;;;62741;;;62737:53;;62756:34;-1:-1:-1;;;62756:7:0;:34::i;:::-;63303:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;48991:28:0;;49200:11;49175:23;49171:41;49690:1;49677:15;;49651:24;49647:46;49168:52;49123:112;;63303:194;;;63715:22;;;:18;:22;;;;;:105;;63787:32;63758:62;;63715:105;;;48991:28;64010:13;;;64006:54;;64025:35;-1:-1:-1;;;64025:7:0;:35::i;:::-;64091:23;;;:12;64176:676;64595:7;64551:8;64506:1;64440:25;64377:1;64312;64281:358;64847:3;64834:9;;;;;;:16;64176:676;;-1:-1:-1;64868:13:0;:19;-1:-1:-1;93904:206:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:367::-;2947:8;2957:6;3011:3;3004:4;2996:6;2992:17;2988:27;2978:55;;3029:1;3026;3019:12;2978:55;-1:-1:-1;3052:20:1;;3095:18;3084:30;;3081:50;;;3127:1;3124;3117:12;3081:50;3164:4;3156:6;3152:17;3140:29;;3224:3;3217:4;3207:6;3204:1;3200:14;3192:6;3188:27;3184:38;3181:47;3178:67;;;3241:1;3238;3231:12;3178:67;2884:367;;;;;:::o;3256:505::-;3351:6;3359;3367;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3476:9;3463:23;3509:18;3501:6;3498:30;3495:50;;;3541:1;3538;3531:12;3495:50;3580:70;3642:7;3633:6;3622:9;3618:22;3580:70;:::i;:::-;3669:8;;3554:96;;-1:-1:-1;3751:2:1;3736:18;;;;3723:32;;3256:505;-1:-1:-1;;;;3256:505:1:o;4372:127::-;4433:10;4428:3;4424:20;4421:1;4414:31;4464:4;4461:1;4454:15;4488:4;4485:1;4478:15;4504:275;4575:2;4569:9;4640:2;4621:13;;-1:-1:-1;;4617:27:1;4605:40;;4675:18;4660:34;;4696:22;;;4657:62;4654:88;;;4722:18;;:::i;:::-;4758:2;4751:22;4504:275;;-1:-1:-1;4504:275:1:o;4784:407::-;4849:5;4883:18;4875:6;4872:30;4869:56;;;4905:18;;:::i;:::-;4943:57;4988:2;4967:15;;-1:-1:-1;;4963:29:1;4994:4;4959:40;4943:57;:::i;:::-;4934:66;;5023:6;5016:5;5009:21;5063:3;5054:6;5049:3;5045:16;5042:25;5039:45;;;5080:1;5077;5070:12;5039:45;5129:6;5124:3;5117:4;5110:5;5106:16;5093:43;5183:1;5176:4;5167:6;5160:5;5156:18;5152:29;5145:40;4784:407;;;;;:::o;5196:451::-;5265:6;5318:2;5306:9;5297:7;5293:23;5289:32;5286:52;;;5334:1;5331;5324:12;5286:52;5374:9;5361:23;5407:18;5399:6;5396:30;5393:50;;;5439:1;5436;5429:12;5393:50;5462:22;;5515:4;5507:13;;5503:27;-1:-1:-1;5493:55:1;;5544:1;5541;5534:12;5493:55;5567:74;5633:7;5628:2;5615:16;5610:2;5606;5602:11;5567:74;:::i;5652:118::-;5738:5;5731:13;5724:21;5717:5;5714:32;5704:60;;5760:1;5757;5750:12;5775:315;5840:6;5848;5901:2;5889:9;5880:7;5876:23;5872:32;5869:52;;;5917:1;5914;5907:12;5869:52;5940:29;5959:9;5940:29;:::i;:::-;5930:39;;6019:2;6008:9;6004:18;5991:32;6032:28;6054:5;6032:28;:::i;:::-;6079:5;6069:15;;;5775:315;;;;;:::o;6095:241::-;6151:6;6204:2;6192:9;6183:7;6179:23;6175:32;6172:52;;;6220:1;6217;6210:12;6172:52;6259:9;6246:23;6278:28;6300:5;6278:28;:::i;6341:437::-;6427:6;6435;6488:2;6476:9;6467:7;6463:23;6459:32;6456:52;;;6504:1;6501;6494:12;6456:52;6544:9;6531:23;6577:18;6569:6;6566:30;6563:50;;;6609:1;6606;6599:12;6563:50;6648:70;6710:7;6701:6;6690:9;6686:22;6648:70;:::i;:::-;6737:8;;6622:96;;-1:-1:-1;6341:437:1;-1:-1:-1;;;;6341:437:1:o;6783:667::-;6878:6;6886;6894;6902;6955:3;6943:9;6934:7;6930:23;6926:33;6923:53;;;6972:1;6969;6962:12;6923:53;6995:29;7014:9;6995:29;:::i;:::-;6985:39;;7043:38;7077:2;7066:9;7062:18;7043:38;:::i;:::-;7033:48;;7128:2;7117:9;7113:18;7100:32;7090:42;;7183:2;7172:9;7168:18;7155:32;7210:18;7202:6;7199:30;7196:50;;;7242:1;7239;7232:12;7196:50;7265:22;;7318:4;7310:13;;7306:27;-1:-1:-1;7296:55:1;;7347:1;7344;7337:12;7296:55;7370:74;7436:7;7431:2;7418:16;7413:2;7409;7405:11;7370:74;:::i;:::-;7360:84;;;6783:667;;;;;;;:::o;7965:260::-;8033:6;8041;8094:2;8082:9;8073:7;8069:23;8065:32;8062:52;;;8110:1;8107;8100:12;8062:52;8133:29;8152:9;8133:29;:::i;:::-;8123:39;;8181:38;8215:2;8204:9;8200:18;8181:38;:::i;:::-;8171:48;;7965:260;;;;;:::o;8230:380::-;8309:1;8305:12;;;;8352;;;8373:61;;8427:4;8419:6;8415:17;8405:27;;8373:61;8480:2;8472:6;8469:14;8449:18;8446:38;8443:161;;8526:10;8521:3;8517:20;8514:1;8507:31;8561:4;8558:1;8551:15;8589:4;8586:1;8579:15;8443:161;;8230:380;;;:::o;8615:127::-;8676:10;8671:3;8667:20;8664:1;8657:31;8707:4;8704:1;8697:15;8731:4;8728:1;8721:15;8747:125;8812:9;;;8833:10;;;8830:36;;;8846:18;;:::i;8877:331::-;9079:2;9061:21;;;9118:1;9098:18;;;9091:29;-1:-1:-1;;;9151:2:1;9136:18;;9129:38;9199:2;9184:18;;8877:331::o;9965:128::-;10032:9;;;10053:11;;;10050:37;;;10067:18;;:::i;11078:168::-;11151:9;;;11182;;11199:15;;;11193:22;;11179:37;11169:71;;11220:18;;:::i;11947:545::-;12049:2;12044:3;12041:11;12038:448;;;12085:1;12110:5;12106:2;12099:17;12155:4;12151:2;12141:19;12225:2;12213:10;12209:19;12206:1;12202:27;12196:4;12192:38;12261:4;12249:10;12246:20;12243:47;;;-1:-1:-1;12284:4:1;12243:47;12339:2;12334:3;12330:12;12327:1;12323:20;12317:4;12313:31;12303:41;;12394:82;12412:2;12405:5;12402:13;12394:82;;;12457:17;;;12438:1;12427:13;12394:82;;;12398:3;;;11947:545;;;:::o;12668:1352::-;12794:3;12788:10;12821:18;12813:6;12810:30;12807:56;;;12843:18;;:::i;:::-;12872:97;12962:6;12922:38;12954:4;12948:11;12922:38;:::i;:::-;12916:4;12872:97;:::i;:::-;13024:4;;13088:2;13077:14;;13105:1;13100:663;;;;13807:1;13824:6;13821:89;;;-1:-1:-1;13876:19:1;;;13870:26;13821:89;-1:-1:-1;;12625:1:1;12621:11;;;12617:24;12613:29;12603:40;12649:1;12645:11;;;12600:57;13923:81;;13070:944;;13100:663;11894:1;11887:14;;;11931:4;11918:18;;-1:-1:-1;;13136:20:1;;;13254:236;13268:7;13265:1;13262:14;13254:236;;;13357:19;;;13351:26;13336:42;;13449:27;;;;13417:1;13405:14;;;;13284:19;;13254:236;;;13258:3;13518:6;13509:7;13506:19;13503:201;;;13579:19;;;13573:26;-1:-1:-1;;13662:1:1;13658:14;;;13674:3;13654:24;13650:37;13646:42;13631:58;13616:74;;13503:201;-1:-1:-1;;;;;13750:1:1;13734:14;;;13730:22;13717:36;;-1:-1:-1;12668:1352:1:o;14025:936::-;14120:6;14151:2;14194;14182:9;14173:7;14169:23;14165:32;14162:52;;;14210:1;14207;14200:12;14162:52;14243:9;14237:16;14272:18;14313:2;14305:6;14302:14;14299:34;;;14329:1;14326;14319:12;14299:34;14367:6;14356:9;14352:22;14342:32;;14412:7;14405:4;14401:2;14397:13;14393:27;14383:55;;14434:1;14431;14424:12;14383:55;14463:2;14457:9;14485:2;14481;14478:10;14475:36;;;14491:18;;:::i;:::-;14537:2;14534:1;14530:10;14520:20;;14560:28;14584:2;14580;14576:11;14560:28;:::i;:::-;14622:15;;;14692:11;;;14688:20;;;14653:12;;;;14720:19;;;14717:39;;;14752:1;14749;14742:12;14717:39;14776:11;;;;14796:135;14812:6;14807:3;14804:15;14796:135;;;14878:10;;14866:23;;14829:12;;;;14909;;;;14796:135;;;14950:5;14025:936;-1:-1:-1;;;;;;;;14025:936:1:o;15792:136::-;15831:3;15859:5;15849:39;;15868:18;;:::i;:::-;-1:-1:-1;;;15904:18:1;;15792:136::o;17040:184::-;17110:6;17163:2;17151:9;17142:7;17138:23;17134:32;17131:52;;;17179:1;17176;17169:12;17131:52;-1:-1:-1;17202:16:1;;17040:184;-1:-1:-1;17040:184:1:o;17585:127::-;17646:10;17641:3;17637:20;17634:1;17627:31;17677:4;17674:1;17667:15;17701:4;17698:1;17691:15;17717:135;17756:3;17777:17;;;17774:43;;17797:18;;:::i;:::-;-1:-1:-1;17844:1:1;17833:13;;17717:135::o;18280:722::-;18330:3;18371:5;18365:12;18400:36;18426:9;18400:36;:::i;:::-;18455:1;18472:18;;;18499:133;;;;18646:1;18641:355;;;;18465:531;;18499:133;-1:-1:-1;;18532:24:1;;18520:37;;18605:14;;18598:22;18586:35;;18577:45;;;-1:-1:-1;18499:133:1;;18641:355;18672:5;18669:1;18662:16;18701:4;18746:2;18743:1;18733:16;18771:1;18785:165;18799:6;18796:1;18793:13;18785:165;;;18877:14;;18864:11;;;18857:35;18920:16;;;;18814:10;;18785:165;;;18789:3;;;18979:6;18974:3;18970:16;18963:23;;18465:531;;;;;18280:722;;;;:::o;19007:469::-;19228:3;19256:38;19290:3;19282:6;19256:38;:::i;:::-;19323:6;19317:13;19339:65;19397:6;19393:2;19386:4;19378:6;19374:17;19339:65;:::i;:::-;19420:50;19462:6;19458:2;19454:15;19446:6;19420:50;:::i;:::-;19413:57;19007:469;-1:-1:-1;;;;;;;19007:469:1:o;20897:245::-;20964:6;21017:2;21005:9;20996:7;20992:23;20988:32;20985:52;;;21033:1;21030;21023:12;20985:52;21065:9;21059:16;21084:28;21106:5;21084:28;:::i;21508:489::-;-1:-1:-1;;;;;21777:15:1;;;21759:34;;21829:15;;21824:2;21809:18;;21802:43;21876:2;21861:18;;21854:34;;;21924:3;21919:2;21904:18;;21897:31;;;21702:4;;21945:46;;21971:19;;21963:6;21945:46;:::i;:::-;21937:54;21508:489;-1:-1:-1;;;;;;21508:489:1:o;22002:249::-;22071:6;22124:2;22112:9;22103:7;22099:23;22095:32;22092:52;;;22140:1;22137;22130:12;22092:52;22172:9;22166:16;22191:30;22215:5;22191:30;:::i

Swarm Source

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