ETH Price: $2,626.76 (+1.23%)

Token

Cactus (Cacti)
 

Overview

Max Total Supply

1,000 Cacti

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 Cacti
0x972C550F55F7Aa8B7E2dB9a36f6dDb8Adf7B21f9
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:
CactiNft

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// 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/[email protected]


// 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/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/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.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}


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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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


// File contracts/CactiNft.sol


pragma solidity >=0.8.11;





contract CactiNft is
    ERC721Enumerable,
    ERC721Burnable,
    Ownable,
    ReentrancyGuard
{
    using Address for address payable;
    using Strings for uint256;

    /// @notice Base URI
    string private _uriBase;

    /// @notice Default metadata uri before reveal
    string private _defaultURI;

    /// @notice Max supply
    uint256 public maxSupply = 1000;

    /// @notice Price for mint, default 0.03 ETH
    uint256 public mintPrice = 0.03 ether;

    /// @notice Max mint per wallet, default 5
    uint256 public maxPerWallet = 5;

    /// @notice Fee wallet
    address payable public feeWallet;

    /// @notice Nft minted count per wallet
    mapping(address => uint256) public mintedPerWallet;

    constructor(
        string memory _name,
        string memory _symbol,
        address payable _feeWallet,
        uint256 initialReserve
    ) ERC721(_name, _symbol) {
        feeWallet = _feeWallet;
        // reserve initial supply
        uint i;
        for (; i < initialReserve; i++) _safeMint(msg.sender, i);
    }

    function mintNft(uint numberOfTokens) external payable nonReentrant {
        require(numberOfTokens > 0, "Invalid mint amount");
        require(
            totalSupply() + numberOfTokens <= maxSupply,
            "Exceed max supply"
        );

        uint256 mintedCount = mintedPerWallet[_msgSender()];
        mintedCount += numberOfTokens;
        mintedPerWallet[_msgSender()] = mintedCount;

        if (_msgSender() != owner()) {
            require(mintedCount <= maxPerWallet, "Exceed mint limit");
            require(
                mintPrice * numberOfTokens <= msg.value,
                "Insufficient funds"
            );
        }

        uint256 i;
        for (; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < maxSupply) _safeMint(_msgSender(), mintIndex);
        }
    }

    function baseURI() external view returns (string memory) {
        return _uriBase;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _uriBase = baseURI_;
    }

    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        _requireMinted(tokenId);

        return
            bytes(_uriBase).length > 0
                ? string(abi.encodePacked(_uriBase, tokenId.toString()))
                : _defaultURI;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        require(_maxPerWallet > 0, "Invalid value");
        maxPerWallet = _maxPerWallet;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        require(_maxSupply > totalSupply(), "Already minted more nfts");
        maxSupply = _maxSupply;
    }

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

    function setFeeWallet(address payable _feeWallet) external onlyOwner {
        // Check if the fee wallet can receive ETH
        _feeWallet.sendValue(0);
        require(feeWallet != _feeWallet, "Already configured");
        feeWallet = _feeWallet;
    }

    function withdraw() external {
        uint balance = address(this).balance;
        feeWallet.sendValue(balance);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address payable","name":"_feeWallet","type":"address"},{"internalType":"uint256","name":"initialReserve","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintNft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPerWallet","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":"address payable","name":"_feeWallet","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600e55666a94d74f430000600f5560056010553480156200002757600080fd5b50604051620030e6380380620030e68339810160408190526200004a9162000a2e565b83518490849062000063906000906020850190620008b2565b50805162000079906001906020840190620008b2565b5050506200009662000090620000ee60201b60201c565b620000f2565b6001600b55601180546001600160a01b0319166001600160a01b03841617905560005b81811015620000e357620000ce338262000144565b80620000da8162000ad7565b915050620000b9565b505050505062000c01565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001668282604051806020016040528060008152506200016a60201b60201c565b5050565b620001768383620001e6565b62000185600084848462000387565b620001e15760405162461bcd60e51b81526020600482015260326024820152600080516020620030c683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b0382166200023e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001d8565b6000818152600260205260409020546001600160a01b031615620002a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d8565b620002b5600083836001620004e0565b6000818152600260205260409020546001600160a01b0316156200031c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d8565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003a8846001600160a01b0316620004ff60201b62000fb31760201c565b15620004d457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003e290339089908890889060040162000af5565b6020604051808303816000875af192505050801562000420575060408051601f3d908101601f191682019092526200041d9181019062000b4b565b60015b620004b9573d80801562000451576040519150601f19603f3d011682016040523d82523d6000602084013e62000456565b606091505b508051620004b15760405162461bcd60e51b81526020600482015260326024820152600080516020620030c683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004d8565b5060015b949350505050565b620004f9848484846200050e60201b62000fc21760201c565b50505050565b6001600160a01b03163b151590565b6200052784848484620004f960201b62000dfb1760201c565b6001811115620005a05760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401620001d8565b816001600160a01b038516620005ff57620005f981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000625565b836001600160a01b0316856001600160a01b031614620006255762000625858262000672565b6001600160a01b03841662000645576200063f816200071f565b6200066b565b846001600160a01b0316846001600160a01b0316146200066b576200066b8482620007d9565b5050505050565b600060016200068c846200082a60201b62000c841760201c565b62000698919062000b7e565b600083815260076020526040902054909150808214620006ec576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007339060019062000b7e565b600083815260096020526040812054600880549394509092849081106200075e576200075e62000b98565b90600052602060002001549050806008838154811062000782576200078262000b98565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620007bd57620007bd62000bae565b6001900381819060005260206000200160009055905550505050565b6000620007f1836200082a60201b62000c841760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401620001d8565b506001600160a01b031660009081526003602052604090205490565b828054620008c09062000bc4565b90600052602060002090601f016020900481019282620008e457600085556200092f565b82601f10620008ff57805160ff19168380011785556200092f565b828001600101855582156200092f579182015b828111156200092f57825182559160200191906001019062000912565b506200093d92915062000941565b5090565b5b808211156200093d576000815560010162000942565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200098b57818101518382015260200162000971565b83811115620004f95750506000910152565b600082601f830112620009af57600080fd5b81516001600160401b0380821115620009cc57620009cc62000958565b604051601f8301601f19908116603f01168101908282118183101715620009f757620009f762000958565b8160405283815286602085880101111562000a1157600080fd5b62000a248460208301602089016200096e565b9695505050505050565b6000806000806080858703121562000a4557600080fd5b84516001600160401b038082111562000a5d57600080fd5b62000a6b888389016200099d565b9550602087015191508082111562000a8257600080fd5b5062000a91878288016200099d565b604087015190945090506001600160a01b038116811462000ab157600080fd5b6060959095015193969295505050565b634e487b7160e01b600052601160045260246000fd5b600060001982141562000aee5762000aee62000ac1565b5060010190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000b348160a08501602087016200096e565b601f01601f19169190910160a00195945050505050565b60006020828403121562000b5e57600080fd5b81516001600160e01b03198116811462000b7757600080fd5b9392505050565b60008282101562000b935762000b9362000ac1565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c9082168062000bd957607f821691505b6020821081141562000bfb57634e487b7160e01b600052602260045260246000fd5b50919050565b6124b58062000c116000396000f3fe6080604052600436106101ee5760003560e01c80636817c76c1161010d578063a22cb465116100a0578063e268e4d31161006f578063e268e4d314610557578063e985e9c514610577578063f25f4b56146105c0578063f2fde38b146105e0578063f4a0a5281461060057600080fd5b8063a22cb465146104e1578063b88d4fde14610501578063c87b56dd14610521578063d5abeb011461054157600080fd5b8063715018a6116100dc578063715018a6146104795780638da5cb5b1461048e57806390d49b9d146104ac57806395d89b41146104cc57600080fd5b80636817c76c1461040e5780636c0360eb146104245780636f8b44b01461043957806370a082311461045957600080fd5b80633a602b4d11610185578063453c231011610154578063453c2310146103985780634f6ccce7146103ae57806355f804b3146103ce5780636352211e146103ee57600080fd5b80633a602b4d146103165780633ccfd60b1461034357806342842e0e1461035857806342966c681461037857600080fd5b80630d730acc116101c15780630d730acc146102a457806318160ddd146102b757806323b872dd146102d65780632f745c59146102f657600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e90565b610620565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610631565b60405161021f9190611f0c565b34801561025657600080fd5b5061026a610265366004611f1f565b6106c3565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611f4d565b6106ea565b005b6102a26102b2366004611f1f565b610805565b3480156102c357600080fd5b506008545b60405190815260200161021f565b3480156102e257600080fd5b506102a26102f1366004611f79565b6109dc565b34801561030257600080fd5b506102c8610311366004611f4d565b610a0e565b34801561032257600080fd5b506102c8610331366004611fba565b60126020526000908152604090205481565b34801561034f57600080fd5b506102a2610aa4565b34801561036457600080fd5b506102a2610373366004611f79565b610abc565b34801561038457600080fd5b506102a2610393366004611f1f565b610ad7565b3480156103a457600080fd5b506102c860105481565b3480156103ba57600080fd5b506102c86103c9366004611f1f565b610b05565b3480156103da57600080fd5b506102a26103e9366004612063565b610b98565b3480156103fa57600080fd5b5061026a610409366004611f1f565b610bb7565b34801561041a57600080fd5b506102c8600f5481565b34801561043057600080fd5b5061023d610c17565b34801561044557600080fd5b506102a2610454366004611f1f565b610c26565b34801561046557600080fd5b506102c8610474366004611fba565b610c84565b34801561048557600080fd5b506102a2610d0a565b34801561049a57600080fd5b50600a546001600160a01b031661026a565b3480156104b857600080fd5b506102a26104c7366004611fba565b610d1e565b3480156104d857600080fd5b5061023d610daf565b3480156104ed57600080fd5b506102a26104fc3660046120ac565b610dbe565b34801561050d57600080fd5b506102a261051c3660046120ea565b610dc9565b34801561052d57600080fd5b5061023d61053c366004611f1f565b610e01565b34801561054d57600080fd5b506102c8600e5481565b34801561056357600080fd5b506102a2610572366004611f1f565b610ee3565b34801561058357600080fd5b5061021361059236600461216a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105cc57600080fd5b5060115461026a906001600160a01b031681565b3480156105ec57600080fd5b506102a26105fb366004611fba565b610f30565b34801561060c57600080fd5b506102a261061b366004611f1f565b610fa6565b600061062b826110f6565b92915050565b60606000805461064090612198565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90612198565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b60006106ce8261111b565b506000908152600460205260409020546001600160a01b031690565b60006106f582610bb7565b9050806001600160a01b0316836001600160a01b031614156107685760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061078457506107848133610592565b6107f65760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161075f565b610800838361117a565b505050565b61080d6111e8565b600081116108535760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161075f565b600e548161086060085490565b61086a91906121e9565b11156108ac5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b604482015260640161075f565b336000908152601260205260409020546108c682826121e9565b336000818152601260205260409020829055600a549192506001600160a01b0390911614610986576010548111156109345760405162461bcd60e51b8152602060048201526011602482015270115e18d95959081b5a5b9d081b1a5b5a5d607a1b604482015260640161075f565b3482600f546109439190612201565b11156109865760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161075f565b60005b828110156109cd57600061099c60085490565b9050600e546109aa60085490565b10156109ba576109ba3382611242565b50806109c581612220565b915050610989565b50506109d96001600b55565b50565b6109e7335b8261125c565b610a035760405162461bcd60e51b815260040161075f9061223b565b6108008383836112db565b6000610a1983610c84565b8210610a7b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161075f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60115447906109d9906001600160a01b03168261144c565b61080083838360405180602001604052806000815250610dc9565b610ae0336109e1565b610afc5760405162461bcd60e51b815260040161075f9061223b565b6109d981611565565b6000610b1060085490565b8210610b735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161075f565b60088281548110610b8657610b86612288565b90600052602060002001549050919050565b610ba0611608565b8051610bb390600c906020840190611de1565b5050565b6000818152600260205260408120546001600160a01b03168061062b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b6060600c805461064090612198565b610c2e611608565b6008548111610c7f5760405162461bcd60e51b815260206004820152601860248201527f416c7265616479206d696e746564206d6f7265206e6674730000000000000000604482015260640161075f565b600e55565b60006001600160a01b038216610cee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161075f565b506001600160a01b031660009081526003602052604090205490565b610d12611608565b610d1c6000611662565b565b610d26611608565b610d3a6001600160a01b038216600061144c565b6011546001600160a01b0382811691161415610d8d5760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e4818dbdb999a59dd5c995960721b604482015260640161075f565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461064090612198565b610bb33383836116b4565b610dd3338361125c565b610def5760405162461bcd60e51b815260040161075f9061223b565b610dfb84848484611783565b50505050565b6060610e0c8261111b565b6000600c8054610e1b90612198565b905011610eb257600d8054610e2f90612198565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5b90612198565b8015610ea85780601f10610e7d57610100808354040283529160200191610ea8565b820191906000526020600020905b815481529060010190602001808311610e8b57829003601f168201915b505050505061062b565b600c610ebd836117b6565b604051602001610ece9291906122ba565b60405160208183030381529060405292915050565b610eeb611608565b60008111610f2b5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b604482015260640161075f565b601055565b610f38611608565b6001600160a01b038116610f9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075f565b6109d981611662565b610fae611608565b600f55565b6001600160a01b03163b151590565b60018111156110315760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161075f565b816001600160a01b03851661108d5761108881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6110b0565b836001600160a01b0316856001600160a01b0316146110b0576110b08582611853565b6001600160a01b0384166110cc576110c7816118f0565b6110ef565b846001600160a01b0316846001600160a01b0316146110ef576110ef848261199f565b5050505050565b60006001600160e01b0319821663780e9d6360e01b148061062b575061062b826119e3565b6000818152600260205260409020546001600160a01b03166109d95760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111af82610bb7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002600b54141561123b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075f565b6002600b55565b610bb3828260405180602001604052806000815250611a33565b60008061126883610bb7565b9050806001600160a01b0316846001600160a01b031614806112af57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112d35750836001600160a01b03166112c8846106c3565b6001600160a01b0316145b949350505050565b826001600160a01b03166112ee82610bb7565b6001600160a01b0316146113145760405162461bcd60e51b815260040161075f90612361565b6001600160a01b0382166113765760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161075f565b6113838383836001611a66565b826001600160a01b031661139682610bb7565b6001600160a01b0316146113bc5760405162461bcd60e51b815260040161075f90612361565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561149c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161075f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114e9576040519150601f19603f3d011682016040523d82523d6000602084013e6114ee565b606091505b50509050806108005760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161075f565b600061157082610bb7565b9050611580816000846001611a66565b61158982610bb7565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a546001600160a01b03163314610d1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117165760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61178e8484846112db565b61179a84848484611a72565b610dfb5760405162461bcd60e51b815260040161075f906123a6565b606060006117c383611b70565b600101905060008167ffffffffffffffff8111156117e3576117e3611fd7565b6040519080825280601f01601f19166020018201604052801561180d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846118465761184b565b611817565b509392505050565b6000600161186084610c84565b61186a91906123f8565b6000838152600760205260409020549091508082146118bd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611902906001906123f8565b6000838152600960205260408120546008805493945090928490811061192a5761192a612288565b90600052602060002001549050806008838154811061194b5761194b612288565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119835761198361240f565b6001900381819060005260206000200160009055905550505050565b60006119aa83610c84565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611a1457506001600160e01b03198216635b5e139f60e01b145b8061062b57506301ffc9a760e01b6001600160e01b031983161461062b565b611a3d8383611c48565b611a4a6000848484611a72565b6108005760405162461bcd60e51b815260040161075f906123a6565b610dfb84848484610fc2565b60006001600160a01b0384163b15611b6557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab6903390899088908890600401612425565b6020604051808303816000875af1925050508015611af1575060408051601f3d908101601f19168201909252611aee91810190612462565b60015b611b4b573d808015611b1f576040519150601f19603f3d011682016040523d82523d6000602084013e611b24565b606091505b508051611b435760405162461bcd60e51b815260040161075f906123a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d3565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611baf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611bdb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bf957662386f26fc10000830492506010015b6305f5e1008310611c11576305f5e100830492506008015b6127108310611c2557612710830492506004015b60648310611c37576064830492506002015b600a831061062b5760010192915050565b6001600160a01b038216611c9e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075f565b6000818152600260205260409020546001600160a01b031615611d035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b611d11600083836001611a66565b6000818152600260205260409020546001600160a01b031615611d765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ded90612198565b90600052602060002090601f016020900481019282611e0f5760008555611e55565b82601f10611e2857805160ff1916838001178555611e55565b82800160010185558215611e55579182015b82811115611e55578251825591602001919060010190611e3a565b50611e61929150611e65565b5090565b5b80821115611e615760008155600101611e66565b6001600160e01b0319811681146109d957600080fd5b600060208284031215611ea257600080fd5b8135611ead81611e7a565b9392505050565b60005b83811015611ecf578181015183820152602001611eb7565b83811115610dfb5750506000910152565b60008151808452611ef8816020860160208601611eb4565b601f01601f19169290920160200192915050565b602081526000611ead6020830184611ee0565b600060208284031215611f3157600080fd5b5035919050565b6001600160a01b03811681146109d957600080fd5b60008060408385031215611f6057600080fd5b8235611f6b81611f38565b946020939093013593505050565b600080600060608486031215611f8e57600080fd5b8335611f9981611f38565b92506020840135611fa981611f38565b929592945050506040919091013590565b600060208284031215611fcc57600080fd5b8135611ead81611f38565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200857612008611fd7565b604051601f8501601f19908116603f0116810190828211818310171561203057612030611fd7565b8160405280935085815286868601111561204957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207557600080fd5b813567ffffffffffffffff81111561208c57600080fd5b8201601f8101841361209d57600080fd5b6112d384823560208401611fed565b600080604083850312156120bf57600080fd5b82356120ca81611f38565b9150602083013580151581146120df57600080fd5b809150509250929050565b6000806000806080858703121561210057600080fd5b843561210b81611f38565b9350602085013561211b81611f38565b925060408501359150606085013567ffffffffffffffff81111561213e57600080fd5b8501601f8101871361214f57600080fd5b61215e87823560208401611fed565b91505092959194509250565b6000806040838503121561217d57600080fd5b823561218881611f38565b915060208301356120df81611f38565b600181811c908216806121ac57607f821691505b602082108114156121cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156121fc576121fc6121d3565b500190565b600081600019048311821515161561221b5761221b6121d3565b500290565b6000600019821415612234576122346121d3565b5060010190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600081516122b0818560208601611eb4565b9290920192915050565b600080845481600182811c9150808316806122d657607f831692505b60208084108214156122f657634e487b7160e01b86526022600452602486fd5b81801561230a576001811461231b57612348565b60ff19861689528489019650612348565b60008b81526020902060005b868110156123405781548b820152908501908301612327565b505084890196505b505050505050612358818561229e565b95945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008282101561240a5761240a6121d3565b500390565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245890830184611ee0565b9695505050505050565b60006020828403121561247457600080fd5b8151611ead81611e7a56fea26469706673582212204fd13f2d51bcf7c55a3555598ccc610673a510367aebc454b9289b5b0f19981164736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000032c8726f8925864989d7b857da6c65df1d99c36400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006436163747573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054361637469000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636817c76c1161010d578063a22cb465116100a0578063e268e4d31161006f578063e268e4d314610557578063e985e9c514610577578063f25f4b56146105c0578063f2fde38b146105e0578063f4a0a5281461060057600080fd5b8063a22cb465146104e1578063b88d4fde14610501578063c87b56dd14610521578063d5abeb011461054157600080fd5b8063715018a6116100dc578063715018a6146104795780638da5cb5b1461048e57806390d49b9d146104ac57806395d89b41146104cc57600080fd5b80636817c76c1461040e5780636c0360eb146104245780636f8b44b01461043957806370a082311461045957600080fd5b80633a602b4d11610185578063453c231011610154578063453c2310146103985780634f6ccce7146103ae57806355f804b3146103ce5780636352211e146103ee57600080fd5b80633a602b4d146103165780633ccfd60b1461034357806342842e0e1461035857806342966c681461037857600080fd5b80630d730acc116101c15780630d730acc146102a457806318160ddd146102b757806323b872dd146102d65780632f745c59146102f657600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e90565b610620565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610631565b60405161021f9190611f0c565b34801561025657600080fd5b5061026a610265366004611f1f565b6106c3565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611f4d565b6106ea565b005b6102a26102b2366004611f1f565b610805565b3480156102c357600080fd5b506008545b60405190815260200161021f565b3480156102e257600080fd5b506102a26102f1366004611f79565b6109dc565b34801561030257600080fd5b506102c8610311366004611f4d565b610a0e565b34801561032257600080fd5b506102c8610331366004611fba565b60126020526000908152604090205481565b34801561034f57600080fd5b506102a2610aa4565b34801561036457600080fd5b506102a2610373366004611f79565b610abc565b34801561038457600080fd5b506102a2610393366004611f1f565b610ad7565b3480156103a457600080fd5b506102c860105481565b3480156103ba57600080fd5b506102c86103c9366004611f1f565b610b05565b3480156103da57600080fd5b506102a26103e9366004612063565b610b98565b3480156103fa57600080fd5b5061026a610409366004611f1f565b610bb7565b34801561041a57600080fd5b506102c8600f5481565b34801561043057600080fd5b5061023d610c17565b34801561044557600080fd5b506102a2610454366004611f1f565b610c26565b34801561046557600080fd5b506102c8610474366004611fba565b610c84565b34801561048557600080fd5b506102a2610d0a565b34801561049a57600080fd5b50600a546001600160a01b031661026a565b3480156104b857600080fd5b506102a26104c7366004611fba565b610d1e565b3480156104d857600080fd5b5061023d610daf565b3480156104ed57600080fd5b506102a26104fc3660046120ac565b610dbe565b34801561050d57600080fd5b506102a261051c3660046120ea565b610dc9565b34801561052d57600080fd5b5061023d61053c366004611f1f565b610e01565b34801561054d57600080fd5b506102c8600e5481565b34801561056357600080fd5b506102a2610572366004611f1f565b610ee3565b34801561058357600080fd5b5061021361059236600461216a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105cc57600080fd5b5060115461026a906001600160a01b031681565b3480156105ec57600080fd5b506102a26105fb366004611fba565b610f30565b34801561060c57600080fd5b506102a261061b366004611f1f565b610fa6565b600061062b826110f6565b92915050565b60606000805461064090612198565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90612198565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b60006106ce8261111b565b506000908152600460205260409020546001600160a01b031690565b60006106f582610bb7565b9050806001600160a01b0316836001600160a01b031614156107685760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061078457506107848133610592565b6107f65760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161075f565b610800838361117a565b505050565b61080d6111e8565b600081116108535760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604482015260640161075f565b600e548161086060085490565b61086a91906121e9565b11156108ac5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b604482015260640161075f565b336000908152601260205260409020546108c682826121e9565b336000818152601260205260409020829055600a549192506001600160a01b0390911614610986576010548111156109345760405162461bcd60e51b8152602060048201526011602482015270115e18d95959081b5a5b9d081b1a5b5a5d607a1b604482015260640161075f565b3482600f546109439190612201565b11156109865760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161075f565b60005b828110156109cd57600061099c60085490565b9050600e546109aa60085490565b10156109ba576109ba3382611242565b50806109c581612220565b915050610989565b50506109d96001600b55565b50565b6109e7335b8261125c565b610a035760405162461bcd60e51b815260040161075f9061223b565b6108008383836112db565b6000610a1983610c84565b8210610a7b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161075f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60115447906109d9906001600160a01b03168261144c565b61080083838360405180602001604052806000815250610dc9565b610ae0336109e1565b610afc5760405162461bcd60e51b815260040161075f9061223b565b6109d981611565565b6000610b1060085490565b8210610b735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161075f565b60088281548110610b8657610b86612288565b90600052602060002001549050919050565b610ba0611608565b8051610bb390600c906020840190611de1565b5050565b6000818152600260205260408120546001600160a01b03168061062b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b6060600c805461064090612198565b610c2e611608565b6008548111610c7f5760405162461bcd60e51b815260206004820152601860248201527f416c7265616479206d696e746564206d6f7265206e6674730000000000000000604482015260640161075f565b600e55565b60006001600160a01b038216610cee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161075f565b506001600160a01b031660009081526003602052604090205490565b610d12611608565b610d1c6000611662565b565b610d26611608565b610d3a6001600160a01b038216600061144c565b6011546001600160a01b0382811691161415610d8d5760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e4818dbdb999a59dd5c995960721b604482015260640161075f565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461064090612198565b610bb33383836116b4565b610dd3338361125c565b610def5760405162461bcd60e51b815260040161075f9061223b565b610dfb84848484611783565b50505050565b6060610e0c8261111b565b6000600c8054610e1b90612198565b905011610eb257600d8054610e2f90612198565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5b90612198565b8015610ea85780601f10610e7d57610100808354040283529160200191610ea8565b820191906000526020600020905b815481529060010190602001808311610e8b57829003601f168201915b505050505061062b565b600c610ebd836117b6565b604051602001610ece9291906122ba565b60405160208183030381529060405292915050565b610eeb611608565b60008111610f2b5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b604482015260640161075f565b601055565b610f38611608565b6001600160a01b038116610f9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075f565b6109d981611662565b610fae611608565b600f55565b6001600160a01b03163b151590565b60018111156110315760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161075f565b816001600160a01b03851661108d5761108881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6110b0565b836001600160a01b0316856001600160a01b0316146110b0576110b08582611853565b6001600160a01b0384166110cc576110c7816118f0565b6110ef565b846001600160a01b0316846001600160a01b0316146110ef576110ef848261199f565b5050505050565b60006001600160e01b0319821663780e9d6360e01b148061062b575061062b826119e3565b6000818152600260205260409020546001600160a01b03166109d95760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111af82610bb7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002600b54141561123b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161075f565b6002600b55565b610bb3828260405180602001604052806000815250611a33565b60008061126883610bb7565b9050806001600160a01b0316846001600160a01b031614806112af57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112d35750836001600160a01b03166112c8846106c3565b6001600160a01b0316145b949350505050565b826001600160a01b03166112ee82610bb7565b6001600160a01b0316146113145760405162461bcd60e51b815260040161075f90612361565b6001600160a01b0382166113765760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161075f565b6113838383836001611a66565b826001600160a01b031661139682610bb7565b6001600160a01b0316146113bc5760405162461bcd60e51b815260040161075f90612361565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561149c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161075f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114e9576040519150601f19603f3d011682016040523d82523d6000602084013e6114ee565b606091505b50509050806108005760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161075f565b600061157082610bb7565b9050611580816000846001611a66565b61158982610bb7565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a546001600160a01b03163314610d1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117165760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61178e8484846112db565b61179a84848484611a72565b610dfb5760405162461bcd60e51b815260040161075f906123a6565b606060006117c383611b70565b600101905060008167ffffffffffffffff8111156117e3576117e3611fd7565b6040519080825280601f01601f19166020018201604052801561180d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846118465761184b565b611817565b509392505050565b6000600161186084610c84565b61186a91906123f8565b6000838152600760205260409020549091508082146118bd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611902906001906123f8565b6000838152600960205260408120546008805493945090928490811061192a5761192a612288565b90600052602060002001549050806008838154811061194b5761194b612288565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119835761198361240f565b6001900381819060005260206000200160009055905550505050565b60006119aa83610c84565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160e01b031982166380ac58cd60e01b1480611a1457506001600160e01b03198216635b5e139f60e01b145b8061062b57506301ffc9a760e01b6001600160e01b031983161461062b565b611a3d8383611c48565b611a4a6000848484611a72565b6108005760405162461bcd60e51b815260040161075f906123a6565b610dfb84848484610fc2565b60006001600160a01b0384163b15611b6557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab6903390899088908890600401612425565b6020604051808303816000875af1925050508015611af1575060408051601f3d908101601f19168201909252611aee91810190612462565b60015b611b4b573d808015611b1f576040519150601f19603f3d011682016040523d82523d6000602084013e611b24565b606091505b508051611b435760405162461bcd60e51b815260040161075f906123a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d3565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611baf5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611bdb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bf957662386f26fc10000830492506010015b6305f5e1008310611c11576305f5e100830492506008015b6127108310611c2557612710830492506004015b60648310611c37576064830492506002015b600a831061062b5760010192915050565b6001600160a01b038216611c9e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075f565b6000818152600260205260409020546001600160a01b031615611d035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b611d11600083836001611a66565b6000818152600260205260409020546001600160a01b031615611d765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ded90612198565b90600052602060002090601f016020900481019282611e0f5760008555611e55565b82601f10611e2857805160ff1916838001178555611e55565b82800160010185558215611e55579182015b82811115611e55578251825591602001919060010190611e3a565b50611e61929150611e65565b5090565b5b80821115611e615760008155600101611e66565b6001600160e01b0319811681146109d957600080fd5b600060208284031215611ea257600080fd5b8135611ead81611e7a565b9392505050565b60005b83811015611ecf578181015183820152602001611eb7565b83811115610dfb5750506000910152565b60008151808452611ef8816020860160208601611eb4565b601f01601f19169290920160200192915050565b602081526000611ead6020830184611ee0565b600060208284031215611f3157600080fd5b5035919050565b6001600160a01b03811681146109d957600080fd5b60008060408385031215611f6057600080fd5b8235611f6b81611f38565b946020939093013593505050565b600080600060608486031215611f8e57600080fd5b8335611f9981611f38565b92506020840135611fa981611f38565b929592945050506040919091013590565b600060208284031215611fcc57600080fd5b8135611ead81611f38565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561200857612008611fd7565b604051601f8501601f19908116603f0116810190828211818310171561203057612030611fd7565b8160405280935085815286868601111561204957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207557600080fd5b813567ffffffffffffffff81111561208c57600080fd5b8201601f8101841361209d57600080fd5b6112d384823560208401611fed565b600080604083850312156120bf57600080fd5b82356120ca81611f38565b9150602083013580151581146120df57600080fd5b809150509250929050565b6000806000806080858703121561210057600080fd5b843561210b81611f38565b9350602085013561211b81611f38565b925060408501359150606085013567ffffffffffffffff81111561213e57600080fd5b8501601f8101871361214f57600080fd5b61215e87823560208401611fed565b91505092959194509250565b6000806040838503121561217d57600080fd5b823561218881611f38565b915060208301356120df81611f38565b600181811c908216806121ac57607f821691505b602082108114156121cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156121fc576121fc6121d3565b500190565b600081600019048311821515161561221b5761221b6121d3565b500290565b6000600019821415612234576122346121d3565b5060010190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600081516122b0818560208601611eb4565b9290920192915050565b600080845481600182811c9150808316806122d657607f831692505b60208084108214156122f657634e487b7160e01b86526022600452602486fd5b81801561230a576001811461231b57612348565b60ff19861689528489019650612348565b60008b81526020902060005b868110156123405781548b820152908501908301612327565b505084890196505b505050505050612358818561229e565b95945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008282101561240a5761240a6121d3565b500390565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245890830184611ee0565b9695505050505050565b60006020828403121561247457600080fd5b8151611ead81611e7a56fea26469706673582212204fd13f2d51bcf7c55a3555598ccc610673a510367aebc454b9289b5b0f19981164736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000032c8726f8925864989d7b857da6c65df1d99c36400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006436163747573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054361637469000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Cactus
Arg [1] : _symbol (string): Cacti
Arg [2] : _feeWallet (address): 0x32c8726F8925864989d7b857DA6c65dF1d99C364
Arg [3] : initialReserve (uint256): 0

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000032c8726f8925864989d7b857da6c65df1d99c364
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4361637475730000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4361637469000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

66784:3818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70412:187;;;;;;;;;;-1:-1:-1;70412:187:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;70412:187:0;;;;;;;;36936:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38448:171::-;;;;;;;;;;-1:-1:-1;38448:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;38448:171:0;1550:203:1;37966:416:0;;;;;;;;;;-1:-1:-1;37966:416:0;;;;;:::i;:::-;;:::i;:::-;;67878:876;;;;;;:::i;:::-;;:::i;54961:113::-;;;;;;;;;;-1:-1:-1;55049:10:0;:17;54961:113;;;2360:25:1;;;2348:2;2333:18;54961:113:0;2214:177:1;39148:335:0;;;;;;;;;;-1:-1:-1;39148:335:0;;;;;:::i;:::-;;:::i;54629:256::-;;;;;;;;;;-1:-1:-1;54629:256:0;;;;;:::i;:::-;;:::i;67477:50::-;;;;;;;;;;-1:-1:-1;67477:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;70019:123;;;;;;;;;;;;;:::i;39554:185::-;;;;;;;;;;-1:-1:-1;39554:185:0;;;;;:::i;:::-;;:::i;60800:242::-;;;;;;;;;;-1:-1:-1;60800:242:0;;;;;:::i;:::-;;:::i;67323:31::-;;;;;;;;;;;;;;;;55151:233;;;;;;;;;;-1:-1:-1;55151:233:0;;;;;:::i;:::-;;:::i;68861:101::-;;;;;;;;;;-1:-1:-1;68861:101:0;;;;;:::i;:::-;;:::i;36646:223::-;;;;;;;;;;-1:-1:-1;36646:223:0;;;;;:::i;:::-;;:::i;67229:37::-;;;;;;;;;;;;;;;;68762:91;;;;;;;;;;;;;:::i;69456:176::-;;;;;;;;;;-1:-1:-1;69456:176:0;;;;;:::i;:::-;;:::i;36377:207::-;;;;;;;;;;-1:-1:-1;36377:207:0;;;;;:::i;:::-;;:::i;62938:103::-;;;;;;;;;;;;;:::i;62290:87::-;;;;;;;;;;-1:-1:-1;62363:6:0;;-1:-1:-1;;;;;62363:6:0;62290:87;;69750:261;;;;;;;;;;-1:-1:-1;69750:261:0;;;;;:::i;:::-;;:::i;37105:104::-;;;;;;;;;;;;;:::i;38691:155::-;;;;;;;;;;-1:-1:-1;38691:155:0;;;;;:::i;:::-;;:::i;39810:322::-;;;;;;;;;;-1:-1:-1;39810:322:0;;;;;:::i;:::-;;:::i;68970:302::-;;;;;;;;;;-1:-1:-1;68970:302:0;;;;;:::i;:::-;;:::i;67139:31::-;;;;;;;;;;;;;;;;69280:168;;;;;;;;;;-1:-1:-1;69280:168:0;;;;;:::i;:::-;;:::i;38917:164::-;;;;;;;;;;-1:-1:-1;38917:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39038:25:0;;;39014:4;39038:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38917:164;67391:32;;;;;;;;;;-1:-1:-1;67391:32:0;;;;-1:-1:-1;;;;;67391:32:0;;;63196:201;;;;;;;;;;-1:-1:-1;63196:201:0;;;;;:::i;:::-;;:::i;69640:102::-;;;;;;;;;;-1:-1:-1;69640:102:0;;;;;:::i;:::-;;:::i;70412:187::-;70531:4;70555:36;70579:11;70555:23;:36::i;:::-;70548:43;70412:187;-1:-1:-1;;70412:187:0:o;36936:100::-;36990:13;37023:5;37016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36936:100;:::o;38448:171::-;38524:7;38544:23;38559:7;38544:14;:23::i;:::-;-1:-1:-1;38587:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38587:24:0;;38448:171::o;37966:416::-;38047:13;38063:23;38078:7;38063:14;:23::i;:::-;38047:39;;38111:5;-1:-1:-1;;;;;38105:11:0;:2;-1:-1:-1;;;;;38105:11:0;;;38097:57;;;;-1:-1:-1;;;38097:57:0;;7019:2:1;38097:57:0;;;7001:21:1;7058:2;7038:18;;;7031:30;7097:34;7077:18;;;7070:62;-1:-1:-1;;;7148:18:1;;;7141:31;7189:19;;38097:57:0;;;;;;;;;10297:10;-1:-1:-1;;;;;38189:21:0;;;;:62;;-1:-1:-1;38214:37:0;38231:5;10297:10;38917:164;:::i;38214:37::-;38167:173;;;;-1:-1:-1;;;38167:173:0;;7421:2:1;38167:173:0;;;7403:21:1;7460:2;7440:18;;;7433:30;7499:34;7479:18;;;7472:62;7570:31;7550:18;;;7543:59;7619:19;;38167:173:0;7219:425:1;38167:173:0;38353:21;38362:2;38366:7;38353:8;:21::i;:::-;38036:346;37966:416;;:::o;67878:876::-;66108:21;:19;:21::i;:::-;67982:1:::1;67965:14;:18;67957:50;;;::::0;-1:-1:-1;;;67957:50:0;;7851:2:1;67957:50:0::1;::::0;::::1;7833:21:1::0;7890:2;7870:18;;;7863:30;-1:-1:-1;;;7909:18:1;;;7902:49;7968:18;;67957:50:0::1;7649:343:1::0;67957:50:0::1;68074:9;;68056:14;68040:13;55049:10:::0;:17;;54961:113;68040:13:::1;:30;;;;:::i;:::-;:43;;68018:110;;;::::0;-1:-1:-1;;;68018:110:0;;8464:2:1;68018:110:0::1;::::0;::::1;8446:21:1::0;8503:2;8483:18;;;8476:30;-1:-1:-1;;;8522:18:1;;;8515:47;8579:18;;68018:110:0::1;8262:341:1::0;68018:110:0::1;10297:10:::0;68141:19:::1;68163:29:::0;;;:15:::1;:29;::::0;;;;;68203::::1;68218:14:::0;68163:29;68203::::1;:::i;:::-;10297:10:::0;68243:29:::1;::::0;;;:15:::1;:29;::::0;;;;:43;;;62363:6;;68243:43;;-1:-1:-1;;;;;;62363:6:0;;;68303:23:::1;68299:247;;68366:12;;68351:11;:27;;68343:57;;;::::0;-1:-1:-1;;;68343:57:0;;8810:2:1;68343:57:0::1;::::0;::::1;8792:21:1::0;8849:2;8829:18;;;8822:30;-1:-1:-1;;;8868:18:1;;;8861:47;8925:18;;68343:57:0::1;8608:341:1::0;68343:57:0::1;68471:9;68453:14;68441:9;;:26;;;;:::i;:::-;:39;;68415:119;;;::::0;-1:-1:-1;;;68415:119:0;;9329:2:1;68415:119:0::1;::::0;::::1;9311:21:1::0;9368:2;9348:18;;;9341:30;-1:-1:-1;;;9387:18:1;;;9380:48;9445:18;;68415:119:0::1;9127:342:1::0;68415:119:0::1;68558:9;68578:169;68589:14;68585:1;:18;68578:169;;;68625:14;68642:13;55049:10:::0;:17;;54961:113;68642:13:::1;68625:30;;68690:9;;68674:13;55049:10:::0;:17;;54961:113;68674:13:::1;:25;68670:65;;;68701:34;10297:10:::0;68725:9:::1;68701;:34::i;:::-;-1:-1:-1::0;68605:3:0;::::1;::::0;::::1;:::i;:::-;;;;68578:169;;;67946:808;;66152:20:::0;65546:1;66672:7;:22;66489:213;66152:20;67878:876;:::o;39148:335::-;39343:41;10297:10;39362:12;39376:7;39343:18;:41::i;:::-;39335:99;;;;-1:-1:-1;;;39335:99:0;;;;;;;:::i;:::-;39447:28;39457:4;39463:2;39467:7;39447:9;:28::i;54629:256::-;54726:7;54762:23;54779:5;54762:16;:23::i;:::-;54754:5;:31;54746:87;;;;-1:-1:-1;;;54746:87:0;;10230:2:1;54746:87:0;;;10212:21:1;10269:2;10249:18;;;10242:30;10308:34;10288:18;;;10281:62;-1:-1:-1;;;10359:18:1;;;10352:41;10410:19;;54746:87:0;10028:407:1;54746:87:0;-1:-1:-1;;;;;;54851:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54629:256::o;70019:123::-;70106:9;;70074:21;;70106:28;;-1:-1:-1;;;;;70106:9:0;70074:21;70106:19;:28::i;39554:185::-;39692:39;39709:4;39715:2;39719:7;39692:39;;;;;;;;;;;;:16;:39::i;60800:242::-;60918:41;10297:10;60937:12;10217:98;60918:41;60910:99;;;;-1:-1:-1;;;60910:99:0;;;;;;;:::i;:::-;61020:14;61026:7;61020:5;:14::i;55151:233::-;55226:7;55262:30;55049:10;:17;;54961:113;55262:30;55254:5;:38;55246:95;;;;-1:-1:-1;;;55246:95:0;;10642:2:1;55246:95:0;;;10624:21:1;10681:2;10661:18;;;10654:30;10720:34;10700:18;;;10693:62;-1:-1:-1;;;10771:18:1;;;10764:42;10823:19;;55246:95:0;10440:408:1;55246:95:0;55359:10;55370:5;55359:17;;;;;;;;:::i;:::-;;;;;;;;;55352:24;;55151:233;;;:::o;68861:101::-;62176:13;:11;:13::i;:::-;68935:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68861:101:::0;:::o;36646:223::-;36718:7;41533:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41533:16:0;;36782:56;;;;-1:-1:-1;;;36782:56:0;;11187:2:1;36782:56:0;;;11169:21:1;11226:2;11206:18;;;11199:30;-1:-1:-1;;;11245:18:1;;;11238:54;11309:18;;36782:56:0;10985:348:1;68762:91:0;68804:13;68837:8;68830:15;;;;;:::i;69456:176::-;62176:13;:11;:13::i;:::-;55049:10;:17;69536:10:::1;:26;69528:63;;;::::0;-1:-1:-1;;;69528:63:0;;11540:2:1;69528:63:0::1;::::0;::::1;11522:21:1::0;11579:2;11559:18;;;11552:30;11618:26;11598:18;;;11591:54;11662:18;;69528:63:0::1;11338:348:1::0;69528:63:0::1;69602:9;:22:::0;69456:176::o;36377:207::-;36449:7;-1:-1:-1;;;;;36477:19:0;;36469:73;;;;-1:-1:-1;;;36469:73:0;;11893:2:1;36469:73:0;;;11875:21:1;11932:2;11912:18;;;11905:30;11971:34;11951:18;;;11944:62;-1:-1:-1;;;12022:18:1;;;12015:39;12071:19;;36469:73:0;11691:405:1;36469:73:0;-1:-1:-1;;;;;;36560:16:0;;;;;:9;:16;;;;;;;36377:207::o;62938:103::-;62176:13;:11;:13::i;:::-;63003:30:::1;63030:1;63003:18;:30::i;:::-;62938:103::o:0;69750:261::-;62176:13;:11;:13::i;:::-;69882:23:::1;-1:-1:-1::0;;;;;69882:20:0;::::1;69903:1;69882:20;:23::i;:::-;69924:9;::::0;-1:-1:-1;;;;;69924:23:0;;::::1;:9:::0;::::1;:23;;69916:54;;;::::0;-1:-1:-1;;;69916:54:0;;12303:2:1;69916:54:0::1;::::0;::::1;12285:21:1::0;12342:2;12322:18;;;12315:30;-1:-1:-1;;;12361:18:1;;;12354:48;12419:18;;69916:54:0::1;12101:342:1::0;69916:54:0::1;69981:9;:22:::0;;-1:-1:-1;;;;;;69981:22:0::1;-1:-1:-1::0;;;;;69981:22:0;;;::::1;::::0;;;::::1;::::0;;69750:261::o;37105:104::-;37161:13;37194:7;37187:14;;;;;:::i;38691:155::-;38786:52;10297:10;38819:8;38829;38786:18;:52::i;39810:322::-;39984:41;10297:10;40017:7;39984:18;:41::i;:::-;39976:99;;;;-1:-1:-1;;;39976:99:0;;;;;;;:::i;:::-;40086:38;40100:4;40106:2;40110:7;40119:4;40086:13;:38::i;:::-;39810:322;;;;:::o;68970:302::-;69051:13;69077:23;69092:7;69077:14;:23::i;:::-;69158:1;69139:8;69133:22;;;;;:::i;:::-;;;:26;:131;;69253:11;69133:131;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69203:8;69213:18;:7;:16;:18::i;:::-;69186:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69113:151;68970:302;-1:-1:-1;;68970:302:0:o;69280:168::-;62176:13;:11;:13::i;:::-;69382:1:::1;69366:13;:17;69358:43;;;::::0;-1:-1:-1;;;69358:43:0;;14145:2:1;69358:43:0::1;::::0;::::1;14127:21:1::0;14184:2;14164:18;;;14157:30;-1:-1:-1;;;14203:18:1;;;14196:43;14256:18;;69358:43:0::1;13943:337:1::0;69358:43:0::1;69412:12;:28:::0;69280:168::o;63196:201::-;62176:13;:11;:13::i;:::-;-1:-1:-1;;;;;63285:22:0;::::1;63277:73;;;::::0;-1:-1:-1;;;63277:73:0;;14487:2:1;63277:73:0::1;::::0;::::1;14469:21:1::0;14526:2;14506:18;;;14499:30;14565:34;14545:18;;;14538:62;-1:-1:-1;;;14616:18:1;;;14609:36;14662:19;;63277:73:0::1;14285:402:1::0;63277:73:0::1;63361:28;63380:8;63361:18;:28::i;69640:102::-:0;62176:13;:11;:13::i;:::-;69712:9:::1;:22:::0;69640:102::o;1335:326::-;-1:-1:-1;;;;;1630:19:0;;:23;;;1335:326::o;55458:915::-;55725:1;55713:9;:13;55709:222;;;55856:63;;-1:-1:-1;;;55856:63:0;;14894:2:1;55856:63:0;;;14876:21:1;14933:2;14913:18;;;14906:30;14972:34;14952:18;;;14945:62;-1:-1:-1;;;15023:18:1;;;15016:51;15084:19;;55856:63:0;14692:417:1;55709:222:0;55961:12;-1:-1:-1;;;;;55990:18:0;;55986:187;;56025:40;56057:7;57200:10;:17;;57173:24;;;;:15;:24;;;;;:44;;;57228:24;;;;;;;;;;;;57096:164;56025:40;55986:187;;;56095:2;-1:-1:-1;;;;;56087:10:0;:4;-1:-1:-1;;;;;56087:10:0;;56083:90;;56114:47;56147:4;56153:7;56114:32;:47::i;:::-;-1:-1:-1;;;;;56187:16:0;;56183:183;;56220:45;56257:7;56220:36;:45::i;:::-;56183:183;;;56293:4;-1:-1:-1;;;;;56287:10:0;:2;-1:-1:-1;;;;;56287:10:0;;56283:83;;56314:40;56342:2;56346:7;56314:27;:40::i;:::-;55624:749;55458:915;;;;:::o;54321:224::-;54423:4;-1:-1:-1;;;;;;54447:50:0;;-1:-1:-1;;;54447:50:0;;:90;;;54501:36;54525:11;54501:23;:36::i;48267:135::-;41935:4;41533:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41533:16:0;48341:53;;;;-1:-1:-1;;;48341:53:0;;11187:2:1;48341:53:0;;;11169:21:1;11226:2;11206:18;;;11199:30;-1:-1:-1;;;11245:18:1;;;11238:54;11309:18;;48341:53:0;10985:348:1;47546:174:0;47621:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47621:29:0;-1:-1:-1;;;;;47621:29:0;;;;;;;;:24;;47675:23;47621:24;47675:14;:23::i;:::-;-1:-1:-1;;;;;47666:46:0;;;;;;;;;;;47546:174;;:::o;66188:293::-;65590:1;66322:7;;:19;;66314:63;;;;-1:-1:-1;;;66314:63:0;;15316:2:1;66314:63:0;;;15298:21:1;15355:2;15335:18;;;15328:30;15394:33;15374:18;;;15367:61;15445:18;;66314:63:0;15114:355:1;66314:63:0;65590:1;66455:7;:18;66188:293::o;42771:110::-;42847:26;42857:2;42861:7;42847:26;;;;;;;;;;;;:9;:26::i;42165:264::-;42258:4;42275:13;42291:23;42306:7;42291:14;:23::i;:::-;42275:39;;42344:5;-1:-1:-1;;;;;42333:16:0;:7;-1:-1:-1;;;;;42333:16:0;;:52;;;-1:-1:-1;;;;;;39038:25:0;;;39014:4;39038:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42353:32;42333:87;;;;42413:7;-1:-1:-1;;;;;42389:31:0;:20;42401:7;42389:11;:20::i;:::-;-1:-1:-1;;;;;42389:31:0;;42333:87;42325:96;42165:264;-1:-1:-1;;;;42165:264:0:o;46164:1263::-;46323:4;-1:-1:-1;;;;;46296:31:0;:23;46311:7;46296:14;:23::i;:::-;-1:-1:-1;;;;;46296:31:0;;46288:81;;;;-1:-1:-1;;;46288:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46388:16:0;;46380:65;;;;-1:-1:-1;;;46380:65:0;;16082:2:1;46380:65:0;;;16064:21:1;16121:2;16101:18;;;16094:30;16160:34;16140:18;;;16133:62;-1:-1:-1;;;16211:18:1;;;16204:34;16255:19;;46380:65:0;15880:400:1;46380:65:0;46458:42;46479:4;46485:2;46489:7;46498:1;46458:20;:42::i;:::-;46630:4;-1:-1:-1;;;;;46603:31:0;:23;46618:7;46603:14;:23::i;:::-;-1:-1:-1;;;;;46603:31:0;;46595:81;;;;-1:-1:-1;;;46595:81:0;;;;;;;:::i;:::-;46748:24;;;;:15;:24;;;;;;;;46741:31;;-1:-1:-1;;;;;;46741:31:0;;;;;;-1:-1:-1;;;;;47224:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;47224:20:0;;;47259:13;;;;;;;;;:18;;46741:31;47259:18;;;47299:16;;;:7;:16;;;;;;:21;;;;;;;;;;47338:27;;46764:7;;47338:27;;;38036:346;37966:416;;:::o;2596:317::-;2711:6;2686:21;:31;;2678:73;;;;-1:-1:-1;;;2678:73:0;;16487:2:1;2678:73:0;;;16469:21:1;16526:2;16506:18;;;16499:30;16565:31;16545:18;;;16538:59;16614:18;;2678:73:0;16285:353:1;2678:73:0;2765:12;2783:9;-1:-1:-1;;;;;2783:14:0;2805:6;2783:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2764:52;;;2835:7;2827:78;;;;-1:-1:-1;;;2827:78:0;;17055:2:1;2827:78:0;;;17037:21:1;17094:2;17074:18;;;17067:30;17133:34;17113:18;;;17106:62;17204:28;17184:18;;;17177:56;17250:19;;2827:78:0;16853:422:1;45044:783:0;45104:13;45120:23;45135:7;45120:14;:23::i;:::-;45104:39;;45156:51;45177:5;45192:1;45196:7;45205:1;45156:20;:51::i;:::-;45320:23;45335:7;45320:14;:23::i;:::-;45391:24;;;;:15;:24;;;;;;;;45384:31;;-1:-1:-1;;;;;;45384:31:0;;;;;;-1:-1:-1;;;;;45636:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;45636:21:0;;;45686:16;;;:7;:16;;;;;;45679:23;;;;;;;45720:36;45312:31;;-1:-1:-1;45407:7:0;;45720:36;;45391:24;;45720:36;68935:19:::1;68861:101:::0;:::o;62455:132::-;62363:6;;-1:-1:-1;;;;;62363:6:0;10297:10;62519:23;62511:68;;;;-1:-1:-1;;;62511:68:0;;17482:2:1;62511:68:0;;;17464:21:1;;;17501:18;;;17494:30;17560:34;17540:18;;;17533:62;17612:18;;62511:68:0;17280:356:1;63557:191:0;63650:6;;;-1:-1:-1;;;;;63667:17:0;;;-1:-1:-1;;;;;;63667:17:0;;;;;;;63700:40;;63650:6;;;63667:17;63650:6;;63700:40;;63631:16;;63700:40;63620:128;63557:191;:::o;47863:315::-;48018:8;-1:-1:-1;;;;;48009:17:0;:5;-1:-1:-1;;;;;48009:17:0;;;48001:55;;;;-1:-1:-1;;;48001:55:0;;17843:2:1;48001:55:0;;;17825:21:1;17882:2;17862:18;;;17855:30;17921:27;17901:18;;;17894:55;17966:18;;48001:55:0;17641:349:1;48001:55:0;-1:-1:-1;;;;;48067:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;48067:46:0;;;;;;;;;;48129:41;;540::1;;;48129::0;;513:18:1;48129:41:0;;;;;;;47863:315;;;:::o;41013:313::-;41169:28;41179:4;41185:2;41189:7;41169:9;:28::i;:::-;41216:47;41239:4;41245:2;41249:7;41258:4;41216:22;:47::i;:::-;41208:110;;;;-1:-1:-1;;;41208:110:0;;;;;;;:::i;32701:716::-;32757:13;32808:14;32825:17;32836:5;32825:10;:17::i;:::-;32845:1;32825:21;32808:38;;32861:20;32895:6;32884:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32884:18:0;-1:-1:-1;32861:41:0;-1:-1:-1;33026:28:0;;;33042:2;33026:28;33083:288;-1:-1:-1;;33115:5:0;-1:-1:-1;;;33252:2:0;33241:14;;33236:30;33115:5;33223:44;33313:2;33304:11;;;-1:-1:-1;33338:10:0;33334:21;;33350:5;;33334:21;33083:288;;;-1:-1:-1;33392:6:0;32701:716;-1:-1:-1;;;32701:716:0:o;57887:988::-;58153:22;58203:1;58178:22;58195:4;58178:16;:22::i;:::-;:26;;;;:::i;:::-;58215:18;58236:26;;;:17;:26;;;;;;58153:51;;-1:-1:-1;58369:28:0;;;58365:328;;-1:-1:-1;;;;;58436:18:0;;58414:19;58436:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58487:30;;;;;;:44;;;58604:30;;:17;:30;;;;;:43;;;58365:328;-1:-1:-1;58789:26:0;;;;:17;:26;;;;;;;;58782:33;;;-1:-1:-1;;;;;58833:18:0;;;;;:12;:18;;;;;:34;;;;;;;58826:41;57887:988::o;59170:1079::-;59448:10;:17;59423:22;;59448:21;;59468:1;;59448:21;:::i;:::-;59480:18;59501:24;;;:15;:24;;;;;;59874:10;:26;;59423:46;;-1:-1:-1;59501:24:0;;59423:46;;59874:26;;;;;;:::i;:::-;;;;;;;;;59852:48;;59938:11;59913:10;59924;59913:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;60018:28;;;:15;:28;;;;;;;:41;;;60190:24;;;;;60183:31;60225:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59241:1008;;;59170:1079;:::o;56674:221::-;56759:14;56776:20;56793:2;56776:16;:20::i;:::-;-1:-1:-1;;;;;56807:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;56852:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;56674:221:0:o;36008:305::-;36110:4;-1:-1:-1;;;;;;36147:40:0;;-1:-1:-1;;;36147:40:0;;:105;;-1:-1:-1;;;;;;;36204:48:0;;-1:-1:-1;;;36204:48:0;36147:105;:158;;;-1:-1:-1;;;;;;;;;;19327:40:0;;;36269:36;19218:157;43108:319;43237:18;43243:2;43247:7;43237:5;:18::i;:::-;43288:53;43319:1;43323:2;43327:7;43336:4;43288:22;:53::i;:::-;43266:153;;;;-1:-1:-1;;;43266:153:0;;;;;;;:::i;70150:254::-;70340:56;70367:4;70373:2;70377:7;70386:9;70340:26;:56::i;48966:853::-;49120:4;-1:-1:-1;;;;;49141:13:0;;1630:19;:23;49137:675;;49177:71;;-1:-1:-1;;;49177:71:0;;-1:-1:-1;;;;;49177:36:0;;;;;:71;;10297:10;;49228:4;;49234:7;;49243:4;;49177:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49177:71:0;;;;;;;;-1:-1:-1;;49177:71:0;;;;;;;;;;;;:::i;:::-;;;49173:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49418:13:0;;49414:328;;49461:60;;-1:-1:-1;;;49461:60:0;;;;;;;:::i;49414:328::-;49692:6;49686:13;49677:6;49673:2;49669:15;49662:38;49173:584;-1:-1:-1;;;;;;49299:51:0;-1:-1:-1;;;49299:51:0;;-1:-1:-1;49292:58:0;;49137:675;-1:-1:-1;49796:4:0;48966:853;;;;;;:::o;29561:922::-;29614:7;;-1:-1:-1;;;29692:15:0;;29688:102;;-1:-1:-1;;;29728:15:0;;;-1:-1:-1;29772:2:0;29762:12;29688:102;29817:6;29808:5;:15;29804:102;;29853:6;29844:15;;;-1:-1:-1;29888:2:0;29878:12;29804:102;29933:6;29924:5;:15;29920:102;;29969:6;29960:15;;;-1:-1:-1;30004:2:0;29994:12;29920:102;30049:5;30040;:14;30036:99;;30084:5;30075:14;;;-1:-1:-1;30118:1:0;30108:11;30036:99;30162:5;30153;:14;30149:99;;30197:5;30188:14;;;-1:-1:-1;30231:1:0;30221:11;30149:99;30275:5;30266;:14;30262:99;;30310:5;30301:14;;;-1:-1:-1;30344:1:0;30334:11;30262:99;30388:5;30379;:14;30375:66;;30424:1;30414:11;30469:6;29561:922;-1:-1:-1;;29561:922:0:o;43763:942::-;-1:-1:-1;;;;;43843:16:0;;43835:61;;;;-1:-1:-1;;;43835:61:0;;19769:2:1;43835:61:0;;;19751:21:1;;;19788:18;;;19781:30;19847:34;19827:18;;;19820:62;19899:18;;43835:61:0;19567:356:1;43835:61:0;41935:4;41533:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41533:16:0;41959:31;43907:58;;;;-1:-1:-1;;;43907:58:0;;20130:2:1;43907:58:0;;;20112:21:1;20169:2;20149:18;;;20142:30;20208;20188:18;;;20181:58;20256:18;;43907:58:0;19928:352:1;43907:58:0;43978:48;44007:1;44011:2;44015:7;44024:1;43978:20;:48::i;:::-;41935:4;41533:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41533:16:0;41959:31;44116:58;;;;-1:-1:-1;;;44116:58:0;;20130:2:1;44116:58:0;;;20112:21:1;20169:2;20149:18;;;20142:30;20208;20188:18;;;20181:58;20256:18;;44116:58:0;19928:352:1;44116:58:0;-1:-1:-1;;;;;44523:13:0;;;;;;:9;:13;;;;;;;;:18;;44540:1;44523:18;;;44565:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44565:21:0;;;;;44604:33;44573:7;;44523:13;;44604:33;;44523:13;;44604:33;68935:19:::1;68861:101:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:247::-;2916:6;2969:2;2957:9;2948:7;2944:23;2940:32;2937:52;;;2985:1;2982;2975:12;2937:52;3024:9;3011:23;3043:31;3068:5;3043:31;:::i;3109:127::-;3170:10;3165:3;3161:20;3158:1;3151:31;3201:4;3198:1;3191:15;3225:4;3222:1;3215:15;3241:632;3306:5;3336:18;3377:2;3369:6;3366:14;3363:40;;;3383:18;;:::i;:::-;3458:2;3452:9;3426:2;3512:15;;-1:-1:-1;;3508:24:1;;;3534:2;3504:33;3500:42;3488:55;;;3558:18;;;3578:22;;;3555:46;3552:72;;;3604:18;;:::i;:::-;3644:10;3640:2;3633:22;3673:6;3664:15;;3703:6;3695;3688:22;3743:3;3734:6;3729:3;3725:16;3722:25;3719:45;;;3760:1;3757;3750:12;3719:45;3810:6;3805:3;3798:4;3790:6;3786:17;3773:44;3865:1;3858:4;3849:6;3841;3837:19;3833:30;3826:41;;;;3241:632;;;;;:::o;3878:451::-;3947:6;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4056:9;4043:23;4089:18;4081:6;4078:30;4075:50;;;4121:1;4118;4111:12;4075:50;4144:22;;4197:4;4189:13;;4185:27;-1:-1:-1;4175:55:1;;4226:1;4223;4216:12;4175:55;4249:74;4315:7;4310:2;4297:16;4292:2;4288;4284:11;4249:74;:::i;4594:416::-;4659:6;4667;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;4775:9;4762:23;4794:31;4819:5;4794:31;:::i;:::-;4844:5;-1:-1:-1;4901:2:1;4886:18;;4873:32;4943:15;;4936:23;4924:36;;4914:64;;4974:1;4971;4964:12;4914:64;4997:7;4987:17;;;4594:416;;;;;:::o;5015:795::-;5110:6;5118;5126;5134;5187:3;5175:9;5166:7;5162:23;5158:33;5155:53;;;5204:1;5201;5194:12;5155:53;5243:9;5230:23;5262:31;5287:5;5262:31;:::i;:::-;5312:5;-1:-1:-1;5369:2:1;5354:18;;5341:32;5382:33;5341:32;5382:33;:::i;:::-;5434:7;-1:-1:-1;5488:2:1;5473:18;;5460:32;;-1:-1:-1;5543:2:1;5528:18;;5515:32;5570:18;5559:30;;5556:50;;;5602:1;5599;5592:12;5556:50;5625:22;;5678:4;5670:13;;5666:27;-1:-1:-1;5656:55:1;;5707:1;5704;5697:12;5656:55;5730:74;5796:7;5791:2;5778:16;5773:2;5769;5765:11;5730:74;:::i;:::-;5720:84;;;5015:795;;;;;;;:::o;5815:388::-;5883:6;5891;5944:2;5932:9;5923:7;5919:23;5915:32;5912:52;;;5960:1;5957;5950:12;5912:52;5999:9;5986:23;6018:31;6043:5;6018:31;:::i;:::-;6068:5;-1:-1:-1;6125:2:1;6110:18;;6097:32;6138:33;6097:32;6138:33;:::i;6432:380::-;6511:1;6507:12;;;;6554;;;6575:61;;6629:4;6621:6;6617:17;6607:27;;6575:61;6682:2;6674:6;6671:14;6651:18;6648:38;6645:161;;;6728:10;6723:3;6719:20;6716:1;6709:31;6763:4;6760:1;6753:15;6791:4;6788:1;6781:15;6645:161;;6432:380;;;:::o;7997:127::-;8058:10;8053:3;8049:20;8046:1;8039:31;8089:4;8086:1;8079:15;8113:4;8110:1;8103:15;8129:128;8169:3;8200:1;8196:6;8193:1;8190:13;8187:39;;;8206:18;;:::i;:::-;-1:-1:-1;8242:9:1;;8129:128::o;8954:168::-;8994:7;9060:1;9056;9052:6;9048:14;9045:1;9042:21;9037:1;9030:9;9023:17;9019:45;9016:71;;;9067:18;;:::i;:::-;-1:-1:-1;9107:9:1;;8954:168::o;9474:135::-;9513:3;-1:-1:-1;;9534:17:1;;9531:43;;;9554:18;;:::i;:::-;-1:-1:-1;9601:1:1;9590:13;;9474:135::o;9614:409::-;9816:2;9798:21;;;9855:2;9835:18;;;9828:30;9894:34;9889:2;9874:18;;9867:62;-1:-1:-1;;;9960:2:1;9945:18;;9938:43;10013:3;9998:19;;9614:409::o;10853:127::-;10914:10;10909:3;10905:20;10902:1;10895:31;10945:4;10942:1;10935:15;10969:4;10966:1;10959:15;12574:185;12616:3;12654:5;12648:12;12669:52;12714:6;12709:3;12702:4;12695:5;12691:16;12669:52;:::i;:::-;12737:16;;;;;12574:185;-1:-1:-1;;12574:185:1:o;12764:1174::-;12940:3;12969:1;13002:6;12996:13;13032:3;13054:1;13082:9;13078:2;13074:18;13064:28;;13142:2;13131:9;13127:18;13164;13154:61;;13208:4;13200:6;13196:17;13186:27;;13154:61;13234:2;13282;13274:6;13271:14;13251:18;13248:38;13245:165;;;-1:-1:-1;;;13309:33:1;;13365:4;13362:1;13355:15;13395:4;13316:3;13383:17;13245:165;13426:18;13453:104;;;;13571:1;13566:320;;;;13419:467;;13453:104;-1:-1:-1;;13486:24:1;;13474:37;;13531:16;;;;-1:-1:-1;13453:104:1;;13566:320;12521:1;12514:14;;;12558:4;12545:18;;13661:1;13675:165;13689:6;13686:1;13683:13;13675:165;;;13767:14;;13754:11;;;13747:35;13810:16;;;;13704:10;;13675:165;;;13679:3;;13869:6;13864:3;13860:16;13853:23;;13419:467;;;;;;;13902:30;13928:3;13920:6;13902:30;:::i;:::-;13895:37;12764:1174;-1:-1:-1;;;;;12764:1174:1:o;15474:401::-;15676:2;15658:21;;;15715:2;15695:18;;;15688:30;15754:34;15749:2;15734:18;;15727:62;-1:-1:-1;;;15820:2:1;15805:18;;15798:35;15865:3;15850:19;;15474:401::o;17995:414::-;18197:2;18179:21;;;18236:2;18216:18;;;18209:30;18275:34;18270:2;18255:18;;18248:62;-1:-1:-1;;;18341:2:1;18326:18;;18319:48;18399:3;18384:19;;17995:414::o;18546:125::-;18586:4;18614:1;18611;18608:8;18605:34;;;18619:18;;:::i;:::-;-1:-1:-1;18656:9:1;;18546:125::o;18676:127::-;18737:10;18732:3;18728:20;18725:1;18718:31;18768:4;18765:1;18758:15;18792:4;18789:1;18782:15;18808:500;-1:-1:-1;;;;;19077:15:1;;;19059:34;;19129:15;;19124:2;19109:18;;19102:43;19176:2;19161:18;;19154:34;;;19224:3;19219:2;19204:18;;19197:31;;;19002:4;;19245:57;;19282:19;;19274:6;19245:57;:::i;:::-;19237:65;18808:500;-1:-1:-1;;;;;;18808:500:1:o;19313:249::-;19382:6;19435:2;19423:9;19414:7;19410:23;19406:32;19403:52;;;19451:1;19448;19441:12;19403:52;19483:9;19477:16;19502:30;19526:5;19502:30;:::i

Swarm Source

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