ETH Price: $2,675.99 (+1.47%)

Token

Jenoside Joel (KOAM)
 

Overview

Max Total Supply

1,000,000,000 KOAM

Holders

118

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
56,942,671.150842079472592919 KOAM

Value
$0.00
0x0f47b9a905b24fcdc5d5d16540f385185e5ca68a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KOAM

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-03
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Nonces.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
pragma solidity ^0.8.20;

/**
 * @dev Provides tracking nonces for addresses. Nonces will only increment.
 */
abstract contract Nonces {
    /**
     * @dev The nonce used for an `account` is not the expected current nonce.
     */
    error InvalidAccountNonce(address account, uint256 currentNonce);

    mapping(address account => uint256) private _nonces;

    /**
     * @dev Returns the next unused nonce for an address.
     */
    function nonces(address owner) public view virtual returns (uint256) {
        return _nonces[owner];
    }

    /**
     * @dev Consumes a nonce.
     *
     * Returns the current value and increments nonce.
     */
    function _useNonce(address owner) internal virtual returns (uint256) {
        // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
        // decremented or reset. This guarantees that the nonce never overflows.
        unchecked {
            // It is important to do x++ and not ++x here.
            return _nonces[owner]++;
        }
    }

    /**
     * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
     */
    function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
        uint256 current = _useNonce(owner);
        if (nonce != current) {
            revert InvalidAccountNonce(owner, current);
        }
    }
}

// File: @openzeppelin/contracts/interfaces/IERC5267.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)

pragma solidity ^0.8.20;

interface IERC5267 {
    /**
     * @dev MAY be emitted to signal that the domain could have changed.
     */
    event EIP712DomainChanged();

    /**
     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
     * signature.
     */
    function eip712Domain()
        external
        view
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        );
}

// File: @openzeppelin/contracts/utils/StorageSlot.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

// File: @openzeppelin/contracts/utils/ShortStrings.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)

pragma solidity ^0.8.20;


// | string  | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA   |
// | length  | 0x                                                              BB |
type ShortString is bytes32;

/**
 * @dev This library provides functions to convert short memory strings
 * into a `ShortString` type that can be used as an immutable variable.
 *
 * Strings of arbitrary length can be optimized using this library if
 * they are short enough (up to 31 bytes) by packing them with their
 * length (1 byte) in a single EVM word (32 bytes). Additionally, a
 * fallback mechanism can be used for every other case.
 *
 * Usage example:
 *
 * ```solidity
 * contract Named {
 *     using ShortStrings for *;
 *
 *     ShortString private immutable _name;
 *     string private _nameFallback;
 *
 *     constructor(string memory contractName) {
 *         _name = contractName.toShortStringWithFallback(_nameFallback);
 *     }
 *
 *     function name() external view returns (string memory) {
 *         return _name.toStringWithFallback(_nameFallback);
 *     }
 * }
 * ```
 */
library ShortStrings {
    // Used as an identifier for strings longer than 31 bytes.
    bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;

    error StringTooLong(string str);
    error InvalidShortString();

    /**
     * @dev Encode a string of at most 31 chars into a `ShortString`.
     *
     * This will trigger a `StringTooLong` error is the input string is too long.
     */
    function toShortString(string memory str) internal pure returns (ShortString) {
        bytes memory bstr = bytes(str);
        if (bstr.length > 31) {
            revert StringTooLong(str);
        }
        return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
    }

    /**
     * @dev Decode a `ShortString` back to a "normal" string.
     */
    function toString(ShortString sstr) internal pure returns (string memory) {
        uint256 len = byteLength(sstr);
        // using `new string(len)` would work locally but is not memory safe.
        string memory str = new string(32);
        /// @solidity memory-safe-assembly
        assembly {
            mstore(str, len)
            mstore(add(str, 0x20), sstr)
        }
        return str;
    }

    /**
     * @dev Return the length of a `ShortString`.
     */
    function byteLength(ShortString sstr) internal pure returns (uint256) {
        uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
        if (result > 31) {
            revert InvalidShortString();
        }
        return result;
    }

    /**
     * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
     */
    function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
        if (bytes(value).length < 32) {
            return toShortString(value);
        } else {
            StorageSlot.getStringSlot(store).value = value;
            return ShortString.wrap(FALLBACK_SENTINEL);
        }
    }

    /**
     * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
     */
    function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
            return toString(value);
        } else {
            return store;
        }
    }

    /**
     * @dev Return the length of a string that was encoded to `ShortString` or written to storage using
     * {setWithFallback}.
     *
     * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
     * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
     */
    function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
            return byteLength(value);
        } else {
            return bytes(store).length;
        }
    }
}

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)

pragma solidity ^0.8.20;


/**
 * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
 *
 * The library provides methods for generating a hash of a message that conforms to the
 * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
 * specifications.
 */
