ETH Price: $2,524.80 (+0.06%)

Token

ThumbSquad (TBSD)
 

Overview

Max Total Supply

98 TBSD

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TBSD
0x2bc5d9ef0d19ebb9d97175815cae91acf8698f20
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:
ThumbSquad

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

/* 
  _______ _    _ _    _ __  __ ____   _____  ____  _    _         _____  
 |__   __| |  | | |  | |  \/  |  _ \ / ____|/ __ \| |  | |  /\   |  __ \ 
    | |  | |__| | |  | | \  / | |_) | (___ | |  | | |  | | /  \  | |  | |
    | |  |  __  | |  | | |\/| |  _ < \___ \| |  | | |  | |/ /\ \ | |  | |
    | |  | |  | | |__| | |  | | |_) |____) | |__| | |__| / ____ \| |__| |
    |_|  |_|  |_|\____/|_|  |_|____/|_____/ \___\_\\____/_/    \_\_____/ 
                                                                         
*/

pragma solidity 0.8.18;

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

// 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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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);
        }
    }
}

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, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

/**
 * @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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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);
    }

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

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

/**
 * @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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @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 {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

///////import "../IERC721.sol";

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

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

contract ThumbSquad is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI = "ipfs://bafybeia72bfgsoyczsj4glx46ihtsvxy7mbw6yndk4v74bu56c2dquaelm/";
    string public baseExtension = ".json";
    uint256 public cost = 0.01 ether;
    uint256 public maxSupply = 7777;
    uint256 public maxMintAmount = 10;
    bool public paused = false;

    constructor() ERC721("ThumbSquad", "TBSD") {
        mint(msg.sender, 10); // NFT for Owner
    }

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
		uint256 supply = totalSupply();
		require(!paused, "Minting is paused");
		require(_mintAmount > 0, "Mint amount must be greater than 0");
        require(_mintAmount <= maxMintAmount, "Mint amount exceeds maximum allowed amount");
        require(supply + _mintAmount <= maxSupply, "Exceeds maximum allowed supply");

		if (msg.sender != owner()) {
			uint256 senderSupply = balanceOf(msg.sender);
			require(senderSupply == 0 || msg.value >= cost * _mintAmount, "You must pay for minting NFTs");
			require(_mintAmount <= 5 || msg.value >= cost * _mintAmount, "You must pay for minting");
		}

		for (uint256 i = 1; i <= _mintAmount; i++) {
			_safeMint(_to, supply + i);
		}

    }

    function walletOfOwner(
        address _owner
    ) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

    function setBaseExtension(
        string memory _newBaseExtension
    ) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintAmount","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6101006040526043608081815290620032c160a039600b9062000023908262000c9e565b50604080518082019091526005815264173539b7b760d91b6020820152600c906200004f908262000c9e565b50662386f26fc10000600d55611e61600e55600a600f556010805460ff191690553480156200007d57600080fd5b506040518060400160405280600a815260200169151a1d5b5894dc5d585960b21b81525060405180604001604052806004815260200163151094d160e21b8152508160009081620000cf919062000c9e565b506001620000de828262000c9e565b505050620000fb620000f56200010e60201b60201c565b62000112565b6200010833600a62000164565b62000eba565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006200017060085490565b60105490915060ff1615620001c05760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064015b60405180910390fd5b600082116200021d5760405162461bcd60e51b815260206004820152602260248201527f4d696e7420616d6f756e74206d7573742062652067726561746572207468616e604482015261020360f41b6064820152608401620001b7565b600f54821115620002845760405162461bcd60e51b815260206004820152602a60248201527f4d696e7420616d6f756e742065786365656473206d6178696d756d20616c6c6f6044820152691dd95908185b5bdd5b9d60b21b6064820152608401620001b7565b600e5462000293838362000d80565b1115620002e35760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d20616c6c6f77656420737570706c7900006044820152606401620001b7565b600a546001600160a01b03163314620003e057600062000303336200041d565b905080158062000322575082600d546200031e919062000d9c565b3410155b620003705760405162461bcd60e51b815260206004820152601d60248201527f596f75206d7573742070617920666f72206d696e74696e67204e4654730000006044820152606401620001b7565b60058311158062000390575082600d546200038c919062000d9c565b3410155b620003de5760405162461bcd60e51b815260206004820152601860248201527f596f75206d7573742070617920666f72206d696e74696e6700000000000000006044820152606401620001b7565b505b60015b82811162000417576200040284620003fc838562000d80565b620004a5565b806200040e8162000db6565b915050620003e3565b50505050565b60006001600160a01b038216620004895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401620001b7565b506001600160a01b031660009081526003602052604090205490565b620004c7828260405180602001604052806000815250620004cb60201b60201c565b5050565b620004d7838362000543565b620004e66000848484620006e4565b6200053e5760405162461bcd60e51b81526020600482015260326024820152600080516020620032a183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001b7565b505050565b6001600160a01b0382166200059b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001b7565b6000818152600260205260409020546001600160a01b031615620006025760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001b7565b6200061260008383600162000840565b6000818152600260205260409020546001600160a01b031615620006795760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001b7565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000705846001600160a01b0316620009a460201b620010471760201c565b156200083457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200073f90339089908890889060040162000dd2565b6020604051808303816000875af19250505080156200077d575060408051601f3d908101601f191682019092526200077a9181019062000e45565b60015b62000819573d808015620007ae576040519150601f19603f3d011682016040523d82523d6000602084013e620007b3565b606091505b508051600003620008115760405162461bcd60e51b81526020600482015260326024820152600080516020620032a183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000838565b5060015b949350505050565b6200085984848484620009b360201b620010561760201c565b6001811115620008d25760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401620001b7565b816001600160a01b03851662000931576200092b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000957565b836001600160a01b0316856001600160a01b031614620009575762000957858262000a42565b6001600160a01b0384166200097757620009718162000aef565b6200099d565b846001600160a01b0316846001600160a01b0316146200099d576200099d848262000ba9565b5050505050565b6001600160a01b03163b151590565b600181111562000417576001600160a01b03841615620009fd576001600160a01b03841660009081526003602052604081208054839290620009f790849062000e78565b90915550505b6001600160a01b0383161562000417576001600160a01b0383166000908152600360205260408120805483929062000a3790849062000d80565b909155505050505050565b6000600162000a5c846200041d60201b62000dc11760201c565b62000a68919062000e78565b60008381526007602052604090205490915080821462000abc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000b039060019062000e78565b6000838152600960205260408120546008805493945090928490811062000b2e5762000b2e62000e8e565b90600052602060002001549050806008838154811062000b525762000b5262000e8e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b8d5762000b8d62000ea4565b6001900381819060005260206000200160009055905550505050565b600062000bc1836200041d60201b62000dc11760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000c2557607f821691505b60208210810362000c4657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200053e57600081815260208120601f850160051c8101602086101562000c755750805b601f850160051c820191505b8181101562000c965782815560010162000c81565b505050505050565b81516001600160401b0381111562000cba5762000cba62000bfa565b62000cd28162000ccb845462000c10565b8462000c4c565b602080601f83116001811462000d0a576000841562000cf15750858301515b600019600386901b1c1916600185901b17855562000c96565b600085815260208120601f198616915b8281101562000d3b5788860151825594840194600190910190840162000d1a565b508582101562000d5a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000d965762000d9662000d6a565b92915050565b808202811582820484141762000d965762000d9662000d6a565b60006001820162000dcb5762000dcb62000d6a565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000e215785810182015185820160a00152810162000e03565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b60006020828403121562000e5857600080fd5b81516001600160e01b03198116811462000e7157600080fd5b9392505050565b8181038181111562000d965762000d9662000d6a565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6123d78062000eca6000396000f3fe6080604052600436106101ae5760003560e01c806355f804b3116100ed57806395d89b411161009057806395d89b411461049d578063a22cb465146104b2578063b88d4fde146104d2578063c6682862146104f2578063c87b56dd14610507578063d5abeb0114610527578063da3ef23f1461053d578063e985e9c51461055d578063f2fde38b1461057d57600080fd5b806355f804b3146103bb5780635c975abb146103db5780636352211e146103f55780636c0360eb1461041557806370a082311461042a578063715018a61461044a5780637f00c7a61461045f5780638da5cb5b1461047f57600080fd5b806323b872dd1161015557806323b872dd146102d35780632f745c59146102f35780633ccfd60b1461031357806340c10f191461031b57806342842e0e1461032e578063438b63001461034e57806344a0d68a1461037b5780634f6ccce71461039b57600080fd5b806301ffc9a7146101b357806302329a29146101e857806306fdde031461020a578063081812fc1461022c578063095ea7b31461026457806313faede61461028457806318160ddd146102a8578063239c70ae146102bd575b600080fd5b3480156101bf57600080fd5b506101d36101ce366004611c27565b61059d565b60405190151581526020015b60405180910390f35b3480156101f457600080fd5b50610208610203366004611c59565b6105c8565b005b34801561021657600080fd5b5061021f6105e3565b6040516101df9190611cc4565b34801561023857600080fd5b5061024c610247366004611cd7565b610675565b6040516001600160a01b0390911681526020016101df565b34801561027057600080fd5b5061020861027f366004611d07565b61069c565b34801561029057600080fd5b5061029a600d5481565b6040519081526020016101df565b3480156102b457600080fd5b5060085461029a565b3480156102c957600080fd5b5061029a600f5481565b3480156102df57600080fd5b506102086102ee366004611d31565b6107b6565b3480156102ff57600080fd5b5061029a61030e366004611d07565b6107e7565b61020861087d565b610208610329366004611d07565b6108f9565b34801561033a57600080fd5b50610208610349366004611d31565b610b89565b34801561035a57600080fd5b5061036e610369366004611d6d565b610ba4565b6040516101df9190611d88565b34801561038757600080fd5b50610208610396366004611cd7565b610c46565b3480156103a757600080fd5b5061029a6103b6366004611cd7565b610c53565b3480156103c757600080fd5b506102086103d6366004611e58565b610ce6565b3480156103e757600080fd5b506010546101d39060ff1681565b34801561040157600080fd5b5061024c610410366004611cd7565b610cfe565b34801561042157600080fd5b5061021f610d33565b34801561043657600080fd5b5061029a610445366004611d6d565b610dc1565b34801561045657600080fd5b50610208610e47565b34801561046b57600080fd5b5061020861047a366004611cd7565b610e5b565b34801561048b57600080fd5b50600a546001600160a01b031661024c565b3480156104a957600080fd5b5061021f610e68565b3480156104be57600080fd5b506102086104cd366004611ea1565b610e77565b3480156104de57600080fd5b506102086104ed366004611ed4565b610e82565b3480156104fe57600080fd5b5061021f610eb4565b34801561051357600080fd5b5061021f610522366004611cd7565b610ec1565b34801561053357600080fd5b5061029a600e5481565b34801561054957600080fd5b50610208610558366004611e58565b610f8f565b34801561056957600080fd5b506101d3610578366004611f50565b610fa3565b34801561058957600080fd5b50610208610598366004611d6d565b610fd1565b60006001600160e01b0319821663780e9d6360e01b14806105c257506105c2826110de565b92915050565b6105d061112e565b6010805460ff1916911515919091179055565b6060600080546105f290611f7a565b80601f016020809104026020016040519081016040528092919081815260200182805461061e90611f7a565b801561066b5780601f106106405761010080835404028352916020019161066b565b820191906000526020600020905b81548152906001019060200180831161064e57829003601f168201915b5050505050905090565b600061068082611188565b506000908152600460205260409020546001600160a01b031690565b60006106a782610cfe565b9050806001600160a01b0316836001600160a01b0316036107195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061073557506107358133610fa3565b6107a75760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610710565b6107b183836111ad565b505050565b6107c0338261121b565b6107dc5760405162461bcd60e51b815260040161071090611fb4565b6107b183838361127a565b60006107f283610dc1565b82106108545760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610710565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088561112e565b6000610899600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108e3576040519150601f19603f3d011682016040523d82523d6000602084013e6108e8565b606091505b50509050806108f657600080fd5b50565b600061090460085490565b60105490915060ff161561094e5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610710565b600082116109a95760405162461bcd60e51b815260206004820152602260248201527f4d696e7420616d6f756e74206d7573742062652067726561746572207468616e604482015261020360f41b6064820152608401610710565b600f54821115610a0e5760405162461bcd60e51b815260206004820152602a60248201527f4d696e7420616d6f756e742065786365656473206d6178696d756d20616c6c6f6044820152691dd95908185b5bdd5b9d60b21b6064820152608401610710565b600e54610a1b8383612017565b1115610a695760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d20616c6c6f77656420737570706c7900006044820152606401610710565b600a546001600160a01b03163314610b54576000610a8633610dc1565b9050801580610aa2575082600d54610a9e919061202a565b3410155b610aee5760405162461bcd60e51b815260206004820152601d60248201527f596f75206d7573742070617920666f72206d696e74696e67204e4654730000006044820152606401610710565b600583111580610b0b575082600d54610b07919061202a565b3410155b610b525760405162461bcd60e51b8152602060048201526018602482015277596f75206d7573742070617920666f72206d696e74696e6760401b6044820152606401610710565b505b60015b828111610b8357610b7184610b6c8385612017565b6113eb565b80610b7b81612041565b915050610b57565b50505050565b6107b183838360405180602001604052806000815250610e82565b60606000610bb183610dc1565b905060008167ffffffffffffffff811115610bce57610bce611dcc565b604051908082528060200260200182016040528015610bf7578160200160208202803683370190505b50905060005b82811015610c3e57610c0f85826107e7565b828281518110610c2157610c2161205a565b602090810291909101015280610c3681612041565b915050610bfd565b509392505050565b610c4e61112e565b600d55565b6000610c5e60085490565b8210610cc15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610710565b60088281548110610cd457610cd461205a565b90600052602060002001549050919050565b610cee61112e565b600b610cfa82826120be565b5050565b6000818152600260205260408120546001600160a01b0316806105c25760405162461bcd60e51b81526004016107109061217e565b600b8054610d4090611f7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6c90611f7a565b8015610db95780601f10610d8e57610100808354040283529160200191610db9565b820191906000526020600020905b815481529060010190602001808311610d9c57829003601f168201915b505050505081565b60006001600160a01b038216610e2b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610710565b506001600160a01b031660009081526003602052604090205490565b610e4f61112e565b610e596000611405565b565b610e6361112e565b600f55565b6060600180546105f290611f7a565b610cfa338383611457565b610e8c338361121b565b610ea85760405162461bcd60e51b815260040161071090611fb4565b610b8384848484611521565b600c8054610d4090611f7a565b6060610ecc82611554565b610f305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610710565b6000610f3a611571565b90506000815111610f5a5760405180602001604052806000815250610f88565b80610f6484611580565b600c604051602001610f78939291906121b0565b6040516020818303038152906040525b9392505050565b610f9761112e565b600c610cfa82826120be565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610fd961112e565b6001600160a01b03811661103e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610710565b6108f681611405565b6001600160a01b03163b151590565b6001811115610b83576001600160a01b0384161561109c576001600160a01b03841660009081526003602052604081208054839290611096908490612250565b90915550505b6001600160a01b03831615610b83576001600160a01b038316600090815260036020526040812080548392906110d3908490612017565b909155505050505050565b60006001600160e01b031982166380ac58cd60e01b148061110f57506001600160e01b03198216635b5e139f60e01b145b806105c257506301ffc9a760e01b6001600160e01b03198316146105c2565b600a546001600160a01b03163314610e595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b61119181611554565b6108f65760405162461bcd60e51b81526004016107109061217e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111e282610cfe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061122783610cfe565b9050806001600160a01b0316846001600160a01b0316148061124e575061124e8185610fa3565b806112725750836001600160a01b031661126784610675565b6001600160a01b0316145b949350505050565b826001600160a01b031661128d82610cfe565b6001600160a01b0316146112b35760405162461bcd60e51b815260040161071090612263565b6001600160a01b0382166113155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610710565b6113228383836001611613565b826001600160a01b031661133582610cfe565b6001600160a01b03161461135b5760405162461bcd60e51b815260040161071090612263565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cfa828260405180602001604052806000815250611753565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036114b45760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610710565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61152c84848461127a565b61153884848484611786565b610b835760405162461bcd60e51b8152600401610710906122a8565b6000908152600260205260409020546001600160a01b0316151590565b6060600b80546105f290611f7a565b6060600061158d8361188e565b600101905060008167ffffffffffffffff8111156115ad576115ad611dcc565b6040519080825280601f01601f1916602001820160405280156115d7576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115e157509392505050565b61161f84848484611056565b600181111561168e5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610710565b816001600160a01b0385166116ea576116e581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61170d565b836001600160a01b0316856001600160a01b03161461170d5761170d8582611966565b6001600160a01b0384166117295761172481611a03565b61174c565b846001600160a01b0316846001600160a01b03161461174c5761174c8482611ab2565b5050505050565b61175d8383611af6565b61176a6000848484611786565b6107b15760405162461bcd60e51b8152600401610710906122a8565b600061179a846001600160a01b0316611047565b1561188357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117d19033908990889088906004016122fa565b6020604051808303816000875af192505050801561180c575060408051601f3d908101601f1916820190925261180991810190612337565b60015b611869573d80801561183a576040519150601f19603f3d011682016040523d82523d6000602084013e61183f565b606091505b5080516000036118615760405162461bcd60e51b8152600401610710906122a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611272565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118cd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106118f9576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061191757662386f26fc10000830492506010015b6305f5e100831061192f576305f5e100830492506008015b612710831061194357612710830492506004015b60648310611955576064830492506002015b600a83106105c25760010192915050565b6000600161197384610dc1565b61197d9190612250565b6000838152600760205260409020549091508082146119d0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a1590600190612250565b60008381526009602052604081205460088054939450909284908110611a3d57611a3d61205a565b906000526020600020015490508060088381548110611a5e57611a5e61205a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a9657611a96612354565b6001900381819060005260206000200160009055905550505050565b6000611abd83610dc1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b4c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610710565b611b5581611554565b15611b725760405162461bcd60e51b81526004016107109061236a565b611b80600083836001611613565b611b8981611554565b15611ba65760405162461bcd60e51b81526004016107109061236a565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146108f657600080fd5b600060208284031215611c3957600080fd5b8135610f8881611c11565b80358015158114611c5457600080fd5b919050565b600060208284031215611c6b57600080fd5b610f8882611c44565b60005b83811015611c8f578181015183820152602001611c77565b50506000910152565b60008151808452611cb0816020860160208601611c74565b601f01601f19169290920160200192915050565b602081526000610f886020830184611c98565b600060208284031215611ce957600080fd5b5035919050565b80356001600160a01b0381168114611c5457600080fd5b60008060408385031215611d1a57600080fd5b611d2383611cf0565b946020939093013593505050565b600080600060608486031215611d4657600080fd5b611d4f84611cf0565b9250611d5d60208501611cf0565b9150604084013590509250925092565b600060208284031215611d7f57600080fd5b610f8882611cf0565b6020808252825182820181905260009190848201906040850190845b81811015611dc057835183529284019291840191600101611da4565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dfd57611dfd611dcc565b604051601f8501601f19908116603f01168101908282118183101715611e2557611e25611dcc565b81604052809350858152868686011115611e3e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e6a57600080fd5b813567ffffffffffffffff811115611e8157600080fd5b8201601f81018413611e9257600080fd5b61127284823560208401611de2565b60008060408385031215611eb457600080fd5b611ebd83611cf0565b9150611ecb60208401611c44565b90509250929050565b60008060008060808587031215611eea57600080fd5b611ef385611cf0565b9350611f0160208601611cf0565b925060408501359150606085013567ffffffffffffffff811115611f2457600080fd5b8501601f81018713611f3557600080fd5b611f4487823560208401611de2565b91505092959194509250565b60008060408385031215611f6357600080fd5b611f6c83611cf0565b9150611ecb60208401611cf0565b600181811c90821680611f8e57607f821691505b602082108103611fae57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105c2576105c2612001565b80820281158282048414176105c2576105c2612001565b60006001820161205357612053612001565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156107b157600081815260208120601f850160051c810160208610156120975750805b601f850160051c820191505b818110156120b6578281556001016120a3565b505050505050565b815167ffffffffffffffff8111156120d8576120d8611dcc565b6120ec816120e68454611f7a565b84612070565b602080601f83116001811461212157600084156121095750858301515b600019600386901b1c1916600185901b1785556120b6565b600085815260208120601f198616915b8281101561215057888601518255948401946001909101908401612131565b508582101561216e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6000845160206121c38285838a01611c74565b8551918401916121d68184848a01611c74565b85549201916000906121e781611f7a565b600182811680156121ff576001811461221457612240565b60ff1984168752821515830287019450612240565b896000528560002060005b848110156122385781548982015290830190870161221f565b505082870194505b50929a9950505050505050505050565b818103818111156105c2576105c2612001565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232d90830184611c98565b9695505050505050565b60006020828403121561234957600080fd5b8151610f8881611c11565b634e487b7160e01b600052603160045260246000fd5b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060408201526060019056fea2646970667358221220864c443b96332cba8eca65effac2958735d463003ee367d3c05516c2d9b4bb6a64736f6c634300081200334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f62616679626569613732626667736f79637a736a34676c78343669687473767879376d627736796e646b3476373462753536633264717561656c6d2f

Deployed Bytecode

0x6080604052600436106101ae5760003560e01c806355f804b3116100ed57806395d89b411161009057806395d89b411461049d578063a22cb465146104b2578063b88d4fde146104d2578063c6682862146104f2578063c87b56dd14610507578063d5abeb0114610527578063da3ef23f1461053d578063e985e9c51461055d578063f2fde38b1461057d57600080fd5b806355f804b3146103bb5780635c975abb146103db5780636352211e146103f55780636c0360eb1461041557806370a082311461042a578063715018a61461044a5780637f00c7a61461045f5780638da5cb5b1461047f57600080fd5b806323b872dd1161015557806323b872dd146102d35780632f745c59146102f35780633ccfd60b1461031357806340c10f191461031b57806342842e0e1461032e578063438b63001461034e57806344a0d68a1461037b5780634f6ccce71461039b57600080fd5b806301ffc9a7146101b357806302329a29146101e857806306fdde031461020a578063081812fc1461022c578063095ea7b31461026457806313faede61461028457806318160ddd146102a8578063239c70ae146102bd575b600080fd5b3480156101bf57600080fd5b506101d36101ce366004611c27565b61059d565b60405190151581526020015b60405180910390f35b3480156101f457600080fd5b50610208610203366004611c59565b6105c8565b005b34801561021657600080fd5b5061021f6105e3565b6040516101df9190611cc4565b34801561023857600080fd5b5061024c610247366004611cd7565b610675565b6040516001600160a01b0390911681526020016101df565b34801561027057600080fd5b5061020861027f366004611d07565b61069c565b34801561029057600080fd5b5061029a600d5481565b6040519081526020016101df565b3480156102b457600080fd5b5060085461029a565b3480156102c957600080fd5b5061029a600f5481565b3480156102df57600080fd5b506102086102ee366004611d31565b6107b6565b3480156102ff57600080fd5b5061029a61030e366004611d07565b6107e7565b61020861087d565b610208610329366004611d07565b6108f9565b34801561033a57600080fd5b50610208610349366004611d31565b610b89565b34801561035a57600080fd5b5061036e610369366004611d6d565b610ba4565b6040516101df9190611d88565b34801561038757600080fd5b50610208610396366004611cd7565b610c46565b3480156103a757600080fd5b5061029a6103b6366004611cd7565b610c53565b3480156103c757600080fd5b506102086103d6366004611e58565b610ce6565b3480156103e757600080fd5b506010546101d39060ff1681565b34801561040157600080fd5b5061024c610410366004611cd7565b610cfe565b34801561042157600080fd5b5061021f610d33565b34801561043657600080fd5b5061029a610445366004611d6d565b610dc1565b34801561045657600080fd5b50610208610e47565b34801561046b57600080fd5b5061020861047a366004611cd7565b610e5b565b34801561048b57600080fd5b50600a546001600160a01b031661024c565b3480156104a957600080fd5b5061021f610e68565b3480156104be57600080fd5b506102086104cd366004611ea1565b610e77565b3480156104de57600080fd5b506102086104ed366004611ed4565b610e82565b3480156104fe57600080fd5b5061021f610eb4565b34801561051357600080fd5b5061021f610522366004611cd7565b610ec1565b34801561053357600080fd5b5061029a600e5481565b34801561054957600080fd5b50610208610558366004611e58565b610f8f565b34801561056957600080fd5b506101d3610578366004611f50565b610fa3565b34801561058957600080fd5b50610208610598366004611d6d565b610fd1565b60006001600160e01b0319821663780e9d6360e01b14806105c257506105c2826110de565b92915050565b6105d061112e565b6010805460ff1916911515919091179055565b6060600080546105f290611f7a565b80601f016020809104026020016040519081016040528092919081815260200182805461061e90611f7a565b801561066b5780601f106106405761010080835404028352916020019161066b565b820191906000526020600020905b81548152906001019060200180831161064e57829003601f168201915b5050505050905090565b600061068082611188565b506000908152600460205260409020546001600160a01b031690565b60006106a782610cfe565b9050806001600160a01b0316836001600160a01b0316036107195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061073557506107358133610fa3565b6107a75760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610710565b6107b183836111ad565b505050565b6107c0338261121b565b6107dc5760405162461bcd60e51b815260040161071090611fb4565b6107b183838361127a565b60006107f283610dc1565b82106108545760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610710565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088561112e565b6000610899600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108e3576040519150601f19603f3d011682016040523d82523d6000602084013e6108e8565b606091505b50509050806108f657600080fd5b50565b600061090460085490565b60105490915060ff161561094e5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610710565b600082116109a95760405162461bcd60e51b815260206004820152602260248201527f4d696e7420616d6f756e74206d7573742062652067726561746572207468616e604482015261020360f41b6064820152608401610710565b600f54821115610a0e5760405162461bcd60e51b815260206004820152602a60248201527f4d696e7420616d6f756e742065786365656473206d6178696d756d20616c6c6f6044820152691dd95908185b5bdd5b9d60b21b6064820152608401610710565b600e54610a1b8383612017565b1115610a695760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d20616c6c6f77656420737570706c7900006044820152606401610710565b600a546001600160a01b03163314610b54576000610a8633610dc1565b9050801580610aa2575082600d54610a9e919061202a565b3410155b610aee5760405162461bcd60e51b815260206004820152601d60248201527f596f75206d7573742070617920666f72206d696e74696e67204e4654730000006044820152606401610710565b600583111580610b0b575082600d54610b07919061202a565b3410155b610b525760405162461bcd60e51b8152602060048201526018602482015277596f75206d7573742070617920666f72206d696e74696e6760401b6044820152606401610710565b505b60015b828111610b8357610b7184610b6c8385612017565b6113eb565b80610b7b81612041565b915050610b57565b50505050565b6107b183838360405180602001604052806000815250610e82565b60606000610bb183610dc1565b905060008167ffffffffffffffff811115610bce57610bce611dcc565b604051908082528060200260200182016040528015610bf7578160200160208202803683370190505b50905060005b82811015610c3e57610c0f85826107e7565b828281518110610c2157610c2161205a565b602090810291909101015280610c3681612041565b915050610bfd565b509392505050565b610c4e61112e565b600d55565b6000610c5e60085490565b8210610cc15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610710565b60088281548110610cd457610cd461205a565b90600052602060002001549050919050565b610cee61112e565b600b610cfa82826120be565b5050565b6000818152600260205260408120546001600160a01b0316806105c25760405162461bcd60e51b81526004016107109061217e565b600b8054610d4090611f7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6c90611f7a565b8015610db95780601f10610d8e57610100808354040283529160200191610db9565b820191906000526020600020905b815481529060010190602001808311610d9c57829003601f168201915b505050505081565b60006001600160a01b038216610e2b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610710565b506001600160a01b031660009081526003602052604090205490565b610e4f61112e565b610e596000611405565b565b610e6361112e565b600f55565b6060600180546105f290611f7a565b610cfa338383611457565b610e8c338361121b565b610ea85760405162461bcd60e51b815260040161071090611fb4565b610b8384848484611521565b600c8054610d4090611f7a565b6060610ecc82611554565b610f305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610710565b6000610f3a611571565b90506000815111610f5a5760405180602001604052806000815250610f88565b80610f6484611580565b600c604051602001610f78939291906121b0565b6040516020818303038152906040525b9392505050565b610f9761112e565b600c610cfa82826120be565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610fd961112e565b6001600160a01b03811661103e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610710565b6108f681611405565b6001600160a01b03163b151590565b6001811115610b83576001600160a01b0384161561109c576001600160a01b03841660009081526003602052604081208054839290611096908490612250565b90915550505b6001600160a01b03831615610b83576001600160a01b038316600090815260036020526040812080548392906110d3908490612017565b909155505050505050565b60006001600160e01b031982166380ac58cd60e01b148061110f57506001600160e01b03198216635b5e139f60e01b145b806105c257506301ffc9a760e01b6001600160e01b03198316146105c2565b600a546001600160a01b03163314610e595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610710565b61119181611554565b6108f65760405162461bcd60e51b81526004016107109061217e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111e282610cfe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061122783610cfe565b9050806001600160a01b0316846001600160a01b0316148061124e575061124e8185610fa3565b806112725750836001600160a01b031661126784610675565b6001600160a01b0316145b949350505050565b826001600160a01b031661128d82610cfe565b6001600160a01b0316146112b35760405162461bcd60e51b815260040161071090612263565b6001600160a01b0382166113155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610710565b6113228383836001611613565b826001600160a01b031661133582610cfe565b6001600160a01b03161461135b5760405162461bcd60e51b815260040161071090612263565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cfa828260405180602001604052806000815250611753565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036114b45760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610710565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61152c84848461127a565b61153884848484611786565b610b835760405162461bcd60e51b8152600401610710906122a8565b6000908152600260205260409020546001600160a01b0316151590565b6060600b80546105f290611f7a565b6060600061158d8361188e565b600101905060008167ffffffffffffffff8111156115ad576115ad611dcc565b6040519080825280601f01601f1916602001820160405280156115d7576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115e157509392505050565b61161f84848484611056565b600181111561168e5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610710565b816001600160a01b0385166116ea576116e581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61170d565b836001600160a01b0316856001600160a01b03161461170d5761170d8582611966565b6001600160a01b0384166117295761172481611a03565b61174c565b846001600160a01b0316846001600160a01b03161461174c5761174c8482611ab2565b5050505050565b61175d8383611af6565b61176a6000848484611786565b6107b15760405162461bcd60e51b8152600401610710906122a8565b600061179a846001600160a01b0316611047565b1561188357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117d19033908990889088906004016122fa565b6020604051808303816000875af192505050801561180c575060408051601f3d908101601f1916820190925261180991810190612337565b60015b611869573d80801561183a576040519150601f19603f3d011682016040523d82523d6000602084013e61183f565b606091505b5080516000036118615760405162461bcd60e51b8152600401610710906122a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611272565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106118cd5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106118f9576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061191757662386f26fc10000830492506010015b6305f5e100831061192f576305f5e100830492506008015b612710831061194357612710830492506004015b60648310611955576064830492506002015b600a83106105c25760010192915050565b6000600161197384610dc1565b61197d9190612250565b6000838152600760205260409020549091508082146119d0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a1590600190612250565b60008381526009602052604081205460088054939450909284908110611a3d57611a3d61205a565b906000526020600020015490508060088381548110611a5e57611a5e61205a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a9657611a96612354565b6001900381819060005260206000200160009055905550505050565b6000611abd83610dc1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b4c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610710565b611b5581611554565b15611b725760405162461bcd60e51b81526004016107109061236a565b611b80600083836001611613565b611b8981611554565b15611ba65760405162461bcd60e51b81526004016107109061236a565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146108f657600080fd5b600060208284031215611c3957600080fd5b8135610f8881611c11565b80358015158114611c5457600080fd5b919050565b600060208284031215611c6b57600080fd5b610f8882611c44565b60005b83811015611c8f578181015183820152602001611c77565b50506000910152565b60008151808452611cb0816020860160208601611c74565b601f01601f19169290920160200192915050565b602081526000610f886020830184611c98565b600060208284031215611ce957600080fd5b5035919050565b80356001600160a01b0381168114611c5457600080fd5b60008060408385031215611d1a57600080fd5b611d2383611cf0565b946020939093013593505050565b600080600060608486031215611d4657600080fd5b611d4f84611cf0565b9250611d5d60208501611cf0565b9150604084013590509250925092565b600060208284031215611d7f57600080fd5b610f8882611cf0565b6020808252825182820181905260009190848201906040850190845b81811015611dc057835183529284019291840191600101611da4565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dfd57611dfd611dcc565b604051601f8501601f19908116603f01168101908282118183101715611e2557611e25611dcc565b81604052809350858152868686011115611e3e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e6a57600080fd5b813567ffffffffffffffff811115611e8157600080fd5b8201601f81018413611e9257600080fd5b61127284823560208401611de2565b60008060408385031215611eb457600080fd5b611ebd83611cf0565b9150611ecb60208401611c44565b90509250929050565b60008060008060808587031215611eea57600080fd5b611ef385611cf0565b9350611f0160208601611cf0565b925060408501359150606085013567ffffffffffffffff811115611f2457600080fd5b8501601f81018713611f3557600080fd5b611f4487823560208401611de2565b91505092959194509250565b60008060408385031215611f6357600080fd5b611f6c83611cf0565b9150611ecb60208401611cf0565b600181811c90821680611f8e57607f821691505b602082108103611fae57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105c2576105c2612001565b80820281158282048414176105c2576105c2612001565b60006001820161205357612053612001565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156107b157600081815260208120601f850160051c810160208610156120975750805b601f850160051c820191505b818110156120b6578281556001016120a3565b505050505050565b815167ffffffffffffffff8111156120d8576120d8611dcc565b6120ec816120e68454611f7a565b84612070565b602080601f83116001811461212157600084156121095750858301515b600019600386901b1c1916600185901b1785556120b6565b600085815260208120601f198616915b8281101561215057888601518255948401946001909101908401612131565b508582101561216e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6000845160206121c38285838a01611c74565b8551918401916121d68184848a01611c74565b85549201916000906121e781611f7a565b600182811680156121ff576001811461221457612240565b60ff1984168752821515830287019450612240565b896000528560002060005b848110156122385781548982015290830190870161221f565b505082870194505b50929a9950505050505050505050565b818103818111156105c2576105c2612001565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232d90830184611c98565b9695505050505050565b60006020828403121561234957600080fd5b8151610f8881611c11565b634e487b7160e01b600052603160045260246000fd5b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060408201526060019056fea2646970667358221220864c443b96332cba8eca65effac2958735d463003ee367d3c05516c2d9b4bb6a64736f6c63430008120033

Deployed Bytecode Sourcemap

63454:3166:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57519:224;;;;;;;;;;-1:-1:-1;57519:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;57519:224:0;;;;;;;;66242:79;;;;;;;;;;-1:-1:-1;66242:79:0;;;;;:::i;:::-;;:::i;:::-;;41065:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42577:171::-;;;;;;;;;;-1:-1:-1;42577:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;42577:171:0;1883:203:1;42095:416:0;;;;;;;;;;-1:-1:-1;42095:416:0;;;;;:::i;:::-;;:::i;63688:32::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;63688:32:0;2528:177:1;58159:113:0;;;;;;;;;;-1:-1:-1;58247:10:0;:17;58159:113;;63765:33;;;;;;;;;;;;;;;;43277:301;;;;;;;;;;-1:-1:-1;43277:301:0;;;;;:::i;:::-;;:::i;57827:256::-;;;;;;;;;;-1:-1:-1;57827:256:0;;;;;:::i;:::-;;:::i;66329:155::-;;;:::i;63962:768::-;;;;;;:::i;:::-;;:::i;43649:151::-;;;;;;;;;;-1:-1:-1;43649:151:0;;;;;:::i;:::-;;:::i;64738:374::-;;;;;;;;;;-1:-1:-1;64738:374:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65754:86::-;;;;;;;;;;-1:-1:-1;65754:86:0;;;;;:::i;:::-;;:::i;58349:233::-;;;;;;;;;;-1:-1:-1;58349:233:0;;;;;:::i;:::-;;:::i;65978:104::-;;;;;;;;;;-1:-1:-1;65978:104:0;;;;;:::i;:::-;;:::i;63805:26::-;;;;;;;;;;-1:-1:-1;63805:26:0;;;;;;;;40775:223;;;;;;;;;;-1:-1:-1;40775:223:0;;;;;:::i;:::-;;:::i;63544:93::-;;;;;;;;;;;;;:::i;40506:207::-;;;;;;;;;;-1:-1:-1;40506:207:0;;;;;:::i;:::-;;:::i;3263:103::-;;;;;;;;;;;;;:::i;65848:122::-;;;;;;;;;;-1:-1:-1;65848:122:0;;;;;:::i;:::-;;:::i;2615:87::-;;;;;;;;;;-1:-1:-1;2688:6:0;;-1:-1:-1;;;;;2688:6:0;2615:87;;41234:104;;;;;;;;;;;;;:::i;42820:155::-;;;;;;;;;;-1:-1:-1;42820:155:0;;;;;:::i;:::-;;:::i;43871:279::-;;;;;;;;;;-1:-1:-1;43871:279:0;;;;;:::i;:::-;;:::i;63644:37::-;;;;;;;;;;;;;:::i;65120:608::-;;;;;;;;;;-1:-1:-1;65120:608:0;;;;;:::i;:::-;;:::i;63727:31::-;;;;;;;;;;;;;;;;66090:144;;;;;;;;;;-1:-1:-1;66090:144:0;;;;;:::i;:::-;;:::i;43046:164::-;;;;;;;;;;-1:-1:-1;43046:164:0;;;;;:::i;:::-;;:::i;3521:201::-;;;;;;;;;;-1:-1:-1;3521:201:0;;;;;:::i;:::-;;:::i;57519:224::-;57621:4;-1:-1:-1;;;;;;57645:50:0;;-1:-1:-1;;;57645:50:0;;:90;;;57699:36;57723:11;57699:23;:36::i;:::-;57638:97;57519:224;-1:-1:-1;;57519:224:0:o;66242:79::-;2501:13;:11;:13::i;:::-;66298:6:::1;:15:::0;;-1:-1:-1;;66298:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66242:79::o;41065:100::-;41119:13;41152:5;41145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41065:100;:::o;42577:171::-;42653:7;42673:23;42688:7;42673:14;:23::i;:::-;-1:-1:-1;42716:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42716:24:0;;42577:171::o;42095:416::-;42176:13;42192:23;42207:7;42192:14;:23::i;:::-;42176:39;;42240:5;-1:-1:-1;;;;;42234:11:0;:2;-1:-1:-1;;;;;42234:11:0;;42226:57;;;;-1:-1:-1;;;42226:57:0;;6879:2:1;42226:57:0;;;6861:21:1;6918:2;6898:18;;;6891:30;6957:34;6937:18;;;6930:62;-1:-1:-1;;;7008:18:1;;;7001:31;7049:19;;42226:57:0;;;;;;;;;1404:10;-1:-1:-1;;;;;42318:21:0;;;;:62;;-1:-1:-1;42343:37:0;42360:5;1404:10;43046:164;:::i;42343:37::-;42296:173;;;;-1:-1:-1;;;42296:173:0;;7281:2:1;42296:173:0;;;7263:21:1;7320:2;7300:18;;;7293:30;7359:34;7339:18;;;7332:62;7430:31;7410:18;;;7403:59;7479:19;;42296:173:0;7079:425:1;42296:173:0;42482:21;42491:2;42495:7;42482:8;:21::i;:::-;42165:346;42095:416;;:::o;43277:301::-;43438:41;1404:10;43471:7;43438:18;:41::i;:::-;43430:99;;;;-1:-1:-1;;;43430:99:0;;;;;;;:::i;:::-;43542:28;43552:4;43558:2;43562:7;43542:9;:28::i;57827:256::-;57924:7;57960:23;57977:5;57960:16;:23::i;:::-;57952:5;:31;57944:87;;;;-1:-1:-1;;;57944:87:0;;8125:2:1;57944:87:0;;;8107:21:1;8164:2;8144:18;;;8137:30;8203:34;8183:18;;;8176:62;-1:-1:-1;;;8254:18:1;;;8247:41;8305:19;;57944:87:0;7923:407:1;57944:87:0;-1:-1:-1;;;;;;58049:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;57827:256::o;66329:155::-;2501:13;:11;:13::i;:::-;66386:7:::1;66407;2688:6:::0;;-1:-1:-1;;;;;2688:6:0;;2615:87;66407:7:::1;-1:-1:-1::0;;;;;66399:21:0::1;66428;66399:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66385:69;;;66473:2;66465:11;;;::::0;::::1;;66374:110;66329:155::o:0;63962:768::-;64030:14;64047:13;58247:10;:17;;58159:113;64047:13;64074:6;;64030:30;;-1:-1:-1;64074:6:0;;64073:7;64065:37;;;;-1:-1:-1;;;64065:37:0;;8747:2:1;64065:37:0;;;8729:21:1;8786:2;8766:18;;;8759:30;-1:-1:-1;;;8805:18:1;;;8798:47;8862:18;;64065:37:0;8545:341:1;64065:37:0;64129:1;64115:11;:15;64107:62;;;;-1:-1:-1;;;64107:62:0;;9093:2:1;64107:62:0;;;9075:21:1;9132:2;9112:18;;;9105:30;9171:34;9151:18;;;9144:62;-1:-1:-1;;;9222:18:1;;;9215:32;9264:19;;64107:62:0;8891:398:1;64107:62:0;64203:13;;64188:11;:28;;64180:83;;;;-1:-1:-1;;;64180:83:0;;9496:2:1;64180:83:0;;;9478:21:1;9535:2;9515:18;;;9508:30;9574:34;9554:18;;;9547:62;-1:-1:-1;;;9625:18:1;;;9618:40;9675:19;;64180:83:0;9294:406:1;64180:83:0;64306:9;;64282:20;64291:11;64282:6;:20;:::i;:::-;:33;;64274:76;;;;-1:-1:-1;;;64274:76:0;;10169:2:1;64274:76:0;;;10151:21:1;10208:2;10188:18;;;10181:30;10247:32;10227:18;;;10220:60;10297:18;;64274:76:0;9967:354:1;64274:76:0;2688:6;;-1:-1:-1;;;;;2688:6:0;64361:10;:21;64357:277;;64390:20;64413:21;64423:10;64413:9;:21::i;:::-;64390:44;-1:-1:-1;64448:17:0;;;:52;;;64489:11;64482:4;;:18;;;;:::i;:::-;64469:9;:31;;64448:52;64440:94;;;;-1:-1:-1;;;64440:94:0;;10701:2:1;64440:94:0;;;10683:21:1;10740:2;10720:18;;;10713:30;10779:31;10759:18;;;10752:59;10828:18;;64440:94:0;10499:353:1;64440:94:0;64563:1;64548:11;:16;;:51;;;;64588:11;64581:4;;:18;;;;:::i;:::-;64568:9;:31;;64548:51;64540:88;;;;-1:-1:-1;;;64540:88:0;;11059:2:1;64540:88:0;;;11041:21:1;11098:2;11078:18;;;11071:30;-1:-1:-1;;;11117:18:1;;;11110:54;11181:18;;64540:88:0;10857:348:1;64540:88:0;64384:250;64357:277;64657:1;64640:81;64665:11;64660:1;:16;64640:81;;64689:26;64699:3;64704:10;64713:1;64704:6;:10;:::i;:::-;64689:9;:26::i;:::-;64678:3;;;;:::i;:::-;;;;64640:81;;;;64025:705;63962:768;;:::o;43649:151::-;43753:39;43770:4;43776:2;43780:7;43753:39;;;;;;;;;;;;:16;:39::i;64738:374::-;64814:16;64843:23;64869:17;64879:6;64869:9;:17::i;:::-;64843:43;;64897:25;64939:15;64925:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64925:30:0;;64897:58;;64971:9;64966:113;64986:15;64982:1;:19;64966:113;;;65037:30;65057:6;65065:1;65037:19;:30::i;:::-;65023:8;65032:1;65023:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;65003:3;;;;:::i;:::-;;;;64966:113;;;-1:-1:-1;65096:8:0;64738:374;-1:-1:-1;;;64738:374:0:o;65754:86::-;2501:13;:11;:13::i;:::-;65817:4:::1;:15:::0;65754:86::o;58349:233::-;58424:7;58460:30;58247:10;:17;;58159:113;58460:30;58452:5;:38;58444:95;;;;-1:-1:-1;;;58444:95:0;;11684:2:1;58444:95:0;;;11666:21:1;11723:2;11703:18;;;11696:30;11762:34;11742:18;;;11735:62;-1:-1:-1;;;11813:18:1;;;11806:42;11865:19;;58444:95:0;11482:408:1;58444:95:0;58557:10;58568:5;58557:17;;;;;;;;:::i;:::-;;;;;;;;;58550:24;;58349:233;;;:::o;65978:104::-;2501:13;:11;:13::i;:::-;66053:7:::1;:21;66063:11:::0;66053:7;:21:::1;:::i;:::-;;65978:104:::0;:::o;40775:223::-;40847:7;45508:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45508:16:0;;40911:56;;;;-1:-1:-1;;;40911:56:0;;;;;;;:::i;63544:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40506:207::-;40578:7;-1:-1:-1;;;;;40606:19:0;;40598:73;;;;-1:-1:-1;;;40598:73:0;;14654:2:1;40598:73:0;;;14636:21:1;14693:2;14673:18;;;14666:30;14732:34;14712:18;;;14705:62;-1:-1:-1;;;14783:18:1;;;14776:39;14832:19;;40598:73:0;14452:405:1;40598:73:0;-1:-1:-1;;;;;;40689:16:0;;;;;:9;:16;;;;;;;40506:207::o;3263:103::-;2501:13;:11;:13::i;:::-;3328:30:::1;3355:1;3328:18;:30::i;:::-;3263:103::o:0;65848:122::-;2501:13;:11;:13::i;:::-;65929::::1;:33:::0;65848:122::o;41234:104::-;41290:13;41323:7;41316:14;;;;;:::i;42820:155::-;42915:52;1404:10;42948:8;42958;42915:18;:52::i;43871:279::-;44002:41;1404:10;44035:7;44002:18;:41::i;:::-;43994:99;;;;-1:-1:-1;;;43994:99:0;;;;;;;:::i;:::-;44104:38;44118:4;44124:2;44128:7;44137:4;44104:13;:38::i;63644:37::-;;;;;;;:::i;65120:608::-;65209:13;65257:16;65265:7;65257;:16::i;:::-;65235:113;;;;-1:-1:-1;;;65235:113:0;;15064:2:1;65235:113:0;;;15046:21:1;15103:2;15083:18;;;15076:30;15142:34;15122:18;;;15115:62;-1:-1:-1;;;15193:18:1;;;15186:45;15248:19;;65235:113:0;14862:411:1;65235:113:0;65361:28;65392:10;:8;:10::i;:::-;65361:41;;65464:1;65439:14;65433:28;:32;:287;;;;;;;;;;;;;;;;;65557:14;65598:18;:7;:16;:18::i;:::-;65643:13;65514:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65433:287;65413:307;65120:608;-1:-1:-1;;;65120:608:0:o;66090:144::-;2501:13;:11;:13::i;:::-;66193::::1;:33;66209:17:::0;66193:13;:33:::1;:::i;43046:164::-:0;-1:-1:-1;;;;;43167:25:0;;;43143:4;43167:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43046:164::o;3521:201::-;2501:13;:11;:13::i;:::-;-1:-1:-1;;;;;3610:22:0;::::1;3602:73;;;::::0;-1:-1:-1;;;3602:73:0;;16741:2:1;3602:73:0::1;::::0;::::1;16723:21:1::0;16780:2;16760:18;;;16753:30;16819:34;16799:18;;;16792:62;-1:-1:-1;;;16870:18:1;;;16863:36;16916:19;;3602:73:0::1;16539:402:1::0;3602:73:0::1;3686:28;3705:8;3686:18;:28::i;13215:326::-:0;-1:-1:-1;;;;;13510:19:0;;:23;;;13215:326::o;54424:410::-;54614:1;54602:9;:13;54598:229;;;-1:-1:-1;;;;;54636:18:0;;;54632:87;;-1:-1:-1;;;;;54675:15:0;;;;;;:9;:15;;;;;:28;;54694:9;;54675:15;:28;;54694:9;;54675:28;:::i;:::-;;;;-1:-1:-1;;54632:87:0;-1:-1:-1;;;;;54737:16:0;;;54733:83;;-1:-1:-1;;;;;54774:13:0;;;;;;:9;:13;;;;;:26;;54791:9;;54774:13;:26;;54791:9;;54774:26;:::i;:::-;;;;-1:-1:-1;;54424:410:0;;;;:::o;40137:305::-;40239:4;-1:-1:-1;;;;;;40276:40:0;;-1:-1:-1;;;40276:40:0;;:105;;-1:-1:-1;;;;;;;40333:48:0;;-1:-1:-1;;;40333:48:0;40276:105;:158;;;-1:-1:-1;;;;;;;;;;38855:40:0;;;40398:36;38746:157;2780:132;2688:6;;-1:-1:-1;;;;;2688:6:0;1404:10;2844:23;2836:68;;;;-1:-1:-1;;;2836:68:0;;17281:2:1;2836:68:0;;;17263:21:1;;;17300:18;;;17293:30;17359:34;17339:18;;;17332:62;17411:18;;2836:68:0;17079:356:1;52140:135:0;52222:16;52230:7;52222;:16::i;:::-;52214:53;;;;-1:-1:-1;;;52214:53:0;;;;;;;:::i;51453:174::-;51528:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51528:29:0;-1:-1:-1;;;;;51528:29:0;;;;;;;;:24;;51582:23;51528:24;51582:14;:23::i;:::-;-1:-1:-1;;;;;51573:46:0;;;;;;;;;;;51453:174;;:::o;46140:264::-;46233:4;46250:13;46266:23;46281:7;46266:14;:23::i;:::-;46250:39;;46319:5;-1:-1:-1;;;;;46308:16:0;:7;-1:-1:-1;;;;;46308:16:0;;:52;;;;46328:32;46345:5;46352:7;46328:16;:32::i;:::-;46308:87;;;;46388:7;-1:-1:-1;;;;;46364:31:0;:20;46376:7;46364:11;:20::i;:::-;-1:-1:-1;;;;;46364:31:0;;46308:87;46300:96;46140:264;-1:-1:-1;;;;46140:264:0:o;50105:1229::-;50230:4;-1:-1:-1;;;;;50203:31:0;:23;50218:7;50203:14;:23::i;:::-;-1:-1:-1;;;;;50203:31:0;;50195:81;;;;-1:-1:-1;;;50195:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50295:16:0;;50287:65;;;;-1:-1:-1;;;50287:65:0;;18048:2:1;50287:65:0;;;18030:21:1;18087:2;18067:18;;;18060:30;18126:34;18106:18;;;18099:62;-1:-1:-1;;;18177:18:1;;;18170:34;18221:19;;50287:65:0;17846:400:1;50287:65:0;50365:42;50386:4;50392:2;50396:7;50405:1;50365:20;:42::i;:::-;50537:4;-1:-1:-1;;;;;50510:31:0;:23;50525:7;50510:14;:23::i;:::-;-1:-1:-1;;;;;50510:31:0;;50502:81;;;;-1:-1:-1;;;50502:81:0;;;;;;;:::i;:::-;50655:24;;;;:15;:24;;;;;;;;50648:31;;-1:-1:-1;;;;;;50648:31:0;;;;;;-1:-1:-1;;;;;51131:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;51131:20:0;;;51166:13;;;;;;;;;:18;;50648:31;51166:18;;;51206:16;;;:7;:16;;;;;;:21;;;;;;;;;;51245:27;;50671:7;;51245:27;;;42165:346;42095:416;;:::o;46746:110::-;46822:26;46832:2;46836:7;46822:26;;;;;;;;;;;;:9;:26::i;3882:191::-;3975:6;;;-1:-1:-1;;;;;3992:17:0;;;-1:-1:-1;;;;;;3992:17:0;;;;;;;4025:40;;3975:6;;;3992:17;3975:6;;4025:40;;3956:16;;4025:40;3945:128;3882:191;:::o;51770:281::-;51891:8;-1:-1:-1;;;;;51882:17:0;:5;-1:-1:-1;;;;;51882:17:0;;51874:55;;;;-1:-1:-1;;;51874:55:0;;18453:2:1;51874:55:0;;;18435:21:1;18492:2;18472:18;;;18465:30;-1:-1:-1;;;18511:18:1;;;18504:55;18576:18;;51874:55:0;18251:349:1;51874:55:0;-1:-1:-1;;;;;51940:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51940:46:0;;;;;;;;;;52002:41;;540::1;;;52002::0;;513:18:1;52002:41:0;;;;;;;51770:281;;;:::o;45031:270::-;45144:28;45154:4;45160:2;45164:7;45144:9;:28::i;:::-;45191:47;45214:4;45220:2;45224:7;45233:4;45191:22;:47::i;:::-;45183:110;;;;-1:-1:-1;;;45183:110:0;;;;;;;:::i;45845:128::-;45910:4;45508:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45508:16:0;45934:31;;;45845:128::o;66509:108::-;66569:13;66602:7;66595:14;;;;;:::i;35646:716::-;35702:13;35753:14;35770:17;35781:5;35770:10;:17::i;:::-;35790:1;35770:21;35753:38;;35806:20;35840:6;35829:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35829:18:0;-1:-1:-1;35806:41:0;-1:-1:-1;35971:28:0;;;35987:2;35971:28;36028:288;-1:-1:-1;;36060:5:0;-1:-1:-1;;;36197:2:0;36186:14;;36181:30;36060:5;36168:44;36258:2;36249:11;;;-1:-1:-1;36279:21:0;36028:288;36279:21;-1:-1:-1;36337:6:0;35646:716;-1:-1:-1;;;35646:716:0:o;58656:915::-;58833:61;58860:4;58866:2;58870:12;58884:9;58833:26;:61::i;:::-;58923:1;58911:9;:13;58907:222;;;59054:63;;-1:-1:-1;;;59054:63:0;;19358:2:1;59054:63:0;;;19340:21:1;19397:2;19377:18;;;19370:30;19436:34;19416:18;;;19409:62;-1:-1:-1;;;19487:18:1;;;19480:51;19548:19;;59054:63:0;19156:417:1;58907:222:0;59159:12;-1:-1:-1;;;;;59188:18:0;;59184:187;;59223:40;59255:7;60398:10;:17;;60371:24;;;;:15;:24;;;;;:44;;;60426:24;;;;;;;;;;;;60294:164;59223:40;59184:187;;;59293:2;-1:-1:-1;;;;;59285:10:0;:4;-1:-1:-1;;;;;59285:10:0;;59281:90;;59312:47;59345:4;59351:7;59312:32;:47::i;:::-;-1:-1:-1;;;;;59385:16:0;;59381:183;;59418:45;59455:7;59418:36;:45::i;:::-;59381:183;;;59491:4;-1:-1:-1;;;;;59485:10:0;:2;-1:-1:-1;;;;;59485:10:0;;59481:83;;59512:40;59540:2;59544:7;59512:27;:40::i;:::-;58822:749;58656:915;;;;:::o;47083:285::-;47178:18;47184:2;47188:7;47178:5;:18::i;:::-;47229:53;47260:1;47264:2;47268:7;47277:4;47229:22;:53::i;:::-;47207:153;;;;-1:-1:-1;;;47207:153:0;;;;;;;:::i;52839:853::-;52993:4;53014:15;:2;-1:-1:-1;;;;;53014:13:0;;:15::i;:::-;53010:675;;;53050:71;;-1:-1:-1;;;53050:71:0;;-1:-1:-1;;;;;53050:36:0;;;;;:71;;1404:10;;53101:4;;53107:7;;53116:4;;53050:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53050:71:0;;;;;;;;-1:-1:-1;;53050:71:0;;;;;;;;;;;;:::i;:::-;;;53046:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53291:6;:13;53308:1;53291:18;53287:328;;53334:60;;-1:-1:-1;;;53334:60:0;;;;;;;:::i;53287:328::-;53565:6;53559:13;53550:6;53546:2;53542:15;53535:38;53046:584;-1:-1:-1;;;;;;53172:51:0;-1:-1:-1;;;53172:51:0;;-1:-1:-1;53165:58:0;;53010:675;-1:-1:-1;53669:4:0;52839:853;;;;;;:::o;31363:948::-;31416:7;;-1:-1:-1;;;31494:17:0;;31490:106;;-1:-1:-1;;;31532:17:0;;;-1:-1:-1;31578:2:0;31568:12;31490:106;31623:8;31614:5;:17;31610:106;;31661:8;31652:17;;;-1:-1:-1;31698:2:0;31688:12;31610:106;31743:8;31734:5;:17;31730:106;;31781:8;31772:17;;;-1:-1:-1;31818:2:0;31808:12;31730:106;31863:7;31854:5;:16;31850:103;;31900:7;31891:16;;;-1:-1:-1;31936:1:0;31926:11;31850:103;31980:7;31971:5;:16;31967:103;;32017:7;32008:16;;;-1:-1:-1;32053:1:0;32043:11;31967:103;32097:7;32088:5;:16;32084:103;;32134:7;32125:16;;;-1:-1:-1;32170:1:0;32160:11;32084:103;32214:7;32205:5;:16;32201:68;;32252:1;32242:11;32297:6;31363:948;-1:-1:-1;;31363:948:0:o;61085:988::-;61351:22;61401:1;61376:22;61393:4;61376:16;:22::i;:::-;:26;;;;:::i;:::-;61413:18;61434:26;;;:17;:26;;;;;;61351:51;;-1:-1:-1;61567:28:0;;;61563:328;;-1:-1:-1;;;;;61634:18:0;;61612:19;61634:18;;;:12;:18;;;;;;;;:34;;;;;;;;;61685:30;;;;;;:44;;;61802:30;;:17;:30;;;;;:43;;;61563:328;-1:-1:-1;61987:26:0;;;;:17;:26;;;;;;;;61980:33;;;-1:-1:-1;;;;;62031:18:0;;;;;:12;:18;;;;;:34;;;;;;;62024:41;61085:988::o;62368:1079::-;62646:10;:17;62621:22;;62646:21;;62666:1;;62646:21;:::i;:::-;62678:18;62699:24;;;:15;:24;;;;;;63072:10;:26;;62621:46;;-1:-1:-1;62699:24:0;;62621:46;;63072:26;;;;;;:::i;:::-;;;;;;;;;63050:48;;63136:11;63111:10;63122;63111:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;63216:28;;;:15;:28;;;;;;;:41;;;63388:24;;;;;63381:31;63423:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;62439:1008;;;62368:1079;:::o;59872:221::-;59957:14;59974:20;59991:2;59974:16;:20::i;:::-;-1:-1:-1;;;;;60005:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;60050:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;59872:221:0:o;47704:942::-;-1:-1:-1;;;;;47784:16:0;;47776:61;;;;-1:-1:-1;;;47776:61:0;;20660:2:1;47776:61:0;;;20642:21:1;;;20679:18;;;20672:30;20738:34;20718:18;;;20711:62;20790:18;;47776:61:0;20458:356:1;47776:61:0;47857:16;47865:7;47857;:16::i;:::-;47856:17;47848:58;;;;-1:-1:-1;;;47848:58:0;;;;;;;:::i;:::-;47919:48;47948:1;47952:2;47956:7;47965:1;47919:20;:48::i;:::-;48066:16;48074:7;48066;:16::i;:::-;48065:17;48057:58;;;;-1:-1:-1;;;48057:58:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48464:13:0;;;;;;:9;:13;;;;;;;;:18;;48481:1;48464:18;;;48506:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48506:21:0;;;;;48545:33;48514:7;;48464:13;;48545:33;;48464:13;;48545:33;66053:21:::1;65978:104:::0;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:632::-;3405:2;3457:21;;;3527:13;;3430:18;;;3549:22;;;3376:4;;3405:2;3628:15;;;;3602:2;3587:18;;;3376:4;3671:169;3685:6;3682:1;3679:13;3671:169;;;3746:13;;3734:26;;3815:15;;;;3780:12;;;;3707:1;3700:9;3671:169;;;-1:-1:-1;3857:3:1;;3234:632;-1:-1:-1;;;;;;3234:632:1:o;3871:127::-;3932:10;3927:3;3923:20;3920:1;3913:31;3963:4;3960:1;3953:15;3987:4;3984:1;3977:15;4003:632;4068:5;4098:18;4139:2;4131:6;4128:14;4125:40;;;4145:18;;:::i;:::-;4220:2;4214:9;4188:2;4274:15;;-1:-1:-1;;4270:24:1;;;4296:2;4266:33;4262:42;4250:55;;;4320:18;;;4340:22;;;4317:46;4314:72;;;4366:18;;:::i;:::-;4406:10;4402:2;4395:22;4435:6;4426:15;;4465:6;4457;4450:22;4505:3;4496:6;4491:3;4487:16;4484:25;4481:45;;;4522:1;4519;4512:12;4481:45;4572:6;4567:3;4560:4;4552:6;4548:17;4535:44;4627:1;4620:4;4611:6;4603;4599:19;4595:30;4588:41;;;;4003:632;;;;;:::o;4640:451::-;4709:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4818:9;4805:23;4851:18;4843:6;4840:30;4837:50;;;4883:1;4880;4873:12;4837:50;4906:22;;4959:4;4951:13;;4947:27;-1:-1:-1;4937:55:1;;4988:1;4985;4978:12;4937:55;5011:74;5077:7;5072:2;5059:16;5054:2;5050;5046:11;5011:74;:::i;5096:254::-;5161:6;5169;5222:2;5210:9;5201:7;5197:23;5193:32;5190:52;;;5238:1;5235;5228:12;5190:52;5261:29;5280:9;5261:29;:::i;:::-;5251:39;;5309:35;5340:2;5329:9;5325:18;5309:35;:::i;:::-;5299:45;;5096:254;;;;;:::o;5355:667::-;5450:6;5458;5466;5474;5527:3;5515:9;5506:7;5502:23;5498:33;5495:53;;;5544:1;5541;5534:12;5495:53;5567:29;5586:9;5567:29;:::i;:::-;5557:39;;5615:38;5649:2;5638:9;5634:18;5615:38;:::i;:::-;5605:48;;5700:2;5689:9;5685:18;5672:32;5662:42;;5755:2;5744:9;5740:18;5727:32;5782:18;5774:6;5771:30;5768:50;;;5814:1;5811;5804:12;5768:50;5837:22;;5890:4;5882:13;;5878:27;-1:-1:-1;5868:55:1;;5919:1;5916;5909:12;5868:55;5942:74;6008:7;6003:2;5990:16;5985:2;5981;5977:11;5942:74;:::i;:::-;5932:84;;;5355:667;;;;;;;:::o;6027:260::-;6095:6;6103;6156:2;6144:9;6135:7;6131:23;6127:32;6124:52;;;6172:1;6169;6162:12;6124:52;6195:29;6214:9;6195:29;:::i;:::-;6185:39;;6243:38;6277:2;6266:9;6262:18;6243:38;:::i;6292:380::-;6371:1;6367:12;;;;6414;;;6435:61;;6489:4;6481:6;6477:17;6467:27;;6435:61;6542:2;6534:6;6531:14;6511:18;6508:38;6505:161;;6588:10;6583:3;6579:20;6576:1;6569:31;6623:4;6620:1;6613:15;6651:4;6648:1;6641:15;6505:161;;6292:380;;;:::o;7509:409::-;7711:2;7693:21;;;7750:2;7730:18;;;7723:30;7789:34;7784:2;7769:18;;7762:62;-1:-1:-1;;;7855:2:1;7840:18;;7833:43;7908:3;7893:19;;7509:409::o;9705:127::-;9766:10;9761:3;9757:20;9754:1;9747:31;9797:4;9794:1;9787:15;9821:4;9818:1;9811:15;9837:125;9902:9;;;9923:10;;;9920:36;;;9936:18;;:::i;10326:168::-;10399:9;;;10430;;10447:15;;;10441:22;;10427:37;10417:71;;10468:18;;:::i;11210:135::-;11249:3;11270:17;;;11267:43;;11290:18;;:::i;:::-;-1:-1:-1;11337:1:1;11326:13;;11210:135::o;11350:127::-;11411:10;11406:3;11402:20;11399:1;11392:31;11442:4;11439:1;11432:15;11466:4;11463:1;11456:15;12021:545;12123:2;12118:3;12115:11;12112:448;;;12159:1;12184:5;12180:2;12173:17;12229:4;12225:2;12215:19;12299:2;12287:10;12283:19;12280:1;12276:27;12270:4;12266:38;12335:4;12323:10;12320:20;12317:47;;;-1:-1:-1;12358:4:1;12317:47;12413:2;12408:3;12404:12;12401:1;12397:20;12391:4;12387:31;12377:41;;12468:82;12486:2;12479:5;12476:13;12468:82;;;12531:17;;;12512:1;12501:13;12468:82;;;12472:3;;;12021:545;;;:::o;12742:1352::-;12868:3;12862:10;12895:18;12887:6;12884:30;12881:56;;;12917:18;;:::i;:::-;12946:97;13036:6;12996:38;13028:4;13022:11;12996:38;:::i;:::-;12990:4;12946:97;:::i;:::-;13098:4;;13162:2;13151:14;;13179:1;13174:663;;;;13881:1;13898:6;13895:89;;;-1:-1:-1;13950:19:1;;;13944:26;13895:89;-1:-1:-1;;12699:1:1;12695:11;;;12691:24;12687:29;12677:40;12723:1;12719:11;;;12674:57;13997:81;;13144:944;;13174:663;11968:1;11961:14;;;12005:4;11992:18;;-1:-1:-1;;13210:20:1;;;13328:236;13342:7;13339:1;13336:14;13328:236;;;13431:19;;;13425:26;13410:42;;13523:27;;;;13491:1;13479:14;;;;13358:19;;13328:236;;;13332:3;13592:6;13583:7;13580:19;13577:201;;;13653:19;;;13647:26;-1:-1:-1;;13736:1:1;13732:14;;;13748:3;13728:24;13724:37;13720:42;13705:58;13690:74;;13577:201;-1:-1:-1;;;;;13824:1:1;13808:14;;;13804:22;13791:36;;-1:-1:-1;12742:1352:1:o;14099:348::-;14301:2;14283:21;;;14340:2;14320:18;;;14313:30;-1:-1:-1;;;14374:2:1;14359:18;;14352:54;14438:2;14423:18;;14099:348::o;15278:1256::-;15502:3;15540:6;15534:13;15566:4;15579:64;15636:6;15631:3;15626:2;15618:6;15614:15;15579:64;:::i;:::-;15706:13;;15665:16;;;;15728:68;15706:13;15665:16;15763:15;;;15728:68;:::i;:::-;15885:13;;15818:20;;;15858:1;;15923:36;15885:13;15923:36;:::i;:::-;15978:1;15995:18;;;16022:141;;;;16177:1;16172:337;;;;15988:521;;16022:141;-1:-1:-1;;16057:24:1;;16043:39;;16134:16;;16127:24;16113:39;;16102:51;;;-1:-1:-1;16022:141:1;;16172:337;16203:6;16200:1;16193:17;16251:2;16248:1;16238:16;16276:1;16290:169;16304:8;16301:1;16298:15;16290:169;;;16386:14;;16371:13;;;16364:37;16429:16;;;;16321:10;;16290:169;;;16294:3;;16490:8;16483:5;16479:20;16472:27;;15988:521;-1:-1:-1;16525:3:1;;15278:1256;-1:-1:-1;;;;;;;;;;15278:1256:1:o;16946:128::-;17013:9;;;17034:11;;;17031:37;;;17048:18;;:::i;17440:401::-;17642:2;17624:21;;;17681:2;17661:18;;;17654:30;17720:34;17715:2;17700:18;;17693:62;-1:-1:-1;;;17786:2:1;17771:18;;17764:35;17831:3;17816:19;;17440:401::o;18605:414::-;18807:2;18789:21;;;18846:2;18826:18;;;18819:30;18885:34;18880:2;18865:18;;18858:62;-1:-1:-1;;;18951:2:1;18936:18;;18929:48;19009:3;18994:19;;18605:414::o;19578:489::-;-1:-1:-1;;;;;19847:15:1;;;19829:34;;19899:15;;19894:2;19879:18;;19872:43;19946:2;19931:18;;19924:34;;;19994:3;19989:2;19974:18;;19967:31;;;19772:4;;20015:46;;20041:19;;20033:6;20015:46;:::i;:::-;20007:54;19578:489;-1:-1:-1;;;;;;19578:489:1:o;20072:249::-;20141:6;20194:2;20182:9;20173:7;20169:23;20165:32;20162:52;;;20210:1;20207;20200:12;20162:52;20242:9;20236:16;20261:30;20285:5;20261:30;:::i;20326:127::-;20387:10;20382:3;20378:20;20375:1;20368:31;20418:4;20415:1;20408:15;20442:4;20439:1;20432:15;20819:352;21021:2;21003:21;;;21060:2;21040:18;;;21033:30;21099;21094:2;21079:18;;21072:58;21162:2;21147:18;;20819:352::o

Swarm Source

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