ETH Price: $2,690.50 (-1.60%)

Token

LinkPool OG 2.0 (LPOG2.0)
 

Overview

Max Total Supply

335 LPOG2.0

Holders

333

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 LPOG2.0
0x34d6dbd097f6b739c59d7467779549aea60e1f84
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:
LPOG2

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @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 caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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]


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


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


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

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}


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


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

pragma solidity ^0.8.0;

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

    /**
     * @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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        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);
    }
}


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


// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







/**
 * @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}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => 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 override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(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 override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - 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,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * 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 virtual {
        _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);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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 virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @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 virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * 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
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being 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`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}


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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/LPOG2.sol


pragma solidity 0.8.19;



/**
 * @title LPOG2
 * @notice NFT for previous holders of LPL
 */
contract LPOG2 is ERC721URIStorage, Ownable {
    string public baseURI;
    bytes32 public merkleRoot;
    uint256 public totalSupply;

    mapping(address => uint256) public minted;

    event Minted(address indexed account, uint256 tokenId);

    error AlreadyMinted();
    error InvalidProof();

    constructor(string memory _baseUri, bytes32 _merkleRoot) ERC721("LinkPool OG 2.0", "LPOG2.0") {
        baseURI = _baseUri;
        merkleRoot = _merkleRoot;
    }

    function mint(bytes32[] calldata _merkleProof) external {
        address account = msg.sender;
        if (minted[account] != 0) revert AlreadyMinted();

        bytes32 node = keccak256(bytes.concat(keccak256(abi.encode(account, uint256(1)))));
        if (!MerkleProof.verify(_merkleProof, merkleRoot, node)) revert InvalidProof();

        minted[account] = 1;

        uint256 tokenId = ++totalSupply;
        _safeMint(account, tokenId);
        _setTokenURI(tokenId, "/");

        emit Minted(account, tokenId);
    }

    /**
     * @notice sets baseURI for NFTs
     * @param _baseUri URI to set
     **/
    function setBaseURI(string memory _baseUri) external onlyOwner {
        baseURI = _baseUri;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"InvalidProof","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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001ef738038062001ef783398101604081905262000034916200013e565b6040518060400160405280600f81526020016e04c696e6b506f6f6c204f4720322e3608c1b8152506040518060400160405280600781526020016604c504f47322e360cc1b81525081600090816200008d9190620002a8565b5060016200009c8282620002a8565b505050620000b9620000b3620000d260201b60201c565b620000d6565b6008620000c78382620002a8565b506009555062000374565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200015257600080fd5b82516001600160401b03808211156200016a57600080fd5b818501915085601f8301126200017f57600080fd5b81518181111562000194576200019462000128565b604051601f8201601f19908116603f01168101908382118183101715620001bf57620001bf62000128565b81604052828152602093508884848701011115620001dc57600080fd5b600091505b82821015620002005784820184015181830185015290830190620001e1565b6000928101840192909252509401519395939450505050565b600181811c908216806200022e57607f821691505b6020821081036200024f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a357600081815260208120601f850160051c810160208610156200027e5750805b601f850160051c820191505b818110156200029f578281556001016200028a565b5050505b505050565b81516001600160401b03811115620002c457620002c462000128565b620002dc81620002d5845462000219565b8462000255565b602080601f831160018114620003145760008415620002fb5750858301515b600019600386901b1c1916600185901b1785556200029f565b600085815260208120601f198616915b82811015620003455788860151825594840194600190910190840162000324565b5085821015620003645787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b7380620003846000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb4651461028c578063b77a147b1461029f578063b88d4fde146102b2578063c87b56dd146102c5578063e985e9c5146102d8578063f2fde38b1461031457600080fd5b80636c0360eb1461025057806370a0823114610258578063715018a61461026b5780638da5cb5b1461027357806395d89b411461028457600080fd5b80631e7269c51161010a5780631e7269c5146101db57806323b872dd146101fb5780632eb4a7ab1461020e57806342842e0e1461021757806355f804b31461022a5780636352211e1461023d57600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a6101553660046114e0565b610327565b60405190151581526020015b60405180910390f35b610177610379565b604051610166919061154d565b610197610192366004611560565b61040b565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611595565b610432565b005b6101cd600a5481565b604051908152602001610166565b6101cd6101e93660046115bf565b600b6020526000908152604090205481565b6101c26102093660046115da565b61054c565b6101cd60095481565b6101c26102253660046115da565b61057d565b6101c26102383660046116a2565b610598565b61019761024b366004611560565b6105b0565b610177610610565b6101cd6102663660046115bf565b61069e565b6101c2610724565b6007546001600160a01b0316610197565b610177610738565b6101c261029a3660046116eb565b610747565b6101c26102ad366004611727565b610752565b6101c26102c036600461179c565b6108de565b6101776102d3366004611560565b610916565b61015a6102e6366004611818565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c26103223660046115bf565b610a19565b60006001600160e01b031982166380ac58cd60e01b148061035857506001600160e01b03198216635b5e139f60e01b145b8061037357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103889061184b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b49061184b565b80156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b5050505050905090565b600061041682610a92565b506000908152600460205260409020546001600160a01b031690565b600061043d826105b0565b9050806001600160a01b0316836001600160a01b0316036104af5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104cb57506104cb81336102e6565b61053d5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016104a6565b6105478383610af1565b505050565b6105563382610b5f565b6105725760405162461bcd60e51b81526004016104a690611885565b610547838383610bdd565b610547838383604051806020016040528060008152506108de565b6105a0610d41565b60086105ac8282611920565b5050565b6000818152600260205260408120546001600160a01b0316806103735760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a6565b6008805461061d9061184b565b80601f01602080910402602001604051908101604052809291908181526020018280546106499061184b565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b505050505081565b60006001600160a01b0382166107085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104a6565b506001600160a01b031660009081526003602052604090205490565b61072c610d41565b6107366000610d9b565b565b6060600180546103889061184b565b6105ac338383610ded565b336000818152600b60205260409020541561078057604051631bbdf5c560e31b815260040160405180910390fd5b604080516001600160a01b038316602082015260019181019190915260009060600160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050610818848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050610ebb565b610835576040516309bde33960e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b6020526040812060019055600a80548290610860906119e0565b918290555090506108718382610ed1565b61089481604051806040016040528060018152602001602f60f81b815250610eeb565b826001600160a01b03167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe826040516108cf91815260200190565b60405180910390a25050505050565b6108e83383610b5f565b6109045760405162461bcd60e51b81526004016104a690611885565b61091084848484610f7e565b50505050565b606061092182610a92565b6000828152600660205260408120805461093a9061184b565b80601f01602080910402602001604051908101604052809291908181526020018280546109669061184b565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905060006109c4610fb1565b905080516000036109d6575092915050565b815115610a085780826040516020016109f0929190611a07565b60405160208183030381529060405292505050919050565b610a1184610fc0565b949350505050565b610a21610d41565b6001600160a01b038116610a865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a6565b610a8f81610d9b565b50565b6000818152600260205260409020546001600160a01b0316610a8f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b26826105b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610b6b836105b0565b9050806001600160a01b0316846001600160a01b03161480610bb257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610a115750836001600160a01b0316610bcb8461040b565b6001600160a01b031614949350505050565b826001600160a01b0316610bf0826105b0565b6001600160a01b031614610c165760405162461bcd60e51b81526004016104a690611a36565b6001600160a01b038216610c785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a6565b826001600160a01b0316610c8b826105b0565b6001600160a01b031614610cb15760405162461bcd60e51b81526004016104a690611a36565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6007546001600160a01b031633146107365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a6565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610e4e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082610ec88584611027565b14949350505050565b6105ac828260405180602001604052806000815250611074565b6000828152600260205260409020546001600160a01b0316610f665760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016104a6565b60008281526006602052604090206105478282611920565b610f89848484610bdd565b610f95848484846110a7565b6109105760405162461bcd60e51b81526004016104a690611a7b565b6060600880546103889061184b565b6060610fcb82610a92565b6000610fd5610fb1565b90506000815111610ff55760405180602001604052806000815250611020565b80610fff846111a8565b604051602001611010929190611a07565b6040516020818303038152906040525b9392505050565b600081815b845181101561106c576110588286838151811061104b5761104b611acd565b602002602001015161123b565b915080611064816119e0565b91505061102c565b509392505050565b61107e8383611267565b61108b60008484846110a7565b6105475760405162461bcd60e51b81526004016104a690611a7b565b60006001600160a01b0384163b1561119d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110eb903390899088908890600401611ae3565b6020604051808303816000875af1925050508015611126575060408051601f3d908101601f1916820190925261112391810190611b20565b60015b611183573d808015611154576040519150601f19603f3d011682016040523d82523d6000602084013e611159565b606091505b50805160000361117b5760405162461bcd60e51b81526004016104a690611a7b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a11565b506001949350505050565b606060006111b5836113f2565b600101905060008167ffffffffffffffff8111156111d5576111d5611616565b6040519080825280601f01601f1916602001820160405280156111ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461120957509392505050565b6000818310611257576000828152602084905260409020611020565b5060009182526020526040902090565b6001600160a01b0382166112bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a6565b6000818152600260205260409020546001600160a01b0316156113225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a6565b6000818152600260205260409020546001600160a01b0316156113875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a6565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114315772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061145d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061147b57662386f26fc10000830492506010015b6305f5e1008310611493576305f5e100830492506008015b61271083106114a757612710830492506004015b606483106114b9576064830492506002015b600a83106103735760010192915050565b6001600160e01b031981168114610a8f57600080fd5b6000602082840312156114f257600080fd5b8135611020816114ca565b60005b83811015611518578181015183820152602001611500565b50506000910152565b600081518084526115398160208601602086016114fd565b601f01601f19169290920160200192915050565b6020815260006110206020830184611521565b60006020828403121561157257600080fd5b5035919050565b80356001600160a01b038116811461159057600080fd5b919050565b600080604083850312156115a857600080fd5b6115b183611579565b946020939093013593505050565b6000602082840312156115d157600080fd5b61102082611579565b6000806000606084860312156115ef57600080fd5b6115f884611579565b925061160660208501611579565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561164757611647611616565b604051601f8501601f19908116603f0116810190828211818310171561166f5761166f611616565b8160405280935085815286868601111561168857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116b457600080fd5b813567ffffffffffffffff8111156116cb57600080fd5b8201601f810184136116dc57600080fd5b610a118482356020840161162c565b600080604083850312156116fe57600080fd5b61170783611579565b91506020830135801515811461171c57600080fd5b809150509250929050565b6000806020838503121561173a57600080fd5b823567ffffffffffffffff8082111561175257600080fd5b818501915085601f83011261176657600080fd5b81358181111561177557600080fd5b8660208260051b850101111561178a57600080fd5b60209290920196919550909350505050565b600080600080608085870312156117b257600080fd5b6117bb85611579565b93506117c960208601611579565b925060408501359150606085013567ffffffffffffffff8111156117ec57600080fd5b8501601f810187136117fd57600080fd5b61180c8782356020840161162c565b91505092959194509250565b6000806040838503121561182b57600080fd5b61183483611579565b915061184260208401611579565b90509250929050565b600181811c9082168061185f57607f821691505b60208210810361187f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b601f82111561054757600081815260208120601f850160051c810160208610156118f95750805b601f850160051c820191505b8181101561191857828155600101611905565b505050505050565b815167ffffffffffffffff81111561193a5761193a611616565b61194e81611948845461184b565b846118d2565b602080601f831160018114611983576000841561196b5750858301515b600019600386901b1c1916600185901b178555611918565b600085815260208120601f198616915b828110156119b257888601518255948401946001909101908401611993565b50858210156119d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201611a0057634e487b7160e01b600052601160045260246000fd5b5060010190565b60008351611a198184602088016114fd565b835190830190611a2d8183602088016114fd565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b1690830184611521565b9695505050505050565b600060208284031215611b3257600080fd5b8151611020816114ca56fea264697066735822122049f0cf53c10c8ccf708e5787181c16c9a3672df333fb76351bb5f1f110156e5164736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000405be7de09f910e6807a5abe32e0905b8162f638793a0f7a5cfecc5447cd23f392000000000000000000000000000000000000000000000000000000000000006568747470733a2f2f62726f6e7a652d656c6465726c792d68616c696275742d3532312e6d7970696e6174612e636c6f75642f697066732f516d62616e66787246484c736767435479624368456b4457574538585970774a5631423436777673716742527069000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb4651461028c578063b77a147b1461029f578063b88d4fde146102b2578063c87b56dd146102c5578063e985e9c5146102d8578063f2fde38b1461031457600080fd5b80636c0360eb1461025057806370a0823114610258578063715018a61461026b5780638da5cb5b1461027357806395d89b411461028457600080fd5b80631e7269c51161010a5780631e7269c5146101db57806323b872dd146101fb5780632eb4a7ab1461020e57806342842e0e1461021757806355f804b31461022a5780636352211e1461023d57600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a6101553660046114e0565b610327565b60405190151581526020015b60405180910390f35b610177610379565b604051610166919061154d565b610197610192366004611560565b61040b565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611595565b610432565b005b6101cd600a5481565b604051908152602001610166565b6101cd6101e93660046115bf565b600b6020526000908152604090205481565b6101c26102093660046115da565b61054c565b6101cd60095481565b6101c26102253660046115da565b61057d565b6101c26102383660046116a2565b610598565b61019761024b366004611560565b6105b0565b610177610610565b6101cd6102663660046115bf565b61069e565b6101c2610724565b6007546001600160a01b0316610197565b610177610738565b6101c261029a3660046116eb565b610747565b6101c26102ad366004611727565b610752565b6101c26102c036600461179c565b6108de565b6101776102d3366004611560565b610916565b61015a6102e6366004611818565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c26103223660046115bf565b610a19565b60006001600160e01b031982166380ac58cd60e01b148061035857506001600160e01b03198216635b5e139f60e01b145b8061037357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103889061184b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b49061184b565b80156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b5050505050905090565b600061041682610a92565b506000908152600460205260409020546001600160a01b031690565b600061043d826105b0565b9050806001600160a01b0316836001600160a01b0316036104af5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104cb57506104cb81336102e6565b61053d5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016104a6565b6105478383610af1565b505050565b6105563382610b5f565b6105725760405162461bcd60e51b81526004016104a690611885565b610547838383610bdd565b610547838383604051806020016040528060008152506108de565b6105a0610d41565b60086105ac8282611920565b5050565b6000818152600260205260408120546001600160a01b0316806103735760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a6565b6008805461061d9061184b565b80601f01602080910402602001604051908101604052809291908181526020018280546106499061184b565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b505050505081565b60006001600160a01b0382166107085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104a6565b506001600160a01b031660009081526003602052604090205490565b61072c610d41565b6107366000610d9b565b565b6060600180546103889061184b565b6105ac338383610ded565b336000818152600b60205260409020541561078057604051631bbdf5c560e31b815260040160405180910390fd5b604080516001600160a01b038316602082015260019181019190915260009060600160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050610818848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050610ebb565b610835576040516309bde33960e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b6020526040812060019055600a80548290610860906119e0565b918290555090506108718382610ed1565b61089481604051806040016040528060018152602001602f60f81b815250610eeb565b826001600160a01b03167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe826040516108cf91815260200190565b60405180910390a25050505050565b6108e83383610b5f565b6109045760405162461bcd60e51b81526004016104a690611885565b61091084848484610f7e565b50505050565b606061092182610a92565b6000828152600660205260408120805461093a9061184b565b80601f01602080910402602001604051908101604052809291908181526020018280546109669061184b565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905060006109c4610fb1565b905080516000036109d6575092915050565b815115610a085780826040516020016109f0929190611a07565b60405160208183030381529060405292505050919050565b610a1184610fc0565b949350505050565b610a21610d41565b6001600160a01b038116610a865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a6565b610a8f81610d9b565b50565b6000818152600260205260409020546001600160a01b0316610a8f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b26826105b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610b6b836105b0565b9050806001600160a01b0316846001600160a01b03161480610bb257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610a115750836001600160a01b0316610bcb8461040b565b6001600160a01b031614949350505050565b826001600160a01b0316610bf0826105b0565b6001600160a01b031614610c165760405162461bcd60e51b81526004016104a690611a36565b6001600160a01b038216610c785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a6565b826001600160a01b0316610c8b826105b0565b6001600160a01b031614610cb15760405162461bcd60e51b81526004016104a690611a36565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6007546001600160a01b031633146107365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a6565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610e4e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082610ec88584611027565b14949350505050565b6105ac828260405180602001604052806000815250611074565b6000828152600260205260409020546001600160a01b0316610f665760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016104a6565b60008281526006602052604090206105478282611920565b610f89848484610bdd565b610f95848484846110a7565b6109105760405162461bcd60e51b81526004016104a690611a7b565b6060600880546103889061184b565b6060610fcb82610a92565b6000610fd5610fb1565b90506000815111610ff55760405180602001604052806000815250611020565b80610fff846111a8565b604051602001611010929190611a07565b6040516020818303038152906040525b9392505050565b600081815b845181101561106c576110588286838151811061104b5761104b611acd565b602002602001015161123b565b915080611064816119e0565b91505061102c565b509392505050565b61107e8383611267565b61108b60008484846110a7565b6105475760405162461bcd60e51b81526004016104a690611a7b565b60006001600160a01b0384163b1561119d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110eb903390899088908890600401611ae3565b6020604051808303816000875af1925050508015611126575060408051601f3d908101601f1916820190925261112391810190611b20565b60015b611183573d808015611154576040519150601f19603f3d011682016040523d82523d6000602084013e611159565b606091505b50805160000361117b5760405162461bcd60e51b81526004016104a690611a7b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a11565b506001949350505050565b606060006111b5836113f2565b600101905060008167ffffffffffffffff8111156111d5576111d5611616565b6040519080825280601f01601f1916602001820160405280156111ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461120957509392505050565b6000818310611257576000828152602084905260409020611020565b5060009182526020526040902090565b6001600160a01b0382166112bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a6565b6000818152600260205260409020546001600160a01b0316156113225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a6565b6000818152600260205260409020546001600160a01b0316156113875760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a6565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114315772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061145d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061147b57662386f26fc10000830492506010015b6305f5e1008310611493576305f5e100830492506008015b61271083106114a757612710830492506004015b606483106114b9576064830492506002015b600a83106103735760010192915050565b6001600160e01b031981168114610a8f57600080fd5b6000602082840312156114f257600080fd5b8135611020816114ca565b60005b83811015611518578181015183820152602001611500565b50506000910152565b600081518084526115398160208601602086016114fd565b601f01601f19169290920160200192915050565b6020815260006110206020830184611521565b60006020828403121561157257600080fd5b5035919050565b80356001600160a01b038116811461159057600080fd5b919050565b600080604083850312156115a857600080fd5b6115b183611579565b946020939093013593505050565b6000602082840312156115d157600080fd5b61102082611579565b6000806000606084860312156115ef57600080fd5b6115f884611579565b925061160660208501611579565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561164757611647611616565b604051601f8501601f19908116603f0116810190828211818310171561166f5761166f611616565b8160405280935085815286868601111561168857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116b457600080fd5b813567ffffffffffffffff8111156116cb57600080fd5b8201601f810184136116dc57600080fd5b610a118482356020840161162c565b600080604083850312156116fe57600080fd5b61170783611579565b91506020830135801515811461171c57600080fd5b809150509250929050565b6000806020838503121561173a57600080fd5b823567ffffffffffffffff8082111561175257600080fd5b818501915085601f83011261176657600080fd5b81358181111561177557600080fd5b8660208260051b850101111561178a57600080fd5b60209290920196919550909350505050565b600080600080608085870312156117b257600080fd5b6117bb85611579565b93506117c960208601611579565b925060408501359150606085013567ffffffffffffffff8111156117ec57600080fd5b8501601f810187136117fd57600080fd5b61180c8782356020840161162c565b91505092959194509250565b6000806040838503121561182b57600080fd5b61183483611579565b915061184260208401611579565b90509250929050565b600181811c9082168061185f57607f821691505b60208210810361187f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b601f82111561054757600081815260208120601f850160051c810160208610156118f95750805b601f850160051c820191505b8181101561191857828155600101611905565b505050505050565b815167ffffffffffffffff81111561193a5761193a611616565b61194e81611948845461184b565b846118d2565b602080601f831160018114611983576000841561196b5750858301515b600019600386901b1c1916600185901b178555611918565b600085815260208120601f198616915b828110156119b257888601518255948401946001909101908401611993565b50858210156119d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201611a0057634e487b7160e01b600052601160045260246000fd5b5060010190565b60008351611a198184602088016114fd565b835190830190611a2d8183602088016114fd565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b1690830184611521565b9695505050505050565b600060208284031215611b3257600080fd5b8151611020816114ca56fea264697066735822122049f0cf53c10c8ccf708e5787181c16c9a3672df333fb76351bb5f1f110156e5164736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000405be7de09f910e6807a5abe32e0905b8162f638793a0f7a5cfecc5447cd23f392000000000000000000000000000000000000000000000000000000000000006568747470733a2f2f62726f6e7a652d656c6465726c792d68616c696275742d3532312e6d7970696e6174612e636c6f75642f697066732f516d62616e66787246484c736767435479624368456b4457574538585970774a5631423436777673716742527069000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): https://bronze-elderly-halibut-521.mypinata.cloud/ipfs/QmbanfxrFHLsggCTybChEkDWWE8XYpwJV1B46wvsqgBRpi
Arg [1] : _merkleRoot (bytes32): 0x5be7de09f910e6807a5abe32e0905b8162f638793a0f7a5cfecc5447cd23f392

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 5be7de09f910e6807a5abe32e0905b8162f638793a0f7a5cfecc5447cd23f392
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000065
Arg [3] : 68747470733a2f2f62726f6e7a652d656c6465726c792d68616c696275742d35
Arg [4] : 32312e6d7970696e6174612e636c6f75642f697066732f516d62616e66787246
Arg [5] : 484c736767435479624368456b4457574538585970774a563142343677767371
Arg [6] : 6742527069000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

66576:1340:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38708:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38708:305:0;;;;;;;;39636:100;;;:::i;:::-;;;;;;;:::i;41148:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;41148:171:0;1533:203:1;40666:416:0;;;;;;:::i;:::-;;:::i;:::-;;66687:26;;;;;;;;;2324:25:1;;;2312:2;2297:18;66687:26:0;2178:177:1;66722:41:0;;;;;;:::i;:::-;;;;;;;;;;;;;;41848:335;;;;;;:::i;:::-;;:::i;66655:25::-;;;;;;42254:185;;;;;;:::i;:::-;;:::i;67705:100::-;;;;;;:::i;:::-;;:::i;39346:223::-;;;;;;:::i;:::-;;:::i;66627:21::-;;;:::i;39077:207::-;;;;;;:::i;:::-;;:::i;2882:103::-;;;:::i;2234:87::-;2307:6;;-1:-1:-1;;;;;2307:6:0;2234:87;;39805:104;;;:::i;41391:155::-;;;;;;:::i;:::-;;:::i;67066:539::-;;;;;;:::i;:::-;;:::i;42510:322::-;;;;;;:::i;:::-;;:::i;55435:624::-;;;;;;:::i;:::-;;:::i;41617:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;41738:25:0;;;41714:4;41738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41617:164;3140:201;;;;;;:::i;:::-;;:::i;38708:305::-;38810:4;-1:-1:-1;;;;;;38847:40:0;;-1:-1:-1;;;38847:40:0;;:105;;-1:-1:-1;;;;;;;38904:48:0;;-1:-1:-1;;;38904:48:0;38847:105;:158;;;-1:-1:-1;;;;;;;;;;22027:40:0;;;38969:36;38827:178;38708:305;-1:-1:-1;;38708:305:0:o;39636:100::-;39690:13;39723:5;39716:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39636:100;:::o;41148:171::-;41224:7;41244:23;41259:7;41244:14;:23::i;:::-;-1:-1:-1;41287:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41287:24:0;;41148:171::o;40666:416::-;40747:13;40763:23;40778:7;40763:14;:23::i;:::-;40747:39;;40811:5;-1:-1:-1;;;;;40805:11:0;:2;-1:-1:-1;;;;;40805:11:0;;40797:57;;;;-1:-1:-1;;;40797:57:0;;6787:2:1;40797:57:0;;;6769:21:1;6826:2;6806:18;;;6799:30;6865:34;6845:18;;;6838:62;-1:-1:-1;;;6916:18:1;;;6909:31;6957:19;;40797:57:0;;;;;;;;;861:10;-1:-1:-1;;;;;40889:21:0;;;;:62;;-1:-1:-1;40914:37:0;40931:5;861:10;41617:164;:::i;40914:37::-;40867:173;;;;-1:-1:-1;;;40867:173:0;;7189:2:1;40867:173:0;;;7171:21:1;7228:2;7208:18;;;7201:30;7267:34;7247:18;;;7240:62;7338:31;7318:18;;;7311:59;7387:19;;40867:173:0;6987:425:1;40867:173:0;41053:21;41062:2;41066:7;41053:8;:21::i;:::-;40736:346;40666:416;;:::o;41848:335::-;42043:41;861:10;42076:7;42043:18;:41::i;:::-;42035:99;;;;-1:-1:-1;;;42035:99:0;;;;;;;:::i;:::-;42147:28;42157:4;42163:2;42167:7;42147:9;:28::i;42254:185::-;42392:39;42409:4;42415:2;42419:7;42392:39;;;;;;;;;;;;:16;:39::i;67705:100::-;2120:13;:11;:13::i;:::-;67779:7:::1;:18;67789:8:::0;67779:7;:18:::1;:::i;:::-;;67705:100:::0;:::o;39346:223::-;39418:7;44233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44233:16:0;;39482:56;;;;-1:-1:-1;;;39482:56:0;;10237:2:1;39482:56:0;;;10219:21:1;10276:2;10256:18;;;10249:30;-1:-1:-1;;;10295:18:1;;;10288:54;10359:18;;39482:56:0;10035:348:1;66627:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39077:207::-;39149:7;-1:-1:-1;;;;;39177:19:0;;39169:73;;;;-1:-1:-1;;;39169:73:0;;10590:2:1;39169:73:0;;;10572:21:1;10629:2;10609:18;;;10602:30;10668:34;10648:18;;;10641:62;-1:-1:-1;;;10719:18:1;;;10712:39;10768:19;;39169:73:0;10388:405:1;39169:73:0;-1:-1:-1;;;;;;39260:16:0;;;;;:9;:16;;;;;;;39077:207::o;2882:103::-;2120:13;:11;:13::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;:::-;2882:103::o:0;39805:104::-;39861:13;39894:7;39887:14;;;;;:::i;41391:155::-;41486:52;861:10;41519:8;41529;41486:18;:52::i;67066:539::-;67151:10;67133:15;67176;;;:6;:15;;;;;;:20;67172:48;;67205:15;;-1:-1:-1;;;67205:15:0;;;;;;;;;;;67172:48;67281:31;;;-1:-1:-1;;;;;10990:32:1;;67281:31:0;;;10972:51:1;67309:1:0;11039:18:1;;;11032:34;;;;67233:12:0;;10945:18:1;;67281:31:0;;;-1:-1:-1;;67281:31:0;;;;;;;;;67271:42;;67281:31;67271:42;;;;67258:56;;;11206:19:1;11241:12;67258:56:0;;;;;;;;;;;;67248:67;;;;;;67233:82;;67331:50;67350:12;;67331:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67364:10:0;;;-1:-1:-1;67376:4:0;;-1:-1:-1;67331:18:0;:50::i;:::-;67326:78;;67390:14;;-1:-1:-1;;;67390:14:0;;;;;;;;;;;67326:78;-1:-1:-1;;;;;67417:15:0;;;;;;:6;:15;;;;;67435:1;67417:19;;67469:11;67467:13;;67417:15;;67467:13;;;:::i;:::-;;;;;-1:-1:-1;67467:13:0;-1:-1:-1;67491:27:0;67501:7;67467:13;67491:9;:27::i;:::-;67529:26;67542:7;67529:26;;;;;;;;;;;;;-1:-1:-1;;;67529:26:0;;;:12;:26::i;:::-;67580:7;-1:-1:-1;;;;;67573:24:0;;67589:7;67573:24;;;;2324:25:1;;2312:2;2297:18;;2178:177;67573:24:0;;;;;;;;67122:483;;;67066:539;;:::o;42510:322::-;42684:41;861:10;42717:7;42684:18;:41::i;:::-;42676:99;;;;-1:-1:-1;;;42676:99:0;;;;;;;:::i;:::-;42786:38;42800:4;42806:2;42810:7;42819:4;42786:13;:38::i;:::-;42510:322;;;;:::o;55435:624::-;55508:13;55534:23;55549:7;55534:14;:23::i;:::-;55570;55596:19;;;:10;:19;;;;;55570:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55626:18;55647:10;:8;:10::i;:::-;55626:31;;55739:4;55733:18;55755:1;55733:23;55729:72;;-1:-1:-1;55780:9:0;55435:624;-1:-1:-1;;55435:624:0:o;55729:72::-;55905:23;;:27;55901:108;;55980:4;55986:9;55963:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55949:48;;;;55435:624;;;:::o;55901:108::-;56028:23;56043:7;56028:14;:23::i;:::-;56021:30;55435:624;-1:-1:-1;;;;55435:624:0:o;3140:201::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;3229:22:0;::::1;3221:73;;;::::0;-1:-1:-1;;;3221:73:0;;12204:2:1;3221:73:0::1;::::0;::::1;12186:21:1::0;12243:2;12223:18;;;12216:30;12282:34;12262:18;;;12255:62;-1:-1:-1;;;12333:18:1;;;12326:36;12379:19;;3221:73:0::1;12002:402:1::0;3221:73:0::1;3305:28;3324:8;3305:18;:28::i;:::-;3140:201:::0;:::o;50967:135::-;44635:4;44233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44233:16:0;51041:53;;;;-1:-1:-1;;;51041:53:0;;10237:2:1;51041:53:0;;;10219:21:1;10276:2;10256:18;;;10249:30;-1:-1:-1;;;10295:18:1;;;10288:54;10359:18;;51041:53:0;10035:348:1;50246:174:0;50321:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50321:29:0;-1:-1:-1;;;;;50321:29:0;;;;;;;;:24;;50375:23;50321:24;50375:14;:23::i;:::-;-1:-1:-1;;;;;50366:46:0;;;;;;;;;;;50246:174;;:::o;44865:264::-;44958:4;44975:13;44991:23;45006:7;44991:14;:23::i;:::-;44975:39;;45044:5;-1:-1:-1;;;;;45033:16:0;:7;-1:-1:-1;;;;;45033:16:0;;:52;;;-1:-1:-1;;;;;;41738:25:0;;;41714:4;41738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45053:32;45033:87;;;;45113:7;-1:-1:-1;;;;;45089:31:0;:20;45101:7;45089:11;:20::i;:::-;-1:-1:-1;;;;;45089:31:0;;45025:96;44865:264;-1:-1:-1;;;;44865:264:0:o;48864:1263::-;49023:4;-1:-1:-1;;;;;48996:31:0;:23;49011:7;48996:14;:23::i;:::-;-1:-1:-1;;;;;48996:31:0;;48988:81;;;;-1:-1:-1;;;48988:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49088:16:0;;49080:65;;;;-1:-1:-1;;;49080:65:0;;13017:2:1;49080:65:0;;;12999:21:1;13056:2;13036:18;;;13029:30;13095:34;13075:18;;;13068:62;-1:-1:-1;;;13146:18:1;;;13139:34;13190:19;;49080:65:0;12815:400:1;49080:65:0;49330:4;-1:-1:-1;;;;;49303:31:0;:23;49318:7;49303:14;:23::i;:::-;-1:-1:-1;;;;;49303:31:0;;49295:81;;;;-1:-1:-1;;;49295:81:0;;;;;;;:::i;:::-;49448:24;;;;:15;:24;;;;;;;;49441:31;;-1:-1:-1;;;;;;49441:31:0;;;;;;-1:-1:-1;;;;;49924:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;49924:20:0;;;49959:13;;;;;;;;;:18;;49441:31;49959:18;;;49999:16;;;:7;:16;;;;;;:21;;;;;;;;;;50038:27;;49464:7;;50038:27;;;40736:346;40666:416;;:::o;2399:132::-;2307:6;;-1:-1:-1;;;;;2307:6:0;861:10;2463:23;2455:68;;;;-1:-1:-1;;;2455:68:0;;13422:2:1;2455:68:0;;;13404:21:1;;;13441:18;;;13434:30;13500:34;13480:18;;;13473:62;13552:18;;2455:68:0;13220:356:1;3501:191:0;3594:6;;;-1:-1:-1;;;;;3611:17:0;;;-1:-1:-1;;;;;;3611:17:0;;;;;;;3644:40;;3594:6;;;3611:17;3594:6;;3644:40;;3575:16;;3644:40;3564:128;3501:191;:::o;50563:315::-;50718:8;-1:-1:-1;;;;;50709:17:0;:5;-1:-1:-1;;;;;50709:17:0;;50701:55;;;;-1:-1:-1;;;50701:55:0;;13783:2:1;50701:55:0;;;13765:21:1;13822:2;13802:18;;;13795:30;13861:27;13841:18;;;13834:55;13906:18;;50701:55:0;13581:349:1;50701:55:0;-1:-1:-1;;;;;50767:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;50767:46:0;;;;;;;;;;50829:41;;540::1;;;50829::0;;513:18:1;50829:41:0;;;;;;;50563:315;;;:::o;58100:190::-;58225:4;58278;58249:25;58262:5;58269:4;58249:12;:25::i;:::-;:33;;58100:190;-1:-1:-1;;;;58100:190:0:o;45471:110::-;45547:26;45557:2;45561:7;45547:26;;;;;;;;;;;;:9;:26::i;56215:217::-;44635:4;44233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44233:16:0;56307:75;;;;-1:-1:-1;;;56307:75:0;;14137:2:1;56307:75:0;;;14119:21:1;14176:2;14156:18;;;14149:30;14215:34;14195:18;;;14188:62;-1:-1:-1;;;14266:18:1;;;14259:44;14320:19;;56307:75:0;13935:410:1;56307:75:0;56393:19;;;;:10;:19;;;;;:31;56415:9;56393:19;:31;:::i;43713:313::-;43869:28;43879:4;43885:2;43889:7;43869:9;:28::i;:::-;43916:47;43939:4;43945:2;43949:7;43958:4;43916:22;:47::i;:::-;43908:110;;;;-1:-1:-1;;;43908:110:0;;;;;;;:::i;67813:100::-;67865:13;67898:7;67891:14;;;;;:::i;39980:281::-;40053:13;40079:23;40094:7;40079:14;:23::i;:::-;40115:21;40139:10;:8;:10::i;:::-;40115:34;;40191:1;40173:7;40167:21;:25;:86;;;;;;;;;;;;;;;;;40219:7;40228:18;:7;:16;:18::i;:::-;40202:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40167:86;40160:93;39980:281;-1:-1:-1;;;39980:281:0:o;58967:296::-;59050:7;59093:4;59050:7;59108:118;59132:5;:12;59128:1;:16;59108:118;;;59181:33;59191:12;59205:5;59211:1;59205:8;;;;;;;;:::i;:::-;;;;;;;59181:9;:33::i;:::-;59166:48;-1:-1:-1;59146:3:0;;;;:::i;:::-;;;;59108:118;;;-1:-1:-1;59243:12:0;58967:296;-1:-1:-1;;;58967:296:0:o;45808:319::-;45937:18;45943:2;45947:7;45937:5;:18::i;:::-;45988:53;46019:1;46023:2;46027:7;46036:4;45988:22;:53::i;:::-;45966:153;;;;-1:-1:-1;;;45966:153:0;;;;;;;:::i;51666:853::-;51820:4;-1:-1:-1;;;;;51841:13:0;;13147:19;:23;51837:675;;51877:71;;-1:-1:-1;;;51877:71:0;;-1:-1:-1;;;;;51877:36:0;;;;;:71;;861:10;;51928:4;;51934:7;;51943:4;;51877:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51877:71:0;;;;;;;;-1:-1:-1;;51877:71:0;;;;;;;;;;;;:::i;:::-;;;51873:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52118:6;:13;52135:1;52118:18;52114:328;;52161:60;;-1:-1:-1;;;52161:60:0;;;;;;;:::i;52114:328::-;52392:6;52386:13;52377:6;52373:2;52369:15;52362:38;51873:584;-1:-1:-1;;;;;;51999:51:0;-1:-1:-1;;;51999:51:0;;-1:-1:-1;51992:58:0;;51837:675;-1:-1:-1;52496:4:0;51666:853;;;;;;:::o;35401:716::-;35457:13;35508:14;35525:17;35536:5;35525:10;:17::i;:::-;35545:1;35525:21;35508:38;;35561:20;35595:6;35584:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35584:18:0;-1:-1:-1;35561:41:0;-1:-1:-1;35726:28:0;;;35742:2;35726:28;35783:288;-1:-1:-1;;35815:5:0;-1:-1:-1;;;35952:2:0;35941:14;;35936:30;35815:5;35923:44;36013:2;36004:11;;;-1:-1:-1;36034:21:0;35783:288;36034:21;-1:-1:-1;36092:6:0;35401:716;-1:-1:-1;;;35401:716:0:o;66007:149::-;66070:7;66101:1;66097;:5;:51;;66232:13;66326:15;;;66362:4;66355:15;;;66409:4;66393:21;;66097:51;;;-1:-1:-1;66232:13:0;66326:15;;;66362:4;66355:15;66409:4;66393:21;;;66007:149::o;46463:942::-;-1:-1:-1;;;;;46543:16:0;;46535:61;;;;-1:-1:-1;;;46535:61:0;;15983:2:1;46535:61:0;;;15965:21:1;;;16002:18;;;15995:30;16061:34;16041:18;;;16034:62;16113:18;;46535:61:0;15781:356:1;46535:61:0;44635:4;44233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44233:16:0;44659:31;46607:58;;;;-1:-1:-1;;;46607:58:0;;16344:2:1;46607:58:0;;;16326:21:1;16383:2;16363:18;;;16356:30;16422;16402:18;;;16395:58;16470:18;;46607:58:0;16142:352:1;46607:58:0;44635:4;44233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44233:16:0;44659:31;46816:58;;;;-1:-1:-1;;;46816:58:0;;16344:2:1;46816:58:0;;;16326:21:1;16383:2;16363:18;;;16356:30;16422;16402:18;;;16395:58;16470:18;;46816:58:0;16142:352:1;46816:58:0;-1:-1:-1;;;;;47223:13:0;;;;;;:9;:13;;;;;;;;:18;;47240:1;47223:18;;;47265:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47265:21:0;;;;;47304:33;47273:7;;47223:13;;47304:33;;47223:13;;47304:33;67779:18:::1;67705:100:::0;:::o;32261:922::-;32314:7;;-1:-1:-1;;;32392:15:0;;32388:102;;-1:-1:-1;;;32428:15:0;;;-1:-1:-1;32472:2:0;32462:12;32388:102;32517:6;32508:5;:15;32504:102;;32553:6;32544:15;;;-1:-1:-1;32588:2:0;32578:12;32504:102;32633:6;32624:5;:15;32620:102;;32669:6;32660:15;;;-1:-1:-1;32704:2:0;32694:12;32620:102;32749:5;32740;:14;32736:99;;32784:5;32775:14;;;-1:-1:-1;32818:1:0;32808:11;32736:99;32862:5;32853;:14;32849:99;;32897:5;32888:14;;;-1:-1:-1;32931:1:0;32921:11;32849:99;32975:5;32966;:14;32962:99;;33010:5;33001:14;;;-1:-1:-1;33044:1:0;33034:11;32962:99;33088:5;33079;:14;33075:66;;33124:1;33114:11;33169:6;32261:922;-1:-1:-1;;32261:922:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;3066:127::-;3127:10;3122:3;3118:20;3115:1;3108:31;3158:4;3155:1;3148:15;3182:4;3179:1;3172:15;3198:632;3263:5;3293:18;3334:2;3326:6;3323:14;3320:40;;;3340:18;;:::i;:::-;3415:2;3409:9;3383:2;3469:15;;-1:-1:-1;;3465:24:1;;;3491:2;3461:33;3457:42;3445:55;;;3515:18;;;3535:22;;;3512:46;3509:72;;;3561:18;;:::i;:::-;3601:10;3597:2;3590:22;3630:6;3621:15;;3660:6;3652;3645:22;3700:3;3691:6;3686:3;3682:16;3679:25;3676:45;;;3717:1;3714;3707:12;3676:45;3767:6;3762:3;3755:4;3747:6;3743:17;3730:44;3822:1;3815:4;3806:6;3798;3794:19;3790:30;3783:41;;;;3198:632;;;;;:::o;3835:451::-;3904:6;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;4013:9;4000:23;4046:18;4038:6;4035:30;4032:50;;;4078:1;4075;4068:12;4032:50;4101:22;;4154:4;4146:13;;4142:27;-1:-1:-1;4132:55:1;;4183:1;4180;4173:12;4132:55;4206:74;4272:7;4267:2;4254:16;4249:2;4245;4241:11;4206:74;:::i;4291:347::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4456:29;4475:9;4456:29;:::i;:::-;4446:39;;4535:2;4524:9;4520:18;4507:32;4582:5;4575:13;4568:21;4561:5;4558:32;4548:60;;4604:1;4601;4594:12;4548:60;4627:5;4617:15;;;4291:347;;;;;:::o;4643:615::-;4729:6;4737;4790:2;4778:9;4769:7;4765:23;4761:32;4758:52;;;4806:1;4803;4796:12;4758:52;4846:9;4833:23;4875:18;4916:2;4908:6;4905:14;4902:34;;;4932:1;4929;4922:12;4902:34;4970:6;4959:9;4955:22;4945:32;;5015:7;5008:4;5004:2;5000:13;4996:27;4986:55;;5037:1;5034;5027:12;4986:55;5077:2;5064:16;5103:2;5095:6;5092:14;5089:34;;;5119:1;5116;5109:12;5089:34;5172:7;5167:2;5157:6;5154:1;5150:14;5146:2;5142:23;5138:32;5135:45;5132:65;;;5193:1;5190;5183:12;5132:65;5224:2;5216:11;;;;;5246:6;;-1:-1:-1;4643:615:1;;-1:-1:-1;;;;4643:615:1:o;5263:667::-;5358:6;5366;5374;5382;5435:3;5423:9;5414:7;5410:23;5406:33;5403:53;;;5452:1;5449;5442:12;5403:53;5475:29;5494:9;5475:29;:::i;:::-;5465:39;;5523:38;5557:2;5546:9;5542:18;5523:38;:::i;:::-;5513:48;;5608:2;5597:9;5593:18;5580:32;5570:42;;5663:2;5652:9;5648:18;5635:32;5690:18;5682:6;5679:30;5676:50;;;5722:1;5719;5712:12;5676:50;5745:22;;5798:4;5790:13;;5786:27;-1:-1:-1;5776:55:1;;5827:1;5824;5817:12;5776:55;5850:74;5916:7;5911:2;5898:16;5893:2;5889;5885:11;5850:74;:::i;:::-;5840:84;;;5263:667;;;;;;;:::o;5935:260::-;6003:6;6011;6064:2;6052:9;6043:7;6039:23;6035:32;6032:52;;;6080:1;6077;6070:12;6032:52;6103:29;6122:9;6103:29;:::i;:::-;6093:39;;6151:38;6185:2;6174:9;6170:18;6151:38;:::i;:::-;6141:48;;5935:260;;;;;:::o;6200:380::-;6279:1;6275:12;;;;6322;;;6343:61;;6397:4;6389:6;6385:17;6375:27;;6343:61;6450:2;6442:6;6439:14;6419:18;6416:38;6413:161;;6496:10;6491:3;6487:20;6484:1;6477:31;6531:4;6528:1;6521:15;6559:4;6556:1;6549:15;6413:161;;6200:380;;;:::o;7417:409::-;7619:2;7601:21;;;7658:2;7638:18;;;7631:30;7697:34;7692:2;7677:18;;7670:62;-1:-1:-1;;;7763:2:1;7748:18;;7741:43;7816:3;7801:19;;7417:409::o;7957:545::-;8059:2;8054:3;8051:11;8048:448;;;8095:1;8120:5;8116:2;8109:17;8165:4;8161:2;8151:19;8235:2;8223:10;8219:19;8216:1;8212:27;8206:4;8202:38;8271:4;8259:10;8256:20;8253:47;;;-1:-1:-1;8294:4:1;8253:47;8349:2;8344:3;8340:12;8337:1;8333:20;8327:4;8323:31;8313:41;;8404:82;8422:2;8415:5;8412:13;8404:82;;;8467:17;;;8448:1;8437:13;8404:82;;;8408:3;;;7957:545;;;:::o;8678:1352::-;8804:3;8798:10;8831:18;8823:6;8820:30;8817:56;;;8853:18;;:::i;:::-;8882:97;8972:6;8932:38;8964:4;8958:11;8932:38;:::i;:::-;8926:4;8882:97;:::i;:::-;9034:4;;9098:2;9087:14;;9115:1;9110:663;;;;9817:1;9834:6;9831:89;;;-1:-1:-1;9886:19:1;;;9880:26;9831:89;-1:-1:-1;;8635:1:1;8631:11;;;8627:24;8623:29;8613:40;8659:1;8655:11;;;8610:57;9933:81;;9080:944;;9110:663;7904:1;7897:14;;;7941:4;7928:18;;-1:-1:-1;;9146:20:1;;;9264:236;9278:7;9275:1;9272:14;9264:236;;;9367:19;;;9361:26;9346:42;;9459:27;;;;9427:1;9415:14;;;;9294:19;;9264:236;;;9268:3;9528:6;9519:7;9516:19;9513:201;;;9589:19;;;9583:26;-1:-1:-1;;9672:1:1;9668:14;;;9684:3;9664:24;9660:37;9656:42;9641:58;9626:74;;9513:201;-1:-1:-1;;;;;9760:1:1;9744:14;;;9740:22;9727:36;;-1:-1:-1;8678:1352:1:o;11264:232::-;11303:3;11324:17;;;11321:140;;11383:10;11378:3;11374:20;11371:1;11364:31;11418:4;11415:1;11408:15;11446:4;11443:1;11436:15;11321:140;-1:-1:-1;11488:1:1;11477:13;;11264:232::o;11501:496::-;11680:3;11718:6;11712:13;11734:66;11793:6;11788:3;11781:4;11773:6;11769:17;11734:66;:::i;:::-;11863:13;;11822:16;;;;11885:70;11863:13;11822:16;11932:4;11920:17;;11885:70;:::i;:::-;11971:20;;11501:496;-1:-1:-1;;;;11501:496:1:o;12409:401::-;12611:2;12593:21;;;12650:2;12630:18;;;12623:30;12689:34;12684:2;12669:18;;12662:62;-1:-1:-1;;;12755:2:1;12740:18;;12733:35;12800:3;12785:19;;12409:401::o;14350:414::-;14552:2;14534:21;;;14591:2;14571:18;;;14564:30;14630:34;14625:2;14610:18;;14603:62;-1:-1:-1;;;14696:2:1;14681:18;;14674:48;14754:3;14739:19;;14350:414::o;14769:127::-;14830:10;14825:3;14821:20;14818:1;14811:31;14861:4;14858:1;14851:15;14885:4;14882:1;14875:15;14901:489;-1:-1:-1;;;;;15170:15:1;;;15152:34;;15222:15;;15217:2;15202:18;;15195:43;15269:2;15254:18;;15247:34;;;15317:3;15312:2;15297:18;;15290:31;;;15095:4;;15338:46;;15364:19;;15356:6;15338:46;:::i;:::-;15330:54;14901:489;-1:-1:-1;;;;;;14901:489:1:o;15395:249::-;15464:6;15517:2;15505:9;15496:7;15492:23;15488:32;15485:52;;;15533:1;15530;15523:12;15485:52;15565:9;15559:16;15584:30;15608:5;15584:30;:::i

Swarm Source

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