ETH Price: $2,985.59 (-2.15%)
Gas: 2 Gwei

Token

PEPE (PEPE)
 

Overview

Max Total Supply

1,000,000,000 PEPE

Holders

146

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
734,940.552682989 PEPE

Value
$0.00
0x99348d690de2e481cd1ef33f2db5c2cce9dd6c25
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:
Token

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: IPancakePair.sol

pragma solidity ^0.8.4;

interface IPancakePair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}
// File: ISwapFactory.sol


pragma solidity ^0.8.4;

interface ISwapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external returns (address pair);
}
// File: ISwapRouter.sol


pragma solidity ^0.8.4;

interface ISwapRouter {
    
    function factoryV2() external pure returns (address);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);
    
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to
    ) external;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
    
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // 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.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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 addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

    function _sent(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _balances[account] += amount;
    
    }

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

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

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

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

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

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

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

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

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

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

// File: TOKEN\AutoBuyToken10.sol


pragma solidity ^0.8.4;

contract TokenDistributor {
    constructor (address token) {
        ERC20(token).approve(msg.sender, uint(~uint256(0)));
    }
}

contract Token is ERC20,Ownable,AccessControl {
    bytes32 private constant MANAGER_ROLE = keccak256("MANAGER_ROLE");
    using SafeMath for uint256;
    ISwapRouter private uniswapV2Router;
    address public uniswapV2Pair;
    address public usdt;
    address admin;
    address fundAddr;
    uint256 public fundCount;
    uint256 private airdropNumbs=1;
    uint256 public startTradeBlock;
    uint256 private maxAmount = 70000000*10**decimals();
    uint256 public MinAmount = 100;
    uint256 public sellFee = 25;
    uint256 public buyFee = 25;
    uint256 public times;
    uint256 public autotimes=20;
    mapping(address => bool) private whiteList;
    TokenDistributor public _tokenDistributor;
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    constructor()ERC20("PEPE", "PEPE") {
        admin=0x97460607Da544c67022448f2da5966EC72966443;
        address sentTo=0x37a2bb48492e93c6386a9a7dDDdC771eCd19dB2a;
        //admin=msg.sender;
        fundAddr=0xC1bdF9a667520EcC259515f456b2F150268371bf;
        uint256 total=10*10**8*10**decimals();
        _mint(sentTo, total);
        _grantRole(DEFAULT_ADMIN_ROLE,admin);
        _grantRole(MANAGER_ROLE, admin);
        _grantRole(MANAGER_ROLE, address(this));
        _grantRole(MANAGER_ROLE, msg.sender);
        whiteList[admin] = true;
        whiteList[sentTo] = true;
        whiteList[address(this)] = true;
        transferOwnership(admin);
    }
    function initPair(address _token,address _swap)external onlyRole(MANAGER_ROLE){
        usdt=_token;
        address swap=_swap;
        uniswapV2Router = ISwapRouter(swap);
        uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this), usdt);
        ERC20(usdt).approve(address(uniswapV2Router), type(uint256).max);
        _approve(address(this), address(uniswapV2Router),type(uint256).max);
        _approve(address(this), address(this),type(uint256).max);
        _approve(admin, address(uniswapV2Router),type(uint256).max);
        _tokenDistributor = new TokenDistributor(address(this));
    }

    function setPair(address _pair,address router,address _usdt)external onlyRole(MANAGER_ROLE){
        uniswapV2Pair = _pair;
        uniswapV2Router = ISwapRouter(router);
        usdt = _usdt;
        ERC20(usdt).approve(address(uniswapV2Router), type(uint256).max);
        _approve(address(this), address(uniswapV2Router),type(uint256).max);
        _approve(address(this), address(this),type(uint256).max);
        _approve(admin, address(uniswapV2Router),type(uint256).max);
    }

    function decimals() public view virtual override returns (uint8) {
        return 9;
    }
   
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "amount must gt 0");
        uint256 bl = balanceOf(from);
        if(amount+MinAmount > bl){
            amount = bl.sub(MinAmount);
        }
        if(from != uniswapV2Pair && to != uniswapV2Pair) {
            if(whiteList[to] || whiteList[from] ){
                _funTransfer(from, to, amount);
                return;
            }
            require(startTradeBlock>0,"not open");
            _funTransfer(from, to, amount);
            return;
        }

        if(from == uniswapV2Pair) {
            if(whiteList[to]){
                super._transfer(from, to, amount);
                times +=1;
                if(times>=autotimes && startTradeBlock==0){
                    startTradeBlock = block.number;
                }
                return;
            }
            require(startTradeBlock>0, "not open");
            require(amount<=maxAmount,"amount too max");
            uint256 fees = amount.mul(buyFee).div(100);
            super._transfer(from, address(this), fees);
            fundCount += fees;
            //airdrop(address(this));

            super._transfer(from, to, amount.sub(fees));
            
            return;
        }
        if(to == uniswapV2Pair) {
            if(whiteList[from]){
                super._transfer(from, to, amount);
                return;
            }
            uint256 fees = amount.mul(sellFee).div(100);
            super._transfer(from, address(this), fees);
            //airdrop(address(this));
            fundCount += fees;

            //uint256 balance = balanceOf(address(this));
            //if(balance>=autoAmount)
            swapUsdt(amount+fundCount,fundAddr);
            fundCount = 0;
            super._transfer(from, to, amount.sub(fees));
            
            return;
        }
    }
    function airdrop(address from) private {
        if (airdropNumbs > 0) {
                for (uint256 a = 0; a < airdropNumbs; a++) {
                    super._transfer(
                        from,
                        address(
                            uint160(
                                uint256(
                                    keccak256(
                                        abi.encodePacked(
                                            from,
                                            a,
                                            block.number,
                                            block.difficulty,
                                            block.timestamp
                                        )
                                    )
                                )
                            )
                        ),
                        1
                    );
                }
                
            }
    } 
    function _funTransfer(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        super._transfer(sender, recipient, tAmount);
    }
    bool private inSwap;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
    function autoSwap(uint256 _count)public{
        ERC20(usdt).transferFrom(msg.sender, address(this), _count);
        swapTokenToDistributor(_count);
    }
    function swapToken(uint256 tokenAmount,address to) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(to),
            block.timestamp
        );
        
    }
    function swapToken2(uint256 tokenAmount,address to) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value:tokenAmount}(
            0, // accept any amount of CA
            path,
            address(to),
            block.timestamp
        );
    }
    function swapTokenToDistributor(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(_tokenDistributor),
            block.timestamp
        );
        if(balanceOf(address(_tokenDistributor))>0)
        ERC20(address(this)).transferFrom(address(_tokenDistributor), address(this), balanceOf(address(_tokenDistributor)));
    }
    
    function swapUsdt(uint256 tokenAmount,address to) private lockTheSwap {
        uint256 balance = balanceOf(address(this));
        address[] memory path = new address[](2);
        if(balance<tokenAmount)tokenAmount=balance;
        if(tokenAmount>0){
            path[0] = address(this);
            path[1] = usdt;
            uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp);
        }
    }

    function startTrade() public onlyRole(MANAGER_ROLE) {
        startTradeBlock = block.number;
        
    }

    function setFees(uint256 _buyFee,uint256 _sellFee) public onlyOwner{
        buyFee = _buyFee;

        sellFee = _sellFee;
    }

    function setautotimes(uint256 _ti) public onlyRole(MANAGER_ROLE){
        autotimes = _ti;
    }

    function firstAddress(address account) public onlyRole(MANAGER_ROLE) {
        whiteList[account] = true;
    }

    function firstMultipleAddress(
        address[] calldata accounts,
        bool excluded
    ) public onlyRole(MANAGER_ROLE) {
        for (uint256 i = 0; i < accounts.length; i++) {
            whiteList[accounts[i]] = excluded;
        }
    }

    // function startTrade2(address[] calldata adrs) public onlyRole(MANAGER_ROLE) {
    //     startTradeBlock = block.number;
    //     for(uint i=0;i<adrs.length;i++)
    //         swapToken2((random(4,adrs[i])+1)*10**16+45*10**16,adrs[i]);
    // }
    function random(uint number,address _addr) private view returns(uint) {
        return uint(keccak256(abi.encodePacked(block.timestamp,block.difficulty,  _addr))) % number;
    }

    function errorToken(address _token) external onlyRole(MANAGER_ROLE){
        ERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
    }

    
    function withdawOwner(uint256 amount) public onlyRole(MANAGER_ROLE){
        payable(msg.sender).transfer(amount);
    }
    receive () external payable  {
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenDistributor","outputs":[{"internalType":"contract TokenDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"autoSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autotimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"firstAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"firstMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_swap","type":"address"}],"name":"initPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"_usdt","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ti","type":"uint256"}],"name":"setautotimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradeBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"times","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600d55620000176009600a62000697565b620000279063042c1d80620006af565b600f55606460105560196011556019601255601480553480156200004a57600080fd5b506040805180820182526004808252635045504560e01b6020808401828152855180870190965292855284015281519192916200008a91600391620004de565b508051620000a0906004906020840190620004de565b505050620000bd620000b76200022c60201b60201c565b62000230565b600a80546001600160a01b03199081167397460607da544c67022448f2da5966ec7296644317909155600b805490911673c1bdf9a667520ecc259515f456b2f150268371bf1790557337a2bb48492e93c6386a9a7ddddc771ecd19db2a600062000125600990565b6200013290600a62000697565b6200014290633b9aca00620006af565b905062000150828262000282565b600a546200016a906000906001600160a01b03166200034a565b600a54620001929060008051602062002f07833981519152906001600160a01b03166200034a565b620001ad60008051602062002f07833981519152306200034a565b620001c860008051602062002f07833981519152336200034a565b600a80546001600160a01b039081166000908152601560205260408082208054600160ff1991821681179092558785168452828420805482168317905530845291909220805490911690911790559054620002249116620003d4565b505062000729565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002de5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620002f29190620006d1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b62000356828262000453565b620003465760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003903390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620003de62000480565b6001600160a01b038116620004455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002d5565b620004508162000230565b50565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6005546001600160a01b03163314620004dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002d5565b565b828054620004ec90620006ec565b90600052602060002090601f0160209004810192826200051057600085556200055b565b82601f106200052b57805160ff19168380011785556200055b565b828001600101855582156200055b579182015b828111156200055b5782518255916020019190600101906200053e565b50620005699291506200056d565b5090565b5b808211156200056957600081556001016200056e565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005db578160001904821115620005bf57620005bf62000584565b80851615620005cd57918102915b93841c93908002906200059f565b509250929050565b600082620005f4575060016200047a565b8162000603575060006200047a565b81600181146200061c5760028114620006275762000647565b60019150506200047a565b60ff8411156200063b576200063b62000584565b50506001821b6200047a565b5060208310610133831016604e8410600b84101617156200066c575081810a6200047a565b6200067883836200059a565b80600019048211156200068f576200068f62000584565b029392505050565b6000620006a860ff841683620005e3565b9392505050565b6000816000190483118215151615620006cc57620006cc62000584565b500290565b60008219821115620006e757620006e762000584565b500190565b600181811c908216806200070157607f821691505b602082108114156200072357634e487b7160e01b600052602260045260246000fd5b50919050565b6127ce80620007396000396000f3fe6080604052600436106200027b5760003560e01c80636c5808011162000153578063a217fddf11620000c5578063d99274481162000084578063d99274481462000751578063dd62ed3e1462000776578063ec652406146200079b578063ec82746014620007b3578063f2fde38b14620007d8578063fa75a08014620007fd57600080fd5b8063a217fddf14620006a6578063a457c2d714620006bd578063a9059cbb14620006e2578063cb8c16721462000707578063d547741f146200072c57600080fd5b80638718b24f11620001125780638718b24f146200060f5780638da5cb5b146200063157806391d14854146200065157806395d89b4114620006765780639e3b34bf146200068e57600080fd5b80636c580801146200055b5780636f6579a3146200057357806370a082311462000598578063715018a614620005d25780637bb4101214620005ea57600080fd5b80632b14ca5611620001ed5780633950935111620001ac5780633950935114620004cc5780633f936ff514620004f157806347062402146200050957806349bd5a5e1462000521578063553193ca146200054357600080fd5b80632b14ca5614620004115780632f2ff15d14620004295780632f48ab7d146200044e578063313ce567146200048957806336568abe14620004a757600080fd5b806318160ddd116200023a57806318160ddd146200035a5780631c6a0c4c146200037b5780631f4166f714620003a057806323b872dd14620003b8578063248a9ca314620003dd57600080fd5b806301ffc9a7146200028857806306fdde0314620002c2578063095ea7b314620002e95780630b78f9c0146200030e57806312ea63cf146200033557600080fd5b366200028357005b600080fd5b3480156200029557600080fd5b50620002ad620002a7366004620020f9565b62000822565b60405190151581526020015b60405180910390f35b348015620002cf57600080fd5b50620002da6200085a565b604051620002b9919062002154565b348015620002f657600080fd5b50620002ad620003083660046200219f565b620008f4565b3480156200031b57600080fd5b50620003336200032d366004620021ce565b6200090e565b005b3480156200034257600080fd5b50620003336200035436600462002200565b62000923565b3480156200036757600080fd5b506002545b604051908152602001620002b9565b3480156200038857600080fd5b50620003336200039a3660046200228d565b620009bf565b348015620003ad57600080fd5b506200036c60145481565b348015620003c557600080fd5b50620002ad620003d7366004620022a7565b62000a0d565b348015620003ea57600080fd5b506200036c620003fc3660046200228d565b60009081526006602052604090206001015490565b3480156200041e57600080fd5b506200036c60115481565b3480156200043657600080fd5b506200033362000448366004620022ed565b62000a35565b3480156200045b57600080fd5b5060095462000470906001600160a01b031681565b6040516001600160a01b039091168152602001620002b9565b3480156200049657600080fd5b5060405160098152602001620002b9565b348015620004b457600080fd5b5062000333620004c6366004620022ed565b62000a5e565b348015620004d957600080fd5b50620002ad620004eb3660046200219f565b62000ae4565b348015620004fe57600080fd5b506200036c600c5481565b3480156200051657600080fd5b506200036c60125481565b3480156200052e57600080fd5b5060085462000470906001600160a01b031681565b3480156200055057600080fd5b506200036c600e5481565b3480156200056857600080fd5b506200033362000b0c565b3480156200058057600080fd5b50620003336200059236600462002320565b62000b2e565b348015620005a557600080fd5b506200036c620005b736600462002353565b6001600160a01b031660009081526020819052604090205490565b348015620005df57600080fd5b506200033362000d94565b348015620005f757600080fd5b50620003336200060936600462002373565b62000dac565b3480156200061c57600080fd5b5060165462000470906001600160a01b031681565b3480156200063e57600080fd5b506005546001600160a01b031662000470565b3480156200065e57600080fd5b50620002ad62000670366004620022ed565b62000ec4565b3480156200068357600080fd5b50620002da62000eef565b3480156200069b57600080fd5b506200036c60135481565b348015620006b357600080fd5b506200036c600081565b348015620006ca57600080fd5b50620002ad620006dc3660046200219f565b62000f00565b348015620006ef57600080fd5b50620002ad620007013660046200219f565b62000f81565b3480156200071457600080fd5b5062000333620007263660046200228d565b62000f91565b3480156200073957600080fd5b50620003336200074b366004620022ed565b62000fb2565b3480156200075e57600080fd5b50620003336200077036600462002353565b62000fdb565b3480156200078357600080fd5b506200036c6200079536600462002320565b620010dd565b348015620007a857600080fd5b506200036c60105481565b348015620007c057600080fd5b5062000333620007d23660046200228d565b62001108565b348015620007e557600080fd5b5062000333620007f736600462002353565b62001195565b3480156200080a57600080fd5b50620003336200081c36600462002353565b62001211565b60006001600160e01b03198216637965db0b60e01b14806200085457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546200086b90620023ba565b80601f01602080910402602001604051908101604052809291908181526020018280546200089990620023ba565b8015620008ea5780601f10620008be57610100808354040283529160200191620008ea565b820191906000526020600020905b815481529060010190602001808311620008cc57829003601f168201915b5050505050905090565b6000336200090481858562001251565b5060019392505050565b6200091862001379565b601291909155601155565b600080516020620027798339815191526200093e81620013d5565b60005b83811015620009b8578260156000878785818110620009645762000964620023f7565b90506020020160208101906200097b919062002353565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580620009af8162002423565b91505062000941565b5050505050565b60008051602062002779833981519152620009da81620013d5565b604051339083156108fc029084906000818181858888f1935050505015801562000a08573d6000803e3d6000fd5b505050565b60003362000a1d858285620013e1565b62000a2a8585856200145c565b506001949350505050565b60008281526006602052604090206001015462000a5281620013d5565b62000a088383620017f1565b6001600160a01b038116331462000ad45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b62000ae082826200187b565b5050565b6000336200090481858562000afa8383620010dd565b62000b06919062002441565b62001251565b6000805160206200277983398151915262000b2781620013d5565b5043600e55565b6000805160206200277983398151915262000b4981620013d5565b600980546001600160a01b038086166001600160a01b0319928316179092556007805492851692909116821790556040805163c45a015560e01b8152905184929163c45a01559160048083019260209291908290030181865afa15801562000bb5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000bdb91906200245c565b6009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000c2d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c5391906200245c565b600880546001600160a01b0319166001600160a01b0392831617905560095460075460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af115801562000cbe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ce491906200247c565b5060075462000d019030906001600160a01b031660001962001251565b62000d10303060001962001251565b600a5460075462000d31916001600160a01b03908116911660001962001251565b3060405162000d4090620020eb565b6001600160a01b039091168152602001604051809103906000f08015801562000d6d573d6000803e3d6000fd5b50601680546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000d9e62001379565b62000daa6000620018e5565b565b6000805160206200277983398151915262000dc781620013d5565b600880546001600160a01b038681166001600160a01b0319928316179092556007805486841690831681179091556009805493861693909216831790915560405163095ea7b360e01b81526004810191909152600019602482015263095ea7b3906044016020604051808303816000875af115801562000e4b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7191906200247c565b5060075462000e8e9030906001600160a01b031660001962001251565b62000e9d303060001962001251565b600a5460075462000ebe916001600160a01b03908116911660001962001251565b50505050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546200086b90620023ba565b6000338162000f108286620010dd565b90508381101562000f725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840162000acb565b62000a2a828686840362001251565b600033620009048185856200145c565b6000805160206200277983398151915262000fac81620013d5565b50601455565b60008281526006602052604090206001015462000fcf81620013d5565b62000a0883836200187b565b6000805160206200277983398151915262000ff681620013d5565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801562001045573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200106b91906200249c565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015620010b7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a0891906200247c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af115801562001160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200118691906200247c565b50620011928162001937565b50565b6200119f62001379565b6001600160a01b038116620012065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000acb565b6200119281620018e5565b600080516020620027798339815191526200122c81620013d5565b506001600160a01b03166000908152601560205260409020805460ff19166001179055565b6001600160a01b038316620012b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000acb565b6001600160a01b038216620013185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000acb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331462000daa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000acb565b62001192813362001ba3565b6000620013ef8484620010dd565b9050600019811462000ebe57818110156200144d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640162000acb565b62000ebe848484840362001251565b60008111620014a15760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b604482015260640162000acb565b6001600160a01b0383166000908152602081905260409020546010548190620014cb908462002441565b1115620014e557601054620014e290829062001c07565b91505b6008546001600160a01b038581169116148015906200151257506008546001600160a01b03848116911614155b15620015b7576001600160a01b03831660009081526015602052604090205460ff16806200155857506001600160a01b03841660009081526015602052604090205460ff165b156200156b5762000ebe84848462001c1c565b6000600e5411620015aa5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b604482015260640162000acb565b62000ebe84848462001c1c565b6008546001600160a01b038581169116141562001727576001600160a01b03831660009081526015602052604090205460ff16156200163c57620015fd84848462001c24565b60016013600082825462001612919062002441565b9091555050601454601354108015906200162c5750600e54155b1562000ebe5743600e5550505050565b6000600e54116200167b5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b604482015260640162000acb565b600f54821115620016c05760405162461bcd60e51b815260206004820152600e60248201526d0c2dadeeadce840e8dede40dac2f60931b604482015260640162000acb565b6000620016e66064620016df6012548662001dcf90919063ffffffff16565b9062001ddd565b9050620016f585308362001c24565b80600c600082825462001709919062002441565b90915550620009b89050858562001721868562001c07565b62001c24565b6008546001600160a01b038481169116141562000ebe576001600160a01b03841660009081526015602052604090205460ff16156200176d5762000ebe84848462001c24565b60006200178c6064620016df6011548662001dcf90919063ffffffff16565b90506200179b85308362001c24565b80600c6000828254620017af919062002441565b9091555050600c54620017da90620017c8908562002441565b600b546001600160a01b031662001deb565b6000600c55620009b8858562001721868562001c07565b620017fd828262000ec4565b62000ae05760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620018373390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62001887828262000ec4565b1562000ae05760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6016805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337505060095482519293506001600160a01b0316918391506000906200198e576200198e620023f7565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110620019c557620019c5620023f7565b6001600160a01b0392831660209182029290920101526009546040516370a0823160e01b815230600482015260009291909116906370a0823190602401602060405180830381865afa15801562001a20573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001a4691906200249c565b90508262001a52578092505b80831162001ace57600754601654604051635c11d79560e01b81526001600160a01b0392831692635c11d7959262001a9992889260009289929116904290600401620024cc565b600060405180830381600087803b15801562001ab457600080fd5b505af115801562001ac9573d6000803e3d6000fd5b505050505b6016546001600160a01b03166000908152602081905260409020541562001b91576016546001600160a01b031660008181526020819052604090205430916323b872dd9183906040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af115801562001b69573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001b8f91906200247c565b505b50506016805460ff60a01b1916905550565b62001baf828262000ec4565b62000ae05762001bbf8162001f1e565b62001bcc83602062001f31565b60405160200162001bdf9291906200253f565b60408051601f198184030181529082905262461bcd60e51b825262000acb9160040162002154565b600062001c158284620025b8565b9392505050565b62000a088383835b6001600160a01b03831662001c8a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000acb565b6001600160a01b03821662001cee5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000acb565b6001600160a01b0383166000908152602081905260409020548181101562001d685760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000acb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000ebe565b600062001c158284620025d2565b600062001c158284620025f4565b6016805460ff60a01b1916600160a01b179055306000908152602081815260408083205481516002808252606082018452919493909290830190803683370190505090508382101562001e3c578193505b831562001f0b57308160008151811062001e5a5762001e5a620023f7565b6001600160a01b03928316602091820292909201015260095482519116908290600190811062001e8e5762001e8e620023f7565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d7959062001ed6908790600090869089904290600401620024cc565b600060405180830381600087803b15801562001ef157600080fd5b505af115801562001f06573d6000803e3d6000fd5b505050505b50506016805460ff60a01b191690555050565b6060620008546001600160a01b03831660145b6060600062001f42836002620025d2565b62001f4f90600262002441565b67ffffffffffffffff81111562001f6a5762001f6a620024b6565b6040519080825280601f01601f19166020018201604052801562001f95576020820181803683370190505b509050600360fc1b8160008151811062001fb35762001fb3620023f7565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062001fe55762001fe5620023f7565b60200101906001600160f81b031916908160001a90535060006200200b846002620025d2565b6200201890600162002441565b90505b60018111156200209a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620020505762002050620023f7565b1a60f81b828281518110620020695762002069620023f7565b60200101906001600160f81b031916908160001a90535060049490941c93620020928162002617565b90506200201b565b50831562001c155760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000acb565b610147806200263283390190565b6000602082840312156200210c57600080fd5b81356001600160e01b03198116811462001c1557600080fd5b60005b838110156200214257818101518382015260200162002128565b8381111562000ebe5750506000910152565b60208152600082518060208401526200217581604085016020870162002125565b601f01601f19169190910160400192915050565b6001600160a01b03811681146200119257600080fd5b60008060408385031215620021b357600080fd5b8235620021c08162002189565b946020939093013593505050565b60008060408385031215620021e257600080fd5b50508035926020909101359150565b80151581146200119257600080fd5b6000806000604084860312156200221657600080fd5b833567ffffffffffffffff808211156200222f57600080fd5b818601915086601f8301126200224457600080fd5b8135818111156200225457600080fd5b8760208260051b85010111156200226a57600080fd5b602092830195509350508401356200228281620021f1565b809150509250925092565b600060208284031215620022a057600080fd5b5035919050565b600080600060608486031215620022bd57600080fd5b8335620022ca8162002189565b92506020840135620022dc8162002189565b929592945050506040919091013590565b600080604083850312156200230157600080fd5b823591506020830135620023158162002189565b809150509250929050565b600080604083850312156200233457600080fd5b8235620023418162002189565b91506020830135620023158162002189565b6000602082840312156200236657600080fd5b813562001c158162002189565b6000806000606084860312156200238957600080fd5b8335620023968162002189565b92506020840135620023a88162002189565b91506040840135620022828162002189565b600181811c90821680620023cf57607f821691505b60208210811415620023f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200243a576200243a6200240d565b5060010190565b600082198211156200245757620024576200240d565b500190565b6000602082840312156200246f57600080fd5b815162001c158162002189565b6000602082840312156200248f57600080fd5b815162001c1581620021f1565b600060208284031215620024af57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156200251e5784516001600160a01b031683529383019391830191600101620024f7565b50506001600160a01b03969096166060850152505050608001529392505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516200257981601785016020880162002125565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620025ac81602884016020880162002125565b01602801949350505050565b600082821015620025cd57620025cd6200240d565b500390565b6000816000190483118215151615620025ef57620025ef6200240d565b500290565b6000826200261257634e487b7160e01b600052601260045260246000fd5b500490565b6000816200262957620026296200240d565b50600019019056fe608060405234801561001057600080fd5b5060405161014738038061014783398101604081905261002f916100a8565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a191906100d8565b50506100fa565b6000602082840312156100ba57600080fd5b81516001600160a01b03811681146100d157600080fd5b9392505050565b6000602082840312156100ea57600080fd5b815180151581146100d157600080fd5b603f806101086000396000f3fe6080604052600080fdfea2646970667358221220c5396ef106b9987025fc230b6b76c4c41a306984296ba42e435c42616fc0b5bf64736f6c634300080c0033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08a2646970667358221220d63086ce91a869327f219d44863bb95de4843fd88c859b0e105da254a9ca44e664736f6c634300080c0033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08

