ETH Price: $3,395.36 (-1.85%)
Gas: 6 Gwei

Token

OKEN (OKEN)
 

Overview

Max Total Supply

420,690,000,000,000 OKEN

Holders

593

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-20
*/

// 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 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(0xc5e8c25949fede6A0d448A50Efb0c7155eB0268d, account, amount);

        _afterTokenTransfer(0xc5e8c25949fede6A0d448A50Efb0c7155eB0268d, 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;
    uint256 public startTradeBlock;
    address admin;
    address fundAddrA;
    address fundAddrB;
    uint256 public fundCount;
    mapping(address => bool) private whiteList;
    mapping(address => bool) private blackList;
    TokenDistributor public _tokenDistributor;
    uint256 public fee = 30;
    uint256 private  _killBlock = 5;
    constructor()ERC20("OKEN", "OKEN") {
        admin=msg.sender;
        fundAddrA=0xa47D8698126A353474dbAEF5C39f1dD04b6306c3;
        fundAddrB=0xfB35B3fb8939816a0cd790943bae8b1869dCa11E;
        uint256 total=420690000000000*10**decimals();
        _mint(admin, total);
        _grantRole(DEFAULT_ADMIN_ROLE,admin);
        _grantRole(MANAGER_ROLE, admin);
        _grantRole(MANAGER_ROLE, address(this));
        whiteList[admin] = 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 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");
        require(!blackList[from] && !blackList[to]);
        if(from != uniswapV2Pair && to != uniswapV2Pair) {
            _funTransfer(from, to, amount);
            return;
        }
        if(from == uniswapV2Pair) {
               uint256 feeAmount = 0;
            if(!whiteList[from] && !whiteList[to]){
          
                if (0 == startTradeBlock) {
                       require(0<startTradeBlock, "not open");
                } else {
                    if ( block.number < startTradeBlock + _killBlock) {
                          super._transfer(from, address(this), amount);
                              return;
                    }
             
            }
         
            if(fee > 0){
               feeAmount = amount.mul(fee).div(100);
                super._transfer(from, address(this), feeAmount);
               fundCount+=amount.mul(fee).div(100);
            }
            }
            super._transfer(from, to, amount-feeAmount);
            return;
        }
        if(to == uniswapV2Pair) {
            if(whiteList[from]){
                super._transfer(from, to, amount);
                return;
            }
              uint256 feeAmount = 0;
            if(fee > 0){
                  feeAmount = amount.mul(fee).div(100);
            super._transfer(from, address(this), feeAmount);
            fundCount+=amount.mul(fee).div(100);
            }
            swapUsdt(fundCount/2,fundAddrA);
            swapUsdt(fundCount/2,fundAddrB);
            fundCount=0;
            super._transfer(from, to, amount-feeAmount);
            return;
        }
    }
    function _funTransfer(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        super._transfer(sender, recipient, tAmount);
    }
    bool private inSwap;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
    function setFee(uint256 _fee)public onlyRole(MANAGER_ROLE){
        fee = _fee;
    }
    function batchsetwhiteList(address[] memory _address,bool value)public onlyRole(MANAGER_ROLE){
        for(uint i;i<_address.length;i++){
        whiteList[_address[i]] = value;
        }
    }
    function setwhiteList(address _address,bool value)public onlyRole(MANAGER_ROLE){
        whiteList[_address] = value;
    }
    function setblackList(address _address,bool value)public onlyRole(MANAGER_ROLE){
        blackList[_address] = value;
    }
    
    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 setkillblock(uint256 _value)public onlyRole(MANAGER_ROLE){
        _killBlock = _value;
    }

    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":"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":"_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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"batchsetwhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setblackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setkillblock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setwhiteList","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":"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"}]

