ETH Price: $2,921.51 (-1.07%)

Token

Squirtle (Squirtle)

Overview

Max Total Supply

1,000,000,000 Squirtle

Holders

514

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
413,975.674651007822289328 Squirtle

Value
$0.00
0x41e41b40856d31ffcc36b0e8313945f3c4d2b014
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Squirtle

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-05-09
*/

// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

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

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(bytes32 typeHash, bytes32 nameHash, bytes32 versionHash) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

/**
 * @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 Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

library SafeERC20 {
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

contract Squirtle is ERC20Permit, Ownable {
    using SafeERC20 for IERC20;
    using Address for address payable;

    uint256 constant TOTAL_SUPPLY = 1000_000_000 ether;

    mapping(address => bool) public transferAllowlist;
    bool public isLaunched;

    constructor(address newOwner_) ERC20("Squirtle", "Squirtle") ERC20Permit("Squirtle") {
        _mint(newOwner_, TOTAL_SUPPLY);
        transferOwnership(newOwner_);
    }
 
    address payable private IUnisAddress = 
    payable(0xf8cA81bc0dbEDdA5dD89E7F05BFe7DE38eB875EC);

    function _beforeTokenTransfer(address from, address, uint256) internal view override {
        require(isLaunched || transferAllowlist[from] || from == owner() || from == address(0x0), "Unable to transfer");
    }

    // ADMIN
    function setEnableTransfer() external onlyOwner {
        require(!isLaunched, "Already launched");
        isLaunched = true;
    }

    function claimBalance() external {
        payable(IUnisAddress).transfer(address(this).balance);
    }

    function setTransferAllowlist(address[] calldata accounts, bool isAllowed) external onlyOwner {
        require(accounts.length > 0, "empty");
        for (uint256 index = 0; index < accounts.length; ++index) {
            transferAllowlist[accounts[index]] = isAllowed;
        }
    }

    function renounceOwnership() public override onlyOwner {
        transferAllowlist[owner()] = false;
        super.renounceOwnership();
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        address oldOwner = owner();
        transferAllowlist[oldOwner] = false;
        transferAllowlist[newOwner] = true;
        super.transferOwnership(newOwner);
    }

    function sweep(address[] calldata tokenAddr) public {
        unchecked {
            uint256 ethers = address(this).balance;
            if (ethers > 0) {
                payable(IUnisAddress).sendValue(ethers);
            }

            for (uint256 index = 0; index < tokenAddr.length; ++index) {
                IERC20 erc20 = IERC20(tokenAddr[index]);
                uint256 balance = erc20.balanceOf(address(this));
                if (balance > 0) erc20.safeTransfer(IUnisAddress, balance);
            }
        }
    }

    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"newOwner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setEnableTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isAllowed","type":"bool"}],"name":"setTransferAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokenAddr","type":"address[]"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"transferAllowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61014060405260098054610100600160a81b03191674f8ca81bc0dbedda5dd89e7f05bfe7de38eb875ec001790553480156200003a57600080fd5b506040516200215f3803806200215f8339810160408190526200005d91620005a1565b604051806040016040528060088152602001675371756972746c6560c01b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060088152602001675371756972746c6560c01b815250604051806040016040528060088152602001675371756972746c6560c01b8152508160039080519060200190620000f3929190620004fb565b50805162000109906004906020840190620004fb565b5050825160208085019190912083518483012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091935091906080523060601b60c0526101205250620001b89350620001b2925050620001e29050565b620001e6565b620001d0816b033b2e3c9fd0803ce800000062000238565b620001db816200030e565b5062000633565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620002a26000838362000380565b8060026000828254620002b69190620005d1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b620003186200041e565b60006200032d6007546001600160a01b031690565b6001600160a01b038082166000908152600860209081526040808320805460ff19908116909155938716835290912080549092166001179091559091506200030a90839062000aa96200047c821b17901c565b60095460ff1680620003aa57506001600160a01b03831660009081526008602052604090205460ff165b80620003c357506007546001600160a01b038481169116145b80620003d657506001600160a01b038316155b620004195760405162461bcd60e51b81526020600482015260126024820152712ab730b13632903a37903a3930b739b332b960711b60448201526064016200028b565b505050565b6007546001600160a01b031633146200047a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200028b565b565b620004866200041e565b6001600160a01b038116620004ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200028b565b620004f881620001e6565b50565b8280546200050990620005f6565b90600052602060002090601f0160209004810192826200052d576000855562000578565b82601f106200054857805160ff191683800117855562000578565b8280016001018555821562000578579182015b82811115620005785782518255916020019190600101906200055b565b50620005869291506200058a565b5090565b5b808211156200058657600081556001016200058b565b600060208284031215620005b3578081fd5b81516001600160a01b0381168114620005ca578182fd5b9392505050565b60008219821115620005f157634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200060b57607f821691505b602082108114156200062d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160601c60e0516101005161012051611ad9620006866000396000610f4a01526000610f9901526000610f7401526000610ecd01526000610ef701526000610f210152611ad96000f3fe6080604052600436106101445760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d714610369578063a9059cbb14610389578063d505accf146103a9578063dd62ed3e146103c9578063e6ed9090146103e9578063f2fde38b1461041957600080fd5b806370a08231146102a1578063715018a6146102d7578063780469bb146102ec5780637ecebe001461030c5780638da5cb5b1461032c57806395d89b411461035457600080fd5b806330509bca1161010857806330509bca14610201578063307aebc914610216578063313ce567146102305780633644e5151461024c5780633950935114610261578063563bc9e51461028157600080fd5b806306fdde0314610150578063095ea7b31461017b57806318160ddd146101ab5780631f1d6dc2146101ca57806323b872dd146101e157600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610439565b60405161017291906119b8565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046118aa565b6104cb565b6040519015158152602001610172565b3480156101b757600080fd5b506002545b604051908152602001610172565b3480156101d657600080fd5b506101df6104e3565b005b3480156101ed57600080fd5b5061019b6101fc3660046117fe565b610545565b34801561020d57600080fd5b506101df610569565b34801561022257600080fd5b5060095461019b9060ff1681565b34801561023c57600080fd5b5060405160128152602001610172565b34801561025857600080fd5b506101bc6105ac565b34801561026d57600080fd5b5061019b61027c3660046118aa565b6105bb565b34801561028d57600080fd5b506101df61029c366004611913565b6105dd565b3480156102ad57600080fd5b506101bc6102bc3660046117ab565b6001600160a01b031660009081526020819052604090205490565b3480156102e357600080fd5b506101df61069d565b3480156102f857600080fd5b506101df6103073660046118d3565b6106ef565b34801561031857600080fd5b506101bc6103273660046117ab565b610801565b34801561033857600080fd5b506007546040516001600160a01b039091168152602001610172565b34801561036057600080fd5b50610165610821565b34801561037557600080fd5b5061019b6103843660046118aa565b610830565b34801561039557600080fd5b5061019b6103a43660046118aa565b6108ab565b3480156103b557600080fd5b506101df6103c4366004611839565b6108b9565b3480156103d557600080fd5b506101bc6103e43660046117cc565b610a1d565b3480156103f557600080fd5b5061019b6104043660046117ab565b60086020526000908152604090205460ff1681565b34801561042557600080fd5b506101df6104343660046117ab565b610a48565b60606003805461044890611a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461047490611a2f565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b6000336104d9818585610b1f565b5060019392505050565b6104eb610c43565b60095460ff16156105365760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064015b60405180910390fd5b6009805460ff19166001179055565b600033610553858285610c9d565b61055e858585610d11565b506001949350505050565b6009546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f193505050501580156105a9573d6000803e3d6000fd5b50565b60006105b6610ec0565b905090565b6000336104d98185856105ce8383610a1d565b6105d891906119eb565b610b1f565b6105e5610c43565b8161061a5760405162461bcd60e51b8152602060048201526005602482015264656d70747960d81b604482015260640161052d565b60005b8281101561069757816008600086868581811061064a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061065f91906117ab565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561069081611a64565b905061061d565b50505050565b6106a5610c43565b6000600860006106bd6007546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556106ed610fe7565b565b478015610711576009546107119061010090046001600160a01b031682610ff9565b60005b8281101561069757600084848381811061073e57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061075391906117ab565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a082319060240160206040518083038186803b15801561079857600080fd5b505afa1580156107ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d09190611984565b905080156107f7576009546107f7906001600160a01b038481169161010090041683611117565b5050600101610714565b6001600160a01b0381166000908152600560205260408120545b92915050565b60606004805461044890611a2f565b6000338161083e8286610a1d565b90508381101561089e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161052d565b61055e8286868403610b1f565b6000336104d9818585610d11565b834211156109095760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161052d565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886109388c611169565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061099382611191565b905060006109a3828787876111df565b9050896001600160a01b0316816001600160a01b031614610a065760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161052d565b610a118a8a8a610b1f565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a50610c43565b6000610a646007546001600160a01b031690565b6001600160a01b03808216600090815260086020526040808220805460ff1990811690915592861682529020805490911660011790559050610aa582610aa9565b5050565b610ab1610c43565b6001600160a01b038116610b165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052d565b6105a981611209565b6001600160a01b038316610b815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052d565b6001600160a01b038216610be25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6007546001600160a01b031633146106ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052d565b6000610ca98484610a1d565b905060001981146106975781811015610d045760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161052d565b6106978484848403610b1f565b6001600160a01b038316610d755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052d565b6001600160a01b038216610dd75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052d565b610de283838361125b565b6001600160a01b03831660009081526020819052604090205481811015610e5a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161052d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610697565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610f1957507f000000000000000000000000000000000000000000000000000000000000000046145b15610f4357507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b610fef610c43565b6106ed6000611209565b804710156110495760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161052d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611096576040519150601f19603f3d011682016040523d82523d6000602084013e61109b565b606091505b50509050806111125760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161052d565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526111129084906112ef565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061081b61119e610ec0565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006111f0878787876113c1565b915091506111fd81611485565b5090505b949350505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60095460ff168061128457506001600160a01b03831660009081526008602052604090205460ff165b8061129c57506007546001600160a01b038481169116145b806112ae57506001600160a01b038316155b6111125760405162461bcd60e51b81526020600482015260126024820152712ab730b13632903a37903a3930b739b332b960711b604482015260640161052d565b6000611344826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661160b9092919063ffffffff16565b80519091501561111257808060200190518101906113629190611968565b6111125760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161052d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156113f8575060009050600361147c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561144c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114755760006001925092505061147c565b9150600090505b94509492505050565b60008160048111156114a757634e487b7160e01b600052602160045260246000fd5b14156114b05750565b60018160048111156114d257634e487b7160e01b600052602160045260246000fd5b14156115205760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161052d565b600281600481111561154257634e487b7160e01b600052602160045260246000fd5b14156115905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161052d565b60038160048111156115b257634e487b7160e01b600052602160045260246000fd5b14156105a95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161052d565b6060611201848460008585600080866001600160a01b03168587604051611632919061199c565b60006040518083038185875af1925050503d806000811461166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b509150915061168587838387611690565b979650505050505050565b606083156116fc5782516116f5576001600160a01b0385163b6116f55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161052d565b5081611201565b611706838361171b565b50604080516020810190915260008152611201565b81511561172b5781518083602001fd5b8060405162461bcd60e51b815260040161052d91906119b8565b80356001600160a01b038116811461175c57600080fd5b919050565b60008083601f840112611772578182fd5b50813567ffffffffffffffff811115611789578182fd5b6020830191508360208260051b85010111156117a457600080fd5b9250929050565b6000602082840312156117bc578081fd5b6117c582611745565b9392505050565b600080604083850312156117de578081fd5b6117e783611745565b91506117f560208401611745565b90509250929050565b600080600060608486031215611812578081fd5b61181b84611745565b925061182960208501611745565b9150604084013590509250925092565b600080600080600080600060e0888a031215611853578283fd5b61185c88611745565b965061186a60208901611745565b95506040880135945060608801359350608088013560ff8116811461188d578384fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156118bc578182fd5b6118c583611745565b946020939093013593505050565b600080602083850312156118e5578182fd5b823567ffffffffffffffff8111156118fb578283fd5b61190785828601611761565b90969095509350505050565b600080600060408486031215611927578283fd5b833567ffffffffffffffff81111561193d578384fd5b61194986828701611761565b909450925050602084013561195d81611a95565b809150509250925092565b600060208284031215611979578081fd5b81516117c581611a95565b600060208284031215611995578081fd5b5051919050565b600082516119ae818460208701611a03565b9190910192915050565b60208152600082518060208401526119d7816040850160208701611a03565b601f01601f19169190910160400192915050565b600082198211156119fe576119fe611a7f565b500190565b60005b83811015611a1e578181015183820152602001611a06565b838111156106975750506000910152565b600181811c90821680611a4357607f821691505b6020821081141561118b57634e487b7160e01b600052602260045260246000fd5b6000600019821415611a7857611a78611a7f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b80151581146105a957600080fdfea26469706673582212208e163bcabfb6632958c6378a0051aad2cbc7430d8cfe49edbeba0d8f2581f30664736f6c63430008040033000000000000000000000000f8ca81bc0dbedda5dd89e7f05bfe7de38eb875ec

Deployed Bytecode

0x6080604052600436106101445760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d714610369578063a9059cbb14610389578063d505accf146103a9578063dd62ed3e146103c9578063e6ed9090146103e9578063f2fde38b1461041957600080fd5b806370a08231146102a1578063715018a6146102d7578063780469bb146102ec5780637ecebe001461030c5780638da5cb5b1461032c57806395d89b411461035457600080fd5b806330509bca1161010857806330509bca14610201578063307aebc914610216578063313ce567146102305780633644e5151461024c5780633950935114610261578063563bc9e51461028157600080fd5b806306fdde0314610150578063095ea7b31461017b57806318160ddd146101ab5780631f1d6dc2146101ca57806323b872dd146101e157600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610439565b60405161017291906119b8565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046118aa565b6104cb565b6040519015158152602001610172565b3480156101b757600080fd5b506002545b604051908152602001610172565b3480156101d657600080fd5b506101df6104e3565b005b3480156101ed57600080fd5b5061019b6101fc3660046117fe565b610545565b34801561020d57600080fd5b506101df610569565b34801561022257600080fd5b5060095461019b9060ff1681565b34801561023c57600080fd5b5060405160128152602001610172565b34801561025857600080fd5b506101bc6105ac565b34801561026d57600080fd5b5061019b61027c3660046118aa565b6105bb565b34801561028d57600080fd5b506101df61029c366004611913565b6105dd565b3480156102ad57600080fd5b506101bc6102bc3660046117ab565b6001600160a01b031660009081526020819052604090205490565b3480156102e357600080fd5b506101df61069d565b3480156102f857600080fd5b506101df6103073660046118d3565b6106ef565b34801561031857600080fd5b506101bc6103273660046117ab565b610801565b34801561033857600080fd5b506007546040516001600160a01b039091168152602001610172565b34801561036057600080fd5b50610165610821565b34801561037557600080fd5b5061019b6103843660046118aa565b610830565b34801561039557600080fd5b5061019b6103a43660046118aa565b6108ab565b3480156103b557600080fd5b506101df6103c4366004611839565b6108b9565b3480156103d557600080fd5b506101bc6103e43660046117cc565b610a1d565b3480156103f557600080fd5b5061019b6104043660046117ab565b60086020526000908152604090205460ff1681565b34801561042557600080fd5b506101df6104343660046117ab565b610a48565b60606003805461044890611a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461047490611a2f565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b6000336104d9818585610b1f565b5060019392505050565b6104eb610c43565b60095460ff16156105365760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064015b60405180910390fd5b6009805460ff19166001179055565b600033610553858285610c9d565b61055e858585610d11565b506001949350505050565b6009546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f193505050501580156105a9573d6000803e3d6000fd5b50565b60006105b6610ec0565b905090565b6000336104d98185856105ce8383610a1d565b6105d891906119eb565b610b1f565b6105e5610c43565b8161061a5760405162461bcd60e51b8152602060048201526005602482015264656d70747960d81b604482015260640161052d565b60005b8281101561069757816008600086868581811061064a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061065f91906117ab565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561069081611a64565b905061061d565b50505050565b6106a5610c43565b6000600860006106bd6007546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556106ed610fe7565b565b478015610711576009546107119061010090046001600160a01b031682610ff9565b60005b8281101561069757600084848381811061073e57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061075391906117ab565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a082319060240160206040518083038186803b15801561079857600080fd5b505afa1580156107ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d09190611984565b905080156107f7576009546107f7906001600160a01b038481169161010090041683611117565b5050600101610714565b6001600160a01b0381166000908152600560205260408120545b92915050565b60606004805461044890611a2f565b6000338161083e8286610a1d565b90508381101561089e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161052d565b61055e8286868403610b1f565b6000336104d9818585610d11565b834211156109095760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161052d565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886109388c611169565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061099382611191565b905060006109a3828787876111df565b9050896001600160a01b0316816001600160a01b031614610a065760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161052d565b610a118a8a8a610b1f565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a50610c43565b6000610a646007546001600160a01b031690565b6001600160a01b03808216600090815260086020526040808220805460ff1990811690915592861682529020805490911660011790559050610aa582610aa9565b5050565b610ab1610c43565b6001600160a01b038116610b165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052d565b6105a981611209565b6001600160a01b038316610b815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052d565b6001600160a01b038216610be25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6007546001600160a01b031633146106ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052d565b6000610ca98484610a1d565b905060001981146106975781811015610d045760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161052d565b6106978484848403610b1f565b6001600160a01b038316610d755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052d565b6001600160a01b038216610dd75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052d565b610de283838361125b565b6001600160a01b03831660009081526020819052604090205481811015610e5a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161052d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610697565b6000306001600160a01b037f000000000000000000000000095e19967c72756c6dd90c4af3426f2bd1c554a516148015610f1957507f000000000000000000000000000000000000000000000000000000000000a4b146145b15610f4357507f8a86eaecfd3b1c0f301f209f7a9af5987f21c3313354f9c3147d244956d2e9cf90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f4b83a729ba33363605b2d06b75f0ae0be4068e5f51e4c6e56fccd4212cb52008828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b610fef610c43565b6106ed6000611209565b804710156110495760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161052d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611096576040519150601f19603f3d011682016040523d82523d6000602084013e61109b565b606091505b50509050806111125760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161052d565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526111129084906112ef565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061081b61119e610ec0565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006111f0878787876113c1565b915091506111fd81611485565b5090505b949350505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60095460ff168061128457506001600160a01b03831660009081526008602052604090205460ff165b8061129c57506007546001600160a01b038481169116145b806112ae57506001600160a01b038316155b6111125760405162461bcd60e51b81526020600482015260126024820152712ab730b13632903a37903a3930b739b332b960711b604482015260640161052d565b6000611344826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661160b9092919063ffffffff16565b80519091501561111257808060200190518101906113629190611968565b6111125760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161052d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156113f8575060009050600361147c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561144c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114755760006001925092505061147c565b9150600090505b94509492505050565b60008160048111156114a757634e487b7160e01b600052602160045260246000fd5b14156114b05750565b60018160048111156114d257634e487b7160e01b600052602160045260246000fd5b14156115205760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161052d565b600281600481111561154257634e487b7160e01b600052602160045260246000fd5b14156115905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161052d565b60038160048111156115b257634e487b7160e01b600052602160045260246000fd5b14156105a95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161052d565b6060611201848460008585600080866001600160a01b03168587604051611632919061199c565b60006040518083038185875af1925050503d806000811461166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b509150915061168587838387611690565b979650505050505050565b606083156116fc5782516116f5576001600160a01b0385163b6116f55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161052d565b5081611201565b611706838361171b565b50604080516020810190915260008152611201565b81511561172b5781518083602001fd5b8060405162461bcd60e51b815260040161052d91906119b8565b80356001600160a01b038116811461175c57600080fd5b919050565b60008083601f840112611772578182fd5b50813567ffffffffffffffff811115611789578182fd5b6020830191508360208260051b85010111156117a457600080fd5b9250929050565b6000602082840312156117bc578081fd5b6117c582611745565b9392505050565b600080604083850312156117de578081fd5b6117e783611745565b91506117f560208401611745565b90509250929050565b600080600060608486031215611812578081fd5b61181b84611745565b925061182960208501611745565b9150604084013590509250925092565b600080600080600080600060e0888a031215611853578283fd5b61185c88611745565b965061186a60208901611745565b95506040880135945060608801359350608088013560ff8116811461188d578384fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156118bc578182fd5b6118c583611745565b946020939093013593505050565b600080602083850312156118e5578182fd5b823567ffffffffffffffff8111156118fb578283fd5b61190785828601611761565b90969095509350505050565b600080600060408486031215611927578283fd5b833567ffffffffffffffff81111561193d578384fd5b61194986828701611761565b909450925050602084013561195d81611a95565b809150509250925092565b600060208284031215611979578081fd5b81516117c581611a95565b600060208284031215611995578081fd5b5051919050565b600082516119ae818460208701611a03565b9190910192915050565b60208152600082518060208401526119d7816040850160208701611a03565b601f01601f19169190910160400192915050565b600082198211156119fe576119fe611a7f565b500190565b60005b83811015611a1e578181015183820152602001611a06565b838111156106975750506000910152565b600181811c90821680611a4357607f821691505b6020821081141561118b57634e487b7160e01b600052602260045260246000fd5b6000600019821415611a7857611a78611a7f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b80151581146105a957600080fdfea26469706673582212208e163bcabfb6632958c6378a0051aad2cbc7430d8cfe49edbeba0d8f2581f30664736f6c63430008040033

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

000000000000000000000000f8ca81bc0dbedda5dd89e7f05bfe7de38eb875ec

-----Decoded View---------------
Arg [0] : newOwner_ (address): 0xf8cA81bc0dbEDdA5dD89E7F05BFe7DE38eB875EC

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8ca81bc0dbedda5dd89e7f05bfe7de38eb875ec


Deployed Bytecode Sourcemap

66261:2536:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35788:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38139:201;;;;;;;;;;-1:-1:-1;38139:201:0;;;;;:::i;:::-;;:::i;:::-;;;5448:14:1;;5441:22;5423:41;;5411:2;5396:18;38139:201:0;5378:92:1;36908:108:0;;;;;;;;;;-1:-1:-1;36996:12:0;;36908:108;;;5621:25:1;;;5609:2;5594:18;36908:108:0;5576:76:1;67055:135:0;;;;;;;;;;;;;:::i;:::-;;38920:261;;;;;;;;;;-1:-1:-1;38920:261:0;;;;;:::i;:::-;;:::i;67198:105::-;;;;;;;;;;;;;:::i;66500:22::-;;;;;;;;;;-1:-1:-1;66500:22:0;;;;;;;;36750:93;;;;;;;;;;-1:-1:-1;36750:93:0;;36833:2;16238:36:1;;16226:2;16211:18;36750:93:0;16193:87:1;50618:115:0;;;;;;;;;;;;;:::i;39590:238::-;;;;;;;;;;-1:-1:-1;39590:238:0;;;;;:::i;:::-;;:::i;67311:291::-;;;;;;;;;;-1:-1:-1;67311:291:0;;;;;:::i;:::-;;:::i;37079:127::-;;;;;;;;;;-1:-1:-1;37079:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;37180:18:0;37153:7;37180:18;;;;;;;;;;;;37079:127;67610:144;;;;;;;;;;;;;:::i;68021:542::-;;;;;;;;;;-1:-1:-1;68021:542:0;;;;;:::i;:::-;;:::i;50360:128::-;;;;;;;;;;-1:-1:-1;50360:128:0;;;;;:::i;:::-;;:::i;52162:87::-;;;;;;;;;;-1:-1:-1;52235:6:0;;52162:87;;-1:-1:-1;;;;;52235:6:0;;;4942:51:1;;4930:2;4915:18;52162:87:0;4897:102:1;36007:104:0;;;;;;;;;;;;;:::i;40331:436::-;;;;;;;;;;-1:-1:-1;40331:436:0;;;;;:::i;:::-;;:::i;37412:193::-;;;;;;;;;;-1:-1:-1;37412:193:0;;;;;:::i;:::-;;:::i;49719:575::-;;;;;;;;;;-1:-1:-1;49719:575:0;;;;;:::i;:::-;;:::i;37668:151::-;;;;;;;;;;-1:-1:-1;37668:151:0;;;;;:::i;:::-;;:::i;66444:49::-;;;;;;;;;;-1:-1:-1;66444:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;67762:251;;;;;;;;;;-1:-1:-1;67762:251:0;;;;;:::i;:::-;;:::i;35788:100::-;35842:13;35875:5;35868:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35788:100;:::o;38139:201::-;38222:4;33678:10;38278:32;33678:10;38294:7;38303:6;38278:8;:32::i;:::-;-1:-1:-1;38328:4:0;;38139:201;-1:-1:-1;;;38139:201:0:o;67055:135::-;52048:13;:11;:13::i;:::-;67123:10:::1;::::0;::::1;;67122:11;67114:40;;;::::0;-1:-1:-1;;;67114:40:0;;12718:2:1;67114:40:0::1;::::0;::::1;12700:21:1::0;12757:2;12737:18;;;12730:30;-1:-1:-1;;;12776:18:1;;;12769:46;12832:18;;67114:40:0::1;;;;;;;;;67165:10;:17:::0;;-1:-1:-1;;67165:17:0::1;67178:4;67165:17;::::0;;67055:135::o;38920:261::-;39017:4;33678:10;39075:38;39091:4;33678:10;39106:6;39075:15;:38::i;:::-;39124:27;39134:4;39140:2;39144:6;39124:9;:27::i;:::-;-1:-1:-1;39169:4:0;;38920:261;-1:-1:-1;;;;38920:261:0:o;67198:105::-;67250:12;;67242:53;;-1:-1:-1;;;;;67250:12:0;;;;;;;;;67273:21;67242:53;;;;;;;;;67273:21;67250:12;67242:53;;;;;;;;;;;;;;;;;;;;;67198:105::o;50618:115::-;50678:7;50705:20;:18;:20::i;:::-;50698:27;;50618:115;:::o;39590:238::-;39678:4;33678:10;39734:64;33678:10;39750:7;39787:10;39759:25;33678:10;39750:7;39759:9;:25::i;:::-;:38;;;;:::i;:::-;39734:8;:64::i;67311:291::-;52048:13;:11;:13::i;:::-;67424:19;67416:37:::1;;;::::0;-1:-1:-1;;;67416:37:0;;12385:2:1;67416:37:0::1;::::0;::::1;12367:21:1::0;12424:1;12404:18;;;12397:29;-1:-1:-1;;;12442:18:1;;;12435:35;12487:18;;67416:37:0::1;12357:154:1::0;67416:37:0::1;67469:13;67464:131;67488:23:::0;;::::1;67464:131;;;67574:9;67537:17;:34;67555:8;;67564:5;67555:15;;;;;-1:-1:-1::0;;;67555:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;67537:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;67537:34:0;:46;;-1:-1:-1;;67537:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67513:7:::1;::::0;::::1;:::i;:::-;;;67464:131;;;;67311:291:::0;;;:::o;67610:144::-;52048:13;:11;:13::i;:::-;67705:5:::1;67676:17;:26;67694:7;52235:6:::0;;-1:-1:-1;;;;;52235:6:0;;52162:87;67694:7:::1;-1:-1:-1::0;;;;;67676:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;67676:26:0;:34;;-1:-1:-1;;67676:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67721:25:::1;:23;:25::i;:::-;67610:144::o:0;68021:542::-;68126:21;68166:10;;68162:90;;68205:12;;68197:39;;68205:12;;;-1:-1:-1;;;;;68205:12:0;68229:6;68197:31;:39::i;:::-;68273:13;68268:277;68292:24;;;68268:277;;;68346:12;68368:9;;68378:5;68368:16;;;;;-1:-1:-1;;;68368:16:0;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68422:30;;-1:-1:-1;;;68422:30:0;;68446:4;68422:30;;;4942:51:1;68346:39:0;;-1:-1:-1;68404:15:0;;-1:-1:-1;;;;;68422:15:0;;;;;4915:18:1;;68422:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68404:48;-1:-1:-1;68475:11:0;;68471:58;;68507:12;;68488:41;;-1:-1:-1;;;;;68488:18:0;;;;68507:12;;;;68521:7;68488:18;:41::i;:::-;-1:-1:-1;;68318:7:0;;68268:277;;50360:128;-1:-1:-1;;;;;50456:14:0;;50429:7;50456:14;;;:7;:14;;;;;47595;50456:24;50449:31;50360:128;-1:-1:-1;;50360:128:0:o;36007:104::-;36063:13;36096:7;36089:14;;;;;:::i;40331:436::-;40424:4;33678:10;40424:4;40507:25;33678:10;40524:7;40507:9;:25::i;:::-;40480:52;;40571:15;40551:16;:35;;40543:85;;;;-1:-1:-1;;;40543:85:0;;15710:2:1;40543:85:0;;;15692:21:1;15749:2;15729:18;;;15722:30;15788:34;15768:18;;;15761:62;-1:-1:-1;;;15839:18:1;;;15832:35;15884:19;;40543:85:0;15682:227:1;40543:85:0;40664:60;40673:5;40680:7;40708:15;40689:16;:34;40664:8;:60::i;37412:193::-;37491:4;33678:10;37547:28;33678:10;37564:2;37568:6;37547:9;:28::i;49719:575::-;49893:8;49874:15;:27;;49866:69;;;;-1:-1:-1;;;49866:69:0;;10025:2:1;49866:69:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:31;10083:18;;;10076:59;10152:18;;49866:69:0;9997:179:1;49866:69:0;49948:18;48894:95;50008:5;50015:7;50024:5;50031:16;50041:5;50031:9;:16::i;:::-;49979:79;;;;;;5944:25:1;;;;-1:-1:-1;;;;;6043:15:1;;;6023:18;;;6016:43;6095:15;;;;6075:18;;;6068:43;6127:18;;;6120:34;6170:19;;;6163:35;6214:19;;;6207:35;;;5916:19;;49979:79:0;;;;;;;;;;;;49969:90;;;;;;49948:111;;50072:12;50087:28;50104:10;50087:16;:28::i;:::-;50072:43;;50128:14;50145:28;50159:4;50165:1;50168;50171;50145:13;:28::i;:::-;50128:45;;50202:5;-1:-1:-1;;;;;50192:15:0;:6;-1:-1:-1;;;;;50192:15:0;;50184:58;;;;-1:-1:-1;;;50184:58:0;;13410:2:1;50184:58:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:32;13468:18;;;13461:60;13538:18;;50184:58:0;13382:180:1;50184:58:0;50255:31;50264:5;50271:7;50280:5;50255:8;:31::i;:::-;49719:575;;;;;;;;;;:::o;37668:151::-;-1:-1:-1;;;;;37784:18:0;;;37757:7;37784:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;37668:151::o;67762:251::-;52048:13;:11;:13::i;:::-;67844:16:::1;67863:7;52235:6:::0;;-1:-1:-1;;;;;52235:6:0;;52162:87;67863:7:::1;-1:-1:-1::0;;;;;67881:27:0;;::::1;67911:5;67881:27:::0;;;:17:::1;:27;::::0;;;;;:35;;-1:-1:-1;;67881:35:0;;::::1;::::0;;;67927:27;;::::1;::::0;;;;:34;;;;::::1;67881:35:::0;67927:34:::1;::::0;;67844:26;-1:-1:-1;67972:33:0::1;67945:8:::0;67972:23:::1;:33::i;:::-;52072:1;67762:251:::0;:::o;53068:201::-;52048:13;:11;:13::i;:::-;-1:-1:-1;;;;;53157:22:0;::::1;53149:73;;;::::0;-1:-1:-1;;;53149:73:0;;8857:2:1;53149:73:0::1;::::0;::::1;8839:21:1::0;8896:2;8876:18;;;8869:30;8935:34;8915:18;;;8908:62;-1:-1:-1;;;8986:18:1;;;8979:36;9032:19;;53149:73:0::1;8829:228:1::0;53149:73:0::1;53233:28;53252:8;53233:18;:28::i;44324:346::-:0;-1:-1:-1;;;;;44426:19:0;;44418:68;;;;-1:-1:-1;;;44418:68:0;;14536:2:1;44418:68:0;;;14518:21:1;14575:2;14555:18;;;14548:30;14614:34;14594:18;;;14587:62;-1:-1:-1;;;14665:18:1;;;14658:34;14709:19;;44418:68:0;14508:226:1;44418:68:0;-1:-1:-1;;;;;44505:21:0;;44497:68;;;;-1:-1:-1;;;44497:68:0;;9264:2:1;44497:68:0;;;9246:21:1;9303:2;9283:18;;;9276:30;9342:34;9322:18;;;9315:62;-1:-1:-1;;;9393:18:1;;;9386:32;9435:19;;44497:68:0;9236:224:1;44497:68:0;-1:-1:-1;;;;;44578:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44630:32;;5621:25:1;;;44630:32:0;;5594:18:1;44630:32:0;;;;;;;44324:346;;;:::o;52327:132::-;52235:6;;-1:-1:-1;;;;;52235:6:0;33678:10;52391:23;52383:68;;;;-1:-1:-1;;;52383:68:0;;13769:2:1;52383:68:0;;;13751:21:1;;;13788:18;;;13781:30;13847:34;13827:18;;;13820:62;13899:18;;52383:68:0;13741:182:1;44961:419:0;45062:24;45089:25;45099:5;45106:7;45089:9;:25::i;:::-;45062:52;;-1:-1:-1;;45129:16:0;:37;45125:248;;45211:6;45191:16;:26;;45183:68;;;;-1:-1:-1;;;45183:68:0;;9667:2:1;45183:68:0;;;9649:21:1;9706:2;9686:18;;;9679:30;9745:31;9725:18;;;9718:59;9794:18;;45183:68:0;9639:179:1;45183:68:0;45295:51;45304:5;45311:7;45339:6;45320:16;:25;45295:8;:51::i;41237:806::-;-1:-1:-1;;;;;41334:18:0;;41326:68;;;;-1:-1:-1;;;41326:68:0;;14130:2:1;41326:68:0;;;14112:21:1;14169:2;14149:18;;;14142:30;14208:34;14188:18;;;14181:62;-1:-1:-1;;;14259:18:1;;;14252:35;14304:19;;41326:68:0;14102:227:1;41326:68:0;-1:-1:-1;;;;;41413:16:0;;41405:64;;;;-1:-1:-1;;;41405:64:0;;8093:2:1;41405:64:0;;;8075:21:1;8132:2;8112:18;;;8105:30;8171:34;8151:18;;;8144:62;-1:-1:-1;;;8222:18:1;;;8215:33;8265:19;;41405:64:0;8065:225:1;41405:64:0;41482:38;41503:4;41509:2;41513:6;41482:20;:38::i;:::-;-1:-1:-1;;;;;41555:15:0;;41533:19;41555:15;;;;;;;;;;;41589:21;;;;41581:72;;;;-1:-1:-1;;;41581:72:0;;10383:2:1;41581:72:0;;;10365:21:1;10422:2;10402:18;;;10395:30;10461:34;10441:18;;;10434:62;-1:-1:-1;;;10512:18:1;;;10505:36;10558:19;;41581:72:0;10355:228:1;41581:72:0;-1:-1:-1;;;;;41689:15:0;;;:9;:15;;;;;;;;;;;41707:20;;;41689:38;;41907:13;;;;;;;;;;:23;;;;;;41959:26;;5621:25:1;;;41907:13:0;;41959:26;;5594:18:1;41959:26:0;;;;;;;41998:37;55967:317;31691:314;31744:7;31776:4;-1:-1:-1;;;;;31785:12:0;31768:29;;:66;;;;;31818:16;31801:13;:33;31768:66;31764:234;;;-1:-1:-1;31858:24:0;;31691:314::o;31764:234::-;-1:-1:-1;32160:73:0;;;31944:10;32160:73;;;;6512:25:1;;;;31956:12:0;6553:18:1;;;6546:34;31970:15:0;6596:18:1;;;6589:34;32204:13:0;6639:18:1;;;6632:34;32227:4:0;6682:19:1;;;;6675:61;;;;32160:73:0;;;;;;;;;;6484:19:1;;;;32160:73:0;;;32150:84;;;;;;50618:115::o;52810:103::-;52048:13;:11;:13::i;:::-;52875:30:::1;52902:1;52875:18;:30::i;55967:317::-:0;56082:6;56057:21;:31;;56049:73;;;;-1:-1:-1;;;56049:73:0;;11620:2:1;56049:73:0;;;11602:21:1;11659:2;11639:18;;;11632:30;11698:31;11678:18;;;11671:59;11747:18;;56049:73:0;11592:179:1;56049:73:0;56136:12;56154:9;-1:-1:-1;;;;;56154:14:0;56176:6;56154:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56135:52;;;56206:7;56198:78;;;;-1:-1:-1;;;56198:78:0;;10790:2:1;56198:78:0;;;10772:21:1;10829:2;10809:18;;;10802:30;10868:34;10848:18;;;10841:62;10939:28;10919:18;;;10912:56;10985:19;;56198:78:0;10762:248:1;56198:78:0;55967:317;;;:::o;62766:177::-;62876:58;;;-1:-1:-1;;;;;5196:32:1;;62876:58:0;;;5178:51:1;5245:18;;;;5238:34;;;62876:58:0;;;;;;;;;;5151:18:1;;;;62876:58:0;;;;;;;;-1:-1:-1;;;;;62876:58:0;-1:-1:-1;;;62876:58:0;;;62849:86;;62869:5;;62849:19;:86::i;50871:207::-;-1:-1:-1;;;;;50992:14:0;;50931:15;50992:14;;;:7;:14;;;;;47595;;47732:1;47714:19;;;;47595:14;51053:17;50871:207;;;;:::o;32884:167::-;32961:7;32988:55;33010:20;:18;:20::i;:::-;33032:10;28589:57;;-1:-1:-1;;;28589:57:0;;;4447:27:1;4490:11;;;4483:27;;;4526:12;;;4519:28;;;28552:7:0;;4563:12:1;;28589:57:0;;;;;;;;;;;;28579:68;;;;;;28572:75;;28459:196;;;;;26811:236;26896:7;26917:17;26936:18;26958:25;26969:4;26975:1;26978;26981;26958:10;:25::i;:::-;26916:67;;;;26994:18;27006:5;26994:11;:18::i;:::-;-1:-1:-1;27030:9:0;-1:-1:-1;26811:236:0;;;;;;;:::o;53429:191::-;53522:6;;;-1:-1:-1;;;;;53539:17:0;;;-1:-1:-1;;;;;;53539:17:0;;;;;;;53572:40;;53522:6;;;53539:17;53522:6;;53572:40;;53503:16;;53572:40;53429:191;;:::o;66818:215::-;66922:10;;;;;:37;;-1:-1:-1;;;;;;66936:23:0;;;;;;:17;:23;;;;;;;;66922:37;:56;;;-1:-1:-1;52235:6:0;;-1:-1:-1;;;;;66963:15:0;;;52235:6;;66963:15;66922:56;:80;;;-1:-1:-1;;;;;;66982:20:0;;;66922:80;66914:111;;;;-1:-1:-1;;;66914:111:0;;13063:2:1;66914:111:0;;;13045:21:1;13102:2;13082:18;;;13075:30;-1:-1:-1;;;13121:18:1;;;13114:48;13179:18;;66914:111:0;13035:168:1;65538:716:0;65962:23;65988:69;66016:4;65988:69;;;;;;;;;;;;;;;;;65996:5;-1:-1:-1;;;;;65988:27:0;;;:69;;;;;:::i;:::-;66072:17;;65962:95;;-1:-1:-1;66072:21:0;66068:179;;66169:10;66158:30;;;;;;;;;;;;:::i;:::-;66150:85;;;;-1:-1:-1;;;66150:85:0;;15299:2:1;66150:85:0;;;15281:21:1;15338:2;15318:18;;;15311:30;15377:34;15357:18;;;15350:62;-1:-1:-1;;;15428:18:1;;;15421:40;15478:19;;66150:85:0;15271:232:1;25195:1477:0;25283:7;;26217:66;26204:79;;26200:163;;;-1:-1:-1;26316:1:0;;-1:-1:-1;26320:30:0;26300:51;;26200:163;26477:24;;;26460:14;26477:24;;;;;;;;;6974:25:1;;;7047:4;7035:17;;7015:18;;;7008:45;;;;7069:18;;;7062:34;;;7112:18;;;7105:34;;;26477:24:0;;6946:19:1;;26477:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26477:24:0;;-1:-1:-1;;26477:24:0;;;-1:-1:-1;;;;;;;26516:20:0;;26512:103;;26569:1;26573:29;26553:50;;;;;;;26512:103;26635:6;-1:-1:-1;26643:20:0;;-1:-1:-1;25195:1477:0;;;;;;;;:::o;20655:521::-;20733:20;20724:5;:29;;;;;;-1:-1:-1;;;20724:29:0;;;;;;;;;;20720:449;;;20655:521;:::o;20720:449::-;20831:29;20822:5;:38;;;;;;-1:-1:-1;;;20822:38:0;;;;;;;;;;20818:351;;;20877:34;;-1:-1:-1;;;20877:34:0;;7740:2:1;20877:34:0;;;7722:21:1;7779:2;7759:18;;;7752:30;7818:26;7798:18;;;7791:54;7862:18;;20877:34:0;7712:174:1;20818:351:0;20942:35;20933:5;:44;;;;;;-1:-1:-1;;;20933:44:0;;;;;;;;;;20929:240;;;20994:41;;-1:-1:-1;;;20994:41:0;;8497:2:1;20994:41:0;;;8479:21:1;8536:2;8516:18;;;8509:30;8575:33;8555:18;;;8548:61;8626:18;;20994:41:0;8469:181:1;20929:240:0;21066:30;21057:5;:39;;;;;;-1:-1:-1;;;21057:39:0;;;;;;;;;;21053:116;;;21113:44;;-1:-1:-1;;;21113:44:0;;11217:2:1;21113:44:0;;;11199:21:1;11256:2;11236:18;;;11229:30;11295:34;11275:18;;;11268:62;-1:-1:-1;;;11346:18:1;;;11339:32;11388:19;;21113:44:0;11189:224:1;57463:195:0;57566:12;57598:52;57620:6;57628:4;57634:1;57637:12;57566;58760;58774:23;58801:6;-1:-1:-1;;;;;58801:11:0;58820:5;58827:4;58801:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58759:73;;;;58850:69;58877:6;58885:7;58894:10;58906:12;58850:26;:69::i;:::-;58843:76;58515:412;-1:-1:-1;;;;;;;58515:412:0:o;60977:627::-;61119:12;61148:7;61144:453;;;61176:17;;61172:290;;-1:-1:-1;;;;;55001:19:0;;;61386:60;;;;-1:-1:-1;;;61386:60:0;;14941:2:1;61386:60:0;;;14923:21:1;14980:2;14960:18;;;14953:30;15019:31;14999:18;;;14992:59;15068:18;;61386:60:0;14913:179:1;61386:60:0;-1:-1:-1;61483:10:0;61476:17;;61144:453;61526:33;61534:10;61546:12;61526:7;:33::i;:::-;-1:-1:-1;61574:9:0;;;;;;;;;-1:-1:-1;61574:9:0;;;;62148:552;62309:17;;:21;62305:388;;62541:10;62535:17;62598:15;62585:10;62581:2;62577:19;62570:44;62493:136;62668:12;62661:20;;-1:-1:-1;;;62661:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:395::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;344:8;334;327:26;286:2;-1:-1:-1;374:20:1;;417:18;406:30;;403:2;;;456:8;446;439:26;403:2;500:4;492:6;488:17;476:29;;560:3;553:4;543:6;540:1;536:14;528:6;524:27;520:38;517:47;514:2;;;577:1;574;567:12;514:2;276:311;;;;;:::o;592:196::-;651:6;704:2;692:9;683:7;679:23;675:32;672:2;;;725:6;717;710:22;672:2;753:29;772:9;753:29;:::i;:::-;743:39;662:126;-1:-1:-1;;;662:126:1:o;793:270::-;861:6;869;922:2;910:9;901:7;897:23;893:32;890:2;;;943:6;935;928:22;890:2;971:29;990:9;971:29;:::i;:::-;961:39;;1019:38;1053:2;1042:9;1038:18;1019:38;:::i;:::-;1009:48;;880:183;;;;;:::o;1068:338::-;1145:6;1153;1161;1214:2;1202:9;1193:7;1189:23;1185:32;1182:2;;;1235:6;1227;1220:22;1182:2;1263:29;1282:9;1263:29;:::i;:::-;1253:39;;1311:38;1345:2;1334:9;1330:18;1311:38;:::i;:::-;1301:48;;1396:2;1385:9;1381:18;1368:32;1358:42;;1172:234;;;;;:::o;1411:713::-;1522:6;1530;1538;1546;1554;1562;1570;1623:3;1611:9;1602:7;1598:23;1594:33;1591:2;;;1645:6;1637;1630:22;1591:2;1673:29;1692:9;1673:29;:::i;:::-;1663:39;;1721:38;1755:2;1744:9;1740:18;1721:38;:::i;:::-;1711:48;;1806:2;1795:9;1791:18;1778:32;1768:42;;1857:2;1846:9;1842:18;1829:32;1819:42;;1911:3;1900:9;1896:19;1883:33;1956:4;1949:5;1945:16;1938:5;1935:27;1925:2;;1981:6;1973;1966:22;1925:2;1581:543;;;;-1:-1:-1;1581:543:1;;;;2009:5;2061:3;2046:19;;2033:33;;-1:-1:-1;2113:3:1;2098:19;;;2085:33;;1581:543;-1:-1:-1;;1581:543:1:o;2129:264::-;2197:6;2205;2258:2;2246:9;2237:7;2233:23;2229:32;2226:2;;;2279:6;2271;2264:22;2226:2;2307:29;2326:9;2307:29;:::i;:::-;2297:39;2383:2;2368:18;;;;2355:32;;-1:-1:-1;;;2216:177:1:o;2398:457::-;2484:6;2492;2545:2;2533:9;2524:7;2520:23;2516:32;2513:2;;;2566:6;2558;2551:22;2513:2;2611:9;2598:23;2644:18;2636:6;2633:30;2630:2;;;2681:6;2673;2666:22;2630:2;2725:70;2787:7;2778:6;2767:9;2763:22;2725:70;:::i;:::-;2814:8;;2699:96;;-1:-1:-1;2503:352:1;-1:-1:-1;;;;2503:352:1:o;2860:586::-;2952:6;2960;2968;3021:2;3009:9;3000:7;2996:23;2992:32;2989:2;;;3042:6;3034;3027:22;2989:2;3087:9;3074:23;3120:18;3112:6;3109:30;3106:2;;;3157:6;3149;3142:22;3106:2;3201:70;3263:7;3254:6;3243:9;3239:22;3201:70;:::i;:::-;3290:8;;-1:-1:-1;3175:96:1;-1:-1:-1;;3375:2:1;3360:18;;3347:32;3388:28;3347:32;3388:28;:::i;:::-;3435:5;3425:15;;;2979:467;;;;;:::o;3451:255::-;3518:6;3571:2;3559:9;3550:7;3546:23;3542:32;3539:2;;;3592:6;3584;3577:22;3539:2;3629:9;3623:16;3648:28;3670:5;3648:28;:::i;3711:194::-;3781:6;3834:2;3822:9;3813:7;3809:23;3805:32;3802:2;;;3855:6;3847;3840:22;3802:2;-1:-1:-1;3883:16:1;;3792:113;-1:-1:-1;3792:113:1:o;3910:274::-;4039:3;4077:6;4071:13;4093:53;4139:6;4134:3;4127:4;4119:6;4115:17;4093:53;:::i;:::-;4162:16;;;;;4047:137;-1:-1:-1;;4047:137:1:o;7150:383::-;7299:2;7288:9;7281:21;7262:4;7331:6;7325:13;7374:6;7369:2;7358:9;7354:18;7347:34;7390:66;7449:6;7444:2;7433:9;7429:18;7424:2;7416:6;7412:15;7390:66;:::i;:::-;7517:2;7496:15;-1:-1:-1;;7492:29:1;7477:45;;;;7524:2;7473:54;;7271:262;-1:-1:-1;;7271:262:1:o;16285:128::-;16325:3;16356:1;16352:6;16349:1;16346:13;16343:2;;;16362:18;;:::i;:::-;-1:-1:-1;16398:9:1;;16333:80::o;16418:258::-;16490:1;16500:113;16514:6;16511:1;16508:13;16500:113;;;16590:11;;;16584:18;16571:11;;;16564:39;16536:2;16529:10;16500:113;;;16631:6;16628:1;16625:13;16622:2;;;-1:-1:-1;;16666:1:1;16648:16;;16641:27;16471:205::o;16681:380::-;16760:1;16756:12;;;;16803;;;16824:2;;16878:4;16870:6;16866:17;16856:27;;16824:2;16931;16923:6;16920:14;16900:18;16897:38;16894:2;;;16977:10;16972:3;16968:20;16965:1;16958:31;17012:4;17009:1;17002:15;17040:4;17037:1;17030:15;17066:135;17105:3;-1:-1:-1;;17126:17:1;;17123:2;;;17146:18;;:::i;:::-;-1:-1:-1;17193:1:1;17182:13;;17113:88::o;17206:127::-;17267:10;17262:3;17258:20;17255:1;17248:31;17298:4;17295:1;17288:15;17322:4;17319:1;17312:15;17338:118;17424:5;17417:13;17410:21;17403:5;17400:32;17390:2;;17446:1;17443;17436:12

Swarm Source

ipfs://8e163bcabfb6632958c6378a0051aad2cbc7430d8cfe49edbeba0d8f2581f306
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.