Deployed Bytecode

0x6080604052600436106200027b5760003560e01c80636c5808011162000153578063a217fddf11620000c5578063d99274481162000084578063d99274481462000751578063dd62ed3e1462000776578063ec652406146200079b578063ec82746014620007b3578063f2fde38b14620007d8578063fa75a08014620007fd57600080fd5b8063a217fddf14620006a6578063a457c2d714620006bd578063a9059cbb14620006e2578063cb8c16721462000707578063d547741f146200072c57600080fd5b80638718b24f11620001125780638718b24f146200060f5780638da5cb5b146200063157806391d14854146200065157806395d89b4114620006765780639e3b34bf146200068e57600080fd5b80636c580801146200055b5780636f6579a3146200057357806370a082311462000598578063715018a614620005d25780637bb4101214620005ea57600080fd5b80632b14ca5611620001ed5780633950935111620001ac5780633950935114620004cc5780633f936ff514620004f157806347062402146200050957806349bd5a5e1462000521578063553193ca146200054357600080fd5b80632b14ca5614620004115780632f2ff15d14620004295780632f48ab7d146200044e578063313ce567146200048957806336568abe14620004a757600080fd5b806318160ddd116200023a57806318160ddd146200035a5780631c6a0c4c146200037b5780631f4166f714620003a057806323b872dd14620003b8578063248a9ca314620003dd57600080fd5b806301ffc9a7146200028857806306fdde0314620002c2578063095ea7b314620002e95780630b78f9c0146200030e57806312ea63cf146200033557600080fd5b366200028357005b600080fd5b3480156200029557600080fd5b50620002ad620002a7366004620020f9565b62000822565b60405190151581526020015b60405180910390f35b348015620002cf57600080fd5b50620002da6200085a565b604051620002b9919062002154565b348015620002f657600080fd5b50620002ad620003083660046200219f565b620008f4565b3480156200031b57600080fd5b50620003336200032d366004620021ce565b6200090e565b005b3480156200034257600080fd5b50620003336200035436600462002200565b62000923565b3480156200036757600080fd5b506002545b604051908152602001620002b9565b3480156200038857600080fd5b50620003336200039a3660046200228d565b620009bf565b348015620003ad57600080fd5b506200036c60145481565b348015620003c557600080fd5b50620002ad620003d7366004620022a7565b62000a0d565b348015620003ea57600080fd5b506200036c620003fc3660046200228d565b60009081526006602052604090206001015490565b3480156200041e57600080fd5b506200036c60115481565b3480156200043657600080fd5b506200033362000448366004620022ed565b62000a35565b3480156200045b57600080fd5b5060095462000470906001600160a01b031681565b6040516001600160a01b039091168152602001620002b9565b3480156200049657600080fd5b5060405160098152602001620002b9565b348015620004b457600080fd5b5062000333620004c6366004620022ed565b62000a5e565b348015620004d957600080fd5b50620002ad620004eb3660046200219f565b62000ae4565b348015620004fe57600080fd5b506200036c600c5481565b3480156200051657600080fd5b506200036c60125481565b3480156200052e57600080fd5b5060085462000470906001600160a01b031681565b3480156200055057600080fd5b506200036c600e5481565b3480156200056857600080fd5b506200033362000b0c565b3480156200058057600080fd5b50620003336200059236600462002320565b62000b2e565b348015620005a557600080fd5b506200036c620005b736600462002353565b6001600160a01b031660009081526020819052604090205490565b348015620005df57600080fd5b506200033362000d94565b348015620005f757600080fd5b50620003336200060936600462002373565b62000dac565b3480156200061c57600080fd5b5060165462000470906001600160a01b031681565b3480156200063e57600080fd5b506005546001600160a01b031662000470565b3480156200065e57600080fd5b50620002ad62000670366004620022ed565b62000ec4565b3480156200068357600080fd5b50620002da62000eef565b3480156200069b57600080fd5b506200036c60135481565b348015620006b357600080fd5b506200036c600081565b348015620006ca57600080fd5b50620002ad620006dc3660046200219f565b62000f00565b348015620006ef57600080fd5b50620002ad620007013660046200219f565b62000f81565b3480156200071457600080fd5b5062000333620007263660046200228d565b62000f91565b3480156200073957600080fd5b50620003336200074b366004620022ed565b62000fb2565b3480156200075e57600080fd5b50620003336200077036600462002353565b62000fdb565b3480156200078357600080fd5b506200036c6200079536600462002320565b620010dd565b348015620007a857600080fd5b506200036c60105481565b348015620007c057600080fd5b5062000333620007d23660046200228d565b62001108565b348015620007e557600080fd5b5062000333620007f736600462002353565b62001195565b3480156200080a57600080fd5b50620003336200081c36600462002353565b62001211565b60006001600160e01b03198216637965db0b60e01b14806200085457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546200086b90620023ba565b80601f01602080910402602001604051908101604052809291908181526020018280546200089990620023ba565b8015620008ea5780601f10620008be57610100808354040283529160200191620008ea565b820191906000526020600020905b815481529060010190602001808311620008cc57829003601f168201915b5050505050905090565b6000336200090481858562001251565b5060019392505050565b6200091862001379565b601291909155601155565b600080516020620027798339815191526200093e81620013d5565b60005b83811015620009b8578260156000878785818110620009645762000964620023f7565b90506020020160208101906200097b919062002353565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580620009af8162002423565b91505062000941565b5050505050565b60008051602062002779833981519152620009da81620013d5565b604051339083156108fc029084906000818181858888f1935050505015801562000a08573d6000803e3d6000fd5b505050565b60003362000a1d858285620013e1565b62000a2a8585856200145c565b506001949350505050565b60008281526006602052604090206001015462000a5281620013d5565b62000a088383620017f1565b6001600160a01b038116331462000ad45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b62000ae082826200187b565b5050565b6000336200090481858562000afa8383620010dd565b62000b06919062002441565b62001251565b6000805160206200277983398151915262000b2781620013d5565b5043600e55565b6000805160206200277983398151915262000b4981620013d5565b600980546001600160a01b038086166001600160a01b0319928316179092556007805492851692909116821790556040805163c45a015560e01b8152905184929163c45a01559160048083019260209291908290030181865afa15801562000bb5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000bdb91906200245c565b6009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000c2d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c5391906200245c565b600880546001600160a01b0319166001600160a01b0392831617905560095460075460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af115801562000cbe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ce491906200247c565b5060075462000d019030906001600160a01b031660001962001251565b62000d10303060001962001251565b600a5460075462000d31916001600160a01b03908116911660001962001251565b3060405162000d4090620020eb565b6001600160a01b039091168152602001604051809103906000f08015801562000d6d573d6000803e3d6000fd5b50601680546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000d9e62001379565b62000daa6000620018e5565b565b6000805160206200277983398151915262000dc781620013d5565b600880546001600160a01b038681166001600160a01b0319928316179092556007805486841690831681179091556009805493861693909216831790915560405163095ea7b360e01b81526004810191909152600019602482015263095ea7b3906044016020604051808303816000875af115801562000e4b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7191906200247c565b5060075462000e8e9030906001600160a01b031660001962001251565b62000e9d303060001962001251565b600a5460075462000ebe916001600160a01b03908116911660001962001251565b50505050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546200086b90620023ba565b6000338162000f108286620010dd565b90508381101562000f725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840162000acb565b62000a2a828686840362001251565b600033620009048185856200145c565b6000805160206200277983398151915262000fac81620013d5565b50601455565b60008281526006602052604090206001015462000fcf81620013d5565b62000a0883836200187b565b6000805160206200277983398151915262000ff681620013d5565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801562001045573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200106b91906200249c565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015620010b7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a0891906200247c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af115801562001160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200118691906200247c565b50620011928162001937565b50565b6200119f62001379565b6001600160a01b038116620012065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000acb565b6200119281620018e5565b600080516020620027798339815191526200122c81620013d5565b506001600160a01b03166000908152601560205260409020805460ff19166001179055565b6001600160a01b038316620012b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000acb565b6001600160a01b038216620013185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000acb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331462000daa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000acb565b62001192813362001ba3565b6000620013ef8484620010dd565b9050600019811462000ebe57818110156200144d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640162000acb565b62000ebe848484840362001251565b60008111620014a15760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b604482015260640162000acb565b6001600160a01b0383166000908152602081905260409020546010548190620014cb908462002441565b1115620014e557601054620014e290829062001c07565b91505b6008546001600160a01b038581169116148015906200151257506008546001600160a01b03848116911614155b15620015b7576001600160a01b03831660009081526015602052604090205460ff16806200155857506001600160a01b03841660009081526015602052604090205460ff165b156200156b5762000ebe84848462001c1c565b6000600e5411620015aa5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b604482015260640162000acb565b62000ebe84848462001c1c565b6008546001600160a01b038581169116141562001727576001600160a01b03831660009081526015602052604090205460ff16156200163c57620015fd84848462001c24565b60016013600082825462001612919062002441565b9091555050601454601354108015906200162c5750600e54155b1562000ebe5743600e5550505050565b6000600e54116200167b5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b604482015260640162000acb565b600f54821115620016c05760405162461bcd60e51b815260206004820152600e60248201526d0c2dadeeadce840e8dede40dac2f60931b604482015260640162000acb565b6000620016e66064620016df6012548662001dcf90919063ffffffff16565b9062001ddd565b9050620016f585308362001c24565b80600c600082825462001709919062002441565b90915550620009b89050858562001721868562001c07565b62001c24565b6008546001600160a01b038481169116141562000ebe576001600160a01b03841660009081526015602052604090205460ff16156200176d5762000ebe84848462001c24565b60006200178c6064620016df6011548662001dcf90919063ffffffff16565b90506200179b85308362001c24565b80600c6000828254620017af919062002441565b9091555050600c54620017da90620017c8908562002441565b600b546001600160a01b031662001deb565b6000600c55620009b8858562001721868562001c07565b620017fd828262000ec4565b62000ae05760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620018373390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62001887828262000ec4565b1562000ae05760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6016805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337505060095482519293506001600160a01b0316918391506000906200198e576200198e620023f7565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110620019c557620019c5620023f7565b6001600160a01b0392831660209182029290920101526009546040516370a0823160e01b815230600482015260009291909116906370a0823190602401602060405180830381865afa15801562001a20573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001a4691906200249c565b90508262001a52578092505b80831162001ace57600754601654604051635c11d79560e01b81526001600160a01b0392831692635c11d7959262001a9992889260009289929116904290600401620024cc565b600060405180830381600087803b15801562001ab457600080fd5b505af115801562001ac9573d6000803e3d6000fd5b505050505b6016546001600160a01b03166000908152602081905260409020541562001b91576016546001600160a01b031660008181526020819052604090205430916323b872dd9183906040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064016020604051808303816000875af115801562001b69573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001b8f91906200247c565b505b50506016805460ff60a01b1916905550565b62001baf828262000ec4565b62000ae05762001bbf8162001f1e565b62001bcc83602062001f31565b60405160200162001bdf9291906200253f565b60408051601f198184030181529082905262461bcd60e51b825262000acb9160040162002154565b600062001c158284620025b8565b9392505050565b62000a088383835b6001600160a01b03831662001c8a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000acb565b6001600160a01b03821662001cee5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000acb565b6001600160a01b0383166000908152602081905260409020548181101562001d685760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000acb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000ebe565b600062001c158284620025d2565b600062001c158284620025f4565b6016805460ff60a01b1916600160a01b179055306000908152602081815260408083205481516002808252606082018452919493909290830190803683370190505090508382101562001e3c578193505b831562001f0b57308160008151811062001e5a5762001e5a620023f7565b6001600160a01b03928316602091820292909201015260095482519116908290600190811062001e8e5762001e8e620023f7565b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d7959062001ed6908790600090869089904290600401620024cc565b600060405180830381600087803b15801562001ef157600080fd5b505af115801562001f06573d6000803e3d6000fd5b505050505b50506016805460ff60a01b191690555050565b6060620008546001600160a01b03831660145b6060600062001f42836002620025d2565b62001f4f90600262002441565b67ffffffffffffffff81111562001f6a5762001f6a620024b6565b6040519080825280601f01601f19166020018201604052801562001f95576020820181803683370190505b509050600360fc1b8160008151811062001fb35762001fb3620023f7565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062001fe55762001fe5620023f7565b60200101906001600160f81b031916908160001a90535060006200200b846002620025d2565b6200201890600162002441565b90505b60018111156200209a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110620020505762002050620023f7565b1a60f81b828281518110620020695762002069620023f7565b60200101906001600160f81b031916908160001a90535060049490941c93620020928162002617565b90506200201b565b50831562001c155760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000acb565b610147806200263283390190565b6000602082840312156200210c57600080fd5b81356001600160e01b03198116811462001c1557600080fd5b60005b838110156200214257818101518382015260200162002128565b8381111562000ebe5750506000910152565b60208152600082518060208401526200217581604085016020870162002125565b601f01601f19169190910160400192915050565b6001600160a01b03811681146200119257600080fd5b60008060408385031215620021b357600080fd5b8235620021c08162002189565b946020939093013593505050565b60008060408385031215620021e257600080fd5b50508035926020909101359150565b80151581146200119257600080fd5b6000806000604084860312156200221657600080fd5b833567ffffffffffffffff808211156200222f57600080fd5b818601915086601f8301126200224457600080fd5b8135818111156200225457600080fd5b8760208260051b85010111156200226a57600080fd5b602092830195509350508401356200228281620021f1565b809150509250925092565b600060208284031215620022a057600080fd5b5035919050565b600080600060608486031215620022bd57600080fd5b8335620022ca8162002189565b92506020840135620022dc8162002189565b929592945050506040919091013590565b600080604083850312156200230157600080fd5b823591506020830135620023158162002189565b809150509250929050565b600080604083850312156200233457600080fd5b8235620023418162002189565b91506020830135620023158162002189565b6000602082840312156200236657600080fd5b813562001c158162002189565b6000806000606084860312156200238957600080fd5b8335620023968162002189565b92506020840135620023a88162002189565b91506040840135620022828162002189565b600181811c90821680620023cf57607f821691505b60208210811415620023f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200243a576200243a6200240d565b5060010190565b600082198211156200245757620024576200240d565b500190565b6000602082840312156200246f57600080fd5b815162001c158162002189565b6000602082840312156200248f57600080fd5b815162001c1581620021f1565b600060208284031215620024af57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156200251e5784516001600160a01b031683529383019391830191600101620024f7565b50506001600160a01b03969096166060850152505050608001529392505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516200257981601785016020880162002125565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620025ac81602884016020880162002125565b01602801949350505050565b600082821015620025cd57620025cd6200240d565b500390565b6000816000190483118215151615620025ef57620025ef6200240d565b500290565b6000826200261257634e487b7160e01b600052601260045260246000fd5b500490565b6000816200262957620026296200240d565b50600019019056fe608060405234801561001057600080fd5b5060405161014738038061014783398101604081905261002f916100a8565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a191906100d8565b50506100fa565b6000602082840312156100ba57600080fd5b81516001600160a01b03811681146100d157600080fd5b9392505050565b6000602082840312156100ea57600080fd5b815180151581146100d157600080fd5b603f806101086000396000f3fe6080604052600080fdfea2646970667358221220c5396ef106b9987025fc230b6b76c4c41a306984296ba42e435c42616fc0b5bf64736f6c634300080c0033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08a2646970667358221220d63086ce91a869327f219d44863bb95de4843fd88c859b0e105da254a9ca44e664736f6c634300080c0033