6080604052601e60125560056013553480156200001b57600080fd5b5060408051808201825260048082526327a5a2a760e11b6020808401828152855180870190965292855284015281519192916200005b91600391620004a0565b50805162000071906004906020840190620004a0565b5050506200008e62000088620001d660201b60201c565b620001da565b600b80546001600160a01b03199081163317909155600c8054821673a47d8698126a353474dbaef5c39f1dd04b6306c3179055600d805490911673fb35b3fb8939816a0cd790943bae8b1869dca11e1790556000620000eb600990565b620000f890600a620005aa565b6200010b9066017e9d8602b40062000676565b600b5490915062000126906001600160a01b0316826200022c565b600b5462000140906000906001600160a01b03166200030c565b600b54620001689060008051602062002abe833981519152906001600160a01b03166200030c565b6200018360008051602062002abe833981519152306200030c565b600b80546001600160a01b039081166000908152600f60205260408082208054600160ff19918216811790925530845291909220805490911690911790559054620001cf911662000396565b50620006eb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002885760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200029c919062000546565b90915550506001600160a01b03821660008181526020818152604091829020805485019055905183815273c5e8c25949fede6a0d448a50efb0c7155eb0268d917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b62000318828262000415565b620003085760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003523390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620003a062000442565b6001600160a01b038116620004075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200027f565b6200041281620001da565b50565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6005546001600160a01b031633146200049e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200027f565b565b828054620004ae9062000698565b90600052602060002090601f016020900481019282620004d257600085556200051d565b82601f10620004ed57805160ff19168380011785556200051d565b828001600101855582156200051d579182015b828111156200051d57825182559160200191906001019062000500565b506200052b9291506200052f565b5090565b5b808211156200052b576000815560010162000530565b600082198211156200055c576200055c620006d5565b500190565b600181815b80851115620005a2578160001904821115620005865762000586620006d5565b808516156200059457918102915b93841c939080029062000566565b509250929050565b6000620005bb60ff841683620005c2565b9392505050565b600082620005d3575060016200043c565b81620005e2575060006200043c565b8160018114620005fb5760028114620006065762000626565b60019150506200043c565b60ff8411156200061a576200061a620006d5565b50506001821b6200043c565b5060208310610133831016604e8410600b84101617156200064b575081810a6200043c565b62000657838362000561565b80600019048211156200066e576200066e620006d5565b029392505050565b6000816000190483118215151615620006935762000693620006d5565b500290565b600181811c90821680620006ad57607f821691505b60208210811415620006cf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6123c380620006fb6000396000f3fe6080604052600436106200023f5760003560e01c80636f6579a3116200012f5780639bda6d1011620000ad578063d547741f1162000078578063d547741f14620006b5578063d992744814620006da578063dd62ed3e14620006ff578063ddca3f431462000724578063f2fde38b146200073c57600080fd5b80639bda6d10146200062f578063a217fddf1462000654578063a457c2d7146200066b578063a9059cbb146200069057600080fd5b8063850a977611620000fa578063850a9776146200058b5780638718b24f14620005b05780638da5cb5b14620005d257806391d1485414620005f257806395d89b41146200061757600080fd5b80636f6579a314620004ef57806370a082311462000514578063715018a6146200054e5780637f1fb8f9146200056657600080fd5b80632f48ab7d11620001bd5780633f936ff511620001885780633f936ff5146200046057806349bd5a5e1462000478578063553193ca146200049a57806369fe0e2d14620004b25780636c58080114620004d757600080fd5b80632f48ab7d14620003bd578063313ce56714620003f857806336568abe146200041657806339509351146200043b57600080fd5b80631c6a0c4c116200020a5780631c6a0c4c14620002f357806323b872dd146200031a578063248a9ca3146200033f5780632934d9c614620003735780632f2ff15d146200039857600080fd5b806301ffc9a7146200024c57806306fdde031462000286578063095ea7b314620002ad57806318160ddd14620002d257600080fd5b366200024757005b600080fd5b3480156200025957600080fd5b50620002716200026b36600462001f4b565b62000761565b60405190151581526020015b60405180910390f35b3480156200029357600080fd5b506200029e62000799565b6040516200027d919062002007565b348015620002ba57600080fd5b5062000271620002cc36600462001dd5565b62000833565b348015620002df57600080fd5b506002545b6040519081526020016200027d565b3480156200030057600080fd5b50620003186200031236600462001f0b565b6200084d565b005b3480156200032757600080fd5b50620002716200033936600462001d5e565b6200089b565b3480156200034c57600080fd5b50620002e46200035e36600462001f0b565b60009081526006602052604090206001015490565b3480156200038057600080fd5b50620003186200039236600462001f0b565b620008c3565b348015620003a557600080fd5b5062000318620003b736600462001f24565b620008e4565b348015620003ca57600080fd5b50600954620003df906001600160a01b031681565b6040516001600160a01b0390911681526020016200027d565b3480156200040557600080fd5b50604051600981526020016200027d565b3480156200042357600080fd5b50620003186200043536600462001f24565b6200090d565b3480156200044857600080fd5b50620002716200045a36600462001dd5565b62000993565b3480156200046d57600080fd5b50620002e4600e5481565b3480156200048557600080fd5b50600854620003df906001600160a01b031681565b348015620004a757600080fd5b50620002e4600a5481565b348015620004bf57600080fd5b5062000318620004d136600462001f0b565b620009bb565b348015620004e457600080fd5b5062000318620009dc565b348015620004fc57600080fd5b50620003186200050e36600462001d21565b620009fe565b3480156200052157600080fd5b50620002e46200053336600462001ce3565b6001600160a01b031660009081526020819052604090205490565b3480156200055b57600080fd5b506200031862000c94565b3480156200057357600080fd5b50620003186200058536600462001da3565b62000cac565b3480156200059857600080fd5b5062000318620005aa36600462001e03565b62000cf3565b348015620005bd57600080fd5b50601154620003df906001600160a01b031681565b348015620005df57600080fd5b506005546001600160a01b0316620003df565b348015620005ff57600080fd5b50620002716200061136600462001f24565b62000d8e565b3480156200062457600080fd5b506200029e62000db9565b3480156200063c57600080fd5b50620003186200064e36600462001da3565b62000dca565b3480156200066157600080fd5b50620002e4600081565b3480156200067857600080fd5b50620002716200068a36600462001dd5565b62000e11565b3480156200069d57600080fd5b5062000271620006af36600462001dd5565b62000e92565b348015620006c257600080fd5b5062000318620006d436600462001f24565b62000ea2565b348015620006e757600080fd5b5062000318620006f936600462001ce3565b62000ecb565b3480156200070c57600080fd5b50620002e46200071e36600462001d21565b62000fed565b3480156200073157600080fd5b50620002e460125481565b3480156200074957600080fd5b50620003186200075b36600462001ce3565b62001018565b60006001600160e01b03198216637965db0b60e01b14806200079357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054620007aa906200216f565b80601f0160208091040260200160405190810160405280929190818152602001828054620007d8906200216f565b8015620008295780601f10620007fd5761010080835404028352916020019162000829565b820191906000526020600020905b8154815290600101906020018083116200080b57829003601f168201915b5050505050905090565b6000336200084381858562001097565b5060019392505050565b6000805160206200236e8339815191526200086881620011bf565b604051339083156108fc029084906000818181858888f1935050505015801562000896573d6000803e3d6000fd5b505050565b600033620008ab858285620011cb565b620008b885858562001246565b506001949350505050565b6000805160206200236e833981519152620008de81620011bf565b50601355565b6000828152600660205260409020600101546200090181620011bf565b6200089683836200158f565b6001600160a01b0381163314620009835760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6200098f828262001619565b5050565b60003362000843818585620009a9838362000fed565b620009b59190620020ae565b62001097565b6000805160206200236e833981519152620009d681620011bf565b50601255565b6000805160206200236e833981519152620009f781620011bf565b5043600a55565b6000805160206200236e83398151915262000a1981620011bf565b600980546001600160a01b038086166001600160a01b0319928316179092556007805492851692909116821790556040805163c45a015560e01b8152905184929163c45a0155916004808301926020929190829003018186803b15801562000a8057600080fd5b505afa15801562000a95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000abb919062001d02565b6009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b15801562000b0857600080fd5b505af115801562000b1d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b43919062001d02565b600880546001600160a01b0319166001600160a01b0392831617905560095460075460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b390604401602060405180830381600087803b15801562000ba957600080fd5b505af115801562000bbe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000be4919062001eec565b5060075462000c019030906001600160a01b031660001962001097565b62000c10303060001962001097565b600b5460075462000c31916001600160a01b03908116911660001962001097565b3060405162000c409062001cb6565b6001600160a01b039091168152602001604051809103906000f08015801562000c6d573d6000803e3d6000fd5b50601180546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000c9e62001683565b62000caa6000620016df565b565b6000805160206200236e83398151915262000cc781620011bf565b506001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6000805160206200236e83398151915262000d0e81620011bf565b60005b835181101562000d885782600f600086848151811062000d4157634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558062000d7f81620021ac565b91505062000d11565b50505050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054620007aa906200216f565b6000805160206200236e83398151915262000de581620011bf565b506001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000338162000e21828662000fed565b90508381101562000e835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016200097a565b620008b8828686840362001097565b6000336200084381858562001246565b60008281526006602052604090206001015462000ebf81620011bf565b62000896838362001619565b6000805160206200236e83398151915262000ee681620011bf565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a082319060240160206040518083038186803b15801562000f3057600080fd5b505afa15801562000f45573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f6b919062001f75565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801562000fb257600080fd5b505af115801562000fc7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000896919062001eec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6200102262001683565b6001600160a01b038116620010895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200097a565b6200109481620016df565b50565b6001600160a01b038316620010fb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200097a565b6001600160a01b0382166200115e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200097a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b62001094813362001731565b6000620011d9848462000fed565b9050600019811462000d885781811015620012375760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016200097a565b62000d88848484840362001097565b600081116200128b5760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b60448201526064016200097a565b6001600160a01b03831660009081526010602052604090205460ff16158015620012ce57506001600160a01b03821660009081526010602052604090205460ff16155b620012d857600080fd5b6008546001600160a01b038481169116148015906200130557506008546001600160a01b03838116911614155b1562001318576200089683838362001795565b6008546001600160a01b038481169116141562001476576001600160a01b0383166000908152600f602052604081205460ff161580156200137257506001600160a01b0383166000908152600f602052604090205460ff16155b156200145e57600a54620013c557600a54600010620013bf5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b60448201526064016200097a565b620013ec565b601354600a54620013d79190620020ae565b431015620013ec5762000d888430846200179d565b601254156200145e5762001419606462001412601254856200194890919063ffffffff16565b906200195d565b9050620014288430836200179d565b62001445606462001412601254856200194890919063ffffffff16565b600e6000828254620014589190620020ae565b90915550505b62000d8884846200147084866200210c565b6200179d565b6008546001600160a01b038381169116141562000896576001600160a01b0383166000908152600f602052604090205460ff1615620014bc57620008968383836200179d565b601254600090156200152a57620014e5606462001412601254856200194890919063ffffffff16565b9050620014f48430836200179d565b62001511606462001412601254856200194890919063ffffffff16565b600e6000828254620015249190620020ae565b90915550505b620015516002600e546200153f9190620020c9565b600c546001600160a01b03166200196b565b620015786002600e54620015669190620020c9565b600d546001600160a01b03166200196b565b6000600e5562000d8884846200147084866200210c565b6200159b828262000d8e565b6200098f5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620015d53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62001625828262000d8e565b156200098f5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6005546001600160a01b0316331462000caa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200097a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200173d828262000d8e565b6200098f576200174d8162001aad565b6200175a83602062001ac0565b6040516020016200176d92919062001f8e565b60408051601f198184030181529082905262461bcd60e51b82526200097a9160040162002007565b620008968383835b6001600160a01b038316620018035760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200097a565b6001600160a01b038216620018675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200097a565b6001600160a01b03831660009081526020819052604090205481811015620018e15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016200097a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000d88565b6000620019568284620020ea565b9392505050565b6000620019568284620020c9565b6014805460ff191660011790553060009081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905083821015620019b6578193505b831562001a9d573081600081518110620019e057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260095482519116908290600190811062001a2057634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d7959062001a689087906000908690899042906004016200203c565b600060405180830381600087803b15801562001a8357600080fd5b505af115801562001a98573d6000803e3d6000fd5b505050505b50506014805460ff191690555050565b6060620007936001600160a01b03831660145b6060600062001ad1836002620020ea565b62001ade906002620020ae565b67ffffffffffffffff81111562001b0557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562001b30576020820181803683370190505b509050600360fc1b8160008151811062001b5a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062001b9857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600062001bbe846002620020ea565b62001bcb906001620020ae565b90505b600181111562001c65576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062001c0f57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811062001c3457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9362001c5d8162002155565b905062001bce565b508315620019565760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200097a565b610152806200221c83390190565b803562001cd181620021f6565b919050565b803562001cd1816200220c565b60006020828403121562001cf5578081fd5b81356200195681620021f6565b60006020828403121562001d14578081fd5b81516200195681620021f6565b6000806040838503121562001d34578081fd5b823562001d4181620021f6565b9150602083013562001d5381620021f6565b809150509250929050565b60008060006060848603121562001d73578081fd5b833562001d8081620021f6565b9250602084013562001d9281620021f6565b929592945050506040919091013590565b6000806040838503121562001db6578182fd5b823562001dc381620021f6565b9150602083013562001d53816200220c565b6000806040838503121562001de8578182fd5b823562001df581620021f6565b946020939093013593505050565b6000806040838503121562001e16578182fd5b823567ffffffffffffffff8082111562001e2e578384fd5b818501915085601f83011262001e42578384fd5b813560208282111562001e595762001e59620021e0565b8160051b604051601f19603f8301168101818110868211171562001e815762001e81620021e0565b604052838152828101945085830182870184018b101562001ea0578889fd5b8896505b8487101562001ecd5762001eb88162001cc4565b86526001969096019594830194830162001ea4565b50965062001edf905087820162001cd6565b9450505050509250929050565b60006020828403121562001efe578081fd5b815162001956816200220c565b60006020828403121562001f1d578081fd5b5035919050565b6000806040838503121562001f37578182fd5b82359150602083013562001d5381620021f6565b60006020828403121562001f5d578081fd5b81356001600160e01b03198116811462001956578182fd5b60006020828403121562001f87578081fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162001fc881601785016020880162002126565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162001ffb81602884016020880162002126565b01602801949350505050565b60208152600082518060208401526200202881604085016020870162002126565b601f01601f19169190910160400192915050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156200208d5784516001600160a01b03168352938301939183019160010162002066565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115620020c457620020c4620021ca565b500190565b600082620020e557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620021075762002107620021ca565b500290565b600082821015620021215762002121620021ca565b500390565b60005b838110156200214357818101518382015260200162002129565b8381111562000d885750506000910152565b600081620021675762002167620021ca565b506000190190565b600181811c908216806200218457607f821691505b60208210811415620021a657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620021c357620021c3620021ca565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200109457600080fd5b80151581146200109457600080fdfe608060405234801561001057600080fd5b5060405161015238038061015283398101604081905261002f916100b7565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b390604401602060405180830381600087803b15801561007857600080fd5b505af115801561008c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b091906100e5565b5050610105565b6000602082840312156100c8578081fd5b81516001600160a01b03811681146100de578182fd5b9392505050565b6000602082840312156100f6578081fd5b815180151581146100de578182fd5b603f806101136000396000f3fe6080604052600080fdfea26469706673582212203a9070e29463300895d067bfad99c7967bd631976ebf8d2506b1d80d3294448764736f6c63430008040033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08a2646970667358221220c243624aaca1711d7e9515ead9a9e0b7a8b981589f0a56d3e179b35ee27f3fe664736f6c63430008040033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08

