ETH Price: $3,168.90 (-8.12%)
Gas: 3 Gwei

Token

SCAPE: The 300 (SCP300)
 

Overview

Max Total Supply

150 SCP300

Holders

121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 SCP300
0x09c41d6d4a9249a10b3bb2e268f2490be5750a13
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:
Scape300

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 5000 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-15
*/

// Sources flattened with hardhat v2.19.4 https://hardhat.org

// SPDX-License-Identifier: MIT AND UNLICENSED

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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 @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 address zero.
     *
     * 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);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
     * reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
 * of all the token ids in the contract as well as all token ids owned by each account.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

        if (previousOwner == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _removeTokenFromOwnerEnumeration(previousOwner, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }

        return previousOwner;
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = balanceOf(to) - 1;
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = balanceOf(from);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;

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

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

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

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @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 The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @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}
     */
    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.
     */
    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}
     */
    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.
     */
    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.
     */
    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).
     */
    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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            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.
     */
    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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // 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) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

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

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

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

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

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}


// File @scape/300-contract/contract/[email protected]

// Original license: SPDX_License_Identifier: MIT
pragma solidity 0.8.21;








/// @title Scape: The 300 NFT collection
contract Scape300 is ERC721Enumerable, IERC2981, Ownable, ReentrancyGuard, Pausable {
  uint16 public constant MAX_ROYALTY_BASIS_POINTS = 700;
  uint16 public constant MAX_PER_BATCH = 20;
  uint16 public immutable MAX_SUPPLY;

  struct MintSchedule {
    uint32 claimingStartTime;
    uint32 claimingEndTime;
  }

  /// Access control
  address public contractManager;

  /// Royalties
  uint32 public royaltyBasisPoints;
  address public royaltyReceiverAddress;

  /// Collection
  uint256 public tokenIdIndex;
  string public baseURI;

  /// Claim minting
  bytes32 public merkleRoot;
  mapping(address => uint256) public alreadyClaimed;
  MintSchedule public mintSchedule;

  error MaxSupplyReached();
  error ClaimingNotAllowed();
  error ReserveMintNotAllowed();
  error AlreadyMinted();
  error WhitelistProofInvalid();
  error MintScheduleInvalid();
  error RoyaltyInvalid();
  error TokenIdInvalid(uint256 tokenId);
  error AddressInvalid(address account);

  event BaseURIChanged(string indexed baseURI);
  event MerkleRootChanged(bytes32 indexed merkleRoot);
  event MintScheduleChanged(MintSchedule mintSchedule);
  event ContractManagerChanged(address indexed previousManager, address indexed newManager);
  event RoyaltyInfoChanged(
    address indexed previousRoyaltyReceiver,
    address indexed newRoyaltyReceiver,
    uint256 indexed royaltyBasisPoints
  );

  /// @notice Initializes the contract with main parameters
  /// @dev Initializes Ownable with `msg.sender` as contract owner
  /// Initializes ERC721 with name and symbol
  /// @param _contractManager Contract manager address
  /// @param _merkleRoot Merkle root defining the whitelist
  /// @param _maxSupply Maximum possible supply for the collection
  /// @param _tokenBaseURI Initial collection URI
  /// @param _claimingStartTime Timestamp for whitelisted mint start
  /// @param _claimingEndTime Timestamp for whitelisted mint end
  constructor(
    address _contractManager,
    bytes32 _merkleRoot,
    uint16 _maxSupply,
    string memory _tokenBaseURI,
    uint32 _claimingStartTime,
    uint32 _claimingEndTime
  ) ERC721("SCAPE: The 300", "SCP300") Ownable(msg.sender) {
    contractManager = _contractManager;
    merkleRoot = _merkleRoot;
    MAX_SUPPLY = _maxSupply;
    baseURI = _tokenBaseURI;

    mintSchedule = MintSchedule(_claimingStartTime, _claimingEndTime);
    _validateMintSchedule(mintSchedule);

    royaltyReceiverAddress = msg.sender;
    royaltyBasisPoints = MAX_ROYALTY_BASIS_POINTS;
  }

  /// @notice Claims one or more NFTs for a whitelisted user
  /// @dev Can be paused
  /// @param _merkleProof Merkle proof attesting address eligibility and amount
  /// @param _amount Number of NFTs the user can claim
  function claimMint(bytes32[] calldata _merkleProof, uint256 _amount) external nonReentrant whenNotPaused {
    if (block.timestamp < mintSchedule.claimingStartTime || block.timestamp > mintSchedule.claimingEndTime) {
      revert ClaimingNotAllowed();
    }

    uint256 claimed = alreadyClaimed[msg.sender];
    if (claimed >= _amount) {
      revert AlreadyMinted();
    }
    uint256 claimableAmount = _amount - claimed;

    if (tokenIdIndex + claimableAmount > MAX_SUPPLY) {
      revert MaxSupplyReached();
    }

    /// Generate the merkle tree leaf
    bytes32 leaf = keccak256(abi.encode(keccak256(abi.encode(msg.sender, _amount))));

    /// Verify if the user is allowed to claim by checking if leaf is part of merkle root or not
    if (!MerkleProof.verifyCalldata(_merkleProof, merkleRoot, leaf)) {
      revert WhitelistProofInvalid();
    }

    if (claimableAmount > MAX_PER_BATCH) {
      claimableAmount = MAX_PER_BATCH;
    }

    uint256 tokenIdIndexTemp = tokenIdIndex;
    uint256 i = 0;
    for (; i < claimableAmount; ) {
      unchecked {
        tokenIdIndexTemp += 1;
      }

      _safeMint(msg.sender, tokenIdIndexTemp);

      unchecked {
        i += 1;
      }
    }
    tokenIdIndex = tokenIdIndexTemp;
    alreadyClaimed[msg.sender] = claimed + i;
  }

  /// @notice Mints a number of remaining NFTs in batches
  /// @dev Access restricted only to owner
  /// @param _amount Number of NFTs to be minted
  function reserveMint(uint256 _amount) external onlyOwner {
    if (tokenIdIndex + _amount > MAX_SUPPLY) {
      revert MaxSupplyReached();
    }

    if (block.timestamp < mintSchedule.claimingEndTime) {
      revert ReserveMintNotAllowed();
    }

    uint256 tokenIdIndexTemp = tokenIdIndex;

    for (uint256 i = 0; i < _amount; ) {
      unchecked {
        tokenIdIndexTemp += 1;
      }

      /// Note that we are using _mint here instead of _safeMint
      /// as we are sure that this will be called by
      /// a ERC721Receiver contract
      _mint(msg.sender, tokenIdIndexTemp);

      unchecked {
        i += 1;
      }
    }

    tokenIdIndex = tokenIdIndexTemp;
  }

  /// @notice Changes the collection URI
  /// @dev Access restricted only to owner
  /// @param _tokenBaseURI New collection URI
  function setBaseURI(string memory _tokenBaseURI) external onlyOwner {
    baseURI = _tokenBaseURI;
    emit BaseURIChanged(_tokenBaseURI);
  }

  /// @notice Changes the whitelist
  /// @dev Access restricted only to owner
  /// @param _merkleRoot New merkle root defining the whitelist
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
    emit MerkleRootChanged(_merkleRoot);
  }

  /// @notice Changes the mint schedule
  /// @dev Access restricted only to owner
  /// @param _mintSchedule New mint schedule
  function setMintSchedule(MintSchedule memory _mintSchedule) external onlyOwner {
    _validateMintSchedule(_mintSchedule);
    mintSchedule = _mintSchedule;

    emit MintScheduleChanged(_mintSchedule);
  }

  /// @notice Changes the royalty information for the collection
  /// @dev Access restricted only to owner
  /// @param _royaltyReceiverAddress Address of the new royalty receiver
  /// @param _royaltyBasisPoints Basis points defining the royalty
  function setRoyaltyInfo(address _royaltyReceiverAddress, uint32 _royaltyBasisPoints) external onlyOwner {
    if (_royaltyReceiverAddress == address(0) || _royaltyBasisPoints > MAX_ROYALTY_BASIS_POINTS) {
      revert RoyaltyInvalid();
    }

    address previousReceiver = royaltyReceiverAddress;
    royaltyReceiverAddress = _royaltyReceiverAddress;
    royaltyBasisPoints = _royaltyBasisPoints;

    emit RoyaltyInfoChanged(previousReceiver, _royaltyReceiverAddress, _royaltyBasisPoints);
  }

  /// @notice Pauses minting operations
  /// @dev Access restricted only to manager and owner
  function pauseMint() external {
    if (contractManager != msg.sender && owner() != msg.sender) {
      revert OwnableUnauthorizedAccount(msg.sender);
    }

    if (paused()) {
      revert EnforcedPause();
    }
    _pause();
  }

  /// @notice Un-pauses minting operations
  /// @dev Access restricted only to owner
  function unPauseMint() external onlyOwner {
    if (!paused()) {
      revert ExpectedPause();
    }
    _unpause();
  }

  /// @notice Changes the contract manager address
  /// @dev Access restricted only to owner
  /// @param _newContractManager The address of the new contract manager
  function changeContractManager(address _newContractManager) external onlyOwner {
    if (_newContractManager == address(0)) {
      revert AddressInvalid(_newContractManager);
    }

    address previousManager = contractManager;
    contractManager = _newContractManager;

    emit ContractManagerChanged(previousManager, contractManager);
  }

  /// @notice Burns a specified token by ID
  /// @dev Using implementation of Openzeppelin/ERC721Burnable
  /// @param _tokenId Token ID
  function burn(uint256 _tokenId) external {
    _update(address(0), _tokenId, msg.sender);
  }

  /// @notice Calculates the royalty amount and provides the royalty receiver address
  /// @dev Provides compatibility with the ERC-2981 standard
  /// @param _tokenId Token ID
  /// @param _salePrice Price of the sale
  /// @return receiver Address of the royalty receiver
  /// @return royaltyAmount Amount of royalty to be honored
  function royaltyInfo(
    uint256 _tokenId,
    uint256 _salePrice
  ) external view override returns (address receiver, uint256 royaltyAmount) {
    if (_tokenId > tokenIdIndex) {
      revert TokenIdInvalid(_tokenId);
    }

    receiver = royaltyReceiverAddress;
    royaltyAmount = (_salePrice * royaltyBasisPoints) / 10000;
  }

  /// @notice Detects if an interface is implemented by the smart contract
  /// @dev Provides compatibility with the ERC-165 standard
  /// @param _interfaceId Identifier of the interface to verify
  /// @return `true` if the contract implements `_interfaceId` and
  ///  `_interfaceId` is not 0xffffffff, `false` otherwise
  function supportsInterface(bytes4 _interfaceId) public view override(ERC721Enumerable, IERC165) returns (bool) {
    return _interfaceId == type(IERC2981).interfaceId || super.supportsInterface(_interfaceId);
  }

  /// @dev Helper function validating a mint schedule
  /// @param _mintSchedule Struct of type MintSchedule
  function _validateMintSchedule(MintSchedule memory _mintSchedule) internal pure {
    if (_mintSchedule.claimingStartTime == 0 || _mintSchedule.claimingStartTime >= _mintSchedule.claimingEndTime) {
      revert MintScheduleInvalid();
    }
  }

  /// @dev Overriding the default _baseURI ERC721 which returns empty string
  /// @return Base URI string
  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }
}