library MessageHashUtils {
    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing a bytes32 `messageHash` with
     * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
     * keccak256, although any bytes32 value can be safely used because the final digest will
     * be re-hashed.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
        }
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing an arbitrary `message` with
     * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
        return
            keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x00` (data with intended validator).
     *
     * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
     * `validator` address. Then hashing the result.
     *
     * See {ECDSA-recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(hex"19_00", validator, data));
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).
     *
     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
     * `\x19\x01` and hashing the result. It corresponds to the hash signed by the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
     *
     * See {ECDSA-recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, hex"19_01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            digest := keccak256(ptr, 0x42)
        }
    }
}

// File: @openzeppelin/contracts/utils/cryptography/EIP712.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.20;




/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
 * encoding is very generic and therefore its 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 order to
 * produce the hash of their typed data 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].
 *
 * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
 * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
 * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
 *
 * @custom:oz-upgrades-unsafe-allow state-variable-immutable
 */
abstract contract EIP712 is IERC5267 {
    using ShortStrings for *;

    bytes32 private constant TYPE_HASH =
        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    // 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 _cachedDomainSeparator;
    uint256 private immutable _cachedChainId;
    address private immutable _cachedThis;

    bytes32 private immutable _hashedName;
    bytes32 private immutable _hashedVersion;

    ShortString private immutable _name;
    ShortString private immutable _version;
    string private _nameFallback;
    string private _versionFallback;

    /**
     * @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) {
        _name = name.toShortStringWithFallback(_nameFallback);
        _version = version.toShortStringWithFallback(_versionFallback);
        _hashedName = keccak256(bytes(name));
        _hashedVersion = keccak256(bytes(version));

        _cachedChainId = block.chainid;
        _cachedDomainSeparator = _buildDomainSeparator();
        _cachedThis = address(this);
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
            return _cachedDomainSeparator;
        } else {
            return _buildDomainSeparator();
        }
    }

    function _buildDomainSeparator() private view returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, 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 MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev See {IERC-5267}.
     */
    function eip712Domain()
        public
        view
        virtual
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        )
    {
        return (
            hex"0f", // 01111
            _EIP712Name(),
            _EIP712Version(),
            block.chainid,
            address(this),
            bytes32(0),
            new uint256[](0)
        );
    }

    /**
     * @dev The name parameter for the EIP712 domain.
     *
     * NOTE: By default this function reads _name which is an immutable value.
     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
     */
    // solhint-disable-next-line func-name-mixedcase
    function _EIP712Name() internal view returns (string memory) {
        return _name.toStringWithFallback(_nameFallback);
    }

    /**
     * @dev The version parameter for the EIP712 domain.
     *
     * NOTE: By default this function reads _version which is an immutable value.
     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
     */
    // solhint-disable-next-line func-name-mixedcase
    function _EIP712Version() internal view returns (string memory) {
        return _version.toStringWithFallback(_versionFallback);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.20;

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

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-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]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        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, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        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]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            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.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // 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, s);
        }

        // 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, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @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, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
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].
     *
     * CAUTION: See Security Considerations above.
     */
    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);
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)

pragma solidity ^0.8.20;






/**
 * @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.
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {
    bytes32 private constant PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Permit deadline has expired.
     */
    error ERC2612ExpiredSignature(uint256 deadline);

    /**
     * @dev Mismatched signature.
     */
    error ERC2612InvalidSigner(address signer, address owner);

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

    /**
     * @inheritdoc IERC20Permit
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        if (block.timestamp > deadline) {
            revert ERC2612ExpiredSignature(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);
        if (signer != owner) {
            revert ERC2612InvalidSigner(signer, owner);
        }

        _approve(owner, spender, value);
    }

    /**
     * @inheritdoc IERC20Permit
     */
    function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {
        return super.nonces(owner);
    }

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

// File: contracts/KOAM.sol


pragma solidity ^0.8.20;



contract KOAM is ERC20, ERC20Permit{
    address public charityWallet;
    address public liquidityPoolWallet;
    uint public constant totalTaxPercentage = 2; //2% tax
    uint public constant charityTaxPercentage = 1;
    uint public constant liquidityTaxPercentage = 1;

    constructor(address _charityWallet, address _liquidityPoolWallet ) ERC20("Jenoside Joel", "KOAM") ERC20Permit("Jenoside Joel") {
        require(_charityWallet !=address(0), "Charity wallet cannnot be the zero address");
        charityWallet = _charityWallet;
        liquidityPoolWallet = _liquidityPoolWallet;
        _mint(msg.sender, 1000000000 * 10 ** decimals());

    
        // Transfer 100m tokens to charity wallet
        uint256 charityAmount = 100000000 * 10 ** decimals();
        _transfer(msg.sender, charityWallet, charityAmount);

    }



    function _update(address from, address to, uint256 amount) internal virtual override {
        if (from != address(0) && to != address(0) && from != charityWallet && to != charityWallet) {
            uint256 totalTaxAmount = (amount * totalTaxPercentage) / 100;
            uint256 charityTaxAmount = (amount * charityTaxPercentage) / 100;
            uint256 liquidityTaxAmount = (amount * liquidityTaxPercentage) / 100;
            uint256 amountAfterTax = amount - totalTaxAmount;

            if (charityTaxAmount > 0) {
                super._update(from, charityWallet, charityTaxAmount);
            }
            if (liquidityTaxAmount > 0 && liquidityPoolWallet != address(0)) {
                super._update(from, liquidityPoolWallet, liquidityTaxAmount);
            }

            super._update(from, to, amountAfterTax);
        } else {
            super._update(from, to, amount);
        }

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_charityWallet","type":"address"},{"internalType":"address","name":"_liquidityPoolWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":[],"name":"EIP712DomainChanged","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":"value","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":"charityTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPoolWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"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":[],"name":"totalTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

610160604052348015610010575f80fd5b5060405161339d38038061339d83398181016040528101906100329190610af5565b6040518060400160405280600d81526020017f4a656e6f73696465204a6f656c00000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600d81526020017f4a656e6f73696465204a6f656c000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4f414d00000000000000000000000000000000000000000000000000000000815250816003908161011a9190610d6d565b50806004908161012a9190610d6d565b50505061014160058361036460201b90919060201c565b610120818152505061015d60068261036460201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a0818152505061019a6103b160201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505050505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023d90610ebc565b60405180910390fd5b8160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102fe336102d861040b60201b60201c565b600a6102e49190611042565b633b9aca006102f3919061108c565b61041360201b60201c565b5f61030d61040b60201b60201c565b600a6103199190611042565b6305f5e100610328919061108c565b905061035c3360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361049860201b60201c565b505050611387565b5f6020835110156103855761037e8361058e60201b60201c565b90506103ab565b82610395836105f360201b60201c565b5f0190816103a39190610d6d565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e0516101005146306040516020016103f0959493929190611103565b60405160208183030381529060405280519060200120905090565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610483575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161047a9190611154565b60405180910390fd5b6104945f83836105fc60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610508575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016104ff9190611154565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610578575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161056f9190611154565b60405180910390fd5b6105898383836105fc60201b60201c565b505050565b5f80829050601f815111156105da57826040517f305a27a90000000000000000000000000000000000000000000000000000000081526004016105d191906111c3565b60405180910390fd5b8051816105e690611210565b5f1c175f1b915050919050565b5f819050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561066457505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156106bd575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610716575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610867575f606460028361072b919061108c565b61073591906112a3565b90505f6064600184610747919061108c565b61075191906112a3565b90505f6064600185610763919061108c565b61076d91906112a3565b90505f838561077c91906112d3565b90505f8311156107b9576107b88760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561087e60201b60201c565b5b5f8211801561081557505f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561084d5761084c8760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461087e60201b60201c565b5b61085e87878361087e60201b60201c565b50505050610879565b61087883838361087e60201b60201c565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ce578060025f8282546108c29190611306565b9250508190555061099c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610957578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161094e93929190611339565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e3578060025f8282540392505081905550610a2d565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a8a919061136e565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610ac482610a9b565b9050919050565b610ad481610aba565b8114610ade575f80fd5b50565b5f81519050610aef81610acb565b92915050565b5f8060408385031215610b0b57610b0a610a97565b5b5f610b1885828601610ae1565b9250506020610b2985828601610ae1565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610bae57607f821691505b602082108103610bc157610bc0610b6a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610c237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610be8565b610c2d8683610be8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610c71610c6c610c6784610c45565b610c4e565b610c45565b9050919050565b5f819050919050565b610c8a83610c57565b610c9e610c9682610c78565b848454610bf4565b825550505050565b5f90565b610cb2610ca6565b610cbd818484610c81565b505050565b5b81811015610ce057610cd55f82610caa565b600181019050610cc3565b5050565b601f821115610d2557610cf681610bc7565b610cff84610bd9565b81016020851015610d0e578190505b610d22610d1a85610bd9565b830182610cc2565b50505b505050565b5f82821c905092915050565b5f610d455f1984600802610d2a565b1980831691505092915050565b5f610d5d8383610d36565b9150826002028217905092915050565b610d7682610b33565b67ffffffffffffffff811115610d8f57610d8e610b3d565b5b610d998254610b97565b610da4828285610ce4565b5f60209050601f831160018114610dd5575f8415610dc3578287015190505b610dcd8582610d52565b865550610e34565b601f198416610de386610bc7565b5f5b82811015610e0a57848901518255600182019150602085019450602081019050610de5565b86831015610e275784890151610e23601f891682610d36565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f436861726974792077616c6c65742063616e6e6e6f7420626520746865207a655f8201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b5f610ea6602a83610e3c565b9150610eb182610e4c565b604082019050919050565b5f6020820190508181035f830152610ed381610e9a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610f5c57808604811115610f3857610f37610eda565b5b6001851615610f475780820291505b8081029050610f5585610f07565b9450610f1c565b94509492505050565b5f82610f74576001905061102f565b81610f81575f905061102f565b8160018114610f975760028114610fa157610fd0565b600191505061102f565b60ff841115610fb357610fb2610eda565b5b8360020a915084821115610fca57610fc9610eda565b5b5061102f565b5060208310610133831016604e8410600b84101617156110055782820a90508381111561100057610fff610eda565b5b61102f565b6110128484846001610f13565b9250905081840481111561102957611028610eda565b5b81810290505b9392505050565b5f60ff82169050919050565b5f61104c82610c45565b915061105783611036565b92506110847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610f65565b905092915050565b5f61109682610c45565b91506110a183610c45565b92508282026110af81610c45565b915082820484148315176110c6576110c5610eda565b5b5092915050565b5f819050919050565b6110df816110cd565b82525050565b6110ee81610c45565b82525050565b6110fd81610aba565b82525050565b5f60a0820190506111165f8301886110d6565b61112360208301876110d6565b61113060408301866110d6565b61113d60608301856110e5565b61114a60808301846110f4565b9695505050505050565b5f6020820190506111675f8301846110f4565b92915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61119582610b33565b61119f8185610e3c565b93506111af81856020860161116d565b6111b88161117b565b840191505092915050565b5f6020820190508181035f8301526111db818461118b565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f61120782516110cd565b80915050919050565b5f61121a826111e3565b82611224846111ed565b905061122f816111fc565b9250602082101561126f5761126a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802610be8565b831692505b5050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6112ad82610c45565b91506112b883610c45565b9250826112c8576112c7611276565b5b828204905092915050565b5f6112dd82610c45565b91506112e883610c45565b9250828203905081811115611300576112ff610eda565b5b92915050565b5f61131082610c45565b915061131b83610c45565b925082820190508082111561133357611332610eda565b5b92915050565b5f60608201905061134c5f8301866110f4565b61135960208301856110e5565b61136660408301846110e5565b949350505050565b5f6020820190506113815f8301846110e5565b92915050565b60805160a05160c05160e051610100516101205161014051611fc56113d85f395f610b4b01525f610b1001525f61109501525f61107401525f610a0e01525f610a6401525f610a8d0152611fc55ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c80637ecebe00116100a0578063c59861d71161006f578063c59861d7146102fe578063d02fd9981461031c578063d505accf1461033a578063dd62ed3e14610356578063fff5a9fb1461038657610114565b80637ecebe001461025c57806384b0196e1461028c57806395d89b41146102b0578063a9059cbb146102ce57610114565b8063313ce567116100e7578063313ce567146101b45780633644e515146101d257806360f952a7146101f057806370a082311461020e5780637b2087691461023e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b6101206103a4565b60405161012d9190611764565b60405180910390f35b610150600480360381019061014b9190611815565b610434565b60405161015d919061186d565b60405180910390f35b61016e610456565b60405161017b9190611895565b60405180910390f35b61019e600480360381019061019991906118ae565b61045f565b6040516101ab919061186d565b60405180910390f35b6101bc61048d565b6040516101c99190611919565b60405180910390f35b6101da610495565b6040516101e7919061194a565b60405180910390f35b6101f86104a3565b6040516102059190611895565b60405180910390f35b61022860048036038101906102239190611963565b6104a8565b6040516102359190611895565b60405180910390f35b6102466104ed565b604051610253919061199d565b60405180910390f35b61027660048036038101906102719190611963565b610512565b6040516102839190611895565b60405180910390f35b610294610523565b6040516102a79796959493929190611aa7565b60405180910390f35b6102b86105c8565b6040516102c59190611764565b60405180910390f35b6102e860048036038101906102e39190611815565b610658565b6040516102f5919061186d565b60405180910390f35b61030661067a565b6040516103139190611895565b60405180910390f35b61032461067f565b604051610331919061199d565b60405180910390f35b610354600480360381019061034f9190611b7d565b6106a4565b005b610370600480360381019061036b9190611c1a565b6107e9565b60405161037d9190611895565b60405180910390f35b61038e61086b565b60405161039b9190611895565b60405180910390f35b6060600380546103b390611c85565b80601f01602080910402602001604051908101604052809291908181526020018280546103df90611c85565b801561042a5780601f106104015761010080835404028352916020019161042a565b820191905f5260205f20905b81548152906001019060200180831161040d57829003601f168201915b5050505050905090565b5f8061043e610870565b905061044b818585610877565b600191505092915050565b5f600254905090565b5f80610469610870565b9050610476858285610889565b61048185858561091b565b60019150509392505050565b5f6012905090565b5f61049e610a0b565b905090565b600181565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61051c82610ac1565b9050919050565b5f6060805f805f6060610534610b07565b61053c610b42565b46305f801b5f67ffffffffffffffff81111561055b5761055a611cb5565b5b6040519080825280602002602001820160405280156105895781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6060600480546105d790611c85565b80601f016020809104026020016040519081016040528092919081815260200182805461060390611c85565b801561064e5780601f106106255761010080835404028352916020019161064e565b820191905f5260205f20905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b5f80610662610870565b905061066f81858561091b565b600191505092915050565b600181565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b834211156106e957836040517f627913020000000000000000000000000000000000000000000000000000000081526004016106e09190611895565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886107178c610b7d565b8960405160200161072d96959493929190611ce2565b6040516020818303038152906040528051906020012090505f61074f82610bd0565b90505f61075e82878787610be9565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107d257808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016107c9929190611d41565b60405180910390fd5b6107dd8a8a8a610877565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600281565b5f33905090565b6108848383836001610c17565b505050565b5f61089484846107e9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109155781811015610906578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108fd93929190611d68565b60405180910390fd5b61091484848484035f610c17565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610982919061199d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109fb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109f2919061199d565b60405180910390fd5b610a06838383610de6565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610a8657507f000000000000000000000000000000000000000000000000000000000000000046145b15610ab3577f00000000000000000000000000000000000000000000000000000000000000009050610abe565b610abb611050565b90505b90565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060610b3d60057f00000000000000000000000000000000000000000000000000000000000000006110e590919063ffffffff16565b905090565b6060610b7860067f00000000000000000000000000000000000000000000000000000000000000006110e590919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f610be2610bdc610a0b565b83611192565b9050919050565b5f805f80610bf9888888886111d2565b925092509250610c0982826112b9565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c87575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c7e919061199d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf7575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610cee919061199d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610de0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dd79190611895565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e4e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610ea7575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610f00575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561103f575f6064600283610f159190611dca565b610f1f9190611e38565b90505f6064600184610f319190611dca565b610f3b9190611e38565b90505f6064600185610f4d9190611dca565b610f579190611e38565b90505f8385610f669190611e68565b90505f831115610f9d57610f9c8760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561141b565b5b5f82118015610ff957505f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561102b5761102a8760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461141b565b5b61103687878361141b565b5050505061104b565b61104a83838361141b565b5b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000046306040516020016110ca959493929190611e9b565b60405160208183030381529060405280519060200120905090565b606060ff5f1b8314611101576110fa83611634565b905061118c565b81805461110d90611c85565b80601f016020809104026020016040519081016040528092919081815260200182805461113990611c85565b80156111845780601f1061115b57610100808354040283529160200191611184565b820191905f5260205f20905b81548152906001019060200180831161116757829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c111561120e575f6003859250925092506112af565b5f6001888888886040515f81526020016040526040516112319493929190611eec565b6020604051602081039080840390855afa158015611251573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a2575f60015f801b935093509350506112af565b805f805f1b935093509350505b9450945094915050565b5f60038111156112cc576112cb611f2f565b5b8260038111156112df576112de611f2f565b5b031561141757600160038111156112f9576112f8611f2f565b5b82600381111561130c5761130b611f2f565b5b03611343576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600381111561135757611356611f2f565b5b82600381111561136a57611369611f2f565b5b036113ae57805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016113a59190611895565b60405180910390fd5b6003808111156113c1576113c0611f2f565b5b8260038111156113d4576113d3611f2f565b5b0361141657806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161140d919061194a565b60405180910390fd5b5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361146b578060025f82825461145f9190611f5c565b92505081905550611539565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156114f4578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114eb93929190611d68565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611580578060025f82825403925050819055506115ca565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116279190611895565b60405180910390a3505050565b60605f611640836116a6565b90505f602067ffffffffffffffff81111561165e5761165d611cb5565b5b6040519080825280601f01601f1916602001820160405280156116905781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f8111156116eb576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611736826116f4565b61174081856116fe565b935061175081856020860161170e565b6117598161171c565b840191505092915050565b5f6020820190508181035f83015261177c818461172c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117b182611788565b9050919050565b6117c1816117a7565b81146117cb575f80fd5b50565b5f813590506117dc816117b8565b92915050565b5f819050919050565b6117f4816117e2565b81146117fe575f80fd5b50565b5f8135905061180f816117eb565b92915050565b5f806040838503121561182b5761182a611784565b5b5f611838858286016117ce565b925050602061184985828601611801565b9150509250929050565b5f8115159050919050565b61186781611853565b82525050565b5f6020820190506118805f83018461185e565b92915050565b61188f816117e2565b82525050565b5f6020820190506118a85f830184611886565b92915050565b5f805f606084860312156118c5576118c4611784565b5b5f6118d2868287016117ce565b93505060206118e3868287016117ce565b92505060406118f486828701611801565b9150509250925092565b5f60ff82169050919050565b611913816118fe565b82525050565b5f60208201905061192c5f83018461190a565b92915050565b5f819050919050565b61194481611932565b82525050565b5f60208201905061195d5f83018461193b565b92915050565b5f6020828403121561197857611977611784565b5b5f611985848285016117ce565b91505092915050565b611997816117a7565b82525050565b5f6020820190506119b05f83018461198e565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6119ea816119b6565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611a22816117e2565b82525050565b5f611a338383611a19565b60208301905092915050565b5f602082019050919050565b5f611a55826119f0565b611a5f81856119fa565b9350611a6a83611a0a565b805f5b83811015611a9a578151611a818882611a28565b9750611a8c83611a3f565b925050600181019050611a6d565b5085935050505092915050565b5f60e082019050611aba5f83018a6119e1565b8181036020830152611acc818961172c565b90508181036040830152611ae0818861172c565b9050611aef6060830187611886565b611afc608083018661198e565b611b0960a083018561193b565b81810360c0830152611b1b8184611a4b565b905098975050505050505050565b611b32816118fe565b8114611b3c575f80fd5b50565b5f81359050611b4d81611b29565b92915050565b611b5c81611932565b8114611b66575f80fd5b50565b5f81359050611b7781611b53565b92915050565b5f805f805f805f60e0888a031215611b9857611b97611784565b5b5f611ba58a828b016117ce565b9750506020611bb68a828b016117ce565b9650506040611bc78a828b01611801565b9550506060611bd88a828b01611801565b9450506080611be98a828b01611b3f565b93505060a0611bfa8a828b01611b69565b92505060c0611c0b8a828b01611b69565b91505092959891949750929550565b5f8060408385031215611c3057611c2f611784565b5b5f611c3d858286016117ce565b9250506020611c4e858286016117ce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c9c57607f821691505b602082108103611caf57611cae611c58565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050611cf55f83018961193b565b611d02602083018861198e565b611d0f604083018761198e565b611d1c6060830186611886565b611d296080830185611886565b611d3660a0830184611886565b979650505050505050565b5f604082019050611d545f83018561198e565b611d61602083018461198e565b9392505050565b5f606082019050611d7b5f83018661198e565b611d886020830185611886565b611d956040830184611886565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dd4826117e2565b9150611ddf836117e2565b9250828202611ded816117e2565b91508282048414831517611e0457611e03611d9d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e42826117e2565b9150611e4d836117e2565b925082611e5d57611e5c611e0b565b5b828204905092915050565b5f611e72826117e2565b9150611e7d836117e2565b9250828203905081811115611e9557611e94611d9d565b5b92915050565b5f60a082019050611eae5f83018861193b565b611ebb602083018761193b565b611ec8604083018661193b565b611ed56060830185611886565b611ee2608083018461198e565b9695505050505050565b5f608082019050611eff5f83018761193b565b611f0c602083018661190a565b611f19604083018561193b565b611f26606083018461193b565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f611f66826117e2565b9150611f71836117e2565b9250828201905080821115611f8957611f88611d9d565b5b9291505056fea2646970667358221220dbf22eaac15727abc782992a880fd9a491db90e4737c7002e207945010b7052d64736f6c634300081900330000000000000000000000009ad9994d72ff68f3115ecf57d20b8db92e7954320000000000000000000000000f47b9a905b24fcdc5d5d16540f385185e5ca68a

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c80637ecebe00116100a0578063c59861d71161006f578063c59861d7146102fe578063d02fd9981461031c578063d505accf1461033a578063dd62ed3e14610356578063fff5a9fb1461038657610114565b80637ecebe001461025c57806384b0196e1461028c57806395d89b41146102b0578063a9059cbb146102ce57610114565b8063313ce567116100e7578063313ce567146101b45780633644e515146101d257806360f952a7146101f057806370a082311461020e5780637b2087691461023e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b6101206103a4565b60405161012d9190611764565b60405180910390f35b610150600480360381019061014b9190611815565b610434565b60405161015d919061186d565b60405180910390f35b61016e610456565b60405161017b9190611895565b60405180910390f35b61019e600480360381019061019991906118ae565b61045f565b6040516101ab919061186d565b60405180910390f35b6101bc61048d565b6040516101c99190611919565b60405180910390f35b6101da610495565b6040516101e7919061194a565b60405180910390f35b6101f86104a3565b6040516102059190611895565b60405180910390f35b61022860048036038101906102239190611963565b6104a8565b6040516102359190611895565b60405180910390f35b6102466104ed565b604051610253919061199d565b60405180910390f35b61027660048036038101906102719190611963565b610512565b6040516102839190611895565b60405180910390f35b610294610523565b6040516102a79796959493929190611aa7565b60405180910390f35b6102b86105c8565b6040516102c59190611764565b60405180910390f35b6102e860048036038101906102e39190611815565b610658565b6040516102f5919061186d565b60405180910390f35b61030661067a565b6040516103139190611895565b60405180910390f35b61032461067f565b604051610331919061199d565b60405180910390f35b610354600480360381019061034f9190611b7d565b6106a4565b005b610370600480360381019061036b9190611c1a565b6107e9565b60405161037d9190611895565b60405180910390f35b61038e61086b565b60405161039b9190611895565b60405180910390f35b6060600380546103b390611c85565b80601f01602080910402602001604051908101604052809291908181526020018280546103df90611c85565b801561042a5780601f106104015761010080835404028352916020019161042a565b820191905f5260205f20905b81548152906001019060200180831161040d57829003601f168201915b5050505050905090565b5f8061043e610870565b905061044b818585610877565b600191505092915050565b5f600254905090565b5f80610469610870565b9050610476858285610889565b61048185858561091b565b60019150509392505050565b5f6012905090565b5f61049e610a0b565b905090565b600181565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61051c82610ac1565b9050919050565b5f6060805f805f6060610534610b07565b61053c610b42565b46305f801b5f67ffffffffffffffff81111561055b5761055a611cb5565b5b6040519080825280602002602001820160405280156105895781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6060600480546105d790611c85565b80601f016020809104026020016040519081016040528092919081815260200182805461060390611c85565b801561064e5780601f106106255761010080835404028352916020019161064e565b820191905f5260205f20905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b5f80610662610870565b905061066f81858561091b565b600191505092915050565b600181565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b834211156106e957836040517f627913020000000000000000000000000000000000000000000000000000000081526004016106e09190611895565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886107178c610b7d565b8960405160200161072d96959493929190611ce2565b6040516020818303038152906040528051906020012090505f61074f82610bd0565b90505f61075e82878787610be9565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107d257808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016107c9929190611d41565b60405180910390fd5b6107dd8a8a8a610877565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600281565b5f33905090565b6108848383836001610c17565b505050565b5f61089484846107e9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109155781811015610906578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108fd93929190611d68565b60405180910390fd5b61091484848484035f610c17565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610982919061199d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109fb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109f2919061199d565b60405180910390fd5b610a06838383610de6565b505050565b5f7f000000000000000000000000bb4913d50f9619db70d3760c18deb7b55320758273ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610a8657507f000000000000000000000000000000000000000000000000000000000000000146145b15610ab3577f6df555bbe3168f1fe7b76b737b10b31122eddf2725ed7b0ccf967861aeae69df9050610abe565b610abb611050565b90505b90565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060610b3d60057f4a656e6f73696465204a6f656c0000000000000000000000000000000000000d6110e590919063ffffffff16565b905090565b6060610b7860067f31000000000000000000000000000000000000000000000000000000000000016110e590919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f610be2610bdc610a0b565b83611192565b9050919050565b5f805f80610bf9888888886111d2565b925092509250610c0982826112b9565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c87575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c7e919061199d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf7575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610cee919061199d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610de0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dd79190611895565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e4e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610ea7575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610f00575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561103f575f6064600283610f159190611dca565b610f1f9190611e38565b90505f6064600184610f319190611dca565b610f3b9190611e38565b90505f6064600185610f4d9190611dca565b610f579190611e38565b90505f8385610f669190611e68565b90505f831115610f9d57610f9c8760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561141b565b5b5f82118015610ff957505f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561102b5761102a8760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461141b565b5b61103687878361141b565b5050505061104b565b61104a83838361141b565b5b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fd73d627a13caee92d02e2936ffdcbda03542f5d57de328ad323b62dba6d03cda7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016110ca959493929190611e9b565b60405160208183030381529060405280519060200120905090565b606060ff5f1b8314611101576110fa83611634565b905061118c565b81805461110d90611c85565b80601f016020809104026020016040519081016040528092919081815260200182805461113990611c85565b80156111845780601f1061115b57610100808354040283529160200191611184565b820191905f5260205f20905b81548152906001019060200180831161116757829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c111561120e575f6003859250925092506112af565b5f6001888888886040515f81526020016040526040516112319493929190611eec565b6020604051602081039080840390855afa158015611251573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a2575f60015f801b935093509350506112af565b805f805f1b935093509350505b9450945094915050565b5f60038111156112cc576112cb611f2f565b5b8260038111156112df576112de611f2f565b5b031561141757600160038111156112f9576112f8611f2f565b5b82600381111561130c5761130b611f2f565b5b03611343576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600381111561135757611356611f2f565b5b82600381111561136a57611369611f2f565b5b036113ae57805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016113a59190611895565b60405180910390fd5b6003808111156113c1576113c0611f2f565b5b8260038111156113d4576113d3611f2f565b5b0361141657806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161140d919061194a565b60405180910390fd5b5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361146b578060025f82825461145f9190611f5c565b92505081905550611539565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156114f4578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114eb93929190611d68565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611580578060025f82825403925050819055506115ca565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116279190611895565b60405180910390a3505050565b60605f611640836116a6565b90505f602067ffffffffffffffff81111561165e5761165d611cb5565b5b6040519080825280601f01601f1916602001820160405280156116905781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f8111156116eb576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611736826116f4565b61174081856116fe565b935061175081856020860161170e565b6117598161171c565b840191505092915050565b5f6020820190508181035f83015261177c818461172c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117b182611788565b9050919050565b6117c1816117a7565b81146117cb575f80fd5b50565b5f813590506117dc816117b8565b92915050565b5f819050919050565b6117f4816117e2565b81146117fe575f80fd5b50565b5f8135905061180f816117eb565b92915050565b5f806040838503121561182b5761182a611784565b5b5f611838858286016117ce565b925050602061184985828601611801565b9150509250929050565b5f8115159050919050565b61186781611853565b82525050565b5f6020820190506118805f83018461185e565b92915050565b61188f816117e2565b82525050565b5f6020820190506118a85f830184611886565b92915050565b5f805f606084860312156118c5576118c4611784565b5b5f6118d2868287016117ce565b93505060206118e3868287016117ce565b92505060406118f486828701611801565b9150509250925092565b5f60ff82169050919050565b611913816118fe565b82525050565b5f60208201905061192c5f83018461190a565b92915050565b5f819050919050565b61194481611932565b82525050565b5f60208201905061195d5f83018461193b565b92915050565b5f6020828403121561197857611977611784565b5b5f611985848285016117ce565b91505092915050565b611997816117a7565b82525050565b5f6020820190506119b05f83018461198e565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6119ea816119b6565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611a22816117e2565b82525050565b5f611a338383611a19565b60208301905092915050565b5f602082019050919050565b5f611a55826119f0565b611a5f81856119fa565b9350611a6a83611a0a565b805f5b83811015611a9a578151611a818882611a28565b9750611a8c83611a3f565b925050600181019050611a6d565b5085935050505092915050565b5f60e082019050611aba5f83018a6119e1565b8181036020830152611acc818961172c565b90508181036040830152611ae0818861172c565b9050611aef6060830187611886565b611afc608083018661198e565b611b0960a083018561193b565b81810360c0830152611b1b8184611a4b565b905098975050505050505050565b611b32816118fe565b8114611b3c575f80fd5b50565b5f81359050611b4d81611b29565b92915050565b611b5c81611932565b8114611b66575f80fd5b50565b5f81359050611b7781611b53565b92915050565b5f805f805f805f60e0888a031215611b9857611b97611784565b5b5f611ba58a828b016117ce565b9750506020611bb68a828b016117ce565b9650506040611bc78a828b01611801565b9550506060611bd88a828b01611801565b9450506080611be98a828b01611b3f565b93505060a0611bfa8a828b01611b69565b92505060c0611c0b8a828b01611b69565b91505092959891949750929550565b5f8060408385031215611c3057611c2f611784565b5b5f611c3d858286016117ce565b9250506020611c4e858286016117ce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c9c57607f821691505b602082108103611caf57611cae611c58565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050611cf55f83018961193b565b611d02602083018861198e565b611d0f604083018761198e565b611d1c6060830186611886565b611d296080830185611886565b611d3660a0830184611886565b979650505050505050565b5f604082019050611d545f83018561198e565b611d61602083018461198e565b9392505050565b5f606082019050611d7b5f83018661198e565b611d886020830185611886565b611d956040830184611886565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611dd4826117e2565b9150611ddf836117e2565b9250828202611ded816117e2565b91508282048414831517611e0457611e03611d9d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611e42826117e2565b9150611e4d836117e2565b925082611e5d57611e5c611e0b565b5b828204905092915050565b5f611e72826117e2565b9150611e7d836117e2565b9250828203905081811115611e9557611e94611d9d565b5b92915050565b5f60a082019050611eae5f83018861193b565b611ebb602083018761193b565b611ec8604083018661193b565b611ed56060830185611886565b611ee2608083018461198e565b9695505050505050565b5f608082019050611eff5f83018761193b565b611f0c602083018661190a565b611f19604083018561193b565b611f26606083018461193b565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f611f66826117e2565b9150611f71836117e2565b9250828201905080821115611f8957611f88611d9d565b5b9291505056fea2646970667358221220dbf22eaac15727abc782992a880fd9a491db90e4737c7002e207945010b7052d64736f6c63430008190033

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

0000000000000000000000009ad9994d72ff68f3115ecf57d20b8db92e7954320000000000000000000000000f47b9a905b24fcdc5d5d16540f385185e5ca68a

-----Decoded View---------------
Arg [0] : _charityWallet (address): 0x9aD9994D72Ff68f3115ECF57D20b8Db92e795432
Arg [1] : _liquidityPoolWallet (address): 0x0f47b9a905b24fcdC5D5D16540f385185E5ca68a

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ad9994d72ff68f3115ecf57d20b8db92e795432
Arg [1] : 0000000000000000000000000f47b9a905b24fcdc5d5d16540f385185e5ca68a


Deployed Bytecode Sourcemap

78629:1799:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66590:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68883:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67692:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69651:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67543:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78443:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78806:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67854:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78671:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78185:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39896:580;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;66800:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68177:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78858:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78706:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77431:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68422:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78747:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66590:91;66635:13;66668:5;66661:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66590:91;:::o;68883:190::-;68956:4;68973:13;68989:12;:10;:12::i;:::-;68973:28;;69012:31;69021:5;69028:7;69037:5;69012:8;:31::i;:::-;69061:4;69054:11;;;68883:190;;;;:::o;67692:99::-;67744:7;67771:12;;67764:19;;67692:99;:::o;69651:249::-;69738:4;69755:15;69773:12;:10;:12::i;:::-;69755:30;;69796:37;69812:4;69818:7;69827:5;69796:15;:37::i;:::-;69844:26;69854:4;69860:2;69864:5;69844:9;:26::i;:::-;69888:4;69881:11;;;69651:249;;;;;:::o;67543:84::-;67592:5;67617:2;67610:9;;67543:84;:::o;78443:114::-;78502:7;78529:20;:18;:20::i;:::-;78522:27;;78443:114;:::o;78806:45::-;78850:1;78806:45;:::o;67854:118::-;67919:7;67946:9;:18;67956:7;67946:18;;;;;;;;;;;;;;;;67939:25;;67854:118;;;:::o;78671:28::-;;;;;;;;;;;;;:::o;78185:145::-;78276:7;78303:19;78316:5;78303:12;:19::i;:::-;78296:26;;78185:145;;;:::o;39896:580::-;39999:13;40027:18;40060:21;40096:15;40126:25;40166:12;40193:27;40301:13;:11;:13::i;:::-;40329:16;:14;:16::i;:::-;40360:13;40396:4;40424:1;40416:10;;40455:1;40441:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40248:220;;;;;;;;;;;;;;;;;;;;;39896:580;;;;;;;:::o;66800:95::-;66847:13;66880:7;66873:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66800:95;:::o;68177:182::-;68246:4;68263:13;68279:12;:10;:12::i;:::-;68263:28;;68302:27;68312:5;68319:2;68323:5;68302:9;:27::i;:::-;68347:4;68340:11;;;68177:182;;;;:::o;78858:47::-;78904:1;78858:47;:::o;78706:34::-;;;;;;;;;;;;;:::o;77431:695::-;77661:8;77643:15;:26;77639:99;;;77717:8;77693:33;;;;;;;;;;;:::i;:::-;;;;;;;;77639:99;77750:18;76751:95;77809:5;77816:7;77825:5;77832:16;77842:5;77832:9;:16::i;:::-;77850:8;77781:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77771:89;;;;;;77750:110;;77873:12;77888:28;77905:10;77888:16;:28::i;:::-;77873:43;;77929:14;77946:28;77960:4;77966:1;77969;77972;77946:13;:28::i;:::-;77929:45;;77999:5;77989:15;;:6;:15;;;77985:90;;78049:6;78057:5;78028:35;;;;;;;;;;;;:::i;:::-;;;;;;;;77985:90;78087:31;78096:5;78103:7;78112:5;78087:8;:31::i;:::-;77628:498;;;77431:695;;;;;;;:::o;68422:142::-;68502:7;68529:11;:18;68541:5;68529:18;;;;;;;;;;;;;;;:27;68548:7;68529:27;;;;;;;;;;;;;;;;68522:34;;68422:142;;;;:::o;78747:43::-;78789:1;78747:43;:::o;60718:98::-;60771:7;60798:10;60791:17;;60718:98;:::o;73710:130::-;73795:37;73804:5;73811:7;73820:5;73827:4;73795:8;:37::i;:::-;73710:130;;;:::o;75426:487::-;75526:24;75553:25;75563:5;75570:7;75553:9;:25::i;:::-;75526:52;;75613:17;75593:16;:37;75589:317;;75670:5;75651:16;:24;75647:132;;;75730:7;75739:16;75757:5;75703:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;75647:132;75822:57;75831:5;75838:7;75866:5;75847:16;:24;75873:5;75822:8;:57::i;:::-;75589:317;75515:398;75426:487;;;:::o;70285:308::-;70385:1;70369:18;;:4;:18;;;70365:88;;70438:1;70411:30;;;;;;;;;;;:::i;:::-;;;;;;;;70365:88;70481:1;70467:16;;:2;:16;;;70463:88;;70536:1;70507:32;;;;;;;;;;;:::i;:::-;;;;;;;;70463:88;70561:24;70569:4;70575:2;70579:5;70561:7;:24::i;:::-;70285:308;;;:::o;38563:268::-;38616:7;38657:11;38640:28;;38648:4;38640:28;;;:63;;;;;38689:14;38672:13;:31;38640:63;38636:188;;;38727:22;38720:29;;;;38636:188;38789:23;:21;:23::i;:::-;38782:30;;38563:268;;:::o;611:109::-;671:7;698;:14;706:5;698:14;;;;;;;;;;;;;;;;691:21;;611:109;;;:::o;40805:128::-;40851:13;40884:41;40911:13;40884:5;:26;;:41;;;;:::i;:::-;40877:48;;40805:128;:::o;41268:137::-;41317:13;41350:47;41380:16;41350:8;:29;;:47;;;;:::i;:::-;41343:54;;41268:137;:::o;841:402::-;901:7;1208;:14;1216:5;1208:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;1201:23;;841:402;;;:::o;39662:178::-;39739:7;39766:66;39799:20;:18;:20::i;:::-;39821:10;39766:32;:66::i;:::-;39759:73;;39662:178;;;:::o;48402:264::-;48487:7;48508:17;48527:18;48547:16;48567:25;48578:4;48584:1;48587;48590;48567:10;:25::i;:::-;48507:85;;;;;;48603:28;48615:5;48622:8;48603:11;:28::i;:::-;48649:9;48642:16;;;;;48402:264;;;;;;:::o;74691:443::-;74821:1;74804:19;;:5;:19;;;74800:91;;74876:1;74847:32;;;;;;;;;;;:::i;:::-;;;;;;;;74800:91;74924:1;74905:21;;:7;:21;;;74901:92;;74978:1;74950:31;;;;;;;;;;;:::i;:::-;;;;;;;;74901:92;75033:5;75003:11;:18;75015:5;75003:18;;;;;;;;;;;;;;;:27;75022:7;75003:27;;;;;;;;;;;;;;;:35;;;;75053:9;75049:78;;;75100:7;75084:31;;75093:5;75084:31;;;75109:5;75084:31;;;;;;:::i;:::-;;;;;;;;75049:78;74691:443;;;;:::o;79493:932::-;79609:1;79593:18;;:4;:18;;;;:38;;;;;79629:1;79615:16;;:2;:16;;;;79593:38;:63;;;;;79643:13;;;;;;;;;;;79635:21;;:4;:21;;;;79593:63;:86;;;;;79666:13;;;;;;;;;;;79660:19;;:2;:19;;;;79593:86;79589:827;;;79696:22;79753:3;78789:1;79722:6;:27;;;;:::i;:::-;79721:35;;;;:::i;:::-;79696:60;;79771:24;79832:3;78850:1;79799:6;:29;;;;:::i;:::-;79798:37;;;;:::i;:::-;79771:64;;79850:26;79915:3;78904:1;79880:6;:31;;;;:::i;:::-;79879:39;;;;:::i;:::-;79850:68;;79933:22;79967:14;79958:6;:23;;;;:::i;:::-;79933:48;;80021:1;80002:16;:20;79998:113;;;80043:52;80057:4;80063:13;;;;;;;;;;;80078:16;80043:13;:52::i;:::-;79998:113;80150:1;80129:18;:22;:59;;;;;80186:1;80155:33;;:19;;;;;;;;;;;:33;;;;80129:59;80125:160;;;80209:60;80223:4;80229:19;;;;;;;;;;;80250:18;80209:13;:60::i;:::-;80125:160;80301:39;80315:4;80321:2;80325:14;80301:13;:39::i;:::-;79681:671;;;;79589:827;;;80373:31;80387:4;80393:2;80397:6;80373:13;:31::i;:::-;79589:827;79493:932;;;:::o;38839:181::-;38894:7;36755:95;38953:11;38966:14;38982:13;39005:4;38931:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38921:91;;;;;;38914:98;;38839:181;:::o;9951:273::-;10045:13;7897:66;10104:17;;10094:5;10075:46;10071:146;;10145:15;10154:5;10145:8;:15::i;:::-;10138:22;;;;10071:146;10200:5;10193:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9951:273;;;;;:::o;34362:410::-;34455:14;34567:4;34561:11;34598:10;34593:3;34586:23;34646:15;34639:4;34634:3;34630:14;34623:39;34699:10;34692:4;34687:3;34683:14;34676:34;34749:4;34744:3;34734:20;34724:30;;34535:230;34362:410;;;;:::o;46707:1556::-;46838:7;46847:12;46861:7;47781:66;47776:1;47768:10;;:79;47764:166;;;47880:1;47884:30;47916:1;47864:54;;;;;;;;47764:166;48027:14;48044:24;48054:4;48060:1;48063;48066;48044:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48027:41;;48101:1;48083:20;;:6;:20;;;48079:115;;48136:1;48140:29;48179:1;48171:10;;48120:62;;;;;;;;;48079:115;48214:6;48222:20;48252:1;48244:10;;48206:49;;;;;;;46707:1556;;;;;;;;;:::o;48804:542::-;48900:20;48891:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;48887:452;48937:7;48887:452;48998:29;48989:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;48985:354;;49051:23;;;;;;;;;;;;;;48985:354;49105:35;49096:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;49092:247;;49200:8;49192:17;;49164:46;;;;;;;;;;;:::i;:::-;;;;;;;;49092:247;49241:30;49232:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;49228:111;;49318:8;49295:32;;;;;;;;;;;:::i;:::-;;;;;;;;49228:111;48804:542;;;:::o;70917:1135::-;71023:1;71007:18;;:4;:18;;;71003:552;;71161:5;71145:12;;:21;;;;;;;:::i;:::-;;;;;;;;71003:552;;;71199:19;71221:9;:15;71231:4;71221:15;;;;;;;;;;;;;;;;71199:37;;71269:5;71255:11;:19;71251:117;;;71327:4;71333:11;71346:5;71302:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;71251:117;71523:5;71509:11;:19;71491:9;:15;71501:4;71491:15;;;;;;;;;;;;;;;:37;;;;71184:371;71003:552;71585:1;71571:16;;:2;:16;;;71567:435;;71753:5;71737:12;;:21;;;;;;;;;;;71567:435;;;71970:5;71953:9;:13;71963:2;71953:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;71567:435;72034:2;72019:25;;72028:4;72019:25;;;72038:5;72019:25;;;;;;:::i;:::-;;;;;;;;70917:1135;;;:::o;8606:415::-;8665:13;8691:11;8705:16;8716:4;8705:10;:16::i;:::-;8691:30;;8811:17;8842:2;8831:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8811:34;;8936:3;8931;8924:16;8977:4;8970;8965:3;8961:14;8954:28;9010:3;9003:10;;;;8606:415;;;:::o;9098:251::-;9159:7;9179:14;9232:4;9223;9196:33;;:40;9179:57;;9260:2;9251:6;:11;9247:71;;;9286:20;;;;;;;;;;;;;;9247:71;9335:6;9328:13;;;9098:251;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:77::-;4783:7;4812:5;4801:16;;4746:77;;;:::o;4829:118::-;4916:24;4934:5;4916:24;:::i;:::-;4911:3;4904:37;4829:118;;:::o;4953:222::-;5046:4;5084:2;5073:9;5069:18;5061:26;;5097:71;5165:1;5154:9;5150:17;5141:6;5097:71;:::i;:::-;4953:222;;;;:::o;5181:329::-;5240:6;5289:2;5277:9;5268:7;5264:23;5260:32;5257:119;;;5295:79;;:::i;:::-;5257:119;5415:1;5440:53;5485:7;5476:6;5465:9;5461:22;5440:53;:::i;:::-;5430:63;;5386:117;5181:329;;;;:::o;5516:118::-;5603:24;5621:5;5603:24;:::i;:::-;5598:3;5591:37;5516:118;;:::o;5640:222::-;5733:4;5771:2;5760:9;5756:18;5748:26;;5784:71;5852:1;5841:9;5837:17;5828:6;5784:71;:::i;:::-;5640:222;;;;:::o;5868:149::-;5904:7;5944:66;5937:5;5933:78;5922:89;;5868:149;;;:::o;6023:115::-;6108:23;6125:5;6108:23;:::i;:::-;6103:3;6096:36;6023:115;;:::o;6144:114::-;6211:6;6245:5;6239:12;6229:22;;6144:114;;;:::o;6264:184::-;6363:11;6397:6;6392:3;6385:19;6437:4;6432:3;6428:14;6413:29;;6264:184;;;;:::o;6454:132::-;6521:4;6544:3;6536:11;;6574:4;6569:3;6565:14;6557:22;;6454:132;;;:::o;6592:108::-;6669:24;6687:5;6669:24;:::i;:::-;6664:3;6657:37;6592:108;;:::o;6706:179::-;6775:10;6796:46;6838:3;6830:6;6796:46;:::i;:::-;6874:4;6869:3;6865:14;6851:28;;6706:179;;;;:::o;6891:113::-;6961:4;6993;6988:3;6984:14;6976:22;;6891:113;;;:::o;7040:732::-;7159:3;7188:54;7236:5;7188:54;:::i;:::-;7258:86;7337:6;7332:3;7258:86;:::i;:::-;7251:93;;7368:56;7418:5;7368:56;:::i;:::-;7447:7;7478:1;7463:284;7488:6;7485:1;7482:13;7463:284;;;7564:6;7558:13;7591:63;7650:3;7635:13;7591:63;:::i;:::-;7584:70;;7677:60;7730:6;7677:60;:::i;:::-;7667:70;;7523:224;7510:1;7507;7503:9;7498:14;;7463:284;;;7467:14;7763:3;7756:10;;7164:608;;;7040:732;;;;:::o;7778:1215::-;8127:4;8165:3;8154:9;8150:19;8142:27;;8179:69;8245:1;8234:9;8230:17;8221:6;8179:69;:::i;:::-;8295:9;8289:4;8285:20;8280:2;8269:9;8265:18;8258:48;8323:78;8396:4;8387:6;8323:78;:::i;:::-;8315:86;;8448:9;8442:4;8438:20;8433:2;8422:9;8418:18;8411:48;8476:78;8549:4;8540:6;8476:78;:::i;:::-;8468:86;;8564:72;8632:2;8621:9;8617:18;8608:6;8564:72;:::i;:::-;8646:73;8714:3;8703:9;8699:19;8690:6;8646:73;:::i;:::-;8729;8797:3;8786:9;8782:19;8773:6;8729:73;:::i;:::-;8850:9;8844:4;8840:20;8834:3;8823:9;8819:19;8812:49;8878:108;8981:4;8972:6;8878:108;:::i;:::-;8870:116;;7778:1215;;;;;;;;;;:::o;8999:118::-;9070:22;9086:5;9070:22;:::i;:::-;9063:5;9060:33;9050:61;;9107:1;9104;9097:12;9050:61;8999:118;:::o;9123:135::-;9167:5;9205:6;9192:20;9183:29;;9221:31;9246:5;9221:31;:::i;:::-;9123:135;;;;:::o;9264:122::-;9337:24;9355:5;9337:24;:::i;:::-;9330:5;9327:35;9317:63;;9376:1;9373;9366:12;9317:63;9264:122;:::o;9392:139::-;9438:5;9476:6;9463:20;9454:29;;9492:33;9519:5;9492:33;:::i;:::-;9392:139;;;;:::o;9537:1199::-;9648:6;9656;9664;9672;9680;9688;9696;9745:3;9733:9;9724:7;9720:23;9716:33;9713:120;;;9752:79;;:::i;:::-;9713:120;9872:1;9897:53;9942:7;9933:6;9922:9;9918:22;9897:53;:::i;:::-;9887:63;;9843:117;9999:2;10025:53;10070:7;10061:6;10050:9;10046:22;10025:53;:::i;:::-;10015:63;;9970:118;10127:2;10153:53;10198:7;10189:6;10178:9;10174:22;10153:53;:::i;:::-;10143:63;;10098:118;10255:2;10281:53;10326:7;10317:6;10306:9;10302:22;10281:53;:::i;:::-;10271:63;;10226:118;10383:3;10410:51;10453:7;10444:6;10433:9;10429:22;10410:51;:::i;:::-;10400:61;;10354:117;10510:3;10537:53;10582:7;10573:6;10562:9;10558:22;10537:53;:::i;:::-;10527:63;;10481:119;10639:3;10666:53;10711:7;10702:6;10691:9;10687:22;10666:53;:::i;:::-;10656:63;;10610:119;9537:1199;;;;;;;;;;:::o;10742:474::-;10810:6;10818;10867:2;10855:9;10846:7;10842:23;10838:32;10835:119;;;10873:79;;:::i;:::-;10835:119;10993:1;11018:53;11063:7;11054:6;11043:9;11039:22;11018:53;:::i;:::-;11008:63;;10964:117;11120:2;11146:53;11191:7;11182:6;11171:9;11167:22;11146:53;:::i;:::-;11136:63;;11091:118;10742:474;;;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:320;11452:6;11489:1;11483:4;11479:12;11469:22;;11536:1;11530:4;11526:12;11557:18;11547:81;;11613:4;11605:6;11601:17;11591:27;;11547:81;11675:2;11667:6;11664:14;11644:18;11641:38;11638:84;;11694:18;;:::i;:::-;11638:84;11459:269;11408:320;;;:::o;11734:180::-;11782:77;11779:1;11772:88;11879:4;11876:1;11869:15;11903:4;11900:1;11893:15;11920:775;12153:4;12191:3;12180:9;12176:19;12168:27;;12205:71;12273:1;12262:9;12258:17;12249:6;12205:71;:::i;:::-;12286:72;12354:2;12343:9;12339:18;12330:6;12286:72;:::i;:::-;12368;12436:2;12425:9;12421:18;12412:6;12368:72;:::i;:::-;12450;12518:2;12507:9;12503:18;12494:6;12450:72;:::i;:::-;12532:73;12600:3;12589:9;12585:19;12576:6;12532:73;:::i;:::-;12615;12683:3;12672:9;12668:19;12659:6;12615:73;:::i;:::-;11920:775;;;;;;;;;:::o;12701:332::-;12822:4;12860:2;12849:9;12845:18;12837:26;;12873:71;12941:1;12930:9;12926:17;12917:6;12873:71;:::i;:::-;12954:72;13022:2;13011:9;13007:18;12998:6;12954:72;:::i;:::-;12701:332;;;;;:::o;13039:442::-;13188:4;13226:2;13215:9;13211:18;13203:26;;13239:71;13307:1;13296:9;13292:17;13283:6;13239:71;:::i;:::-;13320:72;13388:2;13377:9;13373:18;13364:6;13320:72;:::i;:::-;13402;13470:2;13459:9;13455:18;13446:6;13402:72;:::i;:::-;13039:442;;;;;;:::o;13487:180::-;13535:77;13532:1;13525:88;13632:4;13629:1;13622:15;13656:4;13653:1;13646:15;13673:410;13713:7;13736:20;13754:1;13736:20;:::i;:::-;13731:25;;13770:20;13788:1;13770:20;:::i;:::-;13765:25;;13825:1;13822;13818:9;13847:30;13865:11;13847:30;:::i;:::-;13836:41;;14026:1;14017:7;14013:15;14010:1;14007:22;13987:1;13980:9;13960:83;13937:139;;14056:18;;:::i;:::-;13937:139;13721:362;13673:410;;;;:::o;14089:180::-;14137:77;14134:1;14127:88;14234:4;14231:1;14224:15;14258:4;14255:1;14248:15;14275:185;14315:1;14332:20;14350:1;14332:20;:::i;:::-;14327:25;;14366:20;14384:1;14366:20;:::i;:::-;14361:25;;14405:1;14395:35;;14410:18;;:::i;:::-;14395:35;14452:1;14449;14445:9;14440:14;;14275:185;;;;:::o;14466:194::-;14506:4;14526:20;14544:1;14526:20;:::i;:::-;14521:25;;14560:20;14578:1;14560:20;:::i;:::-;14555:25;;14604:1;14601;14597:9;14589:17;;14628:1;14622:4;14619:11;14616:37;;;14633:18;;:::i;:::-;14616:37;14466:194;;;;:::o;14666:664::-;14871:4;14909:3;14898:9;14894:19;14886:27;;14923:71;14991:1;14980:9;14976:17;14967:6;14923:71;:::i;:::-;15004:72;15072:2;15061:9;15057:18;15048:6;15004:72;:::i;:::-;15086;15154:2;15143:9;15139:18;15130:6;15086:72;:::i;:::-;15168;15236:2;15225:9;15221:18;15212:6;15168:72;:::i;:::-;15250:73;15318:3;15307:9;15303:19;15294:6;15250:73;:::i;:::-;14666:664;;;;;;;;:::o;15336:545::-;15509:4;15547:3;15536:9;15532:19;15524:27;;15561:71;15629:1;15618:9;15614:17;15605:6;15561:71;:::i;:::-;15642:68;15706:2;15695:9;15691:18;15682:6;15642:68;:::i;:::-;15720:72;15788:2;15777:9;15773:18;15764:6;15720:72;:::i;:::-;15802;15870:2;15859:9;15855:18;15846:6;15802:72;:::i;:::-;15336:545;;;;;;;:::o;15887:180::-;15935:77;15932:1;15925:88;16032:4;16029:1;16022:15;16056:4;16053:1;16046:15;16073:191;16113:3;16132:20;16150:1;16132:20;:::i;:::-;16127:25;;16166:20;16184:1;16166:20;:::i;:::-;16161:25;;16209:1;16206;16202:9;16195:16;;16230:3;16227:1;16224:10;16221:36;;;16237:18;;:::i;:::-;16221:36;16073:191;;;;:::o

Swarm Source

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