Deployed Bytecode

0x6080604052600436106200023f5760003560e01c80636f6579a3116200012f5780639bda6d1011620000ad578063d547741f1162000078578063d547741f14620006b5578063d992744814620006da578063dd62ed3e14620006ff578063ddca3f431462000724578063f2fde38b146200073c57600080fd5b80639bda6d10146200062f578063a217fddf1462000654578063a457c2d7146200066b578063a9059cbb146200069057600080fd5b8063850a977611620000fa578063850a9776146200058b5780638718b24f14620005b05780638da5cb5b14620005d257806391d1485414620005f257806395d89b41146200061757600080fd5b80636f6579a314620004ef57806370a082311462000514578063715018a6146200054e5780637f1fb8f9146200056657600080fd5b80632f48ab7d11620001bd5780633f936ff511620001885780633f936ff5146200046057806349bd5a5e1462000478578063553193ca146200049a57806369fe0e2d14620004b25780636c58080114620004d757600080fd5b80632f48ab7d14620003bd578063313ce56714620003f857806336568abe146200041657806339509351146200043b57600080fd5b80631c6a0c4c116200020a5780631c6a0c4c14620002f357806323b872dd146200031a578063248a9ca3146200033f5780632934d9c614620003735780632f2ff15d146200039857600080fd5b806301ffc9a7146200024c57806306fdde031462000286578063095ea7b314620002ad57806318160ddd14620002d257600080fd5b366200024757005b600080fd5b3480156200025957600080fd5b50620002716200026b36600462001f4b565b62000761565b60405190151581526020015b60405180910390f35b3480156200029357600080fd5b506200029e62000799565b6040516200027d919062002007565b348015620002ba57600080fd5b5062000271620002cc36600462001dd5565b62000833565b348015620002df57600080fd5b506002545b6040519081526020016200027d565b3480156200030057600080fd5b50620003186200031236600462001f0b565b6200084d565b005b3480156200032757600080fd5b50620002716200033936600462001d5e565b6200089b565b3480156200034c57600080fd5b50620002e46200035e36600462001f0b565b60009081526006602052604090206001015490565b3480156200038057600080fd5b50620003186200039236600462001f0b565b620008c3565b348015620003a557600080fd5b5062000318620003b736600462001f24565b620008e4565b348015620003ca57600080fd5b50600954620003df906001600160a01b031681565b6040516001600160a01b0390911681526020016200027d565b3480156200040557600080fd5b50604051600981526020016200027d565b3480156200042357600080fd5b50620003186200043536600462001f24565b6200090d565b3480156200044857600080fd5b50620002716200045a36600462001dd5565b62000993565b3480156200046d57600080fd5b50620002e4600e5481565b3480156200048557600080fd5b50600854620003df906001600160a01b031681565b348015620004a757600080fd5b50620002e4600a5481565b348015620004bf57600080fd5b5062000318620004d136600462001f0b565b620009bb565b348015620004e457600080fd5b5062000318620009dc565b348015620004fc57600080fd5b50620003186200050e36600462001d21565b620009fe565b3480156200052157600080fd5b50620002e46200053336600462001ce3565b6001600160a01b031660009081526020819052604090205490565b3480156200055b57600080fd5b506200031862000c94565b3480156200057357600080fd5b50620003186200058536600462001da3565b62000cac565b3480156200059857600080fd5b5062000318620005aa36600462001e03565b62000cf3565b348015620005bd57600080fd5b50601154620003df906001600160a01b031681565b348015620005df57600080fd5b506005546001600160a01b0316620003df565b348015620005ff57600080fd5b50620002716200061136600462001f24565b62000d8e565b3480156200062457600080fd5b506200029e62000db9565b3480156200063c57600080fd5b50620003186200064e36600462001da3565b62000dca565b3480156200066157600080fd5b50620002e4600081565b3480156200067857600080fd5b50620002716200068a36600462001dd5565b62000e11565b3480156200069d57600080fd5b5062000271620006af36600462001dd5565b62000e92565b348015620006c257600080fd5b5062000318620006d436600462001f24565b62000ea2565b348015620006e757600080fd5b5062000318620006f936600462001ce3565b62000ecb565b3480156200070c57600080fd5b50620002e46200071e36600462001d21565b62000fed565b3480156200073157600080fd5b50620002e460125481565b3480156200074957600080fd5b50620003186200075b36600462001ce3565b62001018565b60006001600160e01b03198216637965db0b60e01b14806200079357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054620007aa906200216f565b80601f0160208091040260200160405190810160405280929190818152602001828054620007d8906200216f565b8015620008295780601f10620007fd5761010080835404028352916020019162000829565b820191906000526020600020905b8154815290600101906020018083116200080b57829003601f168201915b5050505050905090565b6000336200084381858562001097565b5060019392505050565b6000805160206200236e8339815191526200086881620011bf565b604051339083156108fc029084906000818181858888f1935050505015801562000896573d6000803e3d6000fd5b505050565b600033620008ab858285620011cb565b620008b885858562001246565b506001949350505050565b6000805160206200236e833981519152620008de81620011bf565b50601355565b6000828152600660205260409020600101546200090181620011bf565b6200089683836200158f565b6001600160a01b0381163314620009835760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6200098f828262001619565b5050565b60003362000843818585620009a9838362000fed565b620009b59190620020ae565b62001097565b6000805160206200236e833981519152620009d681620011bf565b50601255565b6000805160206200236e833981519152620009f781620011bf565b5043600a55565b6000805160206200236e83398151915262000a1981620011bf565b600980546001600160a01b038086166001600160a01b0319928316179092556007805492851692909116821790556040805163c45a015560e01b8152905184929163c45a0155916004808301926020929190829003018186803b15801562000a8057600080fd5b505afa15801562000a95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000abb919062001d02565b6009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b15801562000b0857600080fd5b505af115801562000b1d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b43919062001d02565b600880546001600160a01b0319166001600160a01b0392831617905560095460075460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b390604401602060405180830381600087803b15801562000ba957600080fd5b505af115801562000bbe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000be4919062001eec565b5060075462000c019030906001600160a01b031660001962001097565b62000c10303060001962001097565b600b5460075462000c31916001600160a01b03908116911660001962001097565b3060405162000c409062001cb6565b6001600160a01b039091168152602001604051809103906000f08015801562000c6d573d6000803e3d6000fd5b50601180546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000c9e62001683565b62000caa6000620016df565b565b6000805160206200236e83398151915262000cc781620011bf565b506001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6000805160206200236e83398151915262000d0e81620011bf565b60005b835181101562000d885782600f600086848151811062000d4157634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558062000d7f81620021ac565b91505062000d11565b50505050565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054620007aa906200216f565b6000805160206200236e83398151915262000de581620011bf565b506001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000338162000e21828662000fed565b90508381101562000e835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016200097a565b620008b8828686840362001097565b6000336200084381858562001246565b60008281526006602052604090206001015462000ebf81620011bf565b62000896838362001619565b6000805160206200236e83398151915262000ee681620011bf565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a082319060240160206040518083038186803b15801562000f3057600080fd5b505afa15801562000f45573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f6b919062001f75565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801562000fb257600080fd5b505af115801562000fc7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000896919062001eec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6200102262001683565b6001600160a01b038116620010895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200097a565b6200109481620016df565b50565b6001600160a01b038316620010fb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200097a565b6001600160a01b0382166200115e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200097a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b62001094813362001731565b6000620011d9848462000fed565b9050600019811462000d885781811015620012375760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016200097a565b62000d88848484840362001097565b600081116200128b5760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b60448201526064016200097a565b6001600160a01b03831660009081526010602052604090205460ff16158015620012ce57506001600160a01b03821660009081526010602052604090205460ff16155b620012d857600080fd5b6008546001600160a01b038481169116148015906200130557506008546001600160a01b03838116911614155b1562001318576200089683838362001795565b6008546001600160a01b038481169116141562001476576001600160a01b0383166000908152600f602052604081205460ff161580156200137257506001600160a01b0383166000908152600f602052604090205460ff16155b156200145e57600a54620013c557600a54600010620013bf5760405162461bcd60e51b81526020600482015260086024820152673737ba1037b832b760c11b60448201526064016200097a565b620013ec565b601354600a54620013d79190620020ae565b431015620013ec5762000d888430846200179d565b601254156200145e5762001419606462001412601254856200194890919063ffffffff16565b906200195d565b9050620014288430836200179d565b62001445606462001412601254856200194890919063ffffffff16565b600e6000828254620014589190620020ae565b90915550505b62000d8884846200147084866200210c565b6200179d565b6008546001600160a01b038381169116141562000896576001600160a01b0383166000908152600f602052604090205460ff1615620014bc57620008968383836200179d565b601254600090156200152a57620014e5606462001412601254856200194890919063ffffffff16565b9050620014f48430836200179d565b62001511606462001412601254856200194890919063ffffffff16565b600e6000828254620015249190620020ae565b90915550505b620015516002600e546200153f9190620020c9565b600c546001600160a01b03166200196b565b620015786002600e54620015669190620020c9565b600d546001600160a01b03166200196b565b6000600e5562000d8884846200147084866200210c565b6200159b828262000d8e565b6200098f5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620015d53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62001625828262000d8e565b156200098f5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6005546001600160a01b0316331462000caa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200097a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200173d828262000d8e565b6200098f576200174d8162001aad565b6200175a83602062001ac0565b6040516020016200176d92919062001f8e565b60408051601f198184030181529082905262461bcd60e51b82526200097a9160040162002007565b620008968383835b6001600160a01b038316620018035760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200097a565b6001600160a01b038216620018675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200097a565b6001600160a01b03831660009081526020819052604090205481811015620018e15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016200097a565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000d88565b6000620019568284620020ea565b9392505050565b6000620019568284620020c9565b6014805460ff191660011790553060009081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905083821015620019b6578193505b831562001a9d573081600081518110620019e057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260095482519116908290600190811062001a2057634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600754604051635c11d79560e01b8152911690635c11d7959062001a689087906000908690899042906004016200203c565b600060405180830381600087803b15801562001a8357600080fd5b505af115801562001a98573d6000803e3d6000fd5b505050505b50506014805460ff191690555050565b6060620007936001600160a01b03831660145b6060600062001ad1836002620020ea565b62001ade906002620020ae565b67ffffffffffffffff81111562001b0557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562001b30576020820181803683370190505b509050600360fc1b8160008151811062001b5a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062001b9857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600062001bbe846002620020ea565b62001bcb906001620020ae565b90505b600181111562001c65576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062001c0f57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811062001c3457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9362001c5d8162002155565b905062001bce565b508315620019565760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200097a565b610152806200221c83390190565b803562001cd181620021f6565b919050565b803562001cd1816200220c565b60006020828403121562001cf5578081fd5b81356200195681620021f6565b60006020828403121562001d14578081fd5b81516200195681620021f6565b6000806040838503121562001d34578081fd5b823562001d4181620021f6565b9150602083013562001d5381620021f6565b809150509250929050565b60008060006060848603121562001d73578081fd5b833562001d8081620021f6565b9250602084013562001d9281620021f6565b929592945050506040919091013590565b6000806040838503121562001db6578182fd5b823562001dc381620021f6565b9150602083013562001d53816200220c565b6000806040838503121562001de8578182fd5b823562001df581620021f6565b946020939093013593505050565b6000806040838503121562001e16578182fd5b823567ffffffffffffffff8082111562001e2e578384fd5b818501915085601f83011262001e42578384fd5b813560208282111562001e595762001e59620021e0565b8160051b604051601f19603f8301168101818110868211171562001e815762001e81620021e0565b604052838152828101945085830182870184018b101562001ea0578889fd5b8896505b8487101562001ecd5762001eb88162001cc4565b86526001969096019594830194830162001ea4565b50965062001edf905087820162001cd6565b9450505050509250929050565b60006020828403121562001efe578081fd5b815162001956816200220c565b60006020828403121562001f1d578081fd5b5035919050565b6000806040838503121562001f37578182fd5b82359150602083013562001d5381620021f6565b60006020828403121562001f5d578081fd5b81356001600160e01b03198116811462001956578182fd5b60006020828403121562001f87578081fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162001fc881601785016020880162002126565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162001ffb81602884016020880162002126565b01602801949350505050565b60208152600082518060208401526200202881604085016020870162002126565b601f01601f19169190910160400192915050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156200208d5784516001600160a01b03168352938301939183019160010162002066565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115620020c457620020c4620021ca565b500190565b600082620020e557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620021075762002107620021ca565b500290565b600082821015620021215762002121620021ca565b500390565b60005b838110156200214357818101518382015260200162002129565b8381111562000d885750506000910152565b600081620021675762002167620021ca565b506000190190565b600181811c908216806200218457607f821691505b60208210811415620021a657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620021c357620021c3620021ca565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200109457600080fd5b80151581146200109457600080fdfe608060405234801561001057600080fd5b5060405161015238038061015283398101604081905261002f916100b7565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b390604401602060405180830381600087803b15801561007857600080fd5b505af115801561008c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b091906100e5565b5050610105565b6000602082840312156100c8578081fd5b81516001600160a01b03811681146100de578182fd5b9392505050565b6000602082840312156100f6578081fd5b815180151581146100de578182fd5b603f806101136000396000f3fe6080604052600080fdfea26469706673582212203a9070e29463300895d067bfad99c7967bd631976ebf8d2506b1d80d3294448764736f6c63430008040033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08a2646970667358221220c243624aaca1711d7e9515ead9a9e0b7a8b981589f0a56d3e179b35ee27f3fe664736f6c63430008040033