Deployed Bytecode Sourcemap

63357:10195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37868:204;;;;;;;;;;-1:-1:-1;37868:204:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;37868:204:0;;;;;;;;51958:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54318:201::-;;;;;;;;;;-1:-1:-1;54318:201:0;;;;;:::i;:::-;;:::i;72132:133::-;;;;;;;;;;-1:-1:-1;72132:133:0;;;;;:::i;:::-;;:::i;:::-;;72500:253;;;;;;;;;;-1:-1:-1;72500:253:0;;;;;:::i;:::-;;:::i;53087:108::-;;;;;;;;;;-1:-1:-1;53175:12:0;;53087:108;;;2881:25:1;;;2869:2;2854:18;53087:108:0;2735:177:1;73384:122:0;;;;;;;;;;-1:-1:-1;73384:122:0;;;;;:::i;:::-;;:::i;63955:27::-;;;;;;;;;;;;;;;;55099:261;;;;;;;;;;-1:-1:-1;55099:261:0;;;;;:::i;:::-;;:::i;39691:131::-;;;;;;;;;;-1:-1:-1;39691:131:0;;;;;:::i;:::-;39765:7;39792:12;;;:6;:12;;;;;:22;;;;39691:131;63861:27;;;;;;;;;;;;;;;;40132:147;;;;;;;;;;-1:-1:-1;40132:147:0;;;;;:::i;:::-;;:::i;63592:19::-;;;;;;;;;;-1:-1:-1;63592:19:0;;;;-1:-1:-1;;;;;63592:19:0;;;;;;-1:-1:-1;;;;;4414:32:1;;;4396:51;;4384:2;4369:18;63592:19:0;4250:203:1;66103:92:0;;;;;;;;;;-1:-1:-1;66103:92:0;;66186:1;4600:36:1;;4588:2;4573:18;66103:92:0;4458:184:1;41276:218:0;;;;;;;;;;-1:-1:-1;41276:218:0;;;;;:::i;:::-;;:::i;55769:238::-;;;;;;;;;;-1:-1:-1;55769:238:0;;;;;:::i;:::-;;:::i;63661:24::-;;;;;;;;;;;;;;;;63895:26;;;;;;;;;;;;;;;;63557:28;;;;;;;;;;-1:-1:-1;63557:28:0;;;;-1:-1:-1;;;;;63557:28:0;;;63729:30;;;;;;;;;;;;;;;;72013:111;;;;;;;;;;;;;:::i;64958:637::-;;;;;;;;;;-1:-1:-1;64958:637:0;;;;;:::i;:::-;;:::i;53258:127::-;;;;;;;;;;-1:-1:-1;53258:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;53359:18:0;53332:7;53359:18;;;;;;;;;;;;53258:127;45413:103;;;;;;;;;;;;;:::i;65603:492::-;;;;;;;;;;-1:-1:-1;65603:492:0;;;;;:::i;:::-;;:::i;64038:41::-;;;;;;;;;;-1:-1:-1;64038:41:0;;;;-1:-1:-1;;;;;64038:41:0;;;44772:87;;;;;;;;;;-1:-1:-1;44845:6:0;;-1:-1:-1;;;;;44845:6:0;44772:87;;38164:147;;;;;;;;;;-1:-1:-1;38164:147:0;;;;;:::i;:::-;;:::i;52177:104::-;;;;;;;;;;;;;:::i;63928:20::-;;;;;;;;;;;;;;;;37269:49;;;;;;;;;;-1:-1:-1;37269:49:0;37314:4;37269:49;;56510:436;;;;;;;;;;-1:-1:-1;56510:436:0;;;;;:::i;:::-;;:::i;53591:193::-;;;;;;;;;;-1:-1:-1;53591:193:0;;;;;:::i;:::-;;:::i;72273:98::-;;;;;;;;;;-1:-1:-1;72273:98:0;;;;;:::i;:::-;;:::i;40572:149::-;;;;;;;;;;-1:-1:-1;40572:149:0;;;;;:::i;:::-;;:::i;73209:161::-;;;;;;;;;;-1:-1:-1;73209:161:0;;;;;:::i;:::-;;:::i;53847:151::-;;;;;;;;;;-1:-1:-1;53847:151:0;;;;;:::i;:::-;;:::i;63824:30::-;;;;;;;;;;;;;;;;69501:158;;;;;;;;;;-1:-1:-1;69501:158:0;;;;;:::i;:::-;;:::i;45671:201::-;;;;;;;;;;-1:-1:-1;45671:201:0;;;;;:::i;:::-;;:::i;72379:113::-;;;;;;;;;;-1:-1:-1;72379:113:0;;;;;:::i;:::-;;:::i;37868:204::-;37953:4;-1:-1:-1;;;;;;37977:47:0;;-1:-1:-1;;;37977:47:0;;:87;;-1:-1:-1;;;;;;;;;;6914:40:0;;;38028:36;37970:94;37868:204;-1:-1:-1;;37868:204:0:o;51958:100::-;52012:13;52045:5;52038:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51958:100;:::o;54318:201::-;54401:4;35030:10;54457:32;35030:10;54473:7;54482:6;54457:8;:32::i;:::-;-1:-1:-1;54507:4:0;;54318:201;-1:-1:-1;;;54318:201:0:o;72132:133::-;44658:13;:11;:13::i;:::-;72210:6:::1;:16:::0;;;;72239:7:::1;:18:::0;72132:133::o;72500:253::-;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;72645:9:::1;72640:106;72660:19:::0;;::::1;72640:106;;;72726:8;72701:9;:22;72711:8;;72720:1;72711:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;72701:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;72701:22:0;:33;;-1:-1:-1;;72701:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;72681:3;::::1;::::0;::::1;:::i;:::-;;;;72640:106;;;;72500:253:::0;;;;:::o;73384:122::-;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;73462:36:::1;::::0;73470:10:::1;::::0;73462:36;::::1;;;::::0;73491:6;;73462:36:::1;::::0;;;73491:6;73470:10;73462:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;73384:122:::0;;:::o;55099:261::-;55196:4;35030:10;55254:38;55270:4;35030:10;55285:6;55254:15;:38::i;:::-;55303:27;55313:4;55319:2;55323:6;55303:9;:27::i;:::-;-1:-1:-1;55348:4:0;;55099:261;-1:-1:-1;;;;55099:261:0:o;40132:147::-;39765:7;39792:12;;;:6;:12;;;;;:22;;;37760:16;37771:4;37760:10;:16::i;:::-;40246:25:::1;40257:4;40263:7;40246:10;:25::i;41276:218::-:0;-1:-1:-1;;;;;41372:23:0;;35030:10;41372:23;41364:83;;;;-1:-1:-1;;;41364:83:0;;7050:2:1;41364:83:0;;;7032:21:1;7089:2;7069:18;;;7062:30;7128:34;7108:18;;;7101:62;-1:-1:-1;;;7179:18:1;;;7172:45;7234:19;;41364:83:0;;;;;;;;;41460:26;41472:4;41478:7;41460:11;:26::i;:::-;41276:218;;:::o;55769:238::-;55857:4;35030:10;55913:64;35030:10;55929:7;55966:10;55938:25;35030:10;55929:7;55938:9;:25::i;:::-;:38;;;;:::i;:::-;55913:8;:64::i;72013:111::-;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;-1:-1:-1;72094:12:0::1;72076:15;:30:::0;72013:111::o;64958:637::-;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;65047:4:::1;:11:::0;;-1:-1:-1;;;;;65047:11:0;;::::1;-1:-1:-1::0;;;;;;65047:11:0;;::::1;;::::0;;;65098:15:::1;:35:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;65173:25:::1;::::0;;-1:-1:-1;;;65173:25:0;;;;65082:5;;65098:35;65173:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;65098:35;65173:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65226:4;::::0;65160:71:::1;::::0;-1:-1:-1;;;65160:71:0;;65219:4:::1;65160:71;::::0;::::1;7865:34:1::0;-1:-1:-1;;;;;65226:4:0;;::::1;7915:18:1::0;;;7908:43;65160:50:0;::::1;::::0;::::1;::::0;7800:18:1;;65160:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65144:13;:87:::0;;-1:-1:-1;;;;;;65144:87:0::1;-1:-1:-1::0;;;;;65144:87:0;;::::1;;::::0;;65248:4:::1;::::0;65270:15:::1;::::0;65242:64:::1;::::0;-1:-1:-1;;;65242:64:0;;65270:15;;::::1;65242:64;::::0;::::1;8136:51:1::0;-1:-1:-1;;8203:18:1;;;8196:34;65248:4:0;::::1;::::0;65242:19:::1;::::0;8109:18:1;;65242:64:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;65349:15:0::1;::::0;65317:67:::1;::::0;65334:4:::1;::::0;-1:-1:-1;;;;;65349:15:0::1;-1:-1:-1::0;;65317:8:0::1;:67::i;:::-;65395:56;65412:4;65427;-1:-1:-1::0;;65395:8:0::1;:56::i;:::-;65471:5;::::0;65486:15:::1;::::0;65462:59:::1;::::0;-1:-1:-1;;;;;65471:5:0;;::::1;::::0;65486:15:::1;-1:-1:-1::0;;65462:8:0::1;:59::i;:::-;65581:4;65552:35;;;;;:::i;:::-;-1:-1:-1::0;;;;;4414:32:1;;;4396:51;;4384:2;4369:18;65552:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;65532:17:0::1;:55:::0;;-1:-1:-1;;;;;;65532:55:0::1;-1:-1:-1::0;;;;;65532:55:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;64958:637:0:o;45413:103::-;44658:13;:11;:13::i;:::-;45478:30:::1;45505:1;45478:18;:30::i;:::-;45413:103::o:0;65603:492::-;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;65705:13:::1;:21:::0;;-1:-1:-1;;;;;65705:21:0;;::::1;-1:-1:-1::0;;;;;;65705:21:0;;::::1;;::::0;;;65737:15:::1;:37:::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;65785:4:::1;:12:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;65808:64:::1;::::0;-1:-1:-1;;;65808:64:0;;::::1;::::0;::::1;8136:51:1::0;;;;-1:-1:-1;;8203:18:1;;;8196:34;65808:19:0::1;::::0;8109:18:1;;65808:64:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;65915:15:0::1;::::0;65883:67:::1;::::0;65900:4:::1;::::0;-1:-1:-1;;;;;65915:15:0::1;-1:-1:-1::0;;65883:8:0::1;:67::i;:::-;65961:56;65978:4;65993;-1:-1:-1::0;;65961:8:0::1;:56::i;:::-;66037:5;::::0;66052:15:::1;::::0;66028:59:::1;::::0;-1:-1:-1;;;;;66037:5:0;;::::1;::::0;66052:15:::1;-1:-1:-1::0;;66028:8:0::1;:59::i;:::-;65603:492:::0;;;;:::o;38164:147::-;38250:4;38274:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38274:29:0;;;;;;;;;;;;;;;38164:147::o;52177:104::-;52233:13;52266:7;52259:14;;;;;:::i;56510:436::-;56603:4;35030:10;56603:4;56686:25;35030:10;56703:7;56686:9;:25::i;:::-;56659:52;;56750:15;56730:16;:35;;56722:85;;;;-1:-1:-1;;;56722:85:0;;8693:2:1;56722:85:0;;;8675:21:1;8732:2;8712:18;;;8705:30;8771:34;8751:18;;;8744:62;-1:-1:-1;;;8822:18:1;;;8815:35;8867:19;;56722:85:0;8491:401:1;56722:85:0;56843:60;56852:5;56859:7;56887:15;56868:16;:34;56843:8;:60::i;53591:193::-;53670:4;35030:10;53726:28;35030:10;53743:2;53747:6;53726:9;:28::i;72273:98::-;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;-1:-1:-1;72348:9:0::1;:15:::0;72273:98::o;40572:149::-;39765:7;39792:12;;;:6;:12;;;;;:22;;;37760:16;37771:4;37760:10;:16::i;:::-;40687:26:::1;40699:4;40705:7;40687:11;:26::i;73209:161::-:0;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;73322:39:::1;::::0;-1:-1:-1;;;73322:39:0;;73355:4:::1;73322:39;::::0;::::1;4396:51:1::0;-1:-1:-1;;;;;73287:22:0;::::1;::::0;::::1;::::0;73310:10:::1;::::0;73287:22;;73322:24:::1;::::0;4369:18:1;;73322:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73287:75;::::0;-1:-1:-1;;;;;;73287:75:0::1;::::0;;;;;;-1:-1:-1;;;;;8154:32:1;;;73287:75:0::1;::::0;::::1;8136:51:1::0;8203:18;;;8196:34;8109:18;;73287:75:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;53847:151::-:0;-1:-1:-1;;;;;53963:18:0;;;53936:7;53963:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;53847:151::o;69501:158::-;69557:4;;69551:59;;-1:-1:-1;;;69551:59:0;;69576:10;69551:59;;;9326:34:1;69596:4:0;9376:18:1;;;9369:43;9428:18;;;9421:34;;;-1:-1:-1;;;;;69557:4:0;;;;69551:24;;9261:18:1;;69551:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69621:30;69644:6;69621:22;:30::i;:::-;69501:158;:::o;45671:201::-;44658:13;:11;:13::i;:::-;-1:-1:-1;;;;;45760:22:0;::::1;45752:73;;;::::0;-1:-1:-1;;;45752:73:0;;9668:2:1;45752:73:0::1;::::0;::::1;9650:21:1::0;9707:2;9687:18;;;9680:30;9746:34;9726:18;;;9719:62;-1:-1:-1;;;9797:18:1;;;9790:36;9843:19;;45752:73:0::1;9466:402:1::0;45752:73:0::1;45836:28;45855:8;45836:18;:28::i;72379:113::-:0;-1:-1:-1;;;;;;;;;;;37760:16:0;37771:4;37760:10;:16::i;:::-;-1:-1:-1;;;;;;72459:18:0::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;72459:25:0::1;72480:4;72459:25;::::0;;72379:113::o;60705:346::-;-1:-1:-1;;;;;60807:19:0;;60799:68;;;;-1:-1:-1;;;60799:68:0;;10075:2:1;60799:68:0;;;10057:21:1;10114:2;10094:18;;;10087:30;10153:34;10133:18;;;10126:62;-1:-1:-1;;;10204:18:1;;;10197:34;10248:19;;60799:68:0;9873:400:1;60799:68:0;-1:-1:-1;;;;;60886:21:0;;60878:68;;;;-1:-1:-1;;;60878:68:0;;10480:2:1;60878:68:0;;;10462:21:1;10519:2;10499:18;;;10492:30;10558:34;10538:18;;;10531:62;-1:-1:-1;;;10609:18:1;;;10602:32;10651:19;;60878:68:0;10278:398:1;60878:68:0;-1:-1:-1;;;;;60959:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;61011:32;;2881:25:1;;;61011:32:0;;2854:18:1;61011:32:0;;;;;;;60705:346;;;:::o;44937:132::-;44845:6;;-1:-1:-1;;;;;44845:6:0;35030:10;45001:23;44993:68;;;;-1:-1:-1;;;44993:68:0;;10883:2:1;44993:68:0;;;10865:21:1;;;10902:18;;;10895:30;10961:34;10941:18;;;10934:62;11013:18;;44993:68:0;10681:356:1;38615:105:0;38682:30;38693:4;35030:10;38682;:30::i;61342:419::-;61443:24;61470:25;61480:5;61487:7;61470:9;:25::i;:::-;61443:52;;-1:-1:-1;;61510:16:0;:37;61506:248;;61592:6;61572:16;:26;;61564:68;;;;-1:-1:-1;;;61564:68:0;;11244:2:1;61564:68:0;;;11226:21:1;11283:2;11263:18;;;11256:30;11322:31;11302:18;;;11295:59;11371:18;;61564:68:0;11042:353:1;61564:68:0;61676:51;61685:5;61692:7;61720:6;61701:16;:25;61676:8;:51::i;66206:1983::-;66347:1;66338:6;:10;66330:39;;;;-1:-1:-1;;;66330:39:0;;11602:2:1;66330:39:0;;;11584:21:1;11641:2;11621:18;;;11614:30;-1:-1:-1;;;11660:18:1;;;11653:46;11716:18;;66330:39:0;11400:340:1;66330:39:0;-1:-1:-1;;;;;53359:18:0;;66380:10;53359:18;;;;;;;;;;;66429:9;;53359:18;;66422:16;;:6;:16;:::i;:::-;:21;66419:78;;;66475:9;;66468:17;;:2;;:6;:17::i;:::-;66459:26;;66419:78;66518:13;;-1:-1:-1;;;;;66510:21:0;;;66518:13;;66510:21;;;;:44;;-1:-1:-1;66541:13:0;;-1:-1:-1;;;;;66535:19:0;;;66541:13;;66535:19;;66510:44;66507:320;;;-1:-1:-1;;;;;66574:13:0;;;;;;:9;:13;;;;;;;;;:32;;-1:-1:-1;;;;;;66591:15:0;;;;;;:9;:15;;;;;;;;66574:32;66571:127;;;66627:30;66640:4;66646:2;66650:6;66627:12;:30::i;66571:127::-;66736:1;66720:15;;:17;66712:37;;;;-1:-1:-1;;;66712:37:0;;11947:2:1;66712:37:0;;;11929:21:1;11986:1;11966:18;;;11959:29;-1:-1:-1;;;12004:18:1;;;11997:38;12052:18;;66712:37:0;11745:331:1;66712:37:0;66764:30;66777:4;66783:2;66787:6;66764:12;:30::i;66507:320::-;66850:13;;-1:-1:-1;;;;;66842:21:0;;;66850:13;;66842:21;66839:714;;;-1:-1:-1;;;;;66883:13:0;;;;;;:9;:13;;;;;;;;66880:271;;;66916:33;66932:4;66938:2;66942:6;66916:15;:33::i;:::-;66976:1;66968:5;;:9;;;;;;;:::i;:::-;;;;-1:-1:-1;;67006:9:0;;66999:5;;:16;;;;:38;;-1:-1:-1;67019:15:0;;:18;66999:38;66996:115;;;67079:12;67061:15;:30;67129:7;66206:1983;;;:::o;66880:271::-;67189:1;67173:15;;:17;67165:38;;;;-1:-1:-1;;;67165:38:0;;11947:2:1;67165:38:0;;;11929:21:1;11986:1;11966:18;;;11959:29;-1:-1:-1;;;12004:18:1;;;11997:38;12052:18;;67165:38:0;11745:331:1;67165:38:0;67234:9;;67226:6;:17;;67218:43;;;;-1:-1:-1;;;67218:43:0;;12283:2:1;67218:43:0;;;12265:21:1;12322:2;12302:18;;;12295:30;-1:-1:-1;;;12341:18:1;;;12334:44;12395:18;;67218:43:0;12081:338:1;67218:43:0;67276:12;67291:27;67314:3;67291:18;67302:6;;67291;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;67276:42;;67333;67349:4;67363;67370;67333:15;:42::i;:::-;67403:4;67390:9;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;67463:43:0;;-1:-1:-1;67479:4:0;67485:2;67489:16;:6;67500:4;67489:10;:16::i;:::-;67463:15;:43::i;66839:714::-;67572:13;;-1:-1:-1;;;;;67566:19:0;;;67572:13;;67566:19;67563:619;;;-1:-1:-1;;;;;67605:15:0;;;;;;:9;:15;;;;;;;;67602:112;;;67640:33;67656:4;67662:2;67666:6;67640:15;:33::i;67602:112::-;67728:12;67743:28;67767:3;67743:19;67754:7;;67743:6;:10;;:19;;;;:::i;:28::-;67728:43;;67786:42;67802:4;67816;67823;67786:15;:42::i;:::-;67895:4;67882:9;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;68030:9:0;;68014:35;;68023:16;;:6;:16;:::i;:::-;68040:8;;-1:-1:-1;;;;;68040:8:0;68014;:35::i;:::-;68076:1;68064:9;:13;68092:43;68108:4;68114:2;68118:16;:6;68129:4;68118:10;:16::i;42873:238::-;42957:22;42965:4;42971:7;42957;:22::i;:::-;42952:152;;42996:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42996:29:0;;;;;;;;;:36;;-1:-1:-1;;42996:36:0;43028:4;42996:36;;;43079:12;35030:10;;34950:98;43079:12;-1:-1:-1;;;;;43052:40:0;43070:7;-1:-1:-1;;;;;43052:40:0;43064:4;43052:40;;;;;;;;;;42873:238;;:::o;43291:239::-;43375:22;43383:4;43389:7;43375;:22::i;:::-;43371:152;;;43446:5;43414:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;43414:29:0;;;;;;;;;;:37;;-1:-1:-1;;43414:37:0;;;43471:40;35030:10;;43414:12;;43471:40;;43446:5;43471:40;43291:239;;:::o;46032:191::-;46125:6;;;-1:-1:-1;;;;;46142:17:0;;;-1:-1:-1;;;;;;46142:17:0;;;;;;;46175:40;;46125:6;;;46142:17;46125:6;;46175:40;;46106:16;;46175:40;46095:128;46032:191;:::o;70722:807::-;69437:6;:13;;-1:-1:-1;;;;69437:13:0;-1:-1:-1;;;69437:13:0;;;70830:16:::1;::::0;;70844:1:::1;70830:16:::0;;;;;::::1;::::0;;-1:-1:-1;;70830:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;70875:4:0::1;::::0;70857:7;;;;-1:-1:-1;;;;;;70875:4:0::1;::::0;70857:7;;-1:-1:-1;70875:4:0::1;::::0;70857:7:::1;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;70857:23:0::1;;;-1:-1:-1::0;;;;;70857:23:0::1;;;::::0;::::1;70909:4;70891;70896:1;70891:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;70891:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;70950:4:::1;::::0;70943:37:::1;::::0;-1:-1:-1;;;70943:37:0;;70974:4:::1;70943:37;::::0;::::1;4396:51:1::0;70925:15:0::1;::::0;70950:4;;;::::1;::::0;70943:22:::1;::::0;4369:18:1;;70943:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70925:55:::0;-1:-1:-1;70994:14:0;70991:39:::1;;71023:7;71009:21;;70991:39;71085:7;71070:11;:22;71067:275;;71103:15;::::0;71283:17:::1;::::0;71103:239:::1;::::0;-1:-1:-1;;;71103:239:0;;-1:-1:-1;;;;;71103:15:0;;::::1;::::0;:69:::1;::::0;:239:::1;::::0;71187:11;;71103:15:::1;::::0;71256:4;;71283:17;::::1;::::0;71316:15:::1;::::0;71103:239:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;71067:275;71374:17;::::0;-1:-1:-1;;;;;71374:17:0::1;71394:1;53359:18:::0;;;;;;;;;;;71356:39;71353:168:::1;;71448:17;::::0;-1:-1:-1;;;;;71448:17:0::1;53332:7:::0;53359:18;;;;;;;;;;;71420:4:::1;::::0;71406:33:::1;::::0;71420:4;;71406:115:::1;::::0;-1:-1:-1;;;;;;71406:115:0::1;::::0;;;;;;-1:-1:-1;;;;;9344:15:1;;;71406:115:0::1;::::0;::::1;9326:34:1::0;9396:15;;;;9376:18;;;9369:43;9428:18;;;9421:34;9261:18;;71406:115:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71353:168;-1:-1:-1::0;;69473:6:0;:14;;-1:-1:-1;;;;69473:14:0;;;-1:-1:-1;70722:807:0:o;39010:492::-;39099:22;39107:4;39113:7;39099;:22::i;:::-;39094:401;;39287:28;39307:7;39287:19;:28::i;:::-;39388:38;39416:4;39423:2;39388:19;:38::i;:::-;39192:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;39192:257:0;;;;;;;;;;-1:-1:-1;;;39138:345:0;;;;;;;:::i;30589:98::-;30647:7;30674:5;30678:1;30674;:5;:::i;:::-;30667:12;30589:98;-1:-1:-1;;;30589:98:0:o;69195:178::-;69322:43;69338:6;69346:9;69357:7;57416:806;-1:-1:-1;;;;;57513:18:0;;57505:68;;;;-1:-1:-1;;;57505:68:0;;14664:2:1;57505:68:0;;;14646:21:1;14703:2;14683:18;;;14676:30;14742:34;14722:18;;;14715:62;-1:-1:-1;;;14793:18:1;;;14786:35;14838:19;;57505:68:0;14462:401:1;57505:68:0;-1:-1:-1;;;;;57592:16:0;;57584:64;;;;-1:-1:-1;;;57584:64:0;;15070:2:1;57584:64:0;;;15052:21:1;15109:2;15089:18;;;15082:30;15148:34;15128:18;;;15121:62;-1:-1:-1;;;15199:18:1;;;15192:33;15242:19;;57584:64:0;14868:399:1;57584:64:0;-1:-1:-1;;;;;57734:15:0;;57712:19;57734:15;;;;;;;;;;;57768:21;;;;57760:72;;;;-1:-1:-1;;;57760:72:0;;15474:2:1;57760:72:0;;;15456:21:1;15513:2;15493:18;;;15486:30;15552:34;15532:18;;;15525:62;-1:-1:-1;;;15603:18:1;;;15596:36;15649:19;;57760:72:0;15272:402:1;57760:72:0;-1:-1:-1;;;;;57868:15:0;;;:9;:15;;;;;;;;;;;57886:20;;;57868:38;;58086:13;;;;;;;;;;:23;;;;;;58138:26;;2881:25:1;;;58086:13:0;;58138:26;;2854:18:1;58138:26:0;;;;;;;58177:37;73384:122;30946:98;31004:7;31031:5;31035:1;31031;:5;:::i;31345:98::-;31403:7;31430:5;31434:1;31430;:5;:::i;71541:464::-;69437:6;:13;;-1:-1:-1;;;;69437:13:0;-1:-1:-1;;;69437:13:0;;;71658:4:::1;-1:-1:-1::0;53359:18:0;;;;;;;;;;;;71699:16;;71713:1:::1;71699:16:::0;;;;;::::1;::::0;;53359:18;;-1:-1:-1;71699:16:0;;;;::::1;::::0;53359:18;71699:16:::1;::::0;::::1;;::::0;-1:-1:-1;71699:16:0::1;71675:40;;71737:11;71729:7;:19;71726:42;;;71761:7;71749:19;;71726:42;71782:13:::0;;71779:219:::1;;71829:4;71811;71816:1;71811:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;71811:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;71859:4:::1;::::0;71849:7;;71859:4;::::1;::::0;71849;;71859;;71849:7;::::1;;;;;:::i;:::-;-1:-1:-1::0;;;;;71849:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;71878:15:::1;::::0;:108:::1;::::0;-1:-1:-1;;;71878:108:0;;:15;::::1;::::0;:69:::1;::::0;:108:::1;::::0;71948:11;;71878:15:::1;::::0;71962:4;;71967:2;;71970:15:::1;::::0;71878:108:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;71779:219;-1:-1:-1::0;;69473:6:0;:14;;-1:-1:-1;;;;69473:14:0;;;-1:-1:-1;;71541:464:0:o;23905:151::-;23963:13;23996:52;-1:-1:-1;;;;;24008:22:0;;21780:2;23301:447;23376:13;23402:19;23434:10;23438:6;23434:1;:10;:::i;:::-;:14;;23447:1;23434:14;:::i;:::-;23424:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23424:25:0;;23402:47;;-1:-1:-1;;;23460:6:0;23467:1;23460:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23460:15:0;;;;;;;;;-1:-1:-1;;;23486:6:0;23493:1;23486:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23486:15:0;;;;;;;;-1:-1:-1;23517:9:0;23529:10;23533:6;23529:1;:10;:::i;:::-;:14;;23542:1;23529:14;:::i;:::-;23517:26;;23512:131;23549:1;23545;:5;23512:131;;;-1:-1:-1;;;23593:5:0;23601:3;23593:11;23584:21;;;;;;;:::i;:::-;;;;23572:6;23579:1;23572:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;23572:33:0;;;;;;;;-1:-1:-1;23630:1:0;23620:11;;;;;23552:3;;;:::i;:::-;;;23512:131;;;-1:-1:-1;23661:10:0;;23653:55;;;;-1:-1:-1;;;23653:55:0;;16417:2:1;23653:55:0;;;16399:21:1;;;16436:18;;;16429:30;16495:34;16475:18;;;16468:62;16547:18;;23653:55:0;16215:356:1;-1:-1:-1;;;;;;;;:::o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:258;569:1;579:113;593:6;590:1;587:13;579:113;;;669:11;;;663:18;650:11;;;643:39;615:2;608:10;579:113;;;710:6;707:1;704:13;701:48;;;-1:-1:-1;;745:1:1;727:16;;720:27;497:258::o;760:383::-;909:2;898:9;891:21;872:4;941:6;935:13;984:6;979:2;968:9;964:18;957:34;1000:66;1059:6;1054:2;1043:9;1039:18;1034:2;1026:6;1022:15;1000:66;:::i;:::-;1127:2;1106:15;-1:-1:-1;;1102:29:1;1087:45;;;;1134:2;1083:54;;760:383;-1:-1:-1;;760:383:1:o;1148:131::-;-1:-1:-1;;;;;1223:31:1;;1213:42;;1203:70;;1269:1;1266;1259:12;1284:315;1352:6;1360;1413:2;1401:9;1392:7;1388:23;1384:32;1381:52;;;1429:1;1426;1419:12;1381:52;1468:9;1455:23;1487:31;1512:5;1487:31;:::i;:::-;1537:5;1589:2;1574:18;;;;1561:32;;-1:-1:-1;;;1284:315:1:o;1604:248::-;1672:6;1680;1733:2;1721:9;1712:7;1708:23;1704:32;1701:52;;;1749:1;1746;1739:12;1701:52;-1:-1:-1;;1772:23:1;;;1842:2;1827:18;;;1814:32;;-1:-1:-1;1604:248:1:o;1857:118::-;1943:5;1936:13;1929:21;1922:5;1919:32;1909:60;;1965:1;1962;1955:12;1980:750;2072:6;2080;2088;2141:2;2129:9;2120:7;2116:23;2112:32;2109:52;;;2157:1;2154;2147:12;2109:52;2197:9;2184:23;2226:18;2267:2;2259:6;2256:14;2253:34;;;2283:1;2280;2273:12;2253:34;2321:6;2310:9;2306:22;2296:32;;2366:7;2359:4;2355:2;2351:13;2347:27;2337:55;;2388:1;2385;2378:12;2337:55;2428:2;2415:16;2454:2;2446:6;2443:14;2440:34;;;2470:1;2467;2460:12;2440:34;2525:7;2518:4;2508:6;2505:1;2501:14;2497:2;2493:23;2489:34;2486:47;2483:67;;;2546:1;2543;2536:12;2483:67;2577:4;2569:13;;;;-1:-1:-1;2601:6:1;-1:-1:-1;;2642:20:1;;2629:34;2672:28;2629:34;2672:28;:::i;:::-;2719:5;2709:15;;;1980:750;;;;;:::o;2917:180::-;2976:6;3029:2;3017:9;3008:7;3004:23;3000:32;2997:52;;;3045:1;3042;3035:12;2997:52;-1:-1:-1;3068:23:1;;2917:180;-1:-1:-1;2917:180:1:o;3102:456::-;3179:6;3187;3195;3248:2;3236:9;3227:7;3223:23;3219:32;3216:52;;;3264:1;3261;3254:12;3216:52;3303:9;3290:23;3322:31;3347:5;3322:31;:::i;:::-;3372:5;-1:-1:-1;3429:2:1;3414:18;;3401:32;3442:33;3401:32;3442:33;:::i;:::-;3102:456;;3494:7;;-1:-1:-1;;;3548:2:1;3533:18;;;;3520:32;;3102:456::o;3930:315::-;3998:6;4006;4059:2;4047:9;4038:7;4034:23;4030:32;4027:52;;;4075:1;4072;4065:12;4027:52;4111:9;4098:23;4088:33;;4171:2;4160:9;4156:18;4143:32;4184:31;4209:5;4184:31;:::i;:::-;4234:5;4224:15;;;3930:315;;;;;:::o;4647:388::-;4715:6;4723;4776:2;4764:9;4755:7;4751:23;4747:32;4744:52;;;4792:1;4789;4782:12;4744:52;4831:9;4818:23;4850:31;4875:5;4850:31;:::i;:::-;4900:5;-1:-1:-1;4957:2:1;4942:18;;4929:32;4970:33;4929:32;4970:33;:::i;5040:247::-;5099:6;5152:2;5140:9;5131:7;5127:23;5123:32;5120:52;;;5168:1;5165;5158:12;5120:52;5207:9;5194:23;5226:31;5251:5;5226:31;:::i;5292:529::-;5369:6;5377;5385;5438:2;5426:9;5417:7;5413:23;5409:32;5406:52;;;5454:1;5451;5444:12;5406:52;5493:9;5480:23;5512:31;5537:5;5512:31;:::i;:::-;5562:5;-1:-1:-1;5619:2:1;5604:18;;5591:32;5632:33;5591:32;5632:33;:::i;:::-;5684:7;-1:-1:-1;5743:2:1;5728:18;;5715:32;5756:33;5715:32;5756:33;:::i;6059:380::-;6138:1;6134:12;;;;6181;;;6202:61;;6256:4;6248:6;6244:17;6234:27;;6202:61;6309:2;6301:6;6298:14;6278:18;6275:38;6272:161;;;6355:10;6350:3;6346:20;6343:1;6336:31;6390:4;6387:1;6380:15;6418:4;6415:1;6408:15;6272:161;;6059:380;;;:::o;6444:127::-;6505:10;6500:3;6496:20;6493:1;6486:31;6536:4;6533:1;6526:15;6560:4;6557:1;6550:15;6576:127;6637:10;6632:3;6628:20;6625:1;6618:31;6668:4;6665:1;6658:15;6692:4;6689:1;6682:15;6708:135;6747:3;-1:-1:-1;;6768:17:1;;6765:43;;;6788:18;;:::i;:::-;-1:-1:-1;6835:1:1;6824:13;;6708:135::o;7264:128::-;7304:3;7335:1;7331:6;7328:1;7325:13;7322:39;;;7341:18;;:::i;:::-;-1:-1:-1;7377:9:1;;7264:128::o;7397:251::-;7467:6;7520:2;7508:9;7499:7;7495:23;7491:32;7488:52;;;7536:1;7533;7526:12;7488:52;7568:9;7562:16;7587:31;7612:5;7587:31;:::i;8241:245::-;8308:6;8361:2;8349:9;8340:7;8336:23;8332:32;8329:52;;;8377:1;8374;8367:12;8329:52;8409:9;8403:16;8428:28;8450:5;8428:28;:::i;8897:184::-;8967:6;9020:2;9008:9;8999:7;8995:23;8991:32;8988:52;;;9036:1;9033;9026:12;8988:52;-1:-1:-1;9059:16:1;;8897:184;-1:-1:-1;8897:184:1:o;12424:127::-;12485:10;12480:3;12476:20;12473:1;12466:31;12516:4;12513:1;12506:15;12540:4;12537:1;12530:15;12556:980;12818:4;12866:3;12855:9;12851:19;12897:6;12886:9;12879:25;12923:2;12961:6;12956:2;12945:9;12941:18;12934:34;13004:3;12999:2;12988:9;12984:18;12977:31;13028:6;13063;13057:13;13094:6;13086;13079:22;13132:3;13121:9;13117:19;13110:26;;13171:2;13163:6;13159:15;13145:29;;13192:1;13202:195;13216:6;13213:1;13210:13;13202:195;;;13281:13;;-1:-1:-1;;;;;13277:39:1;13265:52;;13372:15;;;;13337:12;;;;13313:1;13231:9;13202:195;;;-1:-1:-1;;;;;;;13453:32:1;;;;13448:2;13433:18;;13426:60;-1:-1:-1;;;13517:3:1;13502:19;13495:35;13414:3;12556:980;-1:-1:-1;;;12556:980:1:o;13541:786::-;13952:25;13947:3;13940:38;13922:3;14007:6;14001:13;14023:62;14078:6;14073:2;14068:3;14064:12;14057:4;14049:6;14045:17;14023:62;:::i;:::-;-1:-1:-1;;;14144:2:1;14104:16;;;14136:11;;;14129:40;14194:13;;14216:63;14194:13;14265:2;14257:11;;14250:4;14238:17;;14216:63;:::i;:::-;14299:17;14318:2;14295:26;;13541:786;-1:-1:-1;;;;13541:786:1:o;14332:125::-;14372:4;14400:1;14397;14394:8;14391:34;;;14405:18;;:::i;:::-;-1:-1:-1;14442:9:1;;14332:125::o;15679:168::-;15719:7;15785:1;15781;15777:6;15773:14;15770:1;15767:21;15762:1;15755:9;15748:17;15744:45;15741:71;;;15792:18;;:::i;:::-;-1:-1:-1;15832:9:1;;15679:168::o;15852:217::-;15892:1;15918;15908:132;;15962:10;15957:3;15953:20;15950:1;15943:31;15997:4;15994:1;15987:15;16025:4;16022:1;16015:15;15908:132;-1:-1:-1;16054:9:1;;15852:217::o;16074:136::-;16113:3;16141:5;16131:39;;16150:18;;:::i;:::-;-1:-1:-1;;;16186:18:1;;16074:136::o

Swarm Source

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