// File contracts/hardhat-dependency-compiler/@scape/300-contract/contract/Scape300.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity >0.0.0;

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_contractManager","type":"address"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint16","name":"_maxSupply","type":"uint16"},{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"uint32","name":"_claimingStartTime","type":"uint32"},{"internalType":"uint32","name":"_claimingEndTime","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInvalid","type":"error"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"ClaimingNotAllowed","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintScheduleInvalid","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"ReserveMintNotAllowed","type":"error"},{"inputs":[],"name":"RoyaltyInvalid","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenIdInvalid","type":"error"},{"inputs":[],"name":"WhitelistProofInvalid","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":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousManager","type":"address"},{"indexed":true,"internalType":"address","name":"newManager","type":"address"}],"name":"ContractManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootChanged","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint32","name":"claimingStartTime","type":"uint32"},{"internalType":"uint32","name":"claimingEndTime","type":"uint32"}],"indexed":false,"internalType":"struct Scape300.MintSchedule","name":"mintSchedule","type":"tuple"}],"name":"MintScheduleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousRoyaltyReceiver","type":"address"},{"indexed":true,"internalType":"address","name":"newRoyaltyReceiver","type":"address"},{"indexed":true,"internalType":"uint256","name":"royaltyBasisPoints","type":"uint256"}],"name":"RoyaltyInfoChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PER_BATCH","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ROYALTY_BASIS_POINTS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newContractManager","type":"address"}],"name":"changeContractManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSchedule","outputs":[{"internalType":"uint32","name":"claimingStartTime","type":"uint32"},{"internalType":"uint32","name":"claimingEndTime","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyBasisPoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"claimingStartTime","type":"uint32"},{"internalType":"uint32","name":"claimingEndTime","type":"uint32"}],"internalType":"struct Scape300.MintSchedule","name":"_mintSchedule","type":"tuple"}],"name":"setMintSchedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyReceiverAddress","type":"address"},{"internalType":"uint32","name":"_royaltyBasisPoints","type":"uint32"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162002f7038038062002f7083398101604081905262000034916200027a565b336040518060400160405280600e81526020016d053434150453a20546865203330360941b8152506040518060400160405280600681526020016505343503330360d41b81525081600090816200008c919062000448565b5060016200009b828262000448565b5050506001600160a01b038116620000cd57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000d881620001ad565b506001600b55600c80546001600160a81b0319166101006001600160a01b03891602179055601085905561ffff8416608052600f62000118848262000448565b5060408051808201825263ffffffff8481168083528482166020938401819052601280546001600160401b031916909217640100000000918202179182905584518086019095528183168552900416908201526200017690620001ff565b5050600d80546001600160a01b031916331790555050600c805460af60aa1b63ffffffff60a81b1990911617905550620005149050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b805163ffffffff161580620002285750806020015163ffffffff16816000015163ffffffff1610155b15620002475760405163c866ddad60e01b815260040160405180910390fd5b50565b634e487b7160e01b600052604160045260246000fd5b805163ffffffff811681146200027557600080fd5b919050565b60008060008060008060c087890312156200029457600080fd5b86516001600160a01b0381168114620002ac57600080fd5b809650506020808801519550604088015161ffff81168114620002ce57600080fd5b60608901519095506001600160401b0380821115620002ec57600080fd5b818a0191508a601f8301126200030157600080fd5b8151818111156200031657620003166200024a565b604051601f8201601f19908116603f011681019083821181831017156200034157620003416200024a565b816040528281528d868487010111156200035a57600080fd5b600093505b828410156200037e57848401860151818501870152928501926200035f565b60008684830101528098505050505050506200039d6080880162000260565b9150620003ad60a0880162000260565b90509295509295509295565b600181811c90821680620003ce57607f821691505b602082108103620003ef57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044357600081815260208120601f850160051c810160208610156200041e5750805b601f850160051c820191505b818110156200043f578281556001016200042a565b5050505b505050565b81516001600160401b038111156200046457620004646200024a565b6200047c81620004758454620003b9565b84620003f5565b602080601f831160018114620004b457600084156200049b5750858301515b600019600386901b1c1916600185901b1785556200043f565b600085815260208120601f198616915b82811015620004e557888601518255948401946001909101908401620004c4565b5085821015620005045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051612a326200053e600039600081816104220152818161081701526110820152612a326000f3fe608060405234801561001057600080fd5b50600436106102de5760003560e01c80636c0360eb11610186578063b88d4fde116100e3578063dc7eda7d11610097578063f54b893b11610071578063f54b893b1461065e578063f72fc7cb1461067e578063fc186be51461068657600080fd5b8063dc7eda7d146105fc578063e985e9c51461060f578063f2fde38b1461064b57600080fd5b8063c87b56dd116100c8578063c87b56dd146105ce578063cd85cdb5146105e1578063d6c9ea91146105e957600080fd5b8063b88d4fde146105a8578063c40f411d146105bb57600080fd5b80638da5cb5b1161013a578063a22cb4651161011f578063a22cb46514610544578063b39e12cf14610557578063b53dc8cb1461056f57600080fd5b80638da5cb5b1461052b57806395d89b411461053c57600080fd5b806370a082311161016b57806370a08231146104fd578063715018a6146105105780637cb647591461051857600080fd5b80636c0360eb146104ec5780636d5a7411146104f457600080fd5b80632a55205a1161023f57806342842e0e116101f357806355f804b3116101cd57806355f804b3146104bb5780635c975abb146104ce5780636352211e146104d957600080fd5b806342842e0e1461048257806342966c68146104955780634f6ccce7146104a857600080fd5b80632f745c59116102245780632f745c591461040a57806332cb6b0c1461041d57806342260b5d1461044457600080fd5b80632a55205a146103cf5780632eb4a7ab1461040157600080fd5b80631342ff4c116102965780631ccff3f51161027b5780631ccff3f51461038d5780631e1f62c8146103a957806323b872dd146103bc57600080fd5b80631342ff4c1461036857806318160ddd1461037b57600080fd5b8063081812fc116102c7578063081812fc14610320578063095ea7b31461034b5780630be218d61461036057600080fd5b806301ffc9a7146102e357806306fdde031461030b575b600080fd5b6102f66102f136600461229c565b610699565b60405190151581526020015b60405180910390f35b6103136106f5565b6040516103029190612309565b61033361032e36600461231c565b610787565b6040516001600160a01b039091168152602001610302565b61035e610359366004612351565b6107b0565b005b61035e6107bf565b61035e61037636600461231c565b61080d565b6008545b604051908152602001610302565b6103966102bc81565b60405161ffff9091168152602001610302565b61035e6103b736600461237b565b6108f7565b61035e6103ca366004612396565b6109c5565b6103e26103dd3660046123d2565b610a82565b604080516001600160a01b039093168352602083019190915201610302565b61037f60105481565b61037f610418366004612351565b610b17565b6103967f000000000000000000000000000000000000000000000000000000000000000081565b600c5461046d907501000000000000000000000000000000000000000000900463ffffffff1681565b60405163ffffffff9091168152602001610302565b61035e610490366004612396565b610b95565b61035e6104a336600461231c565b610bb5565b61037f6104b636600461231c565b610bc1565b61035e6104c9366004612499565b610c33565b600c5460ff166102f6565b6103336104e736600461231c565b610c89565b610313610c94565b61037f600e5481565b61037f61050b36600461237b565b610d22565b61035e610d83565b61035e61052636600461231c565b610d95565b600a546001600160a01b0316610333565b610313610dd0565b61035e6105523660046124e2565b610ddf565b600c546103339061010090046001600160a01b031681565b60125461058b9063ffffffff8082169164010000000090041682565b6040805163ffffffff938416815292909116602083015201610302565b61035e6105b636600461251e565b610dea565b61035e6105c93660046125ae565b610e01565b6103136105dc36600461231c565b610e9d565b61035e610f05565b61035e6105f7366004612609565b610fbd565b600d54610333906001600160a01b031681565b6102f661061d366004612684565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61035e61065936600461237b565b6111dc565b61037f61066c36600461237b565b60116020526000908152604090205481565b610396601481565b61035e6106943660046126ae565b611233565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806106ef57506106ef8261134a565b92915050565b606060008054610704906126d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610730906126d8565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b6000610792826113a0565b506000828152600460205260409020546001600160a01b03166106ef565b6107bb8282336113f2565b5050565b6107c76113ff565b600c5460ff16610803576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61080b611445565b565b6108156113ff565b7f000000000000000000000000000000000000000000000000000000000000000061ffff1681600e54610848919061275a565b1115610880576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601254640100000000900463ffffffff164210156108ca576040517fda7c55ec00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e5460005b828110156108f0576001820191506108e83383611497565b6001016108d0565b50600e5550565b6108ff6113ff565b6001600160a01b03811661094f576040517f864143510000000000000000000000000000000000000000000000000000000081526001600160a01b03821660048201526024015b60405180910390fd5b600c80546001600160a01b038381166101009081027fffffffffffffffffffffff0000000000000000000000000000000000000000ff841617938490556040519281900482169304169082907fb70ce6e6da6df145d6a9b4b90fa1e0dbd33d341f98d3aad7c793bca4217b63be90600090a35050565b6001600160a01b038216610a08576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b6000610a1583833361152e565b9050836001600160a01b0316816001600160a01b031614610a7c576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610946565b50505050565b600080600e54841115610ac4576040517f5be3786c00000000000000000000000000000000000000000000000000000000815260048101859052602401610946565b600d54600c546001600160a01b03909116925061271090610b04907501000000000000000000000000000000000000000000900463ffffffff168561276d565b610b0e9190612784565b90509250929050565b6000610b2283610d22565b8210610b6c576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401610946565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bb083838360405180602001604052806000815250610dea565b505050565b6107bb6000823361152e565b6000610bcc60085490565b8210610c0e576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526000600482015260248101839052604401610946565b60088281548110610c2157610c216127bf565b90600052602060002001549050919050565b610c3b6113ff565b600f610c47828261283c565b5080604051610c5691906128fc565b604051908190038120907f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf690600090a250565b60006106ef826113a0565b600f8054610ca1906126d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd906126d8565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b505050505081565b60006001600160a01b038216610d67576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b506001600160a01b031660009081526003602052604090205490565b610d8b6113ff565b61080b6000611603565b610d9d6113ff565b601081905560405181907f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c90600090a250565b606060018054610704906126d8565b6107bb33838361166d565b610df58484846109c5565b610a7c84848484611725565b610e096113ff565b610e12816118ca565b8051601280546020808501805163ffffffff908116640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941695811695861793909317909355604080519485529251909116908301527fbf2ca72ceda981f50b43e8339fd003b7efa01ffcd78b1ee89127adb578270069910160405180910390a150565b6060610ea8826113a0565b506000610eb3611929565b90506000815111610ed35760405180602001604052806000815250610efe565b80610edd84611938565b604051602001610eee929190612918565b6040516020818303038152906040525b9392505050565b600c5461010090046001600160a01b03163314801590610f3f575033610f33600a546001600160a01b031690565b6001600160a01b031614155b15610f78576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610946565b600c5460ff1615610fb5576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61080b6119d8565b610fc5611a15565b610fcd611a58565b60125463ffffffff16421080610ff25750601254640100000000900463ffffffff1642115b15611029576040517f8ebaa35d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260116020526040902054818110611072576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061107e8284612947565b90507f000000000000000000000000000000000000000000000000000000000000000061ffff1681600e546110b3919061275a565b11156110eb576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805133602082015290810184905260009060600160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050611144868660105484611a95565b61117a576040517fc799103e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601482111561118857601491505b600e5460005b838110156111ae576001820191506111a63383611aad565b60010161118e565b600e8290556111bd818661275a565b3360009081526011602052604090205550610bb09350611ac792505050565b6111e46113ff565b6001600160a01b038116611227576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b61123081611603565b50565b61123b6113ff565b6001600160a01b038216158061125857506102bc63ffffffff8216115b1561128f576040517f272248f800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d80547fffffffffffffffffffffffff000000000000000000000000000000000000000081166001600160a01b03858116918217909355600c80547fffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000063ffffffff871690810291909117909155604051939092169283907f3aede373edfa0f8addd19478e359e8eef62a5b01aac36b1319e9d0ef4ca9d0ed90600090a4505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106ef57506106ef82611ace565b6000818152600260205260408120546001600160a01b0316806106ef576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610946565b610bb08383836001611bb1565b600a546001600160a01b0316331461080b576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610946565b61144d611d07565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166114da576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b60006114e88383600061152e565b90506001600160a01b03811615610bb0576040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b60008061153c858585611d43565b90506001600160a01b0381166115995761159484600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115bc565b846001600160a01b0316816001600160a01b0316146115bc576115bc8185611e54565b6001600160a01b0385166115d8576115d384611ee5565b6115fb565b846001600160a01b0316816001600160a01b0316146115fb576115fb8585611f94565b949350505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166116b8576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610946565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b15610a7c576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a029061178090339088908790879060040161295a565b6020604051808303816000875af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190612996565b60015b61183d573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b508051600003611835576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610946565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a0200000000000000000000000000000000000000000000000000000000146118c3576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610946565b5050505050565b805163ffffffff1615806118f25750806020015163ffffffff16816000015163ffffffff1610155b15611230576040517fc866ddad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6060600f8054610704906126d8565b6060600061194583611fe4565b600101905060008167ffffffffffffffff811115611965576119656123f4565b6040519080825280601f01601f19166020018201604052801561198f576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461199957509392505050565b6119e0611a58565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861147a3390565b6002600b5403611a51576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600b55565b600c5460ff161561080b576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082611aa38686856120c6565b1495945050505050565b6107bb828260405180602001604052806000815250612112565b6001600b55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b6157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106ef57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106ef565b8080611bc557506001600160a01b03821615155b15611cbf576000611bd5846113a0565b90506001600160a01b03831615801590611c015750826001600160a01b0316816001600160a01b031614155b8015611c3357506001600160a01b0380821660009081526005602090815260408083209387168352929052205460ff16155b15611c75576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610946565b8115611cbd5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600c5460ff1661080b576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828152600260205260408120546001600160a01b0390811690831615611d7057611d70818486612129565b6001600160a01b03811615611dae57611d8d600085600080611bb1565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615611ddd576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6000611e5f83610d22565b600083815260076020526040902054909150808214611eb2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ef790600190612947565b60008381526009602052604081205460088054939450909284908110611f1f57611f1f6127bf565b906000526020600020015490508060088381548110611f4057611f406127bf565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7857611f786129b3565b6001900381819060005260206000200160009055905550505050565b60006001611fa184610d22565b611fab9190612947565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061202d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612059576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061207757662386f26fc10000830492506010015b6305f5e100831061208f576305f5e100830492506008015b61271083106120a357612710830492506004015b606483106120b5576064830492506002015b600a83106106ef5760010192915050565b600081815b84811015612109576120f5828787848181106120e9576120e96127bf565b905060200201356121bf565b915080612101816129e2565b9150506120cb565b50949350505050565b61211c8383611497565b610bb06000848484611725565b6121348383836121eb565b610bb0576001600160a01b03831661217b576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610946565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610946565b60008183106121db576000828152602084905260409020610efe565b5060009182526020526040902090565b60006001600160a01b038316158015906115fb5750826001600160a01b0316846001600160a01b0316148061224557506001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b806115fb5750506000908152600460205260409020546001600160a01b03908116911614919050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461123057600080fd5b6000602082840312156122ae57600080fd5b8135610efe8161226e565b60005b838110156122d45781810151838201526020016122bc565b50506000910152565b600081518084526122f58160208601602086016122b9565b601f01601f19169290920160200192915050565b602081526000610efe60208301846122dd565b60006020828403121561232e57600080fd5b5035919050565b80356001600160a01b038116811461234c57600080fd5b919050565b6000806040838503121561236457600080fd5b61236d83612335565b946020939093013593505050565b60006020828403121561238d57600080fd5b610efe82612335565b6000806000606084860312156123ab57600080fd5b6123b484612335565b92506123c260208501612335565b9150604084013590509250925092565b600080604083850312156123e557600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561243e5761243e6123f4565b604051601f8501601f19908116603f01168101908282118183101715612466576124666123f4565b8160405280935085815286868601111561247f57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124ab57600080fd5b813567ffffffffffffffff8111156124c257600080fd5b8201601f810184136124d357600080fd5b6115fb84823560208401612423565b600080604083850312156124f557600080fd5b6124fe83612335565b91506020830135801515811461251357600080fd5b809150509250929050565b6000806000806080858703121561253457600080fd5b61253d85612335565b935061254b60208601612335565b925060408501359150606085013567ffffffffffffffff81111561256e57600080fd5b8501601f8101871361257f57600080fd5b61258e87823560208401612423565b91505092959194509250565b803563ffffffff8116811461234c57600080fd5b6000604082840312156125c057600080fd5b6040516040810181811067ffffffffffffffff821117156125e3576125e36123f4565b6040526125ef8361259a565b81526125fd6020840161259a565b60208201529392505050565b60008060006040848603121561261e57600080fd5b833567ffffffffffffffff8082111561263657600080fd5b818601915086601f83011261264a57600080fd5b81358181111561265957600080fd5b8760208260051b850101111561266e57600080fd5b6020928301989097509590910135949350505050565b6000806040838503121561269757600080fd5b6126a083612335565b9150610b0e60208401612335565b600080604083850312156126c157600080fd5b6126ca83612335565b9150610b0e6020840161259a565b600181811c908216806126ec57607f821691505b602082108103612725577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156106ef576106ef61272b565b80820281158282048414176106ef576106ef61272b565b6000826127ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f821115610bb057600081815260208120601f850160051c810160208610156128155750805b601f850160051c820191505b8181101561283457828155600101612821565b505050505050565b815167ffffffffffffffff811115612856576128566123f4565b61286a8161286484546126d8565b846127ee565b602080601f83116001811461289f57600084156128875750858301515b600019600386901b1c1916600185901b178555612834565b600085815260208120601f198616915b828110156128ce578886015182559484019460019091019084016128af565b50858210156128ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000825161290e8184602087016122b9565b9190910192915050565b6000835161292a8184602088016122b9565b83519083019061293e8183602088016122b9565b01949350505050565b818103818111156106ef576106ef61272b565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261298c60808301846122dd565b9695505050505050565b6000602082840312156129a857600080fd5b8151610efe8161226e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060001982036129f5576129f561272b565b506001019056fea26469706673582212205d10970d0cddbb6598d5558130cd900f51ee0c88eb0c6e2e755fb425ab49bd7d64736f6c63430008150033000000000000000000000000bae3d0d4ac7982044146a735c4a8a85bfe6aac4a1594685c72a8afe22c6b38ac484edf7dab9c7615c142cc109238ca026e459f2e000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000006621438000000000000000000000000000000000000000000000000000000000662295000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962627968636b3271626373727532616e3235697232656e3561667468716133373563763274613677696c6679683535726b7970652f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102de5760003560e01c80636c0360eb11610186578063b88d4fde116100e3578063dc7eda7d11610097578063f54b893b11610071578063f54b893b1461065e578063f72fc7cb1461067e578063fc186be51461068657600080fd5b8063dc7eda7d146105fc578063e985e9c51461060f578063f2fde38b1461064b57600080fd5b8063c87b56dd116100c8578063c87b56dd146105ce578063cd85cdb5146105e1578063d6c9ea91146105e957600080fd5b8063b88d4fde146105a8578063c40f411d146105bb57600080fd5b80638da5cb5b1161013a578063a22cb4651161011f578063a22cb46514610544578063b39e12cf14610557578063b53dc8cb1461056f57600080fd5b80638da5cb5b1461052b57806395d89b411461053c57600080fd5b806370a082311161016b57806370a08231146104fd578063715018a6146105105780637cb647591461051857600080fd5b80636c0360eb146104ec5780636d5a7411146104f457600080fd5b80632a55205a1161023f57806342842e0e116101f357806355f804b3116101cd57806355f804b3146104bb5780635c975abb146104ce5780636352211e146104d957600080fd5b806342842e0e1461048257806342966c68146104955780634f6ccce7146104a857600080fd5b80632f745c59116102245780632f745c591461040a57806332cb6b0c1461041d57806342260b5d1461044457600080fd5b80632a55205a146103cf5780632eb4a7ab1461040157600080fd5b80631342ff4c116102965780631ccff3f51161027b5780631ccff3f51461038d5780631e1f62c8146103a957806323b872dd146103bc57600080fd5b80631342ff4c1461036857806318160ddd1461037b57600080fd5b8063081812fc116102c7578063081812fc14610320578063095ea7b31461034b5780630be218d61461036057600080fd5b806301ffc9a7146102e357806306fdde031461030b575b600080fd5b6102f66102f136600461229c565b610699565b60405190151581526020015b60405180910390f35b6103136106f5565b6040516103029190612309565b61033361032e36600461231c565b610787565b6040516001600160a01b039091168152602001610302565b61035e610359366004612351565b6107b0565b005b61035e6107bf565b61035e61037636600461231c565b61080d565b6008545b604051908152602001610302565b6103966102bc81565b60405161ffff9091168152602001610302565b61035e6103b736600461237b565b6108f7565b61035e6103ca366004612396565b6109c5565b6103e26103dd3660046123d2565b610a82565b604080516001600160a01b039093168352602083019190915201610302565b61037f60105481565b61037f610418366004612351565b610b17565b6103967f000000000000000000000000000000000000000000000000000000000000012c81565b600c5461046d907501000000000000000000000000000000000000000000900463ffffffff1681565b60405163ffffffff9091168152602001610302565b61035e610490366004612396565b610b95565b61035e6104a336600461231c565b610bb5565b61037f6104b636600461231c565b610bc1565b61035e6104c9366004612499565b610c33565b600c5460ff166102f6565b6103336104e736600461231c565b610c89565b610313610c94565b61037f600e5481565b61037f61050b36600461237b565b610d22565b61035e610d83565b61035e61052636600461231c565b610d95565b600a546001600160a01b0316610333565b610313610dd0565b61035e6105523660046124e2565b610ddf565b600c546103339061010090046001600160a01b031681565b60125461058b9063ffffffff8082169164010000000090041682565b6040805163ffffffff938416815292909116602083015201610302565b61035e6105b636600461251e565b610dea565b61035e6105c93660046125ae565b610e01565b6103136105dc36600461231c565b610e9d565b61035e610f05565b61035e6105f7366004612609565b610fbd565b600d54610333906001600160a01b031681565b6102f661061d366004612684565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61035e61065936600461237b565b6111dc565b61037f61066c36600461237b565b60116020526000908152604090205481565b610396601481565b61035e6106943660046126ae565b611233565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806106ef57506106ef8261134a565b92915050565b606060008054610704906126d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610730906126d8565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b6000610792826113a0565b506000828152600460205260409020546001600160a01b03166106ef565b6107bb8282336113f2565b5050565b6107c76113ff565b600c5460ff16610803576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61080b611445565b565b6108156113ff565b7f000000000000000000000000000000000000000000000000000000000000012c61ffff1681600e54610848919061275a565b1115610880576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601254640100000000900463ffffffff164210156108ca576040517fda7c55ec00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e5460005b828110156108f0576001820191506108e83383611497565b6001016108d0565b50600e5550565b6108ff6113ff565b6001600160a01b03811661094f576040517f864143510000000000000000000000000000000000000000000000000000000081526001600160a01b03821660048201526024015b60405180910390fd5b600c80546001600160a01b038381166101009081027fffffffffffffffffffffff0000000000000000000000000000000000000000ff841617938490556040519281900482169304169082907fb70ce6e6da6df145d6a9b4b90fa1e0dbd33d341f98d3aad7c793bca4217b63be90600090a35050565b6001600160a01b038216610a08576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b6000610a1583833361152e565b9050836001600160a01b0316816001600160a01b031614610a7c576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610946565b50505050565b600080600e54841115610ac4576040517f5be3786c00000000000000000000000000000000000000000000000000000000815260048101859052602401610946565b600d54600c546001600160a01b03909116925061271090610b04907501000000000000000000000000000000000000000000900463ffffffff168561276d565b610b0e9190612784565b90509250929050565b6000610b2283610d22565b8210610b6c576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401610946565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bb083838360405180602001604052806000815250610dea565b505050565b6107bb6000823361152e565b6000610bcc60085490565b8210610c0e576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526000600482015260248101839052604401610946565b60088281548110610c2157610c216127bf565b90600052602060002001549050919050565b610c3b6113ff565b600f610c47828261283c565b5080604051610c5691906128fc565b604051908190038120907f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf690600090a250565b60006106ef826113a0565b600f8054610ca1906126d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd906126d8565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b505050505081565b60006001600160a01b038216610d67576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b506001600160a01b031660009081526003602052604090205490565b610d8b6113ff565b61080b6000611603565b610d9d6113ff565b601081905560405181907f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c90600090a250565b606060018054610704906126d8565b6107bb33838361166d565b610df58484846109c5565b610a7c84848484611725565b610e096113ff565b610e12816118ca565b8051601280546020808501805163ffffffff908116640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941695811695861793909317909355604080519485529251909116908301527fbf2ca72ceda981f50b43e8339fd003b7efa01ffcd78b1ee89127adb578270069910160405180910390a150565b6060610ea8826113a0565b506000610eb3611929565b90506000815111610ed35760405180602001604052806000815250610efe565b80610edd84611938565b604051602001610eee929190612918565b6040516020818303038152906040525b9392505050565b600c5461010090046001600160a01b03163314801590610f3f575033610f33600a546001600160a01b031690565b6001600160a01b031614155b15610f78576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610946565b600c5460ff1615610fb5576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61080b6119d8565b610fc5611a15565b610fcd611a58565b60125463ffffffff16421080610ff25750601254640100000000900463ffffffff1642115b15611029576040517f8ebaa35d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260116020526040902054818110611072576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061107e8284612947565b90507f000000000000000000000000000000000000000000000000000000000000012c61ffff1681600e546110b3919061275a565b11156110eb576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805133602082015290810184905260009060600160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050611144868660105484611a95565b61117a576040517fc799103e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601482111561118857601491505b600e5460005b838110156111ae576001820191506111a63383611aad565b60010161118e565b600e8290556111bd818661275a565b3360009081526011602052604090205550610bb09350611ac792505050565b6111e46113ff565b6001600160a01b038116611227576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b61123081611603565b50565b61123b6113ff565b6001600160a01b038216158061125857506102bc63ffffffff8216115b1561128f576040517f272248f800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d80547fffffffffffffffffffffffff000000000000000000000000000000000000000081166001600160a01b03858116918217909355600c80547fffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000063ffffffff871690810291909117909155604051939092169283907f3aede373edfa0f8addd19478e359e8eef62a5b01aac36b1319e9d0ef4ca9d0ed90600090a4505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106ef57506106ef82611ace565b6000818152600260205260408120546001600160a01b0316806106ef576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610946565b610bb08383836001611bb1565b600a546001600160a01b0316331461080b576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610946565b61144d611d07565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166114da576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b60006114e88383600061152e565b90506001600160a01b03811615610bb0576040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260006004820152602401610946565b60008061153c858585611d43565b90506001600160a01b0381166115995761159484600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115bc565b846001600160a01b0316816001600160a01b0316146115bc576115bc8185611e54565b6001600160a01b0385166115d8576115d384611ee5565b6115fb565b846001600160a01b0316816001600160a01b0316146115fb576115fb8585611f94565b949350505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166116b8576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610946565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b15610a7c576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a029061178090339088908790879060040161295a565b6020604051808303816000875af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190612996565b60015b61183d573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b508051600003611835576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610946565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a0200000000000000000000000000000000000000000000000000000000146118c3576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610946565b5050505050565b805163ffffffff1615806118f25750806020015163ffffffff16816000015163ffffffff1610155b15611230576040517fc866ddad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6060600f8054610704906126d8565b6060600061194583611fe4565b600101905060008167ffffffffffffffff811115611965576119656123f4565b6040519080825280601f01601f19166020018201604052801561198f576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461199957509392505050565b6119e0611a58565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861147a3390565b6002600b5403611a51576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600b55565b600c5460ff161561080b576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082611aa38686856120c6565b1495945050505050565b6107bb828260405180602001604052806000815250612112565b6001600b55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b6157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106ef57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106ef565b8080611bc557506001600160a01b03821615155b15611cbf576000611bd5846113a0565b90506001600160a01b03831615801590611c015750826001600160a01b0316816001600160a01b031614155b8015611c3357506001600160a01b0380821660009081526005602090815260408083209387168352929052205460ff16155b15611c75576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610946565b8115611cbd5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600c5460ff1661080b576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828152600260205260408120546001600160a01b0390811690831615611d7057611d70818486612129565b6001600160a01b03811615611dae57611d8d600085600080611bb1565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615611ddd576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b6000611e5f83610d22565b600083815260076020526040902054909150808214611eb2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ef790600190612947565b60008381526009602052604081205460088054939450909284908110611f1f57611f1f6127bf565b906000526020600020015490508060088381548110611f4057611f406127bf565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7857611f786129b3565b6001900381819060005260206000200160009055905550505050565b60006001611fa184610d22565b611fab9190612947565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061202d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612059576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061207757662386f26fc10000830492506010015b6305f5e100831061208f576305f5e100830492506008015b61271083106120a357612710830492506004015b606483106120b5576064830492506002015b600a83106106ef5760010192915050565b600081815b84811015612109576120f5828787848181106120e9576120e96127bf565b905060200201356121bf565b915080612101816129e2565b9150506120cb565b50949350505050565b61211c8383611497565b610bb06000848484611725565b6121348383836121eb565b610bb0576001600160a01b03831661217b576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610946565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610946565b60008183106121db576000828152602084905260409020610efe565b5060009182526020526040902090565b60006001600160a01b038316158015906115fb5750826001600160a01b0316846001600160a01b0316148061224557506001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b806115fb5750506000908152600460205260409020546001600160a01b03908116911614919050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461123057600080fd5b6000602082840312156122ae57600080fd5b8135610efe8161226e565b60005b838110156122d45781810151838201526020016122bc565b50506000910152565b600081518084526122f58160208601602086016122b9565b601f01601f19169290920160200192915050565b602081526000610efe60208301846122dd565b60006020828403121561232e57600080fd5b5035919050565b80356001600160a01b038116811461234c57600080fd5b919050565b6000806040838503121561236457600080fd5b61236d83612335565b946020939093013593505050565b60006020828403121561238d57600080fd5b610efe82612335565b6000806000606084860312156123ab57600080fd5b6123b484612335565b92506123c260208501612335565b9150604084013590509250925092565b600080604083850312156123e557600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561243e5761243e6123f4565b604051601f8501601f19908116603f01168101908282118183101715612466576124666123f4565b8160405280935085815286868601111561247f57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124ab57600080fd5b813567ffffffffffffffff8111156124c257600080fd5b8201601f810184136124d357600080fd5b6115fb84823560208401612423565b600080604083850312156124f557600080fd5b6124fe83612335565b91506020830135801515811461251357600080fd5b809150509250929050565b6000806000806080858703121561253457600080fd5b61253d85612335565b935061254b60208601612335565b925060408501359150606085013567ffffffffffffffff81111561256e57600080fd5b8501601f8101871361257f57600080fd5b61258e87823560208401612423565b91505092959194509250565b803563ffffffff8116811461234c57600080fd5b6000604082840312156125c057600080fd5b6040516040810181811067ffffffffffffffff821117156125e3576125e36123f4565b6040526125ef8361259a565b81526125fd6020840161259a565b60208201529392505050565b60008060006040848603121561261e57600080fd5b833567ffffffffffffffff8082111561263657600080fd5b818601915086601f83011261264a57600080fd5b81358181111561265957600080fd5b8760208260051b850101111561266e57600080fd5b6020928301989097509590910135949350505050565b6000806040838503121561269757600080fd5b6126a083612335565b9150610b0e60208401612335565b600080604083850312156126c157600080fd5b6126ca83612335565b9150610b0e6020840161259a565b600181811c908216806126ec57607f821691505b602082108103612725577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156106ef576106ef61272b565b80820281158282048414176106ef576106ef61272b565b6000826127ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f821115610bb057600081815260208120601f850160051c810160208610156128155750805b601f850160051c820191505b8181101561283457828155600101612821565b505050505050565b815167ffffffffffffffff811115612856576128566123f4565b61286a8161286484546126d8565b846127ee565b602080601f83116001811461289f57600084156128875750858301515b600019600386901b1c1916600185901b178555612834565b600085815260208120601f198616915b828110156128ce578886015182559484019460019091019084016128af565b50858210156128ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000825161290e8184602087016122b9565b9190910192915050565b6000835161292a8184602088016122b9565b83519083019061293e8183602088016122b9565b01949350505050565b818103818111156106ef576106ef61272b565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261298c60808301846122dd565b9695505050505050565b6000602082840312156129a857600080fd5b8151610efe8161226e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060001982036129f5576129f561272b565b506001019056fea26469706673582212205d10970d0cddbb6598d5558130cd900f51ee0c88eb0c6e2e755fb425ab49bd7d64736f6c63430008150033

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

000000000000000000000000bae3d0d4ac7982044146a735c4a8a85bfe6aac4a1594685c72a8afe22c6b38ac484edf7dab9c7615c142cc109238ca026e459f2e000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000006621438000000000000000000000000000000000000000000000000000000000662295000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962627968636b3271626373727532616e3235697232656e3561667468716133373563763274613677696c6679683535726b7970652f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _contractManager (address): 0xBae3d0d4AC7982044146A735c4a8A85bFe6AaC4a
Arg [1] : _merkleRoot (bytes32): 0x1594685c72a8afe22c6b38ac484edf7dab9c7615c142cc109238ca026e459f2e
Arg [2] : _maxSupply (uint16): 300
Arg [3] : _tokenBaseURI (string): ipfs://bafybeibbyhck2qbcsru2an25ir2en5afthqa375cv2ta6wilfyh55rkype/
Arg [4] : _claimingStartTime (uint32): 1713456000
Arg [5] : _claimingEndTime (uint32): 1713542400

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000bae3d0d4ac7982044146a735c4a8a85bfe6aac4a
Arg [1] : 1594685c72a8afe22c6b38ac484edf7dab9c7615c142cc109238ca026e459f2e
Arg [2] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000066214380
Arg [5] : 0000000000000000000000000000000000000000000000000000000066229500
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [7] : 697066733a2f2f6261667962656962627968636b3271626373727532616e3235
Arg [8] : 697232656e3561667468716133373563763274613677696c6679683535726b79
Arg [9] : 70652f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

84503:9835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93548:214;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;93548:214:0;;;;;;;;43529:91;;;:::i;:::-;;;;;;;:::i;44701:158::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1802:55:1;;;1784:74;;1772:2;1757:18;44701:158:0;1638:226:1;44520:115:0;;;;;;:::i;:::-;;:::i;:::-;;91627:125;;;:::i;88793:708::-;;;;;;:::i;:::-;;:::i;62476:104::-;62555:10;:17;62476:104;;;2475:25:1;;;2463:2;2448:18;62476:104:0;2329:177:1;84592:53:0;;84642:3;84592:53;;;;;2685:6:1;2673:19;;;2655:38;;2643:2;2628:18;84592:53:0;2511:188:1;91928:353:0;;;;;;:::i;:::-;;:::i;45370:588::-;;;;;;:::i;:::-;;:::i;92870:342::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3673:55:1;;;3655:74;;3760:2;3745:18;;3738:34;;;;3628:18;92870:342:0;3481:297:1;85085:25:0;;;;;;62140:260;;;;;;:::i;:::-;;:::i;84696:34::-;;;;;84905:32;;;;;;;;;;;;;;;4139:10:1;4127:23;;;4109:42;;4097:2;4082:18;84905:32:0;3965:192:1;46029:134:0;;;;;;:::i;:::-;;:::i;92428:95::-;;;;;;:::i;:::-;;:::i;62657:231::-;;;;;;:::i;:::-;;:::i;89640:145::-;;;;;;:::i;:::-;;:::i;69774:86::-;69845:7;;;;69774:86;;43342:120;;;;;;:::i;:::-;;:::i;85036:21::-;;;:::i;85004:27::-;;;;;;43067:213;;;;;;:::i;:::-;;:::i;3586:103::-;;;:::i;89937:142::-;;;;;;:::i;:::-;;:::i;2911:87::-;2984:6;;-1:-1:-1;;;;;2984:6:0;2911:87;;43689:95;;;:::i;44931:146::-;;;;;;:::i;:::-;;:::i;84851:30::-;;;;;;;;-1:-1:-1;;;;;84851:30:0;;;85169:32;;;;;;;;;;;;;;;;;;;;6220:10:1;6257:15;;;6239:34;;6309:15;;;;6304:2;6289:18;;6282:43;6183:18;85169:32:0;6040:291:1;46234:211:0;;;;;;:::i;:::-;;:::i;90216:::-;;;;;;:::i;:::-;;:::i;43855:260::-;;;;;;:::i;:::-;;:::i;91293:240::-;;;:::i;87305:1329::-;;;;;;:::i;:::-;;:::i;84942:37::-;;;;;-1:-1:-1;;;;;84942:37:0;;;45148:155;;;;;;:::i;:::-;-1:-1:-1;;;;;45260:25:0;;;45236:4;45260:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45148:155;3844:220;;;;;;:::i;:::-;;:::i;85115:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;84650:41;;84689:2;84650:41;;90685:505;;;;;;:::i;:::-;;:::i;93548:214::-;93653:4;93673:42;;;93689:26;93673:42;;:83;;;93719:37;93743:12;93719:23;:37::i;:::-;93666:90;93548:214;-1:-1:-1;;93548:214:0:o;43529:91::-;43574:13;43607:5;43600:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43529:91;:::o;44701:158::-;44768:7;44788:22;44802:7;44788:13;:22::i;:::-;-1:-1:-1;47277:7:0;47304:24;;;:15;:24;;;;;;-1:-1:-1;;;;;47304:24:0;44830:21;47207:129;44520:115;44592:35;44601:2;44605:7;945:10;44592:8;:35::i;:::-;44520:115;;:::o;91627:125::-;2797:13;:11;:13::i;:::-;69845:7;;;;91676:54:::1;;91707:15;;;;;;;;;;;;;;91676:54;91736:10;:8;:10::i;:::-;91627:125::o:0;88793:708::-;2797:13;:11;:13::i;:::-;88886:10:::1;88861:35;;88876:7;88861:12;;:22;;;;:::i;:::-;:35;88857:83;;;88914:18;;;;;;;;;;;;;;88857:83;88970:12;:28:::0;;;::::1;;;88952:15;:46;88948:99;;;89016:23;;;;;;;;;;;;;;88948:99;89082:12;::::0;89055:24:::1;89103:353;89127:7;89123:1;:11;89103:353;;;89188:1;89168:21;;;;89366:35;89372:10;89384:16;89366:5;:35::i;:::-;89438:1;89433:6;89103:353;;;-1:-1:-1::0;89464:12:0::1;:31:::0;-1:-1:-1;88793:708:0:o;91928:353::-;2797:13;:11;:13::i;:::-;-1:-1:-1;;;;;92018:33:0;::::1;92014:98;;92069:35;::::0;::::1;::::0;;-1:-1:-1;;;;;1802:55:1;;92069:35:0::1;::::0;::::1;1784:74:1::0;1757:18;;92069:35:0::1;;;;;;;;92014:98;92146:15;::::0;;-1:-1:-1;;;;;92168:37:0;;::::1;92146:15;92168:37:::0;;::::1;::::0;;::::1;;::::0;;;;92219:56:::1;::::0;92146:15;;;::::1;::::0;::::1;::::0;92259::::1;;::::0;92146;;92219:56:::1;::::0;92120:23:::1;::::0;92219:56:::1;92007:274;91928:353:::0;:::o;45370:588::-;-1:-1:-1;;;;;45465:16:0;;45461:89;;45505:33;;;;;45535:1;45505:33;;;1784:74:1;1757:18;;45505:33:0;1638:226:1;45461:89:0;45771:21;45795:34;45803:2;45807:7;945:10;45795:7;:34::i;:::-;45771:58;;45861:4;-1:-1:-1;;;;;45844:21:0;:13;-1:-1:-1;;;;;45844:21:0;;45840:111;;45889:50;;;;;-1:-1:-1;;;;;9964:15:1;;;45889:50:0;;;9946:34:1;9996:18;;;9989:34;;;10059:15;;10039:18;;;10032:43;9858:18;;45889:50:0;9683:398:1;45840:111:0;45450:508;45370:588;;;:::o;92870:342::-;92976:16;92994:21;93039:12;;93028:8;:23;93024:77;;;93069:24;;;;;;;;2475:25:1;;;2448:18;;93069:24:0;2329:177:1;93024:77:0;93120:22;;93179:18;;-1:-1:-1;;;;;93120:22:0;;;;-1:-1:-1;93201:5:0;;93166:31;;93179:18;;;;;93166:10;:31;:::i;:::-;93165:41;;;;:::i;:::-;93149:57;;92870:342;;;;;:::o;62140:260::-;62228:7;62261:16;62271:5;62261:9;:16::i;:::-;62252:5;:25;62248:101;;62301:36;;;;;-1:-1:-1;;;;;3673:55:1;;62301:36:0;;;3655:74:1;3745:18;;;3738:34;;;3628:18;;62301:36:0;3481:297:1;62248:101:0;-1:-1:-1;;;;;;62366:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62140:260::o;46029:134::-;46116:39;46133:4;46139:2;46143:7;46116:39;;;;;;;;;;;;:16;:39::i;:::-;46029:134;;;:::o;92428:95::-;92476:41;92492:1;92496:8;92506:10;92476:7;:41::i;62657:231::-;62723:7;62756:13;62555:10;:17;;62476:104;62756:13;62747:5;:22;62743:103;;62793:41;;;;;62824:1;62793:41;;;3655:74:1;3745:18;;;3738:34;;;3628:18;;62793:41:0;3481:297:1;62743:103:0;62863:10;62874:5;62863:17;;;;;;;;:::i;:::-;;;;;;;;;62856:24;;62657:231;;;:::o;89640:145::-;2797:13;:11;:13::i;:::-;89715:7:::1;:23;89725:13:::0;89715:7;:23:::1;:::i;:::-;;89765:13;89750:29;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;89640:145:::0;:::o;43342:120::-;43405:7;43432:22;43446:7;43432:13;:22::i;85036:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43067:213::-;43130:7;-1:-1:-1;;;;;43154:19:0;;43150:89;;43197:30;;;;;43224:1;43197:30;;;1784:74:1;1757:18;;43197:30:0;1638:226:1;43150:89:0;-1:-1:-1;;;;;;43256:16:0;;;;;:9;:16;;;;;;;43067:213::o;3586:103::-;2797:13;:11;:13::i;:::-;3651:30:::1;3678:1;3651:18;:30::i;89937:142::-:0;2797:13;:11;:13::i;:::-;90007:10:::1;:24:::0;;;90043:30:::1;::::0;90020:11;;90043:30:::1;::::0;;;::::1;89937:142:::0;:::o;43689:95::-;43736:13;43769:7;43762:14;;;;;:::i;44931:146::-;45017:52;945:10;45050:8;45060;45017:18;:52::i;46234:211::-;46348:31;46361:4;46367:2;46371:7;46348:12;:31::i;:::-;46390:47;46413:4;46419:2;46423:7;46432:4;46390:22;:47::i;90216:211::-;2797:13;:11;:13::i;:::-;90302:36:::1;90324:13;90302:21;:36::i;:::-;90345:28:::0;;:12:::1;:28:::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;::::1;::::0;;;90387:34:::1;::::0;;13828:41:1;;;13911:24;;13907:33;;;13885:20;;;13878:63;90387:34:0::1;::::0;13772:18:1;90387:34:0::1;;;;;;;90216:211:::0;:::o;43855:260::-;43919:13;43945:22;43959:7;43945:13;:22::i;:::-;;43980:21;44004:10;:8;:10::i;:::-;43980:34;;44056:1;44038:7;44032:21;:25;:75;;;;;;;;;;;;;;;;;44074:7;44083:18;:7;:16;:18::i;:::-;44060:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44032:75;44025:82;43855:260;-1:-1:-1;;;43855:260:0:o;91293:240::-;91334:15;;;;;-1:-1:-1;;;;;91334:15:0;91353:10;91334:29;;;;:54;;-1:-1:-1;91378:10:0;91367:7;2984:6;;-1:-1:-1;;;;;2984:6:0;;2911:87;91367:7;-1:-1:-1;;;;;91367:21:0;;;91334:54;91330:122;;;91406:38;;;;;91433:10;91406:38;;;1784:74:1;1757:18;;91406:38:0;1638:226:1;91330:122:0;69845:7;;;;91460:53;;;91490:15;;;;;;;;;;;;;;91460:53;91519:8;:6;:8::i;87305:1329::-;83392:21;:19;:21::i;:::-;69379:19:::1;:17;:19::i;:::-;87439:12:::2;:30:::0;::::2;;87421:15;:48;::::0;:98:::2;;-1:-1:-1::0;87491:12:0::2;:28:::0;;;::::2;;;87473:15;:46;87421:98;87417:148;;;87537:20;;;;;;;;;;;;;;87417:148;87606:10;87573:15;87591:26:::0;;;:14:::2;:26;::::0;;;;;87628:18;;::::2;87624:63;;87664:15;;;;;;;;;;;;;;87624:63;87693:23;87719:17;87729:7:::0;87719;:17:::2;:::i;:::-;87693:43;;87782:10;87749:43;;87764:15;87749:12;;:30;;;;:::i;:::-;:43;87745:91;;;87810:18;;;;;;;;;;;;;;87745:91;87929:31;::::0;;87940:10:::2;87929:31;::::0;::::2;3655:74:1::0;3745:18;;;3738:34;;;87883:12:0::2;::::0;3628:18:1;;87929:31:0::2;::::0;;-1:-1:-1;;87929:31:0;;::::2;::::0;;;;;;87919:42;;87929:31:::2;87919:42:::0;;::::2;::::0;87908:54;;::::2;2475:25:1::0;2448:18;87908:54:0::2;;;;;;;;;;;;87898:65;;;;;;87883:80;;88075:58;88102:12;;88116:10;;88128:4;88075:26;:58::i;:::-;88070:112;;88151:23;;;;;;;;;;;;;;88070:112;84689:2;88194:31:::0;::::2;88190:85;;;84689:2;::::0;-1:-1:-1;88190:85:0::2;88310:12;::::0;88283:24:::2;88349:195;88360:15;88356:1;:19;88349:195;;;88429:1;88409:21;;;;88450:39;88460:10;88472:16;88450:9;:39::i;:::-;88526:1;88521:6;88349:195;;;88550:12;:31:::0;;;88617:11:::2;88627:1:::0;88617:7;:11:::2;:::i;:::-;88603:10;88588:26;::::0;;;:14:::2;:26;::::0;;;;:40;-1:-1:-1;83436:20:0;;-1:-1:-1;83436:18:0;;-1:-1:-1;;;83436:20:0:i;3844:220::-;2797:13;:11;:13::i;:::-;-1:-1:-1;;;;;3929:22:0;::::1;3925:93;;3975:31;::::0;::::1;::::0;;4003:1:::1;3975:31;::::0;::::1;1784:74:1::0;1757:18;;3975:31:0::1;1638:226:1::0;3925:93:0::1;4028:28;4047:8;4028:18;:28::i;:::-;3844:220:::0;:::o;90685:505::-;2797:13;:11;:13::i;:::-;-1:-1:-1;;;;;90800:37:0;::::1;::::0;;:87:::1;;-1:-1:-1::0;84642:3:0::1;90841:46;::::0;::::1;;90800:87;90796:133;;;90905:16;;;;;;;;;;;;;;90796:133;90964:22;::::0;;90993:48;;::::1;-1:-1:-1::0;;;;;90993:48:0;;::::1;::::0;;::::1;::::0;;;91048:18:::1;:40:::0;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;91102:82:::1;::::0;90964:22;;;::::1;::::0;;;91102:82:::1;::::0;-1:-1:-1;;91102:82:0::1;90789:401;90685:505:::0;;:::o;61832:224::-;61934:4;61958:50;;;61973:35;61958:50;;:90;;;62012:36;62036:11;62012:23;:36::i;57676:247::-;57739:7;47062:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47062:16:0;;57803:90;;57850:31;;;;;;;;2475:25:1;;;2448:18;;57850:31:0;2329:177:1;55908:122:0;55989:33;55998:2;56002:7;56011:4;56017;55989:8;:33::i;3076:166::-;2984:6;;-1:-1:-1;;;;;2984:6:0;945:10;3136:23;3132:103;;3183:40;;;;;945:10;3183:40;;;1784:74:1;1757:18;;3183:40:0;1638:226:1;70675:120:0;69638:16;:14;:16::i;:::-;70734:7:::1;:15:::0;;-1:-1:-1;;70734:15:0::1;::::0;;70765:22:::1;945:10:::0;70774:12:::1;70765:22;::::0;-1:-1:-1;;;;;1802:55:1;;;1784:74;;1772:2;1757:18;70765:22:0::1;;;;;;;70675:120::o:0;51329:335::-;-1:-1:-1;;;;;51397:16:0;;51393:89;;51437:33;;;;;51467:1;51437:33;;;1784:74:1;1757:18;;51437:33:0;1638:226:1;51393:89:0;51492:21;51516:32;51524:2;51528:7;51545:1;51516:7;:32::i;:::-;51492:56;-1:-1:-1;;;;;;51563:27:0;;;51559:98;;51614:31;;;;;51642:1;51614:31;;;1784:74:1;1757:18;;51614:31:0;1638:226:1;62949:640:0;63044:7;63064:21;63088:32;63102:2;63106:7;63115:4;63088:13;:32::i;:::-;63064:56;-1:-1:-1;;;;;;63137:27:0;;63133:214;;63181:40;63213:7;64413:10;:17;;64386:24;;;;:15;:24;;;;;:44;;;64441:24;;;;;;;;;;;;64309:164;63181:40;63133:214;;;63260:2;-1:-1:-1;;;;;63243:19:0;:13;-1:-1:-1;;;;;63243:19:0;;63239:108;;63279:56;63312:13;63327:7;63279:32;:56::i;:::-;-1:-1:-1;;;;;63361:16:0;;63357:192;;63394:45;63431:7;63394:36;:45::i;:::-;63357:192;;;63478:2;-1:-1:-1;;;;;63461:19:0;:13;-1:-1:-1;;;;;63461:19:0;;63457:92;;63497:40;63525:2;63529:7;63497:27;:40::i;:::-;63568:13;62949:640;-1:-1:-1;;;;62949:640:0:o;4224:191::-;4317:6;;;-1:-1:-1;;;;;4334:17:0;;;;;;;;;;;4367:40;;4317:6;;;4334:17;4317:6;;4367:40;;4298:16;;4367:40;4287:128;4224:191;:::o;57115:318::-;-1:-1:-1;;;;;57223:22:0;;57219:93;;57269:31;;;;;-1:-1:-1;;;;;1802:55:1;;57269:31:0;;;1784:74:1;1757:18;;57269:31:0;1638:226:1;57219:93:0;-1:-1:-1;;;;;57322:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;57322:46:0;;;;;;;;;;57384:41;;586::1;;;57384::0;;559:18:1;57384:41:0;;;;;;;57115:318;;;:::o;58473:799::-;-1:-1:-1;;;;;58590:14:0;;;:18;58586:679;;58629:71;;;;;-1:-1:-1;;;;;58629:36:0;;;;;:71;;945:10;;58680:4;;58686:7;;58695:4;;58629:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58629:71:0;;;;;;;;-1:-1:-1;;58629:71:0;;;;;;;;;;;;:::i;:::-;;;58625:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58943:6;:13;58960:1;58943:18;58939:300;;58993:25;;;;;-1:-1:-1;;;;;1802:55:1;;58993:25:0;;;1784:74:1;1757:18;;58993:25:0;1638:226:1;58939:300:0;59189:6;59183:13;59174:6;59170:2;59166:15;59159:38;58625:629;58748:51;;;58758:41;58748:51;58744:132;;58831:25;;;;;-1:-1:-1;;;;;1802:55:1;;58831:25:0;;;1784:74:1;1757:18;;58831:25:0;1638:226:1;58744:132:0;58701:190;58473:799;;;;:::o;93879:247::-;93970:31;;:36;;;;:104;;;94045:13;:29;;;94010:64;;:13;:31;;;:64;;;;93970:104;93966:155;;;94092:21;;;;;;;;;;;;;;94241:94;94293:13;94322:7;94315:14;;;;;:::i;38862:718::-;38918:13;38969:14;38986:17;38997:5;38986:10;:17::i;:::-;39006:1;38986:21;38969:38;;39022:20;39056:6;39045:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39045:18:0;-1:-1:-1;39022:41:0;-1:-1:-1;39187:28:0;;;39203:2;39187:28;39244:290;-1:-1:-1;;39276:5:0;39418:10;39413:2;39402:14;;39397:32;39276:5;39384:46;39476:2;39467:11;;;-1:-1:-1;39497:21:0;39244:290;39497:21;-1:-1:-1;39555:6:0;38862:718;-1:-1:-1;;;38862:718:0:o;70416:118::-;69379:19;:17;:19::i;:::-;70476:7:::1;:14:::0;;-1:-1:-1;;70476:14:0::1;70486:4;70476:14;::::0;;70506:20:::1;70513:12;945:10:::0;;865:98;83472:315;82770:1;83601:7;;:18;83597:88;;83643:30;;;;;;;;;;;;;;83597:88;82770:1;83762:7;:17;83472:315::o;69933:132::-;69845:7;;;;69995:63;;;70031:15;;;;;;;;;;;;;;72419:174;72520:4;72581;72544:33;72565:5;;72572:4;72544:20;:33::i;:::-;:41;;72419:174;-1:-1:-1;;;;;72419:174:0:o;52027:102::-;52095:26;52105:2;52109:7;52095:26;;;;;;;;;;;;:9;:26::i;83795:212::-;82727:1;83978:7;:21;83795:212::o;42698:305::-;42800:4;42837:40;;;42852:25;42837:40;;:105;;-1:-1:-1;42894:48:0;;;42909:33;42894:48;42837:105;:158;;;-1:-1:-1;21158:25:0;21143:40;;;;42959:36;21043:148;56218:678;56380:9;:31;;;-1:-1:-1;;;;;;56393:18:0;;;;56380:31;56376:471;;;56428:13;56444:22;56458:7;56444:13;:22::i;:::-;56428:38;-1:-1:-1;;;;;;56597:18:0;;;;;;:35;;;56628:4;-1:-1:-1;;;;;56619:13:0;:5;-1:-1:-1;;;;;56619:13:0;;;56597:35;:69;;;;-1:-1:-1;;;;;;45260:25:0;;;45236:4;45260:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;56636:30;56597:69;56593:144;;;56694:27;;;;;-1:-1:-1;;;;;1802:55:1;;56694:27:0;;;1784:74:1;1757:18;;56694:27:0;1638:226:1;56593:144:0;56757:9;56753:83;;;56812:7;56808:2;-1:-1:-1;;;;;56792:28:0;56801:5;-1:-1:-1;;;;;56792:28:0;;;;;;;;;;;56753:83;56413:434;56376:471;-1:-1:-1;;56859:24:0;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;56859:29:0;;;;;;;;;;56218:678::o;70142:130::-;69845:7;;;;70201:64;;70238:15;;;;;;;;;;;;;;50169:824;50255:7;47062:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47062:16:0;;;;50370:18;;;50366:88;;50405:37;50422:4;50428;50434:7;50405:16;:37::i;:::-;-1:-1:-1;;;;;50501:18:0;;;50497:263;;50619:48;50636:1;50640:7;50657:1;50661:5;50619:8;:48::i;:::-;-1:-1:-1;;;;;50713:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;50713:20:0;;;50497:263;-1:-1:-1;;;;;50776:16:0;;;50772:111;;-1:-1:-1;;;;;50838:13:0;;;;;;:9;:13;;;;;:18;;50855:1;50838:18;;;50772:111;50895:16;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;50895:21:0;;;;;;;;;50934:27;;50895:16;;50934:27;;;;;;;50981:4;50169:824;-1:-1:-1;;;;50169:824:0:o;65100:977::-;65366:22;65391:15;65401:4;65391:9;:15::i;:::-;65417:18;65438:26;;;:17;:26;;;;;;65366:40;;-1:-1:-1;65571:28:0;;;65567:328;;-1:-1:-1;;;;;65638:18:0;;65616:19;65638:18;;;:12;:18;;;;;;;;:34;;;;;;;;;65689:30;;;;;;:44;;;65806:30;;:17;:30;;;;;:43;;;65567:328;-1:-1:-1;65991:26:0;;;;:17;:26;;;;;;;;65984:33;;;-1:-1:-1;;;;;66035:18:0;;;;;:12;:18;;;;;:34;;;;;;;66028:41;65100:977::o;66372:1079::-;66650:10;:17;66625:22;;66650:21;;66670:1;;66650:21;:::i;:::-;66682:18;66703:24;;;:15;:24;;;;;;67076:10;:26;;66625:46;;-1:-1:-1;66703:24:0;;66625:46;;67076:26;;;;;;:::i;:::-;;;;;;;;;67054:48;;67140:11;67115:10;67126;67115:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;67220:28;;;:15;:28;;;;;;;:41;;;67392:24;;;;;67385:31;67427:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;66443:1008;;;66372:1079;:::o;63890:218::-;63975:14;64008:1;63992:13;64002:2;63992:9;:13::i;:::-;:17;;;;:::i;:::-;-1:-1:-1;;;;;64020:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64065:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;63890:218:0:o;33814:948::-;33867:7;;33954:8;33945:17;;33941:106;;33992:8;33983:17;;;-1:-1:-1;34029:2:0;34019:12;33941:106;34074:8;34065:5;:17;34061:106;;34112:8;34103:17;;;-1:-1:-1;34149:2:0;34139:12;34061:106;34194:8;34185:5;:17;34181:106;;34232:8;34223:17;;;-1:-1:-1;34269:2:0;34259:12;34181:106;34314:7;34305:5;:16;34301:103;;34351:7;34342:16;;;-1:-1:-1;34387:1:0;34377:11;34301:103;34431:7;34422:5;:16;34418:103;;34468:7;34459:16;;;-1:-1:-1;34504:1:0;34494:11;34418:103;34548:7;34539:5;:16;34535:103;;34585:7;34576:16;;;-1:-1:-1;34621:1:0;34611:11;34535:103;34665:7;34656:5;:16;34652:68;;34703:1;34693:11;34748:6;33814:948;-1:-1:-1;;33814:948:0:o;73284:306::-;73377:7;73420:4;73377:7;73435:118;73455:16;;;73435:118;;;73508:33;73518:12;73532:5;;73538:1;73532:8;;;;;;;:::i;:::-;;;;;;;73508:9;:33::i;:::-;73493:48;-1:-1:-1;73473:3:0;;;;:::i;:::-;;;;73435:118;;;-1:-1:-1;73570:12:0;73284:306;-1:-1:-1;;;;73284:306:0:o;52356:185::-;52451:18;52457:2;52461:7;52451:5;:18::i;:::-;52480:53;52511:1;52515:2;52519:7;52528:4;52480:22;:53::i;48376:376::-;48489:38;48503:5;48510:7;48519;48489:13;:38::i;:::-;48484:261;;-1:-1:-1;;;;;48548:19:0;;48544:190;;48595:31;;;;;;;;2475:25:1;;;2448:18;;48595:31:0;2329:177:1;48544:190:0;48674:44;;;;;-1:-1:-1;;;;;3673:55:1;;48674:44:0;;;3655:74:1;3745:18;;;3738:34;;;3628:18;;48674:44:0;3481:297:1;80344:149:0;80407:7;80438:1;80434;:5;:51;;80686:13;80780:15;;;80816:4;80809:15;;;80863:4;80847:21;;80434:51;;;-1:-1:-1;80686:13:0;80780:15;;;80816:4;80809:15;80863:4;80847:21;;;80344:149::o;47656:276::-;47759:4;-1:-1:-1;;;;;47796:21:0;;;;;;:128;;;47844:7;-1:-1:-1;;;;;47835:16:0;:5;-1:-1:-1;;;;;47835:16:0;;:52;;;-1:-1:-1;;;;;;45260:25:0;;;45236:4;45260:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47855:32;47835:88;;;-1:-1:-1;;47277:7:0;47304:24;;;:15;:24;;;;;;-1:-1:-1;;;;;47304:24:0;;;47891:32;;;;47776:148;-1:-1:-1;47656:276:0:o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:330::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1137:2;1125:15;-1:-1:-1;;1121:88:1;1112:98;;;;1212:4;1108:109;;893:330;-1:-1:-1;;893:330:1:o;1228:220::-;1377:2;1366:9;1359:21;1340:4;1397:45;1438:2;1427:9;1423:18;1415:6;1397:45;:::i;1453:180::-;1512:6;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;-1:-1:-1;1604:23:1;;1453:180;-1:-1:-1;1453:180:1:o;1869:196::-;1937:20;;-1:-1:-1;;;;;1986:54:1;;1976:65;;1966:93;;2055:1;2052;2045:12;1966:93;1869:196;;;:::o;2070:254::-;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2238:29;2257:9;2238:29;:::i;:::-;2228:39;2314:2;2299:18;;;;2286:32;;-1:-1:-1;;;2070:254:1:o;2704:186::-;2763:6;2816:2;2804:9;2795:7;2791:23;2787:32;2784:52;;;2832:1;2829;2822:12;2784:52;2855:29;2874:9;2855:29;:::i;2895:328::-;2972:6;2980;2988;3041:2;3029:9;3020:7;3016:23;3012:32;3009:52;;;3057:1;3054;3047:12;3009:52;3080:29;3099:9;3080:29;:::i;:::-;3070:39;;3128:38;3162:2;3151:9;3147:18;3128:38;:::i;:::-;3118:48;;3213:2;3202:9;3198:18;3185:32;3175:42;;2895:328;;;;;:::o;3228:248::-;3296:6;3304;3357:2;3345:9;3336:7;3332:23;3328:32;3325:52;;;3373:1;3370;3363:12;3325:52;-1:-1:-1;;3396:23:1;;;3466:2;3451:18;;;3438:32;;-1:-1:-1;3228:248:1:o;4162:184::-;4214:77;4211:1;4204:88;4311:4;4308:1;4301:15;4335:4;4332:1;4325:15;4351:691;4416:5;4446:18;4487:2;4479:6;4476:14;4473:40;;;4493:18;;:::i;:::-;4627:2;4621:9;4693:2;4681:15;;-1:-1:-1;;4677:24:1;;;4703:2;4673:33;4669:42;4657:55;;;4727:18;;;4747:22;;;4724:46;4721:72;;;4773:18;;:::i;:::-;4813:10;4809:2;4802:22;4842:6;4833:15;;4872:6;4864;4857:22;4912:3;4903:6;4898:3;4894:16;4891:25;4888:45;;;4929:1;4926;4919:12;4888:45;4979:6;4974:3;4967:4;4959:6;4955:17;4942:44;5034:1;5027:4;5018:6;5010;5006:19;5002:30;4995:41;;;;4351:691;;;;;:::o;5047:451::-;5116:6;5169:2;5157:9;5148:7;5144:23;5140:32;5137:52;;;5185:1;5182;5175:12;5137:52;5225:9;5212:23;5258:18;5250:6;5247:30;5244:50;;;5290:1;5287;5280:12;5244:50;5313:22;;5366:4;5358:13;;5354:27;-1:-1:-1;5344:55:1;;5395:1;5392;5385:12;5344:55;5418:74;5484:7;5479:2;5466:16;5461:2;5457;5453:11;5418:74;:::i;5688:347::-;5753:6;5761;5814:2;5802:9;5793:7;5789:23;5785:32;5782:52;;;5830:1;5827;5820:12;5782:52;5853:29;5872:9;5853:29;:::i;:::-;5843:39;;5932:2;5921:9;5917:18;5904:32;5979:5;5972:13;5965:21;5958:5;5955:32;5945:60;;6001:1;5998;5991:12;5945:60;6024:5;6014:15;;;5688:347;;;;;:::o;6336:667::-;6431:6;6439;6447;6455;6508:3;6496:9;6487:7;6483:23;6479:33;6476:53;;;6525:1;6522;6515:12;6476:53;6548:29;6567:9;6548:29;:::i;:::-;6538:39;;6596:38;6630:2;6619:9;6615:18;6596:38;:::i;:::-;6586:48;;6681:2;6670:9;6666:18;6653:32;6643:42;;6736:2;6725:9;6721:18;6708:32;6763:18;6755:6;6752:30;6749:50;;;6795:1;6792;6785:12;6749:50;6818:22;;6871:4;6863:13;;6859:27;-1:-1:-1;6849:55:1;;6900:1;6897;6890:12;6849:55;6923:74;6989:7;6984:2;6971:16;6966:2;6962;6958:11;6923:74;:::i;:::-;6913:84;;;6336:667;;;;;;;:::o;7008:163::-;7075:20;;7135:10;7124:22;;7114:33;;7104:61;;7161:1;7158;7151:12;7176:519;7265:6;7318:2;7306:9;7297:7;7293:23;7289:32;7286:52;;;7334:1;7331;7324:12;7286:52;7367:2;7361:9;7409:2;7401:6;7397:15;7478:6;7466:10;7463:22;7442:18;7430:10;7427:34;7424:62;7421:88;;;7489:18;;:::i;:::-;7525:2;7518:22;7564:28;7582:9;7564:28;:::i;:::-;7556:6;7549:44;7626:37;7659:2;7648:9;7644:18;7626:37;:::i;:::-;7621:2;7609:15;;7602:62;7613:6;7176:519;-1:-1:-1;;;7176:519:1:o;7700:689::-;7795:6;7803;7811;7864:2;7852:9;7843:7;7839:23;7835:32;7832:52;;;7880:1;7877;7870:12;7832:52;7920:9;7907:23;7949:18;7990:2;7982:6;7979:14;7976:34;;;8006:1;8003;7996:12;7976:34;8044:6;8033:9;8029:22;8019:32;;8089:7;8082:4;8078:2;8074:13;8070:27;8060:55;;8111:1;8108;8101:12;8060:55;8151:2;8138:16;8177:2;8169:6;8166:14;8163:34;;;8193:1;8190;8183:12;8163:34;8248:7;8241:4;8231:6;8228:1;8224:14;8220:2;8216:23;8212:34;8209:47;8206:67;;;8269:1;8266;8259:12;8206:67;8300:4;8292:13;;;;8324:6;;-1:-1:-1;8362:20:1;;;;8349:34;;7700:689;-1:-1:-1;;;;7700:689:1:o;8394:260::-;8462:6;8470;8523:2;8511:9;8502:7;8498:23;8494:32;8491:52;;;8539:1;8536;8529:12;8491:52;8562:29;8581:9;8562:29;:::i;:::-;8552:39;;8610:38;8644:2;8633:9;8629:18;8610:38;:::i;8659:258::-;8726:6;8734;8787:2;8775:9;8766:7;8762:23;8758:32;8755:52;;;8803:1;8800;8793:12;8755:52;8826:29;8845:9;8826:29;:::i;:::-;8816:39;;8874:37;8907:2;8896:9;8892:18;8874:37;:::i;8922:437::-;9001:1;8997:12;;;;9044;;;9065:61;;9119:4;9111:6;9107:17;9097:27;;9065:61;9172:2;9164:6;9161:14;9141:18;9138:38;9135:218;;9209:77;9206:1;9199:88;9310:4;9307:1;9300:15;9338:4;9335:1;9328:15;9135:218;;8922:437;;;:::o;9364:184::-;9416:77;9413:1;9406:88;9513:4;9510:1;9503:15;9537:4;9534:1;9527:15;9553:125;9618:9;;;9639:10;;;9636:36;;;9652:18;;:::i;10086:168::-;10159:9;;;10190;;10207:15;;;10201:22;;10187:37;10177:71;;10228:18;;:::i;10448:274::-;10488:1;10514;10504:189;;10549:77;10546:1;10539:88;10650:4;10647:1;10640:15;10678:4;10675:1;10668:15;10504:189;-1:-1:-1;10707:9:1;;10448:274::o;10727:184::-;10779:77;10776:1;10769:88;10876:4;10873:1;10866:15;10900:4;10897:1;10890:15;11042:545;11144:2;11139:3;11136:11;11133:448;;;11180:1;11205:5;11201:2;11194:17;11250:4;11246:2;11236:19;11320:2;11308:10;11304:19;11301:1;11297:27;11291:4;11287:38;11356:4;11344:10;11341:20;11338:47;;;-1:-1:-1;11379:4:1;11338:47;11434:2;11429:3;11425:12;11422:1;11418:20;11412:4;11408:31;11398:41;;11489:82;11507:2;11500:5;11497:13;11489:82;;;11552:17;;;11533:1;11522:13;11489:82;;;11493:3;;;11042:545;;;:::o;11823:1471::-;11949:3;11943:10;11976:18;11968:6;11965:30;11962:56;;;11998:18;;:::i;:::-;12027:97;12117:6;12077:38;12109:4;12103:11;12077:38;:::i;:::-;12071:4;12027:97;:::i;:::-;12179:4;;12243:2;12232:14;;12260:1;12255:782;;;;13081:1;13098:6;13095:89;;;-1:-1:-1;13150:19:1;;;13144:26;13095:89;-1:-1:-1;;11720:1:1;11716:11;;;11712:84;11708:89;11698:100;11804:1;11800:11;;;11695:117;13197:81;;12225:1063;;12255:782;10989:1;10982:14;;;11026:4;11013:18;;-1:-1:-1;;12291:79:1;;;12468:236;12482:7;12479:1;12476:14;12468:236;;;12571:19;;;12565:26;12550:42;;12663:27;;;;12631:1;12619:14;;;;12498:19;;12468:236;;;12472:3;12732:6;12723:7;12720:19;12717:261;;;12793:19;;;12787:26;-1:-1:-1;;12876:1:1;12872:14;;;12888:3;12868:24;12864:97;12860:102;12845:118;12830:134;;12717:261;-1:-1:-1;;;;;13024:1:1;13008:14;;;13004:22;12991:36;;-1:-1:-1;11823:1471:1:o;13299:289::-;13430:3;13468:6;13462:13;13484:66;13543:6;13538:3;13531:4;13523:6;13519:17;13484:66;:::i;:::-;13566:16;;;;;13299:289;-1:-1:-1;;13299:289:1:o;13952:496::-;14131:3;14169:6;14163:13;14185:66;14244:6;14239:3;14232:4;14224:6;14220:17;14185:66;:::i;:::-;14314:13;;14273:16;;;;14336:70;14314:13;14273:16;14383:4;14371:17;;14336:70;:::i;:::-;14422:20;;13952:496;-1:-1:-1;;;;13952:496:1:o;14453:128::-;14520:9;;;14541:11;;;14538:37;;;14555:18;;:::i;14586:512::-;14780:4;-1:-1:-1;;;;;14890:2:1;14882:6;14878:15;14867:9;14860:34;14942:2;14934:6;14930:15;14925:2;14914:9;14910:18;14903:43;;14982:6;14977:2;14966:9;14962:18;14955:34;15025:3;15020:2;15009:9;15005:18;14998:31;15046:46;15087:3;15076:9;15072:19;15064:6;15046:46;:::i;:::-;15038:54;14586:512;-1:-1:-1;;;;;;14586:512:1:o;15103:249::-;15172:6;15225:2;15213:9;15204:7;15200:23;15196:32;15193:52;;;15241:1;15238;15231:12;15193:52;15273:9;15267:16;15292:30;15316:5;15292:30;:::i;15357:184::-;15409:77;15406:1;15399:88;15506:4;15503:1;15496:15;15530:4;15527:1;15520:15;15546:195;15585:3;-1:-1:-1;;15609:5:1;15606:77;15603:103;;15686:18;;:::i;:::-;-1:-1:-1;15733:1:1;15722:13;;15546:195::o

Swarm Source

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