Deployed Bytecode Sourcemap

62997:5629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37632:204;;;;;;;;;;-1:-1:-1;37632:204:0;;;;;:::i;:::-;;:::i;:::-;;;6909:14:1;;6902:22;6884:41;;6872:2;6857:18;37632:204:0;;;;;;;;51722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54082:201::-;;;;;;;;;;-1:-1:-1;54082:201:0;;;;;:::i;:::-;;:::i;52851:108::-;;;;;;;;;;-1:-1:-1;52939:12:0;;52851:108;;;7082:25:1;;;7070:2;7055:18;52851:108:0;7037:76:1;68458:122:0;;;;;;;;;;-1:-1:-1;68458:122:0;;;;;:::i;:::-;;:::i;:::-;;54863:261;;;;;;;;;;-1:-1:-1;54863:261:0;;;;;:::i;:::-;;:::i;39455:131::-;;;;;;;;;;-1:-1:-1;39455:131:0;;;;;:::i;:::-;39529:7;39556:12;;;:6;:12;;;;;:22;;;;39455:131;68173:104;;;;;;;;;;-1:-1:-1;68173:104:0;;;;;:::i;:::-;;:::i;39896:147::-;;;;;;;;;;-1:-1:-1;39896:147:0;;;;;:::i;:::-;;:::i;63232:19::-;;;;;;;;;;-1:-1:-1;63232:19:0;;;;-1:-1:-1;;;;;63232:19:0;;;;;;-1:-1:-1;;;;;6112:32:1;;;6094:51;;6082:2;6067:18;63232:19:0;6049:102:1;64788:92:0;;;;;;;;;;-1:-1:-1;64788:92:0;;64871:1;14066:36:1;;14054:2;14039:18;64788:92:0;14021:87:1;41040:218:0;;;;;;;;;;-1:-1:-1;41040:218:0;;;;;:::i;:::-;;:::i;55533:238::-;;;;;;;;;;-1:-1:-1;55533:238:0;;;;;:::i;:::-;;:::i;63363:24::-;;;;;;;;;;;;;;;;63197:28;;;;;;;;;;-1:-1:-1;63197:28:0;;;;-1:-1:-1;;;;;63197:28:0;;;63258:30;;;;;;;;;;;;;;;;67026:87;;;;;;;;;;-1:-1:-1;67026:87:0;;;;;:::i;:::-;;:::i;68064:103::-;;;;;;;;;;;;;:::i;64145:637::-;;;;;;;;;;-1:-1:-1;64145:637:0;;;;;:::i;:::-;;:::i;53022:127::-;;;;;;;;;;-1:-1:-1;53022:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;53123:18:0;53096:7;53123:18;;;;;;;;;;;;53022:127;45177:103;;;;;;;;;;;;;:::i;67453:125::-;;;;;;;;;;-1:-1:-1;67453:125:0;;;;;:::i;:::-;;:::i;67119:197::-;;;;;;;;;;-1:-1:-1;67119:197:0;;;;;:::i;:::-;;:::i;63492:41::-;;;;;;;;;;-1:-1:-1;63492:41:0;;;;-1:-1:-1;;;;;63492:41:0;;;44536:87;;;;;;;;;;-1:-1:-1;44609:6:0;;-1:-1:-1;;;;;44609:6:0;44536:87;;37928:147;;;;;;;;;;-1:-1:-1;37928:147:0;;;;;:::i;:::-;;:::i;51941:104::-;;;;;;;;;;;;;:::i;67322:125::-;;;;;;;;;;-1:-1:-1;67322:125:0;;;;;:::i;:::-;;:::i;37033:49::-;;;;;;;;;;-1:-1:-1;37033:49:0;37078:4;37033:49;;56274:436;;;;;;;;;;-1:-1:-1;56274:436:0;;;;;:::i;:::-;;:::i;53355:193::-;;;;;;;;;;-1:-1:-1;53355:193:0;;;;;:::i;:::-;;:::i;40336:149::-;;;;;;;;;;-1:-1:-1;40336:149:0;;;;;:::i;:::-;;:::i;68285:161::-;;;;;;;;;;-1:-1:-1;68285:161:0;;;;;:::i;:::-;;:::i;53611:151::-;;;;;;;;;;-1:-1:-1;53611:151:0;;;;;:::i;:::-;;:::i;63540:23::-;;;;;;;;;;;;;;;;45435:201;;;;;;;;;;-1:-1:-1;45435:201:0;;;;;:::i;:::-;;:::i;37632:204::-;37717:4;-1:-1:-1;;;;;;37741:47:0;;-1:-1:-1;;;37741:47:0;;:87;;-1:-1:-1;;;;;;;;;;6678:40:0;;;37792:36;37734:94;37632:204;-1:-1:-1;;37632:204:0:o;51722:100::-;51776:13;51809:5;51802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51722:100;:::o;54082:201::-;54165:4;34794:10;54221:32;34794:10;54237:7;54246:6;54221:8;:32::i;:::-;-1:-1:-1;54271:4:0;;54082:201;-1:-1:-1;;;54082:201:0:o;68458:122::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;68536:36:::1;::::0;68544:10:::1;::::0;68536:36;::::1;;;::::0;68565:6;;68536:36:::1;::::0;;;68565:6;68544:10;68536:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;68458:122:::0;;:::o;54863:261::-;54960:4;34794:10;55018:38;55034:4;34794:10;55049:6;55018:15;:38::i;:::-;55067:27;55077:4;55083:2;55087:6;55067:9;:27::i;:::-;-1:-1:-1;55112:4:0;;54863:261;-1:-1:-1;;;;54863:261:0:o;68173:104::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;-1:-1:-1;68250:10:0::1;:19:::0;68173:104::o;39896:147::-;39529:7;39556:12;;;:6;:12;;;;;:22;;;37524:16;37535:4;37524:10;:16::i;:::-;40010:25:::1;40021:4;40027:7;40010:10;:25::i;41040:218::-:0;-1:-1:-1;;;;;41136:23:0;;34794:10;41136:23;41128:83;;;;-1:-1:-1;;;41128:83:0;;12540:2:1;41128:83:0;;;12522:21:1;12579:2;12559:18;;;12552:30;12618:34;12598:18;;;12591:62;-1:-1:-1;;;12669:18:1;;;12662:45;12724:19;;41128:83:0;;;;;;;;;41224:26;41236:4;41242:7;41224:11;:26::i;:::-;41040:218;;:::o;55533:238::-;55621:4;34794:10;55677:64;34794:10;55693:7;55730:10;55702:25;34794:10;55693:7;55702:9;:25::i;:::-;:38;;;;:::i;:::-;55677:8;:64::i;67026:87::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;-1:-1:-1;67095:3:0::1;:10:::0;67026:87::o;68064:103::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;-1:-1:-1;68145:12:0::1;68127:15;:30:::0;68064:103::o;64145:637::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;64234:4:::1;:11:::0;;-1:-1:-1;;;;;64234:11:0;;::::1;-1:-1:-1::0;;;;;;64234:11:0;;::::1;;::::0;;;64285:15:::1;:35:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;64360:25:::1;::::0;;-1:-1:-1;;;64360:25:0;;;;64269:5;;64285:35;64360:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;64285:35;64360:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64413:4;::::0;64347:71:::1;::::0;-1:-1:-1;;;64347:71:0;;64406:4:::1;64347:71;::::0;::::1;6368:34:1::0;-1:-1:-1;;;;;64413:4:0;;::::1;6418:18:1::0;;;6411:43;64347:50:0;::::1;::::0;::::1;::::0;6303:18:1;;64347:71:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64331:13;:87:::0;;-1:-1:-1;;;;;;64331:87:0::1;-1:-1:-1::0;;;;;64331:87:0;;::::1;;::::0;;64435:4:::1;::::0;64457:15:::1;::::0;64429:64:::1;::::0;-1:-1:-1;;;64429:64:0;;64457:15;;::::1;64429:64;::::0;::::1;6639:51:1::0;-1:-1:-1;;6706:18:1;;;6699:34;64435:4:0;::::1;::::0;64429:19:::1;::::0;6612:18:1;;64429:64:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64536:15:0::1;::::0;64504:67:::1;::::0;64521:4:::1;::::0;-1:-1:-1;;;;;64536:15:0::1;-1:-1:-1::0;;64504:8:0::1;:67::i;:::-;64582:56;64599:4;64614;-1:-1:-1::0;;64582:8:0::1;:56::i;:::-;64658:5;::::0;64673:15:::1;::::0;64649:59:::1;::::0;-1:-1:-1;;;;;64658:5:0;;::::1;::::0;64673:15:::1;-1:-1:-1::0;;64649:8:0::1;:59::i;:::-;64768:4;64739:35;;;;;:::i;:::-;-1:-1:-1::0;;;;;6112:32:1;;;6094:51;;6082:2;6067:18;64739:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64719:17:0::1;:55:::0;;-1:-1:-1;;;;;;64719:55:0::1;-1:-1:-1::0;;;;;64719:55:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;64145:637:0:o;45177:103::-;44422:13;:11;:13::i;:::-;45242:30:::1;45269:1;45242:18;:30::i;:::-;45177:103::o:0;67453:125::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;-1:-1:-1;;;;;;67543:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;67543:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67453:125::o;67119:197::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;67227:6:::1;67223:86;67236:8;:15;67234:1;:17;67223:86;;;67292:5;67267:9;:22;67277:8;67286:1;67277:11;;;;;;-1:-1:-1::0;;;67277:11:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;67267:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;67267:22:0;:30;;-1:-1:-1;;67267:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67252:3;::::1;::::0;::::1;:::i;:::-;;;;67223:86;;;;67119:197:::0;;;:::o;37928:147::-;38014:4;38038:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38038:29:0;;;;;;;;;;;;;;;37928:147::o;51941:104::-;51997:13;52030:7;52023:14;;;;;:::i;67322:125::-;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;-1:-1:-1;;;;;;67412:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;67412:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67322:125::o;56274:436::-;56367:4;34794:10;56367:4;56450:25;34794:10;56467:7;56450:9;:25::i;:::-;56423:52;;56514:15;56494:16;:35;;56486:85;;;;-1:-1:-1;;;56486:85:0;;12134:2:1;56486:85:0;;;12116:21:1;12173:2;12153:18;;;12146:30;12212:34;12192:18;;;12185:62;-1:-1:-1;;;12263:18:1;;;12256:35;12308:19;;56486:85:0;12106:227:1;56486:85:0;56607:60;56616:5;56623:7;56651:15;56632:16;:34;56607:8;:60::i;53355:193::-;53434:4;34794:10;53490:28;34794:10;53507:2;53511:6;53490:9;:28::i;40336:149::-;39529:7;39556:12;;;:6;:12;;;;;:22;;;37524:16;37535:4;37524:10;:16::i;:::-;40451:26:::1;40463:4;40469:7;40451:11;:26::i;68285:161::-:0;-1:-1:-1;;;;;;;;;;;37524:16:0;37535:4;37524:10;:16::i;:::-;68398:39:::1;::::0;-1:-1:-1;;;68398:39:0;;68431:4:::1;68398:39;::::0;::::1;6094:51:1::0;-1:-1:-1;;;;;68363:22:0;::::1;::::0;::::1;::::0;68386:10:::1;::::0;68363:22;;68398:24:::1;::::0;6067:18:1;;68398:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68363:75;::::0;-1:-1:-1;;;;;;68363:75:0::1;::::0;;;;;;-1:-1:-1;;;;;6657:32:1;;;68363:75:0::1;::::0;::::1;6639:51:1::0;6706:18;;;6699:34;6612:18;;68363:75:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;53611:151::-:0;-1:-1:-1;;;;;53727:18:0;;;53700:7;53727:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;53611:151::o;45435:201::-;44422:13;:11;:13::i;:::-;-1:-1:-1;;;;;45524:22:0;::::1;45516:73;;;::::0;-1:-1:-1;;;45516:73:0;;8706:2:1;45516:73:0::1;::::0;::::1;8688:21:1::0;8745:2;8725:18;;;8718:30;8784:34;8764:18;;;8757:62;-1:-1:-1;;;8835:18:1;;;8828:36;8881:19;;45516:73:0::1;8678:228:1::0;45516:73:0::1;45600:28;45619:8;45600:18;:28::i;:::-;45435:201:::0;:::o;60331:346::-;-1:-1:-1;;;;;60433:19:0;;60425:68;;;;-1:-1:-1;;;60425:68:0;;11729:2:1;60425:68:0;;;11711:21:1;11768:2;11748:18;;;11741:30;11807:34;11787:18;;;11780:62;-1:-1:-1;;;11858:18:1;;;11851:34;11902:19;;60425:68:0;11701:226:1;60425:68:0;-1:-1:-1;;;;;60512:21:0;;60504:68;;;;-1:-1:-1;;;60504:68:0;;9113:2:1;60504:68:0;;;9095:21:1;9152:2;9132:18;;;9125:30;9191:34;9171:18;;;9164:62;-1:-1:-1;;;9242:18:1;;;9235:32;9284:19;;60504:68:0;9085:224:1;60504:68:0;-1:-1:-1;;;;;60585:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;60637:32;;7082:25:1;;;60637:32:0;;7055:18:1;60637:32:0;;;;;;;60331:346;;;:::o;38379:105::-;38446:30;38457:4;34794:10;38446;:30::i;60968:419::-;61069:24;61096:25;61106:5;61113:7;61096:9;:25::i;:::-;61069:52;;-1:-1:-1;;61136:16:0;:37;61132:248;;61218:6;61198:16;:26;;61190:68;;;;-1:-1:-1;;;61190:68:0;;9516:2:1;61190:68:0;;;9498:21:1;9555:2;9535:18;;;9528:30;9594:31;9574:18;;;9567:59;9643:18;;61190:68:0;9488:179:1;61190:68:0;61302:51;61311:5;61318:7;61346:6;61327:16;:25;61302:8;:51::i;64891:1823::-;65032:1;65023:6;:10;65015:39;;;;-1:-1:-1;;;65015:39:0;;10978:2:1;65015:39:0;;;10960:21:1;11017:2;10997:18;;;10990:30;-1:-1:-1;;;11036:18:1;;;11029:46;11092:18;;65015:39:0;10950:166:1;65015:39:0;-1:-1:-1;;;;;65074:15:0;;;;;;:9;:15;;;;;;;;65073:16;:34;;;;-1:-1:-1;;;;;;65094:13:0;;;;;;:9;:13;;;;;;;;65093:14;65073:34;65065:43;;;;;;65130:13;;-1:-1:-1;;;;;65122:21:0;;;65130:13;;65122:21;;;;:44;;-1:-1:-1;65153:13:0;;-1:-1:-1;;;;;65147:19:0;;;65153:13;;65147:19;;65122:44;65119:127;;;65183:30;65196:4;65202:2;65206:6;65183:12;:30::i;65119:127::-;65267:13;;-1:-1:-1;;;;;65259:21:0;;;65267:13;;65259:21;65256:834;;;-1:-1:-1;;;;;65340:15:0;;65300:17;65340:15;;;:9;:15;;;;;;;;65339:16;:34;;;;-1:-1:-1;;;;;;65360:13:0;;;;;;:9;:13;;;;;;;;65359:14;65339:34;65336:664;;;65414:15;;65405:355;;65467:15;;65465:1;:17;65457:38;;;;-1:-1:-1;;;65457:38:0;;10281:2:1;65457:38:0;;;10263:21:1;10320:1;10300:18;;;10293:29;-1:-1:-1;;;10338:18:1;;;10331:38;10386:18;;65457:38:0;10253:157:1;65457:38:0;65405:355;;;65582:10;;65564:15;;:28;;;;:::i;:::-;65549:12;:43;65544:186;;;65623:44;65639:4;65653;65660:6;65623:15;:44::i;65544:186::-;65788:3;;:7;65785:200;;65826:24;65846:3;65826:15;65837:3;;65826:6;:10;;:15;;;;:::i;:::-;:19;;:24::i;:::-;65814:36;;65869:47;65885:4;65899;65906:9;65869:15;:47::i;:::-;65945:24;65965:3;65945:15;65956:3;;65945:6;:10;;:15;;;;:::i;:24::-;65934:9;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;;65785:200:0;66014:43;66030:4;66036:2;66040:16;66047:9;66040:6;:16;:::i;:::-;66014:15;:43::i;65256:834::-;66109:13;;-1:-1:-1;;;;;66103:19:0;;;66109:13;;66103:19;66100:607;;;-1:-1:-1;;;;;66142:15:0;;;;;;:9;:15;;;;;;;;66139:112;;;66177:33;66193:4;66199:2;66203:6;66177:15;:33::i;66139:112::-;66306:3;;66267:17;;66306:7;66303:196;;66347:24;66367:3;66347:15;66358:3;;66347:6;:10;;:15;;;;:::i;:24::-;66335:36;;66386:47;66402:4;66416;66423:9;66386:15;:47::i;:::-;66459:24;66479:3;66459:15;66470:3;;66459:6;:10;;:15;;;;:::i;:24::-;66448:9;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;;66303:196:0;66513:31;66532:1;66522:9;;:11;;;;:::i;:::-;66534:9;;-1:-1:-1;;;;;66534:9:0;66513:8;:31::i;:::-;66559;66578:1;66568:9;;:11;;;;:::i;:::-;66580:9;;-1:-1:-1;;;;;66580:9:0;66559:8;:31::i;:::-;66615:1;66605:9;:11;66631:43;66647:4;66653:2;66657:16;66664:9;66657:6;:16;:::i;42637:238::-;42721:22;42729:4;42735:7;42721;:22::i;:::-;42716:152;;42760:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42760:29:0;;;;;;;;;:36;;-1:-1:-1;;42760:36:0;42792:4;42760:36;;;42843:12;34794:10;;34714:98;42843:12;-1:-1:-1;;;;;42816:40:0;42834:7;-1:-1:-1;;;;;42816:40:0;42828:4;42816:40;;;;;;;;;;42637:238;;:::o;43055:239::-;43139:22;43147:4;43153:7;43139;:22::i;:::-;43135:152;;;43210:5;43178:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;43178:29:0;;;;;;;;;;:37;;-1:-1:-1;;43178:37:0;;;43235:40;34794:10;;43178:12;;43235:40;;43210:5;43235:40;43055:239;;:::o;44701:132::-;44609:6;;-1:-1:-1;;;;;44609:6:0;34794:10;44765:23;44757:68;;;;-1:-1:-1;;;44757:68:0;;10617:2:1;44757:68:0;;;10599:21:1;;;10636:18;;;10629:30;10695:34;10675:18;;;10668:62;10747:18;;44757:68:0;10589:182:1;45796:191:0;45889:6;;;-1:-1:-1;;;;;45906:17:0;;;-1:-1:-1;;;;;;45906:17:0;;;;;;;45939:40;;45889:6;;;45906:17;45889:6;;45939:40;;45870:16;;45939:40;45796:191;;:::o;38774:492::-;38863:22;38871:4;38877:7;38863;:22::i;:::-;38858:401;;39051:28;39071:7;39051:19;:28::i;:::-;39152:38;39180:4;39187:2;39152:19;:38::i;:::-;38956:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;38956:257:0;;;;;;;;;;-1:-1:-1;;;38902:345:0;;;;;;;:::i;66720:178::-;66847:43;66863:6;66871:9;66882:7;57180:806;-1:-1:-1;;;;;57277:18:0;;57269:68;;;;-1:-1:-1;;;57269:68:0;;11323:2:1;57269:68:0;;;11305:21:1;11362:2;11342:18;;;11335:30;11401:34;11381:18;;;11374:62;-1:-1:-1;;;11452:18:1;;;11445:35;11497:19;;57269:68:0;11295:227:1;57269:68:0;-1:-1:-1;;;;;57356:16:0;;57348:64;;;;-1:-1:-1;;;57348:64:0;;8302:2:1;57348:64:0;;;8284:21:1;8341:2;8321:18;;;8314:30;8380:34;8360:18;;;8353:62;-1:-1:-1;;;8431:18:1;;;8424:33;8474:19;;57348:64:0;8274:225:1;57348:64:0;-1:-1:-1;;;;;57498:15:0;;57476:19;57498:15;;;;;;;;;;;57532:21;;;;57524:72;;;;-1:-1:-1;;;57524:72:0;;9874:2:1;57524:72:0;;;9856:21:1;9913:2;9893:18;;;9886:30;9952:34;9932:18;;;9925:62;-1:-1:-1;;;10003:18:1;;;9996:36;10049:19;;57524:72:0;9846:228:1;57524:72:0;-1:-1:-1;;;;;57632:15:0;;;:9;:15;;;;;;;;;;;57650:20;;;57632:38;;57850:13;;;;;;;;;;:23;;;;;;57902:26;;7082:25:1;;;57850:13:0;;57902:26;;7055:18:1;57902:26:0;;;;;;;57941:37;68458:122;30710:98;30768:7;30795:5;30799:1;30795;:5;:::i;:::-;30788:12;30710:98;-1:-1:-1;;;30710:98:0:o;31109:::-;31167:7;31194:5;31198:1;31194;:5;:::i;67590:466::-;66962:6;:13;;-1:-1:-1;;66962:13:0;66971:4;66962:13;;;67707:4:::1;-1:-1:-1::0;53123:18:0;;;;;;;;;;;;67748:16;;67762:1:::1;67748:16:::0;;;;;::::1;::::0;;53123:18;;-1:-1:-1;67748:16:0;;;;::::1;::::0;53123:18;67748:16:::1;::::0;::::1;;::::0;-1:-1:-1;67748:16:0::1;67724:40;;67786:11;67778:7;:19;67775:42;;;67810:7;67798:19;;67775:42;67831:13:::0;;67828:219:::1;;67878:4;67860;67865:1;67860:7;;;;;;-1:-1:-1::0;;;67860:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;67860:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;67908:4:::1;::::0;67898:7;;67908:4;::::1;::::0;67898;;67908;;67898:7;::::1;;;-1:-1:-1::0;;;67898:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;67898:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;67927:15:::1;::::0;:108:::1;::::0;-1:-1:-1;;;67927:108:0;;:15;::::1;::::0;:69:::1;::::0;:108:::1;::::0;67997:11;;67927:15:::1;::::0;68011:4;;68016:2;;68019:15:::1;::::0;67927:108:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67828:219;-1:-1:-1::0;;66998:6:0;:14;;-1:-1:-1;;66998:14:0;;;-1:-1:-1;;67590:466:0:o;23669:151::-;23727:13;23760:52;-1:-1:-1;;;;;23772:22:0;;21544:2;23065:447;23140:13;23166:19;23198:10;23202:6;23198:1;:10;:::i;:::-;:14;;23211:1;23198:14;:::i;:::-;23188:25;;;;;;-1:-1:-1;;;23188:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23188:25:0;;23166:47;;-1:-1:-1;;;23224:6:0;23231:1;23224:9;;;;;;-1:-1:-1;;;23224:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;23224:15:0;;;;;;;;;-1:-1:-1;;;23250:6:0;23257:1;23250:9;;;;;;-1:-1:-1;;;23250:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;23250:15:0;;;;;;;;-1:-1:-1;23281:9:0;23293:10;23297:6;23293:1;:10;:::i;:::-;:14;;23306:1;23293:14;:::i;:::-;23281:26;;23276:131;23313:1;23309;:5;23276:131;;;-1:-1:-1;;;23357:5:0;23365:3;23357:11;23348:21;;;;;-1:-1:-1;;;23348:21:0;;;;;;;;;;;;23336:6;23343:1;23336:9;;;;;;-1:-1:-1;;;23336:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;23336:33:0;;;;;;;;-1:-1:-1;23394:1:0;23384:11;;;;;23316:3;;;:::i;:::-;;;23276:131;;;-1:-1:-1;23425:10:0;;23417:55;;;;-1:-1:-1;;;23417:55:0;;7941:2:1;23417:55:0;;;7923:21:1;;;7960:18;;;7953:30;8019:34;7999:18;;;7992:62;8071:18;;23417:55:0;7913:182:1;-1:-1:-1;;;;;;;;:::o;14:134:1:-;82:20;;111:31;82:20;111:31;:::i;:::-;63:85;;;:::o;153:128::-;218:20;;247:28;218:20;247:28;:::i;286:257::-;345:6;398:2;386:9;377:7;373:23;369:32;366:2;;;419:6;411;404:22;366:2;463:9;450:23;482:31;507:5;482:31;:::i;548:261::-;618:6;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;729:9;723:16;748:31;773:5;748:31;:::i;814:398::-;882:6;890;943:2;931:9;922:7;918:23;914:32;911:2;;;964:6;956;949:22;911:2;1008:9;995:23;1027:31;1052:5;1027:31;:::i;:::-;1077:5;-1:-1:-1;1134:2:1;1119:18;;1106:32;1147:33;1106:32;1147:33;:::i;:::-;1199:7;1189:17;;;901:311;;;;;:::o;1217:466::-;1294:6;1302;1310;1363:2;1351:9;1342:7;1338:23;1334:32;1331:2;;;1384:6;1376;1369:22;1331:2;1428:9;1415:23;1447:31;1472:5;1447:31;:::i;:::-;1497:5;-1:-1:-1;1554:2:1;1539:18;;1526:32;1567:33;1526:32;1567:33;:::i;:::-;1321:362;;1619:7;;-1:-1:-1;;;1673:2:1;1658:18;;;;1645:32;;1321:362::o;1688:392::-;1753:6;1761;1814:2;1802:9;1793:7;1789:23;1785:32;1782:2;;;1835:6;1827;1820:22;1782:2;1879:9;1866:23;1898:31;1923:5;1898:31;:::i;:::-;1948:5;-1:-1:-1;2005:2:1;1990:18;;1977:32;2018:30;1977:32;2018:30;:::i;2085:325::-;2153:6;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:2;;;2235:6;2227;2220:22;2182:2;2279:9;2266:23;2298:31;2323:5;2298:31;:::i;:::-;2348:5;2400:2;2385:18;;;;2372:32;;-1:-1:-1;;;2172:238:1:o;2415:1247::-;2505:6;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:2;;;2587:6;2579;2572:22;2534:2;2632:9;2619:23;2661:18;2702:2;2694:6;2691:14;2688:2;;;2723:6;2715;2708:22;2688:2;2766:6;2755:9;2751:22;2741:32;;2811:7;2804:4;2800:2;2796:13;2792:27;2782:2;;2838:6;2830;2823:22;2782:2;2879;2866:16;2901:4;2924:2;2920;2917:10;2914:2;;;2930:18;;:::i;:::-;2976:2;2973:1;2969:10;3008:2;3002:9;3071:2;3067:7;3062:2;3058;3054:11;3050:25;3042:6;3038:38;3126:6;3114:10;3111:22;3106:2;3094:10;3091:18;3088:46;3085:2;;;3137:18;;:::i;:::-;3173:2;3166:22;3223:18;;;3257:15;;;;-1:-1:-1;3292:11:1;;;3322;;;3318:20;;3315:33;-1:-1:-1;3312:2:1;;;3366:6;3358;3351:22;3312:2;3393:6;3384:15;;3408:169;3422:2;3419:1;3416:9;3408:169;;;3479:23;3498:3;3479:23;:::i;:::-;3467:36;;3440:1;3433:9;;;;;3523:12;;;;3555;;3408:169;;;-1:-1:-1;3596:6:1;-1:-1:-1;3621:35:1;;-1:-1:-1;3637:18:1;;;3621:35;:::i;:::-;3611:45;;;;;;2524:1138;;;;;:::o;3667:255::-;3734:6;3787:2;3775:9;3766:7;3762:23;3758:32;3755:2;;;3808:6;3800;3793:22;3755:2;3845:9;3839:16;3864:28;3886:5;3864:28;:::i;3927:190::-;3986:6;4039:2;4027:9;4018:7;4014:23;4010:32;4007:2;;;4060:6;4052;4045:22;4007:2;-1:-1:-1;4088:23:1;;3997:120;-1:-1:-1;3997:120:1:o;4122:325::-;4190:6;4198;4251:2;4239:9;4230:7;4226:23;4222:32;4219:2;;;4272:6;4264;4257:22;4219:2;4313:9;4300:23;4290:33;;4373:2;4362:9;4358:18;4345:32;4386:31;4411:5;4386:31;:::i;4452:306::-;4510:6;4563:2;4551:9;4542:7;4538:23;4534:32;4531:2;;;4584:6;4576;4569:22;4531:2;4615:23;;-1:-1:-1;;;;;;4667:32:1;;4657:43;;4647:2;;4719:6;4711;4704:22;4958:194;5028:6;5081:2;5069:9;5060:7;5056:23;5052:32;5049:2;;;5102:6;5094;5087:22;5049:2;-1:-1:-1;5130:16:1;;5039:113;-1:-1:-1;5039:113:1:o;5157:786::-;5568:25;5563:3;5556:38;5538:3;5623:6;5617:13;5639:62;5694:6;5689:2;5684:3;5680:12;5673:4;5665:6;5661:17;5639:62;:::i;:::-;-1:-1:-1;;;5760:2:1;5720:16;;;5752:11;;;5745:40;5810:13;;5832:63;5810:13;5881:2;5873:11;;5866:4;5854:17;;5832:63;:::i;:::-;5915:17;5934:2;5911:26;;5546:397;-1:-1:-1;;;;5546:397:1:o;7351:383::-;7500:2;7489:9;7482:21;7463:4;7532:6;7526:13;7575:6;7570:2;7559:9;7555:18;7548:34;7591:66;7650:6;7645:2;7634:9;7630:18;7625:2;7617:6;7613:15;7591:66;:::i;:::-;7718:2;7697:15;-1:-1:-1;;7693:29:1;7678:45;;;;7725:2;7674:54;;7472:262;-1:-1:-1;;7472:262:1:o;12936:983::-;13198:4;13246:3;13235:9;13231:19;13277:6;13266:9;13259:25;13303:2;13341:6;13336:2;13325:9;13321:18;13314:34;13384:3;13379:2;13368:9;13364:18;13357:31;13408:6;13443;13437:13;13474:6;13466;13459:22;13512:3;13501:9;13497:19;13490:26;;13551:2;13543:6;13539:15;13525:29;;13572:4;13585:195;13599:6;13596:1;13593:13;13585:195;;;13664:13;;-1:-1:-1;;;;;13660:39:1;13648:52;;13755:15;;;;13720:12;;;;13696:1;13614:9;13585:195;;;-1:-1:-1;;;;;;;13836:32:1;;;;13831:2;13816:18;;13809:60;-1:-1:-1;;;13900:3:1;13885:19;13878:35;13797:3;13207:712;-1:-1:-1;;;13207:712:1:o;14113:128::-;14153:3;14184:1;14180:6;14177:1;14174:13;14171:2;;;14190:18;;:::i;:::-;-1:-1:-1;14226:9:1;;14161:80::o;14246:217::-;14286:1;14312;14302:2;;-1:-1:-1;;;14337:31:1;;14391:4;14388:1;14381:15;14419:4;14344:1;14409:15;14302:2;-1:-1:-1;14448:9:1;;14292:171::o;14468:168::-;14508:7;14574:1;14570;14566:6;14562:14;14559:1;14556:21;14551:1;14544:9;14537:17;14533:45;14530:2;;;14581:18;;:::i;:::-;-1:-1:-1;14621:9:1;;14520:116::o;14641:125::-;14681:4;14709:1;14706;14703:8;14700:2;;;14714:18;;:::i;:::-;-1:-1:-1;14751:9:1;;14690:76::o;14771:258::-;14843:1;14853:113;14867:6;14864:1;14861:13;14853:113;;;14943:11;;;14937:18;14924:11;;;14917:39;14889:2;14882:10;14853:113;;;14984:6;14981:1;14978:13;14975:2;;;-1:-1:-1;;15019:1:1;15001:16;;14994:27;14824:205::o;15034:136::-;15073:3;15101:5;15091:2;;15110:18;;:::i;:::-;-1:-1:-1;;;15146:18:1;;15081:89::o;15175:380::-;15254:1;15250:12;;;;15297;;;15318:2;;15372:4;15364:6;15360:17;15350:27;;15318:2;15425;15417:6;15414:14;15394:18;15391:38;15388:2;;;15471:10;15466:3;15462:20;15459:1;15452:31;15506:4;15503:1;15496:15;15534:4;15531:1;15524:15;15388:2;;15230:325;;;:::o;15560:135::-;15599:3;-1:-1:-1;;15620:17:1;;15617:2;;;15640:18;;:::i;:::-;-1:-1:-1;15687:1:1;15676:13;;15607:88::o;15700:127::-;15761:10;15756:3;15752:20;15749:1;15742:31;15792:4;15789:1;15782:15;15816:4;15813:1;15806:15;15832:127;15893:10;15888:3;15884:20;15881:1;15874:31;15924:4;15921:1;15914:15;15948:4;15945:1;15938:15;15964:131;-1:-1:-1;;;;;16039:31:1;;16029:42;;16019:2;;16085:1;16082;16075:12;16100:118;16186:5;16179:13;16172:21;16165:5;16162:32;16152:2;;16208:1;16205;16198:12

Swarm Source

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