ETH Price: $2,425.26 (+0.01%)

Token

HOPPY2.0 (HOPPY2.0)
 

Overview

Max Total Supply

420,690,000,000,000 HOPPY2.0

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,106,369,182,855.353472157 HOPPY2.0

Value
$0.00
0xbc11671300db8fa3a60c01df4be33218d9b90ddd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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 fundAddr;
    uint256 public fundCount;
    mapping(address => bool) private whiteList;
    TokenDistributor public _tokenDistributor;
    
    constructor()ERC20("HOPPY2.0", "HOPPY2.0") {
        admin=  0xd91BfF2759111A940baaC5C0135170F2B9D1f1f0;
        //admin=msg.sender;
        fundAddr=0xD60EAa9861bD7538fE98028888Fd0c01a73c8cbF;
        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;//        fundAddr=0xD60EAa9861bD7538fE98028888Fd0c01a73c8cbF;;//usdt test
        address swap=_swap;//        fundAddr=0xD60EAa9861bD7538fE98028888Fd0c01a73c8cbF;;//bsc test
        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");
        
        if(from != uniswapV2Pair && to != uniswapV2Pair) {
            _funTransfer(from, to, amount);
            return;
        }
        if(from == uniswapV2Pair) {
            require(startTradeBlock>0, "not open");
            super._transfer(from, address(this), amount.mul(1).div(100));
            fundCount+=amount.mul(1).div(100);
            super._transfer(from, to, amount.mul(99).div(100));
            return;
        }
        if(to == uniswapV2Pair) {
            if(whiteList[from]){
                super._transfer(from, to, amount);
                return;
            }
            super._transfer(from, address(this), amount.mul(1).div(100));
            fundCount+=amount.mul(1).div(100);
            swapUsdt(fundCount+amount,fundAddr);
            fundCount=0;
            super._transfer(from, to, amount.mul(99).div(100));
            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 autoSwap(uint256 _count)public{
        ERC20(usdt).transferFrom(msg.sender, address(this), _count);
        swapTokenToDistributor(_count);
    }
    function swapToken(uint256 tokenAmount,address to) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(to),
            block.timestamp
        );
    }
    function swapTokenToDistributor(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(_tokenDistributor),
            block.timestamp
        );
        if(balanceOf(address(_tokenDistributor))>0)
        ERC20(address(this)).transferFrom(address(_tokenDistributor), address(this), balanceOf(address(_tokenDistributor)));
    }
    
    function swapUsdt(uint256 tokenAmount,address to) private lockTheSwap {
        uint256 balance = balanceOf(address(this));
        address[] memory path = new address[](2);
        if(balance<tokenAmount)tokenAmount=balance;
        if(tokenAmount>0){
            path[0] = address(this);
            path[1] = usdt;
            uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp);
        }
    }

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

    function errorToken(address _token) external onlyRole(MANAGER_ROLE){
        ERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
    }
    
    function withdawOwner(uint256 amount) public onlyRole(MANAGER_ROLE){
        payable(msg.sender).transfer(amount);
    }
    receive () external payable  {
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint256","name":"_count","type":"uint256"}],"name":"autoSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"address[]","name":"adrs","type":"address[]"}],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f484f505059322e300000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f484f505059322e30000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620008ad565b508060049080519060200190620000af929190620008ad565b505050620000d2620000c6620003af60201b60201c565b620003b760201b60201c565b73d91bff2759111a940baac5c0135170f2b9d1f1f0600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d60eaa9861bd7538fe98028888fd0c01a73c8cbf600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200018e6200047d60201b60201c565b600a6200019c919062000af7565b66017e9d8602b400620001b0919062000b48565b9050620001e6600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200048660201b60201c565b6200021d6000801b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f460201b60201c565b620002717f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f460201b60201c565b620002a37f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0830620005f460201b60201c565b6001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003a8600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006e660201b60201c565b5062000e26565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f09062000c0a565b60405180910390fd5b6200050d600083836200077d60201b60201c565b806002600082825462000521919062000c2c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005d4919062000c9a565b60405180910390a3620005f0600083836200078260201b60201c565b5050565b6200060682826200078760201b60201c565b620006e25760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000687620003af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620006f6620007f260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007609062000d2d565b60405180910390fd5b6200077a81620003b760201b60201c565b50565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b62000802620003af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008286200088360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008789062000d9f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620008bb9062000df0565b90600052602060002090601f016020900481019282620008df57600085556200092b565b82601f10620008fa57805160ff19168380011785556200092b565b828001600101855582156200092b579182015b828111156200092a5782518255916020019190600101906200090d565b5b5090506200093a91906200093e565b5090565b5b80821115620009595760008160009055506001016200093f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009eb57808604811115620009c357620009c26200095d565b5b6001851615620009d35780820291505b8081029050620009e3856200098c565b9450620009a3565b94509492505050565b60008262000a06576001905062000ad9565b8162000a16576000905062000ad9565b816001811462000a2f576002811462000a3a5762000a70565b600191505062000ad9565b60ff84111562000a4f5762000a4e6200095d565b5b8360020a91508482111562000a695762000a686200095d565b5b5062000ad9565b5060208310610133831016604e8410600b841016171562000aaa5782820a90508381111562000aa45762000aa36200095d565b5b62000ad9565b62000ab9848484600162000999565b9250905081840481111562000ad35762000ad26200095d565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000b048262000ae0565b915062000b118362000aea565b925062000b407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009f4565b905092915050565b600062000b558262000ae0565b915062000b628362000ae0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b9e5762000b9d6200095d565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000bf2601f8362000ba9565b915062000bff8262000bba565b602082019050919050565b6000602082019050818103600083015262000c258162000be3565b9050919050565b600062000c398262000ae0565b915062000c468362000ae0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c7e5762000c7d6200095d565b5b828201905092915050565b62000c948162000ae0565b82525050565b600060208201905062000cb1600083018462000c89565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000d1560268362000ba9565b915062000d228262000cb7565b604082019050919050565b6000602082019050818103600083015262000d488162000d06565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d8760208362000ba9565b915062000d948262000d4f565b602082019050919050565b6000602082019050818103600083015262000dba8162000d78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e0957607f821691505b6020821081141562000e205762000e1f62000dc1565b5b50919050565b61476c8062000e366000396000f3fe6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062003061565b62000888565b604051620002539190620030b0565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003171565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b2919062003235565b6200099f565b604051620002c79190620030b0565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f791906200328d565b60405180910390f35b3480156200030d57600080fd5b506200032c6004803603810190620003269190620032aa565b620009d0565b005b3480156200033b57600080fd5b506200035a6004803603810190620003549190620032dc565b62000a48565b604051620003699190620030b0565b60405180910390f35b3480156200037f57600080fd5b506200039e600480360381019062000398919062003373565b62000a7d565b604051620003ad9190620033b6565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc9190620033d3565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b91906200342b565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003466565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a9190620033d3565b62000af3565b005b3480156200047f57600080fd5b506200049e600480360381019062000498919062003235565b62000b7d565b604051620004ad9190620030b0565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd91906200328d565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d91906200342b565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d91906200328d565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c919062003483565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620034ca565b6200106d565b604051620005af91906200328d565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f891906200356a565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b6040516200062791906200362a565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b6040516200065791906200342b565b60405180910390f35b3480156200066d57600080fd5b506200068c6004803603810190620006869190620033d3565b62001221565b6040516200069b9190620030b0565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb919062003171565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb9190620033b6565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a919062003235565b6200132d565b6040516200073f9190620030b0565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e919062003235565b620013ad565b604051620007839190620030b0565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b29190620033d3565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620034ca565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e919062003483565b6200152d565b6040516200082391906200328d565b60405180910390f35b3480156200083957600080fd5b50620008586004803603810190620008529190620032aa565b620015b4565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620034ca565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f5565b5b9050919050565b606060038054620009169062003676565b80601f0160208091040260200160405190810160405280929190818152602001828054620009449062003676565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175f565b9050620009bb81858562001767565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc816200193a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175f565b905062000a6485828562001952565b62000a71858585620019e6565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab3816200193a565b62000abf838362001e0b565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003722565b60405180910390fd5b62000b79828262001ef1565b5050565b60008062000b8a6200175f565b905062000bb181858562000b9f85896200152d565b62000bab919062003773565b62001767565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a816200193a565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d359190620037e7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d9392919062003819565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd99190620037e7565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba92919062003846565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f009190620038a4565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001767565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001767565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001767565b3060405162000ffd9062002fec565b6200100991906200342b565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001fd8565b620010cb60006200205d565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f9816200193a565b43600a8190555060005b83839050811015620011cb57620011b566f8b0a10e470000662386f26fc1000060016200115e6005898988818110620011415762001140620038d6565b5b9050602002016020810190620011589190620034ca565b62002123565b6200116a919062003773565b62001176919062003905565b62001182919062003773565b858584818110620011985762001197620038d6565b5b9050602002016020810190620011af9190620034ca565b6200216a565b8080620011c29062003966565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d9062003676565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb9062003676565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175f565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013899062003a2a565b60405180910390fd5b620013a1828686840362001767565b60019250505092915050565b600080620013ba6200175f565b9050620013c9818585620019e6565b600191505092915050565b620013df8262000a7d565b620013ea816200193a565b620013f6838362001ef1565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862001427816200193a565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f91906200342b565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003a63565b6040518363ffffffff1660e01b8152600401620014e292919062003846565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015289190620038a4565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016159392919062003a95565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b9190620038a4565b50620016678162002414565b50565b6200167462001fd8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620016e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016de9062003b48565b60405180910390fd5b620016f2816200205d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620017da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017d19062003be0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018449062003c78565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192d91906200328d565b60405180910390a3505050565b6200194f81620019496200175f565b620027ea565b50565b60006200196084846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019e05781811015620019d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c79062003cea565b60405180910390fd5b620019df848484840362001767565b5b50505050565b6000811162001a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a239062003d5c565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad95750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001af25762001aec8383836200287a565b62001e06565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001c4a576000600a541162001b91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b889062003dce565b60405180910390fd5b62001bc8833062001bc2606462001bb36001876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001bf3606462001be46001846200288c90919063ffffffff16565b620028a490919063ffffffff16565b600d600082825462001c06919062003773565b9250508190555062001c44838362001c3e606462001c2f6063876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001e06565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001e0557600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d075762001d01838383620028bc565b62001e06565b62001d3e833062001d38606462001d296001876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001d69606462001d5a6001846200288c90919063ffffffff16565b620028a490919063ffffffff16565b600d600082825462001d7c919062003773565b9250508190555062001dc081600d5462001d97919062003773565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002b43565b6000600d8190555062001dff838362001df9606462001dea6063876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001e06565b5b505050565b62001e17828262001221565b62001eed5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e926200175f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001efd828262001221565b1562001fd45760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f796200175f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001fe26200175f565b73ffffffffffffffffffffffffffffffffffffffff1662002002620011f7565b73ffffffffffffffffffffffffffffffffffffffff16146200205b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620020529062003e40565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000824244846040516020016200213d9392919062003ed7565b6040516020818303038152906040528051906020012060001c62002162919062003f49565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620021a557620021a462003f81565b5b604051908082528060200260200182016040528015620021d45781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620022115762002210620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620022635762002262620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620022fc91906200342b565b602060405180830381865afa1580156200231a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002340919062003a63565b9050600084141562002350578093505b808411620023f357600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620023be959493929190620040c1565b600060405180830381600087803b158015620023d957600080fd5b505af1158015620023ee573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156200244f576200244e62003f81565b5b6040519080825280602002602001820160405280156200247e5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620024bb57620024ba620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200250d576200250c620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620025a691906200342b565b602060405180830381865afa158015620025c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025ea919062003a63565b90506000831415620025fa578092505b808311620026bf57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200268a959493929190620040c1565b600060405180830381600087803b158015620026a557600080fd5b505af1158015620026ba573d6000803e3d6000fd5b505050505b6000620026ee600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b1115620027ca573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163062002762600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b8152600401620027829392919062003a95565b6020604051808303816000875af1158015620027a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027c89190620038a4565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620027f6828262001221565b6200287657620028068162002d58565b620028168360001c602062002d87565b6040516020016200282992919062004207565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200286d919062003171565b60405180910390fd5b5050565b62002887838383620028bc565b505050565b600081836200289c919062003905565b905092915050565b60008183620028b4919062004249565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200292f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200292690620042f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620029a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002999906200438f565b60405180910390fd5b620029af83838362002fe2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a2f9062004427565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002b2891906200328d565b60405180910390a362002b3d84848462002fe7565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002b6b306200106d565b90506000600267ffffffffffffffff81111562002b8d5762002b8c62003f81565b5b60405190808252806020026020018201604052801562002bbc5781602001602082028036833780820191505090505b5090508382101562002bcc578193505b600084111562002d3757308160008151811062002bee5762002bed620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002c625762002c61620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002d02959493929190620040c1565b600060405180830381600087803b15801562002d1d57600080fd5b505af115801562002d32573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002d808273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002d87565b9050919050565b60606000600283600262002d9c919062003905565b62002da8919062003773565b67ffffffffffffffff81111562002dc45762002dc362003f81565b5b6040519080825280601f01601f19166020018201604052801562002df75781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002e325762002e31620038d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002e995762002e98620038d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002edb919062003905565b62002ee7919062003773565b90505b600181111562002f91577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002f2d5762002f2c620038d6565b5b1a60f81b82828151811062002f475762002f46620038d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002f899062004449565b905062002eea565b506000841462002fd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fcf90620044c8565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c80620044eb83390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200303b8162003004565b81146200304757600080fd5b50565b6000813590506200305b8162003030565b92915050565b6000602082840312156200307a576200307962002ffa565b5b60006200308a848285016200304a565b91505092915050565b60008115159050919050565b620030aa8162003093565b82525050565b6000602082019050620030c760008301846200309f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562003109578082015181840152602081019050620030ec565b8381111562003119576000848401525b50505050565b6000601f19601f8301169050919050565b60006200313d82620030cd565b620031498185620030d8565b93506200315b818560208601620030e9565b62003166816200311f565b840191505092915050565b600060208201905081810360008301526200318d818462003130565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620031c28262003195565b9050919050565b620031d481620031b5565b8114620031e057600080fd5b50565b600081359050620031f481620031c9565b92915050565b6000819050919050565b6200320f81620031fa565b81146200321b57600080fd5b50565b6000813590506200322f8162003204565b92915050565b600080604083850312156200324f576200324e62002ffa565b5b60006200325f85828601620031e3565b925050602062003272858286016200321e565b9150509250929050565b6200328781620031fa565b82525050565b6000602082019050620032a460008301846200327c565b92915050565b600060208284031215620032c357620032c262002ffa565b5b6000620032d3848285016200321e565b91505092915050565b600080600060608486031215620032f857620032f762002ffa565b5b60006200330886828701620031e3565b93505060206200331b86828701620031e3565b92505060406200332e868287016200321e565b9150509250925092565b6000819050919050565b6200334d8162003338565b81146200335957600080fd5b50565b6000813590506200336d8162003342565b92915050565b6000602082840312156200338c576200338b62002ffa565b5b60006200339c848285016200335c565b91505092915050565b620033b08162003338565b82525050565b6000602082019050620033cd6000830184620033a5565b92915050565b60008060408385031215620033ed57620033ec62002ffa565b5b6000620033fd858286016200335c565b92505060206200341085828601620031e3565b9150509250929050565b6200342581620031b5565b82525050565b60006020820190506200344260008301846200341a565b92915050565b600060ff82169050919050565b620034608162003448565b82525050565b60006020820190506200347d600083018462003455565b92915050565b600080604083850312156200349d576200349c62002ffa565b5b6000620034ad85828601620031e3565b9250506020620034c085828601620031e3565b9150509250929050565b600060208284031215620034e357620034e262002ffa565b5b6000620034f384828501620031e3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112620035245762003523620034fc565b5b8235905067ffffffffffffffff81111562003544576200354362003501565b5b60208301915083602082028301111562003563576200356262003506565b5b9250929050565b6000806020838503121562003584576200358362002ffa565b5b600083013567ffffffffffffffff811115620035a557620035a462002fff565b5b620035b3858286016200350b565b92509250509250929050565b6000819050919050565b6000620035ea620035e4620035de8462003195565b620035bf565b62003195565b9050919050565b6000620035fe82620035c9565b9050919050565b60006200361282620035f1565b9050919050565b620036248162003605565b82525050565b600060208201905062003641600083018462003619565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200368f57607f821691505b60208210811415620036a657620036a562003647565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006200370a602f83620030d8565b91506200371782620036ac565b604082019050919050565b600060208201905081810360008301526200373d81620036fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200378082620031fa565b91506200378d83620031fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620037c557620037c462003744565b5b828201905092915050565b600081519050620037e181620031c9565b92915050565b6000602082840312156200380057620037ff62002ffa565b5b60006200381084828501620037d0565b91505092915050565b60006040820190506200383060008301856200341a565b6200383f60208301846200341a565b9392505050565b60006040820190506200385d60008301856200341a565b6200386c60208301846200327c565b9392505050565b6200387e8162003093565b81146200388a57600080fd5b50565b6000815190506200389e8162003873565b92915050565b600060208284031215620038bd57620038bc62002ffa565b5b6000620038cd848285016200388d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006200391282620031fa565b91506200391f83620031fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200395b576200395a62003744565b5b828202905092915050565b60006200397382620031fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620039a957620039a862003744565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600062003a12602583620030d8565b915062003a1f82620039b4565b604082019050919050565b6000602082019050818103600083015262003a458162003a03565b9050919050565b60008151905062003a5d8162003204565b92915050565b60006020828403121562003a7c5762003a7b62002ffa565b5b600062003a8c8482850162003a4c565b91505092915050565b600060608201905062003aac60008301866200341a565b62003abb60208301856200341a565b62003aca60408301846200327c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062003b30602683620030d8565b915062003b3d8262003ad2565b604082019050919050565b6000602082019050818103600083015262003b638162003b21565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062003bc8602483620030d8565b915062003bd58262003b6a565b604082019050919050565b6000602082019050818103600083015262003bfb8162003bb9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003c60602283620030d8565b915062003c6d8262003c02565b604082019050919050565b6000602082019050818103600083015262003c938162003c51565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003cd2601d83620030d8565b915062003cdf8262003c9a565b602082019050919050565b6000602082019050818103600083015262003d058162003cc3565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003d44601083620030d8565b915062003d518262003d0c565b602082019050919050565b6000602082019050818103600083015262003d778162003d35565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003db6600883620030d8565b915062003dc38262003d7e565b602082019050919050565b6000602082019050818103600083015262003de98162003da7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003e28602083620030d8565b915062003e358262003df0565b602082019050919050565b6000602082019050818103600083015262003e5b8162003e19565b9050919050565b6000819050919050565b62003e8162003e7b82620031fa565b62003e62565b82525050565b60008160601b9050919050565b600062003ea18262003e87565b9050919050565b600062003eb58262003e94565b9050919050565b62003ed162003ecb82620031b5565b62003ea8565b82525050565b600062003ee5828662003e6c565b60208201915062003ef7828562003e6c565b60208201915062003f09828462003ebc565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003f5682620031fa565b915062003f6383620031fa565b92508262003f765762003f7562003f1a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003fdb62003fd562003fcf8462003fb0565b620035bf565b620031fa565b9050919050565b62003fed8162003fba565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6200402a81620031b5565b82525050565b60006200403e83836200401f565b60208301905092915050565b6000602082019050919050565b6000620040648262003ff3565b62004070818562003ffe565b93506200407d836200400f565b8060005b83811015620040b457815162004098888262004030565b9750620040a5836200404a565b92505060018101905062004081565b5085935050505092915050565b600060a082019050620040d860008301886200327c565b620040e7602083018762003fe2565b8181036040830152620040fb818662004057565b90506200410c60608301856200341a565b6200411b60808301846200327c565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006200416860178362004125565b9150620041758262004130565b601782019050919050565b60006200418d82620030cd565b62004199818562004125565b9350620041ab818560208601620030e9565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000620041ef60118362004125565b9150620041fc82620041b7565b601182019050919050565b6000620042148262004159565b915062004222828562004180565b91506200422f82620041e0565b91506200423d828462004180565b91508190509392505050565b60006200425682620031fa565b91506200426383620031fa565b92508262004276576200427562003f1a565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620042df602583620030d8565b9150620042ec8262004281565b604082019050919050565b600060208201905081810360008301526200431281620042d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062004377602383620030d8565b9150620043848262004319565b604082019050919050565b60006020820190508181036000830152620043aa8162004368565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006200440f602683620030d8565b91506200441c82620043b1565b604082019050919050565b60006020820190508181036000830152620044428162004400565b9050919050565b60006200445682620031fa565b915060008214156200446d576200446c62003744565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000620044b0602083620030d8565b9150620044bd8262004478565b602082019050919050565b60006020820190508181036000830152620044e381620044a1565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea2646970667358221220500fb67e8a1cf3214e0f87771e106b2d8751fbbaa78e68901ca15af81e3c996664736f6c634300080c0033a26469706673582212202e83bcfcf76f4cf9851f17d393dba1121e57fee41c8411012101b160f462a18d64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062003061565b62000888565b604051620002539190620030b0565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003171565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b2919062003235565b6200099f565b604051620002c79190620030b0565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f791906200328d565b60405180910390f35b3480156200030d57600080fd5b506200032c6004803603810190620003269190620032aa565b620009d0565b005b3480156200033b57600080fd5b506200035a6004803603810190620003549190620032dc565b62000a48565b604051620003699190620030b0565b60405180910390f35b3480156200037f57600080fd5b506200039e600480360381019062000398919062003373565b62000a7d565b604051620003ad9190620033b6565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc9190620033d3565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b91906200342b565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003466565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a9190620033d3565b62000af3565b005b3480156200047f57600080fd5b506200049e600480360381019062000498919062003235565b62000b7d565b604051620004ad9190620030b0565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd91906200328d565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d91906200342b565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d91906200328d565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c919062003483565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620034ca565b6200106d565b604051620005af91906200328d565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f891906200356a565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b6040516200062791906200362a565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b6040516200065791906200342b565b60405180910390f35b3480156200066d57600080fd5b506200068c6004803603810190620006869190620033d3565b62001221565b6040516200069b9190620030b0565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb919062003171565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb9190620033b6565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a919062003235565b6200132d565b6040516200073f9190620030b0565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e919062003235565b620013ad565b604051620007839190620030b0565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b29190620033d3565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620034ca565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e919062003483565b6200152d565b6040516200082391906200328d565b60405180910390f35b3480156200083957600080fd5b50620008586004803603810190620008529190620032aa565b620015b4565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620034ca565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f5565b5b9050919050565b606060038054620009169062003676565b80601f0160208091040260200160405190810160405280929190818152602001828054620009449062003676565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175f565b9050620009bb81858562001767565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc816200193a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175f565b905062000a6485828562001952565b62000a71858585620019e6565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab3816200193a565b62000abf838362001e0b565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003722565b60405180910390fd5b62000b79828262001ef1565b5050565b60008062000b8a6200175f565b905062000bb181858562000b9f85896200152d565b62000bab919062003773565b62001767565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a816200193a565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d359190620037e7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d9392919062003819565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd99190620037e7565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba92919062003846565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f009190620038a4565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001767565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001767565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001767565b3060405162000ffd9062002fec565b6200100991906200342b565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001fd8565b620010cb60006200205d565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f9816200193a565b43600a8190555060005b83839050811015620011cb57620011b566f8b0a10e470000662386f26fc1000060016200115e6005898988818110620011415762001140620038d6565b5b9050602002016020810190620011589190620034ca565b62002123565b6200116a919062003773565b62001176919062003905565b62001182919062003773565b858584818110620011985762001197620038d6565b5b9050602002016020810190620011af9190620034ca565b6200216a565b8080620011c29062003966565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d9062003676565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb9062003676565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175f565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013899062003a2a565b60405180910390fd5b620013a1828686840362001767565b60019250505092915050565b600080620013ba6200175f565b9050620013c9818585620019e6565b600191505092915050565b620013df8262000a7d565b620013ea816200193a565b620013f6838362001ef1565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862001427816200193a565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f91906200342b565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003a63565b6040518363ffffffff1660e01b8152600401620014e292919062003846565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015289190620038a4565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016159392919062003a95565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b9190620038a4565b50620016678162002414565b50565b6200167462001fd8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620016e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016de9062003b48565b60405180910390fd5b620016f2816200205d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620017da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017d19062003be0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018449062003c78565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192d91906200328d565b60405180910390a3505050565b6200194f81620019496200175f565b620027ea565b50565b60006200196084846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019e05781811015620019d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c79062003cea565b60405180910390fd5b620019df848484840362001767565b5b50505050565b6000811162001a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a239062003d5c565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad95750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001af25762001aec8383836200287a565b62001e06565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001c4a576000600a541162001b91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b889062003dce565b60405180910390fd5b62001bc8833062001bc2606462001bb36001876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001bf3606462001be46001846200288c90919063ffffffff16565b620028a490919063ffffffff16565b600d600082825462001c06919062003773565b9250508190555062001c44838362001c3e606462001c2f6063876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001e06565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001e0557600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001d075762001d01838383620028bc565b62001e06565b62001d3e833062001d38606462001d296001876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001d69606462001d5a6001846200288c90919063ffffffff16565b620028a490919063ffffffff16565b600d600082825462001d7c919062003773565b9250508190555062001dc081600d5462001d97919062003773565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002b43565b6000600d8190555062001dff838362001df9606462001dea6063876200288c90919063ffffffff16565b620028a490919063ffffffff16565b620028bc565b62001e06565b5b505050565b62001e17828262001221565b62001eed5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e926200175f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001efd828262001221565b1562001fd45760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f796200175f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001fe26200175f565b73ffffffffffffffffffffffffffffffffffffffff1662002002620011f7565b73ffffffffffffffffffffffffffffffffffffffff16146200205b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620020529062003e40565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000824244846040516020016200213d9392919062003ed7565b6040516020818303038152906040528051906020012060001c62002162919062003f49565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620021a557620021a462003f81565b5b604051908082528060200260200182016040528015620021d45781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620022115762002210620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620022635762002262620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620022fc91906200342b565b602060405180830381865afa1580156200231a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002340919062003a63565b9050600084141562002350578093505b808411620023f357600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620023be959493929190620040c1565b600060405180830381600087803b158015620023d957600080fd5b505af1158015620023ee573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156200244f576200244e62003f81565b5b6040519080825280602002602001820160405280156200247e5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620024bb57620024ba620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200250d576200250c620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620025a691906200342b565b602060405180830381865afa158015620025c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025ea919062003a63565b90506000831415620025fa578092505b808311620026bf57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200268a959493929190620040c1565b600060405180830381600087803b158015620026a557600080fd5b505af1158015620026ba573d6000803e3d6000fd5b505050505b6000620026ee600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b1115620027ca573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163062002762600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b8152600401620027829392919062003a95565b6020604051808303816000875af1158015620027a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027c89190620038a4565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620027f6828262001221565b6200287657620028068162002d58565b620028168360001c602062002d87565b6040516020016200282992919062004207565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200286d919062003171565b60405180910390fd5b5050565b62002887838383620028bc565b505050565b600081836200289c919062003905565b905092915050565b60008183620028b4919062004249565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200292f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200292690620042f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620029a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002999906200438f565b60405180910390fd5b620029af83838362002fe2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a2f9062004427565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002b2891906200328d565b60405180910390a362002b3d84848462002fe7565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002b6b306200106d565b90506000600267ffffffffffffffff81111562002b8d5762002b8c62003f81565b5b60405190808252806020026020018201604052801562002bbc5781602001602082028036833780820191505090505b5090508382101562002bcc578193505b600084111562002d3757308160008151811062002bee5762002bed620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002c625762002c61620038d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002d02959493929190620040c1565b600060405180830381600087803b15801562002d1d57600080fd5b505af115801562002d32573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002d808273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002d87565b9050919050565b60606000600283600262002d9c919062003905565b62002da8919062003773565b67ffffffffffffffff81111562002dc45762002dc362003f81565b5b6040519080825280601f01601f19166020018201604052801562002df75781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002e325762002e31620038d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002e995762002e98620038d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002edb919062003905565b62002ee7919062003773565b90505b600181111562002f91577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002f2d5762002f2c620038d6565b5b1a60f81b82828151811062002f475762002f46620038d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002f899062004449565b905062002eea565b506000841462002fd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fcf90620044c8565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c80620044eb83390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200303b8162003004565b81146200304757600080fd5b50565b6000813590506200305b8162003030565b92915050565b6000602082840312156200307a576200307962002ffa565b5b60006200308a848285016200304a565b91505092915050565b60008115159050919050565b620030aa8162003093565b82525050565b6000602082019050620030c760008301846200309f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562003109578082015181840152602081019050620030ec565b8381111562003119576000848401525b50505050565b6000601f19601f8301169050919050565b60006200313d82620030cd565b620031498185620030d8565b93506200315b818560208601620030e9565b62003166816200311f565b840191505092915050565b600060208201905081810360008301526200318d818462003130565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620031c28262003195565b9050919050565b620031d481620031b5565b8114620031e057600080fd5b50565b600081359050620031f481620031c9565b92915050565b6000819050919050565b6200320f81620031fa565b81146200321b57600080fd5b50565b6000813590506200322f8162003204565b92915050565b600080604083850312156200324f576200324e62002ffa565b5b60006200325f85828601620031e3565b925050602062003272858286016200321e565b9150509250929050565b6200328781620031fa565b82525050565b6000602082019050620032a460008301846200327c565b92915050565b600060208284031215620032c357620032c262002ffa565b5b6000620032d3848285016200321e565b91505092915050565b600080600060608486031215620032f857620032f762002ffa565b5b60006200330886828701620031e3565b93505060206200331b86828701620031e3565b92505060406200332e868287016200321e565b9150509250925092565b6000819050919050565b6200334d8162003338565b81146200335957600080fd5b50565b6000813590506200336d8162003342565b92915050565b6000602082840312156200338c576200338b62002ffa565b5b60006200339c848285016200335c565b91505092915050565b620033b08162003338565b82525050565b6000602082019050620033cd6000830184620033a5565b92915050565b60008060408385031215620033ed57620033ec62002ffa565b5b6000620033fd858286016200335c565b92505060206200341085828601620031e3565b9150509250929050565b6200342581620031b5565b82525050565b60006020820190506200344260008301846200341a565b92915050565b600060ff82169050919050565b620034608162003448565b82525050565b60006020820190506200347d600083018462003455565b92915050565b600080604083850312156200349d576200349c62002ffa565b5b6000620034ad85828601620031e3565b9250506020620034c085828601620031e3565b9150509250929050565b600060208284031215620034e357620034e262002ffa565b5b6000620034f384828501620031e3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112620035245762003523620034fc565b5b8235905067ffffffffffffffff81111562003544576200354362003501565b5b60208301915083602082028301111562003563576200356262003506565b5b9250929050565b6000806020838503121562003584576200358362002ffa565b5b600083013567ffffffffffffffff811115620035a557620035a462002fff565b5b620035b3858286016200350b565b92509250509250929050565b6000819050919050565b6000620035ea620035e4620035de8462003195565b620035bf565b62003195565b9050919050565b6000620035fe82620035c9565b9050919050565b60006200361282620035f1565b9050919050565b620036248162003605565b82525050565b600060208201905062003641600083018462003619565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200368f57607f821691505b60208210811415620036a657620036a562003647565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006200370a602f83620030d8565b91506200371782620036ac565b604082019050919050565b600060208201905081810360008301526200373d81620036fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200378082620031fa565b91506200378d83620031fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620037c557620037c462003744565b5b828201905092915050565b600081519050620037e181620031c9565b92915050565b6000602082840312156200380057620037ff62002ffa565b5b60006200381084828501620037d0565b91505092915050565b60006040820190506200383060008301856200341a565b6200383f60208301846200341a565b9392505050565b60006040820190506200385d60008301856200341a565b6200386c60208301846200327c565b9392505050565b6200387e8162003093565b81146200388a57600080fd5b50565b6000815190506200389e8162003873565b92915050565b600060208284031215620038bd57620038bc62002ffa565b5b6000620038cd848285016200388d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006200391282620031fa565b91506200391f83620031fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200395b576200395a62003744565b5b828202905092915050565b60006200397382620031fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620039a957620039a862003744565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600062003a12602583620030d8565b915062003a1f82620039b4565b604082019050919050565b6000602082019050818103600083015262003a458162003a03565b9050919050565b60008151905062003a5d8162003204565b92915050565b60006020828403121562003a7c5762003a7b62002ffa565b5b600062003a8c8482850162003a4c565b91505092915050565b600060608201905062003aac60008301866200341a565b62003abb60208301856200341a565b62003aca60408301846200327c565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062003b30602683620030d8565b915062003b3d8262003ad2565b604082019050919050565b6000602082019050818103600083015262003b638162003b21565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062003bc8602483620030d8565b915062003bd58262003b6a565b604082019050919050565b6000602082019050818103600083015262003bfb8162003bb9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003c60602283620030d8565b915062003c6d8262003c02565b604082019050919050565b6000602082019050818103600083015262003c938162003c51565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003cd2601d83620030d8565b915062003cdf8262003c9a565b602082019050919050565b6000602082019050818103600083015262003d058162003cc3565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003d44601083620030d8565b915062003d518262003d0c565b602082019050919050565b6000602082019050818103600083015262003d778162003d35565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003db6600883620030d8565b915062003dc38262003d7e565b602082019050919050565b6000602082019050818103600083015262003de98162003da7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003e28602083620030d8565b915062003e358262003df0565b602082019050919050565b6000602082019050818103600083015262003e5b8162003e19565b9050919050565b6000819050919050565b62003e8162003e7b82620031fa565b62003e62565b82525050565b60008160601b9050919050565b600062003ea18262003e87565b9050919050565b600062003eb58262003e94565b9050919050565b62003ed162003ecb82620031b5565b62003ea8565b82525050565b600062003ee5828662003e6c565b60208201915062003ef7828562003e6c565b60208201915062003f09828462003ebc565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003f5682620031fa565b915062003f6383620031fa565b92508262003f765762003f7562003f1a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003fdb62003fd562003fcf8462003fb0565b620035bf565b620031fa565b9050919050565b62003fed8162003fba565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6200402a81620031b5565b82525050565b60006200403e83836200401f565b60208301905092915050565b6000602082019050919050565b6000620040648262003ff3565b62004070818562003ffe565b93506200407d836200400f565b8060005b83811015620040b457815162004098888262004030565b9750620040a5836200404a565b92505060018101905062004081565b5085935050505092915050565b600060a082019050620040d860008301886200327c565b620040e7602083018762003fe2565b8181036040830152620040fb818662004057565b90506200410c60608301856200341a565b6200411b60808301846200327c565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006200416860178362004125565b9150620041758262004130565b601782019050919050565b60006200418d82620030cd565b62004199818562004125565b9350620041ab818560208601620030e9565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000620041ef60118362004125565b9150620041fc82620041b7565b601182019050919050565b6000620042148262004159565b915062004222828562004180565b91506200422f82620041e0565b91506200423d828462004180565b91508190509392505050565b60006200425682620031fa565b91506200426383620031fa565b92508262004276576200427562003f1a565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620042df602583620030d8565b9150620042ec8262004281565b604082019050919050565b600060208201905081810360008301526200431281620042d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062004377602383620030d8565b9150620043848262004319565b604082019050919050565b60006020820190508181036000830152620043aa8162004368565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006200440f602683620030d8565b91506200441c82620043b1565b604082019050919050565b60006020820190508181036000830152620044428162004400565b9050919050565b60006200445682620031fa565b915060008214156200446d576200446c62003744565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000620044b0602083620030d8565b9150620044bd8262004478565b602082019050919050565b60006020820190508181036000830152620044e381620044a1565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea2646970667358221220500fb67e8a1cf3214e0f87771e106b2d8751fbbaa78e68901ca15af81e3c996664736f6c634300080c0033a26469706673582212202e83bcfcf76f4cf9851f17d393dba1121e57fee41c8411012101b160f462a18d64736f6c634300080c0033

Deployed Bytecode Sourcemap

62931:6152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37630:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51720:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54080:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52849:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68915:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54861:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39453:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39894:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63166:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64740:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41038:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55531:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63272:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63131:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63192:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63950:784;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53020:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45175:103;;;;;;;;;;;;;:::i;:::-;;68312:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63352:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44534:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37926:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51939:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37031:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56272:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53353:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40334:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68742:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53609:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66240:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45433:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37630:204;37715:4;37754:32;37739:47;;;:11;:47;;;;:87;;;;37790:36;37814:11;37790:23;:36::i;:::-;37739:87;37732:94;;37630:204;;;:::o;51720:100::-;51774:13;51807:5;51800:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51720:100;:::o;54080:201::-;54163:4;54180:13;54196:12;:10;:12::i;:::-;54180:28;;54219:32;54228:5;54235:7;54244:6;54219:8;:32::i;:::-;54269:4;54262:11;;;54080:201;;;;:::o;52849:108::-;52910:7;52937:12;;52930:19;;52849:108;:::o;68915:122::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;69001:10:::1;68993:28;;:36;69022:6;68993:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68915:122:::0;;:::o;54861:261::-;54958:4;54975:15;54993:12;:10;:12::i;:::-;54975:30;;55016:38;55032:4;55038:7;55047:6;55016:15;:38::i;:::-;55065:27;55075:4;55081:2;55085:6;55065:9;:27::i;:::-;55110:4;55103:11;;;54861:261;;;;;:::o;39453:131::-;39527:7;39554:6;:12;39561:4;39554:12;;;;;;;;;;;:22;;;39547:29;;39453:131;;;:::o;39894:147::-;39977:18;39990:4;39977:12;:18::i;:::-;37522:16;37533:4;37522:10;:16::i;:::-;40008:25:::1;40019:4;40025:7;40008:10;:25::i;:::-;39894:147:::0;;;:::o;63166:19::-;;;;;;;;;;;;;:::o;64740:92::-;64798:5;64823:1;64816:8;;64740:92;:::o;41038:218::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:23;;;41126:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41222:26;41234:4;41240:7;41222:11;:26::i;:::-;41038:218;;:::o;55531:238::-;55619:4;55636:13;55652:12;:10;:12::i;:::-;55636:28;;55675:64;55684:5;55691:7;55728:10;55700:25;55710:5;55717:7;55700:9;:25::i;:::-;:38;;;;:::i;:::-;55675:8;:64::i;:::-;55757:4;55750:11;;;55531:238;;;;:::o;63272:24::-;;;;:::o;63131:28::-;;;;;;;;;;;;;:::o;63192:30::-;;;;:::o;63950:784::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;64044:6:::1;64039:4;;:11;;;;;;;;;;;;;;;;;;64135:12;64148:5;64135:18;;64267:4;64237:15;;:35;;;;;;;;;;;;;;;;;;64312:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64299:50;;;64358:4;64365;;;;;;;;;;;64299:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64283:13;;:87;;;;;;;;;;;;;;;;;;64387:4;;;;;;;;;;;64381:19;;;64409:15;;;;;;;;;;;64427:17;64381:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64456:67;64473:4;64488:15;;;;;;;;;;;64505:17;64456:8;:67::i;:::-;64534:56;64551:4;64566;64572:17;64534:8;:56::i;:::-;64601:59;64610:5;;;;;;;;;;;64625:15;;;;;;;;;;;64642:17;64601:8;:59::i;:::-;64720:4;64691:35;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64671:17;;:55;;;;;;;;;;;;;;;;;;64028:706;63950:784:::0;;;:::o;53020:127::-;53094:7;53121:9;:18;53131:7;53121:18;;;;;;;;;;;;;;;;53114:25;;53020:127;;;:::o;45175:103::-;44420:13;:11;:13::i;:::-;45240:30:::1;45267:1;45240:18;:30::i;:::-;45175:103::o:0;68312:236::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;68416:12:::1;68398:15;:30;;;;68443:6;68439:101;68454:4;;:11;;68452:1;:13;68439:101;;;68484:56;68523:8;68516:6;68513:1;68495:17;68502:1;68504:4;;68509:1;68504:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68495:6;:17::i;:::-;:19;;;;:::i;:::-;68494:28;;;;:::i;:::-;:37;;;;:::i;:::-;68532:4;;68537:1;68532:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68484:9;:56::i;:::-;68466:3;;;;;:::i;:::-;;;;68439:101;;;;68312:236:::0;;;:::o;63352:41::-;;;;;;;;;;;;;:::o;44534:87::-;44580:7;44607:6;;;;;;;;;;;44600:13;;44534:87;:::o;37926:147::-;38012:4;38036:6;:12;38043:4;38036:12;;;;;;;;;;;:20;;:29;38057:7;38036:29;;;;;;;;;;;;;;;;;;;;;;;;;38029:36;;37926:147;;;;:::o;51939:104::-;51995:13;52028:7;52021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51939:104;:::o;37031:49::-;37076:4;37031:49;;;:::o;56272:436::-;56365:4;56382:13;56398:12;:10;:12::i;:::-;56382:28;;56421:24;56448:25;56458:5;56465:7;56448:9;:25::i;:::-;56421:52;;56512:15;56492:16;:35;;56484:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56605:60;56614:5;56621:7;56649:15;56630:16;:34;56605:8;:60::i;:::-;56696:4;56689:11;;;;56272:436;;;;:::o;53353:193::-;53432:4;53449:13;53465:12;:10;:12::i;:::-;53449:28;;53488;53498:5;53505:2;53509:6;53488:9;:28::i;:::-;53534:4;53527:11;;;53353:193;;;;:::o;40334:149::-;40418:18;40431:4;40418:12;:18::i;:::-;37522:16;37533:4;37522:10;:16::i;:::-;40449:26:::1;40461:4;40467:7;40449:11;:26::i;:::-;40334:149:::0;;;:::o;68742:161::-;63024:25;37522:16;37533:4;37522:10;:16::i;:::-;68826:6:::1;68820:22;;;68843:10;68862:6;68855:24;;;68888:4;68855:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68820:75;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68742:161:::0;;:::o;53609:151::-;53698:7;53725:11;:18;53737:5;53725:18;;;;;;;;;;;;;;;:27;53744:7;53725:27;;;;;;;;;;;;;;;;53718:34;;53609:151;;;;:::o;66240:158::-;66296:4;;;;;;;;;;;66290:24;;;66315:10;66335:4;66342:6;66290:59;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66360:30;66383:6;66360:22;:30::i;:::-;66240:158;:::o;45433:201::-;44420:13;:11;:13::i;:::-;45542:1:::1;45522:22;;:8;:22;;;;45514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45598:28;45617:8;45598:18;:28::i;:::-;45433:201:::0;:::o;6567:157::-;6652:4;6691:25;6676:40;;;:11;:40;;;;6669:47;;6567:157;;;:::o;34712:98::-;34765:7;34792:10;34785:17;;34712:98;:::o;60265:346::-;60384:1;60367:19;;:5;:19;;;;60359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60465:1;60446:21;;:7;:21;;;;60438:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60549:6;60519:11;:18;60531:5;60519:18;;;;;;;;;;;;;;;:27;60538:7;60519:27;;;;;;;;;;;;;;;:36;;;;60587:7;60571:32;;60580:5;60571:32;;;60596:6;60571:32;;;;;;:::i;:::-;;;;;;;;60265:346;;;:::o;38377:105::-;38444:30;38455:4;38461:12;:10;:12::i;:::-;38444:10;:30::i;:::-;38377:105;:::o;60902:419::-;61003:24;61030:25;61040:5;61047:7;61030:9;:25::i;:::-;61003:52;;61090:17;61070:16;:37;61066:248;;61152:6;61132:16;:26;;61124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61236:51;61245:5;61252:7;61280:6;61261:16;:25;61236:8;:51::i;:::-;61066:248;60992:329;60902:419;;;:::o;64843:1085::-;64984:1;64975:6;:10;64967:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;65038:13;;;;;;;;;;;65030:21;;:4;:21;;;;:44;;;;;65061:13;;;;;;;;;;;65055:19;;:2;:19;;;;65030:44;65027:127;;;65091:30;65104:4;65110:2;65114:6;65091:12;:30::i;:::-;65136:7;;65027:127;65175:13;;;;;;;;;;;65167:21;;:4;:21;;;65164:300;;;65229:1;65213:15;;:17;65205:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;65258:60;65274:4;65288;65295:22;65313:3;65295:13;65306:1;65295:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65258:15;:60::i;:::-;65344:22;65362:3;65344:13;65355:1;65344:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65333:9;;:33;;;;;;;:::i;:::-;;;;;;;;65381:50;65397:4;65403:2;65407:23;65426:3;65407:14;65418:2;65407:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65381:15;:50::i;:::-;65446:7;;65164:300;65483:13;;;;;;;;;;;65477:19;;:2;:19;;;65474:447;;;65516:9;:15;65526:4;65516:15;;;;;;;;;;;;;;;;;;;;;;;;;65513:112;;;65551:33;65567:4;65573:2;65577:6;65551:15;:33::i;:::-;65603:7;;65513:112;65639:60;65655:4;65669;65676:22;65694:3;65676:13;65687:1;65676:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65639:15;:60::i;:::-;65725:22;65743:3;65725:13;65736:1;65725:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65714:9;;:33;;;;;;;:::i;:::-;;;;;;;;65762:35;65781:6;65771:9;;:16;;;;:::i;:::-;65788:8;;;;;;;;;;;65762;:35::i;:::-;65822:1;65812:9;:11;;;;65838:50;65854:4;65860:2;65864:23;65883:3;65864:14;65875:2;65864:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65838:15;:50::i;:::-;65903:7;;65474:447;64843:1085;;;;:::o;42635:238::-;42719:22;42727:4;42733:7;42719;:22::i;:::-;42714:152;;42790:4;42758:6;:12;42765:4;42758:12;;;;;;;;;;;:20;;:29;42779:7;42758:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;42841:12;:10;:12::i;:::-;42814:40;;42832:7;42814:40;;42826:4;42814:40;;;;;;;;;;42714:152;42635:238;;:::o;43053:239::-;43137:22;43145:4;43151:7;43137;:22::i;:::-;43133:152;;;43208:5;43176:6;:12;43183:4;43176:12;;;;;;;;;;;:20;;:29;43197:7;43176:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;43260:12;:10;:12::i;:::-;43233:40;;43251:7;43233:40;;43245:4;43233:40;;;;;;;;;;43133:152;43053:239;;:::o;44699:132::-;44774:12;:10;:12::i;:::-;44763:23;;:7;:5;:7::i;:::-;:23;;;44755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44699:132::o;45794:191::-;45868:16;45887:6;;;;;;;;;;;45868:25;;45913:8;45904:6;;:17;;;;;;;;;;;;;;;;;;45968:8;45937:40;;45958:8;45937:40;;;;;;;;;;;;45857:128;45794:191;:::o;68554:180::-;68618:4;68720:6;68674:15;68690:16;68709:5;68657:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68647:69;;;;;;68642:75;;:84;;;;:::i;:::-;68635:91;;68554:180;;;;:::o;66404:611::-;66185:4;66176:6;;:13;;;;;;;;;;;;;;;;;;66486:21:::1;66524:1;66510:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66486:40;;66555:4;;;;;;;;;;;66537;66542:1;66537:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66589:4;66571;66576:1;66571:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66605:15;66630:4;;;;;;;;;;;66623:22;;;66654:4;66623:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66605:55;;66687:1;66674:11;:14;66671:39;;;66703:7;66689:21;;66671:39;66765:7;66750:11;:22;66747:260;;66783:15;;;;;;;;;;;:69;;;66867:11;66893:1;66936:4;66963:2;66981:15;66783:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66747:260;66475:540;;66221:5:::0;66212:6;;:14;;;;;;;;;;;;;;;;;;66404:611;;:::o;67021:807::-;66185:4;66176:6;;:13;;;;;;;;;;;;;;;;;;67105:21:::1;67143:1;67129:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67105:40;;67174:4;;;;;;;;;;;67156;67161:1;67156:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67208:4;67190;67195:1;67190:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67224:15;67249:4;;;;;;;;;;;67242:22;;;67273:4;67242:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67224:55;;67306:1;67293:11;:14;67290:39;;;67322:7;67308:21;;67290:39;67384:7;67369:11;:22;67366:275;;67402:15;;;;;;;;;;;:69;;;67486:11;67512:1;67555:4;67582:17;;;;;;;;;;;67615:15;67402:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67366:275;67693:1;67655:37;67673:17;;;;;;;;;;;67655:9;:37::i;:::-;:39;67652:168;;;67719:4;67705:33;;;67747:17;;;;;;;;;;;67775:4;67782:37;67800:17;;;;;;;;;;;67782:9;:37::i;:::-;67705:115;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67652:168;67094:734;;66221:5:::0;66212:6;;:14;;;;;;;;;;;;;;;;;;67021:807;:::o;38772:492::-;38861:22;38869:4;38875:7;38861;:22::i;:::-;38856:401;;39049:28;39069:7;39049:19;:28::i;:::-;39150:38;39178:4;39170:13;;39185:2;39150:19;:38::i;:::-;38954:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38900:345;;;;;;;;;;;:::i;:::-;;;;;;;;38856:401;38772:492;;:::o;65934:178::-;66061:43;66077:6;66085:9;66096:7;66061:15;:43::i;:::-;65934:178;;;:::o;30708:98::-;30766:7;30797:1;30793;:5;;;;:::i;:::-;30786:12;;30708:98;;;;:::o;31107:::-;31165:7;31196:1;31192;:5;;;;:::i;:::-;31185:12;;31107:98;;;;:::o;57178:806::-;57291:1;57275:18;;:4;:18;;;;57267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57368:1;57354:16;;:2;:16;;;;57346:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57423:38;57444:4;57450:2;57454:6;57423:20;:38::i;:::-;57474:19;57496:9;:15;57506:4;57496:15;;;;;;;;;;;;;;;;57474:37;;57545:6;57530:11;:21;;57522:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;57662:6;57648:11;:20;57630:9;:15;57640:4;57630:15;;;;;;;;;;;;;;;:38;;;;57865:6;57848:9;:13;57858:2;57848:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;57915:2;57900:26;;57909:4;57900:26;;;57919:6;57900:26;;;;;;:::i;:::-;;;;;;;;57939:37;57959:4;57965:2;57969:6;57939:19;:37::i;:::-;57256:728;57178:806;;;:::o;67840:464::-;66185:4;66176:6;;:13;;;;;;;;;;;;;;;;;;67921:15:::1;67939:24;67957:4;67939:9;:24::i;:::-;67921:42;;67974:21;68012:1;67998:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67974:40;;68036:11;68028:7;:19;68025:42;;;68060:7;68048:19;;68025:42;68093:1;68081:11;:13;68078:219;;;68128:4;68110;68115:1;68110:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;68158:4;;;;;;;;;;;68148;68153:1;68148:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;68177:15;;;;;;;;;;;:69;;;68247:11;68259:1;68261:4;68266:2;68269:15;68177:108;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;68078:219;67910:394;;66221:5:::0;66212:6;;:14;;;;;;;;;;;;;;;;;;67840:464;;:::o;23667:151::-;23725:13;23758:52;23786:4;23770:22;;21542:2;23758:52;;:11;:52::i;:::-;23751:59;;23667:151;;;:::o;23063:447::-;23138:13;23164:19;23209:1;23200:6;23196:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23186:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23164:47;;23222:15;:6;23229:1;23222:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23248;:6;23255:1;23248:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23279:9;23304:1;23295:6;23291:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23279:26;;23274:131;23311:1;23307;:5;23274:131;;;23346:8;23363:3;23355:5;:11;23346:21;;;;;;;:::i;:::-;;;;;23334:6;23341:1;23334:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;23392:1;23382:11;;;;;23314:3;;;;:::i;:::-;;;23274:131;;;;23432:1;23423:5;:10;23415:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;23495:6;23481:21;;;23063:447;;;;:::o;61921:91::-;;;;:::o;62616:90::-;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:329::-;4662:6;4711:2;4699:9;4690:7;4686:23;4682:32;4679:119;;;4717:79;;:::i;:::-;4679:119;4837:1;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4808:117;4603:329;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:77::-;5600:7;5629:5;5618:16;;5563:77;;;:::o;5646:122::-;5719:24;5737:5;5719:24;:::i;:::-;5712:5;5709:35;5699:63;;5758:1;5755;5748:12;5699:63;5646:122;:::o;5774:139::-;5820:5;5858:6;5845:20;5836:29;;5874:33;5901:5;5874:33;:::i;:::-;5774:139;;;;:::o;5919:329::-;5978:6;6027:2;6015:9;6006:7;6002:23;5998:32;5995:119;;;6033:79;;:::i;:::-;5995:119;6153:1;6178:53;6223:7;6214:6;6203:9;6199:22;6178:53;:::i;:::-;6168:63;;6124:117;5919:329;;;;:::o;6254:118::-;6341:24;6359:5;6341:24;:::i;:::-;6336:3;6329:37;6254:118;;:::o;6378:222::-;6471:4;6509:2;6498:9;6494:18;6486:26;;6522:71;6590:1;6579:9;6575:17;6566:6;6522:71;:::i;:::-;6378:222;;;;:::o;6606:474::-;6674:6;6682;6731:2;6719:9;6710:7;6706:23;6702:32;6699:119;;;6737:79;;:::i;:::-;6699:119;6857:1;6882:53;6927:7;6918:6;6907:9;6903:22;6882:53;:::i;:::-;6872:63;;6828:117;6984:2;7010:53;7055:7;7046:6;7035:9;7031:22;7010:53;:::i;:::-;7000:63;;6955:118;6606:474;;;;;:::o;7086:118::-;7173:24;7191:5;7173:24;:::i;:::-;7168:3;7161:37;7086:118;;:::o;7210:222::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7354:71;7422:1;7411:9;7407:17;7398:6;7354:71;:::i;:::-;7210:222;;;;:::o;7438:86::-;7473:7;7513:4;7506:5;7502:16;7491:27;;7438:86;;;:::o;7530:112::-;7613:22;7629:5;7613:22;:::i;:::-;7608:3;7601:35;7530:112;;:::o;7648:214::-;7737:4;7775:2;7764:9;7760:18;7752:26;;7788:67;7852:1;7841:9;7837:17;7828:6;7788:67;:::i;:::-;7648:214;;;;:::o;7868:474::-;7936:6;7944;7993:2;7981:9;7972:7;7968:23;7964:32;7961:119;;;7999:79;;:::i;:::-;7961:119;8119:1;8144:53;8189:7;8180:6;8169:9;8165:22;8144:53;:::i;:::-;8134:63;;8090:117;8246:2;8272:53;8317:7;8308:6;8297:9;8293:22;8272:53;:::i;:::-;8262:63;;8217:118;7868:474;;;;;:::o;8348:329::-;8407:6;8456:2;8444:9;8435:7;8431:23;8427:32;8424:119;;;8462:79;;:::i;:::-;8424:119;8582:1;8607:53;8652:7;8643:6;8632:9;8628:22;8607:53;:::i;:::-;8597:63;;8553:117;8348:329;;;;:::o;8683:117::-;8792:1;8789;8782:12;8806:117;8915:1;8912;8905:12;8929:117;9038:1;9035;9028:12;9069:568;9142:8;9152:6;9202:3;9195:4;9187:6;9183:17;9179:27;9169:122;;9210:79;;:::i;:::-;9169:122;9323:6;9310:20;9300:30;;9353:18;9345:6;9342:30;9339:117;;;9375:79;;:::i;:::-;9339:117;9489:4;9481:6;9477:17;9465:29;;9543:3;9535:4;9527:6;9523:17;9513:8;9509:32;9506:41;9503:128;;;9550:79;;:::i;:::-;9503:128;9069:568;;;;;:::o;9643:559::-;9729:6;9737;9786:2;9774:9;9765:7;9761:23;9757:32;9754:119;;;9792:79;;:::i;:::-;9754:119;9940:1;9929:9;9925:17;9912:31;9970:18;9962:6;9959:30;9956:117;;;9992:79;;:::i;:::-;9956:117;10105:80;10177:7;10168:6;10157:9;10153:22;10105:80;:::i;:::-;10087:98;;;;9883:312;9643:559;;;;;:::o;10208:60::-;10236:3;10257:5;10250:12;;10208:60;;;:::o;10274:142::-;10324:9;10357:53;10375:34;10384:24;10402:5;10384:24;:::i;:::-;10375:34;:::i;:::-;10357:53;:::i;:::-;10344:66;;10274:142;;;:::o;10422:126::-;10472:9;10505:37;10536:5;10505:37;:::i;:::-;10492:50;;10422:126;;;:::o;10554:151::-;10629:9;10662:37;10693:5;10662:37;:::i;:::-;10649:50;;10554:151;;;:::o;10711:181::-;10823:62;10879:5;10823:62;:::i;:::-;10818:3;10811:75;10711:181;;:::o;10898:272::-;11016:4;11054:2;11043:9;11039:18;11031:26;;11067:96;11160:1;11149:9;11145:17;11136:6;11067:96;:::i;:::-;10898:272;;;;:::o;11176:180::-;11224:77;11221:1;11214:88;11321:4;11318:1;11311:15;11345:4;11342:1;11335:15;11362:320;11406:6;11443:1;11437:4;11433:12;11423:22;;11490:1;11484:4;11480:12;11511:18;11501:81;;11567:4;11559:6;11555:17;11545:27;;11501:81;11629:2;11621:6;11618:14;11598:18;11595:38;11592:84;;;11648:18;;:::i;:::-;11592:84;11413:269;11362:320;;;:::o;11688:234::-;11828:34;11824:1;11816:6;11812:14;11805:58;11897:17;11892:2;11884:6;11880:15;11873:42;11688:234;:::o;11928:366::-;12070:3;12091:67;12155:2;12150:3;12091:67;:::i;:::-;12084:74;;12167:93;12256:3;12167:93;:::i;:::-;12285:2;12280:3;12276:12;12269:19;;11928:366;;;:::o;12300:419::-;12466:4;12504:2;12493:9;12489:18;12481:26;;12553:9;12547:4;12543:20;12539:1;12528:9;12524:17;12517:47;12581:131;12707:4;12581:131;:::i;:::-;12573:139;;12300:419;;;:::o;12725:180::-;12773:77;12770:1;12763:88;12870:4;12867:1;12860:15;12894:4;12891:1;12884:15;12911:305;12951:3;12970:20;12988:1;12970:20;:::i;:::-;12965:25;;13004:20;13022:1;13004:20;:::i;:::-;12999:25;;13158:1;13090:66;13086:74;13083:1;13080:81;13077:107;;;13164:18;;:::i;:::-;13077:107;13208:1;13205;13201:9;13194:16;;12911:305;;;;:::o;13222:143::-;13279:5;13310:6;13304:13;13295:22;;13326:33;13353:5;13326:33;:::i;:::-;13222:143;;;;:::o;13371:351::-;13441:6;13490:2;13478:9;13469:7;13465:23;13461:32;13458:119;;;13496:79;;:::i;:::-;13458:119;13616:1;13641:64;13697:7;13688:6;13677:9;13673:22;13641:64;:::i;:::-;13631:74;;13587:128;13371:351;;;;:::o;13728:332::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13900:71;13968:1;13957:9;13953:17;13944:6;13900:71;:::i;:::-;13981:72;14049:2;14038:9;14034:18;14025:6;13981:72;:::i;:::-;13728:332;;;;;:::o;14066:::-;14187:4;14225:2;14214:9;14210:18;14202:26;;14238:71;14306:1;14295:9;14291:17;14282:6;14238:71;:::i;:::-;14319:72;14387:2;14376:9;14372:18;14363:6;14319:72;:::i;:::-;14066:332;;;;;:::o;14404:116::-;14474:21;14489:5;14474:21;:::i;:::-;14467:5;14464:32;14454:60;;14510:1;14507;14500:12;14454:60;14404:116;:::o;14526:137::-;14580:5;14611:6;14605:13;14596:22;;14627:30;14651:5;14627:30;:::i;:::-;14526:137;;;;:::o;14669:345::-;14736:6;14785:2;14773:9;14764:7;14760:23;14756:32;14753:119;;;14791:79;;:::i;:::-;14753:119;14911:1;14936:61;14989:7;14980:6;14969:9;14965:22;14936:61;:::i;:::-;14926:71;;14882:125;14669:345;;;;:::o;15020:180::-;15068:77;15065:1;15058:88;15165:4;15162:1;15155:15;15189:4;15186:1;15179:15;15206:348;15246:7;15269:20;15287:1;15269:20;:::i;:::-;15264:25;;15303:20;15321:1;15303:20;:::i;:::-;15298:25;;15491:1;15423:66;15419:74;15416:1;15413:81;15408:1;15401:9;15394:17;15390:105;15387:131;;;15498:18;;:::i;:::-;15387:131;15546:1;15543;15539:9;15528:20;;15206:348;;;;:::o;15560:233::-;15599:3;15622:24;15640:5;15622:24;:::i;:::-;15613:33;;15668:66;15661:5;15658:77;15655:103;;;15738:18;;:::i;:::-;15655:103;15785:1;15778:5;15774:13;15767:20;;15560:233;;;:::o;15799:224::-;15939:34;15935:1;15927:6;15923:14;15916:58;16008:7;16003:2;15995:6;15991:15;15984:32;15799:224;:::o;16029:366::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:419::-;16567:4;16605:2;16594:9;16590:18;16582:26;;16654:9;16648:4;16644:20;16640:1;16629:9;16625:17;16618:47;16682:131;16808:4;16682:131;:::i;:::-;16674:139;;16401:419;;;:::o;16826:143::-;16883:5;16914:6;16908:13;16899:22;;16930:33;16957:5;16930:33;:::i;:::-;16826:143;;;;:::o;16975:351::-;17045:6;17094:2;17082:9;17073:7;17069:23;17065:32;17062:119;;;17100:79;;:::i;:::-;17062:119;17220:1;17245:64;17301:7;17292:6;17281:9;17277:22;17245:64;:::i;:::-;17235:74;;17191:128;16975:351;;;;:::o;17332:442::-;17481:4;17519:2;17508:9;17504:18;17496:26;;17532:71;17600:1;17589:9;17585:17;17576:6;17532:71;:::i;:::-;17613:72;17681:2;17670:9;17666:18;17657:6;17613:72;:::i;:::-;17695;17763:2;17752:9;17748:18;17739:6;17695:72;:::i;:::-;17332:442;;;;;;:::o;17780:225::-;17920:34;17916:1;17908:6;17904:14;17897:58;17989:8;17984:2;17976:6;17972:15;17965:33;17780:225;:::o;18011:366::-;18153:3;18174:67;18238:2;18233:3;18174:67;:::i;:::-;18167:74;;18250:93;18339:3;18250:93;:::i;:::-;18368:2;18363:3;18359:12;18352:19;;18011:366;;;:::o;18383:419::-;18549:4;18587:2;18576:9;18572:18;18564:26;;18636:9;18630:4;18626:20;18622:1;18611:9;18607:17;18600:47;18664:131;18790:4;18664:131;:::i;:::-;18656:139;;18383:419;;;:::o;18808:223::-;18948:34;18944:1;18936:6;18932:14;18925:58;19017:6;19012:2;19004:6;19000:15;18993:31;18808:223;:::o;19037:366::-;19179:3;19200:67;19264:2;19259:3;19200:67;:::i;:::-;19193:74;;19276:93;19365:3;19276:93;:::i;:::-;19394:2;19389:3;19385:12;19378:19;;19037:366;;;:::o;19409:419::-;19575:4;19613:2;19602:9;19598:18;19590:26;;19662:9;19656:4;19652:20;19648:1;19637:9;19633:17;19626:47;19690:131;19816:4;19690:131;:::i;:::-;19682:139;;19409:419;;;:::o;19834:221::-;19974:34;19970:1;19962:6;19958:14;19951:58;20043:4;20038:2;20030:6;20026:15;20019:29;19834:221;:::o;20061:366::-;20203:3;20224:67;20288:2;20283:3;20224:67;:::i;:::-;20217:74;;20300:93;20389:3;20300:93;:::i;:::-;20418:2;20413:3;20409:12;20402:19;;20061:366;;;:::o;20433:419::-;20599:4;20637:2;20626:9;20622:18;20614:26;;20686:9;20680:4;20676:20;20672:1;20661:9;20657:17;20650:47;20714:131;20840:4;20714:131;:::i;:::-;20706:139;;20433:419;;;:::o;20858:179::-;20998:31;20994:1;20986:6;20982:14;20975:55;20858:179;:::o;21043:366::-;21185:3;21206:67;21270:2;21265:3;21206:67;:::i;:::-;21199:74;;21282:93;21371:3;21282:93;:::i;:::-;21400:2;21395:3;21391:12;21384:19;;21043:366;;;:::o;21415:419::-;21581:4;21619:2;21608:9;21604:18;21596:26;;21668:9;21662:4;21658:20;21654:1;21643:9;21639:17;21632:47;21696:131;21822:4;21696:131;:::i;:::-;21688:139;;21415:419;;;:::o;21840:166::-;21980:18;21976:1;21968:6;21964:14;21957:42;21840:166;:::o;22012:366::-;22154:3;22175:67;22239:2;22234:3;22175:67;:::i;:::-;22168:74;;22251:93;22340:3;22251:93;:::i;:::-;22369:2;22364:3;22360:12;22353:19;;22012:366;;;:::o;22384:419::-;22550:4;22588:2;22577:9;22573:18;22565:26;;22637:9;22631:4;22627:20;22623:1;22612:9;22608:17;22601:47;22665:131;22791:4;22665:131;:::i;:::-;22657:139;;22384:419;;;:::o;22809:158::-;22949:10;22945:1;22937:6;22933:14;22926:34;22809:158;:::o;22973:365::-;23115:3;23136:66;23200:1;23195:3;23136:66;:::i;:::-;23129:73;;23211:93;23300:3;23211:93;:::i;:::-;23329:2;23324:3;23320:12;23313:19;;22973:365;;;:::o;23344:419::-;23510:4;23548:2;23537:9;23533:18;23525:26;;23597:9;23591:4;23587:20;23583:1;23572:9;23568:17;23561:47;23625:131;23751:4;23625:131;:::i;:::-;23617:139;;23344:419;;;:::o;23769:182::-;23909:34;23905:1;23897:6;23893:14;23886:58;23769:182;:::o;23957:366::-;24099:3;24120:67;24184:2;24179:3;24120:67;:::i;:::-;24113:74;;24196:93;24285:3;24196:93;:::i;:::-;24314:2;24309:3;24305:12;24298:19;;23957:366;;;:::o;24329:419::-;24495:4;24533:2;24522:9;24518:18;24510:26;;24582:9;24576:4;24572:20;24568:1;24557:9;24553:17;24546:47;24610:131;24736:4;24610:131;:::i;:::-;24602:139;;24329:419;;;:::o;24754:79::-;24793:7;24822:5;24811:16;;24754:79;;;:::o;24839:157::-;24944:45;24964:24;24982:5;24964:24;:::i;:::-;24944:45;:::i;:::-;24939:3;24932:58;24839:157;;:::o;25002:94::-;25035:8;25083:5;25079:2;25075:14;25054:35;;25002:94;;;:::o;25102:::-;25141:7;25170:20;25184:5;25170:20;:::i;:::-;25159:31;;25102:94;;;:::o;25202:100::-;25241:7;25270:26;25290:5;25270:26;:::i;:::-;25259:37;;25202:100;;;:::o;25308:157::-;25413:45;25433:24;25451:5;25433:24;:::i;:::-;25413:45;:::i;:::-;25408:3;25401:58;25308:157;;:::o;25471:538::-;25639:3;25654:75;25725:3;25716:6;25654:75;:::i;:::-;25754:2;25749:3;25745:12;25738:19;;25767:75;25838:3;25829:6;25767:75;:::i;:::-;25867:2;25862:3;25858:12;25851:19;;25880:75;25951:3;25942:6;25880:75;:::i;:::-;25980:2;25975:3;25971:12;25964:19;;26000:3;25993:10;;25471:538;;;;;;:::o;26015:180::-;26063:77;26060:1;26053:88;26160:4;26157:1;26150:15;26184:4;26181:1;26174:15;26201:176;26233:1;26250:20;26268:1;26250:20;:::i;:::-;26245:25;;26284:20;26302:1;26284:20;:::i;:::-;26279:25;;26323:1;26313:35;;26328:18;;:::i;:::-;26313:35;26369:1;26366;26362:9;26357:14;;26201:176;;;;:::o;26383:180::-;26431:77;26428:1;26421:88;26528:4;26525:1;26518:15;26552:4;26549:1;26542:15;26569:85;26614:7;26643:5;26632:16;;26569:85;;;:::o;26660:158::-;26718:9;26751:61;26769:42;26778:32;26804:5;26778:32;:::i;:::-;26769:42;:::i;:::-;26751:61;:::i;:::-;26738:74;;26660:158;;;:::o;26824:147::-;26919:45;26958:5;26919:45;:::i;:::-;26914:3;26907:58;26824:147;;:::o;26977:114::-;27044:6;27078:5;27072:12;27062:22;;26977:114;;;:::o;27097:184::-;27196:11;27230:6;27225:3;27218:19;27270:4;27265:3;27261:14;27246:29;;27097:184;;;;:::o;27287:132::-;27354:4;27377:3;27369:11;;27407:4;27402:3;27398:14;27390:22;;27287:132;;;:::o;27425:108::-;27502:24;27520:5;27502:24;:::i;:::-;27497:3;27490:37;27425:108;;:::o;27539:179::-;27608:10;27629:46;27671:3;27663:6;27629:46;:::i;:::-;27707:4;27702:3;27698:14;27684:28;;27539:179;;;;:::o;27724:113::-;27794:4;27826;27821:3;27817:14;27809:22;;27724:113;;;:::o;27873:732::-;27992:3;28021:54;28069:5;28021:54;:::i;:::-;28091:86;28170:6;28165:3;28091:86;:::i;:::-;28084:93;;28201:56;28251:5;28201:56;:::i;:::-;28280:7;28311:1;28296:284;28321:6;28318:1;28315:13;28296:284;;;28397:6;28391:13;28424:63;28483:3;28468:13;28424:63;:::i;:::-;28417:70;;28510:60;28563:6;28510:60;:::i;:::-;28500:70;;28356:224;28343:1;28340;28336:9;28331:14;;28296:284;;;28300:14;28596:3;28589:10;;27997:608;;;27873:732;;;;:::o;28611:831::-;28874:4;28912:3;28901:9;28897:19;28889:27;;28926:71;28994:1;28983:9;28979:17;28970:6;28926:71;:::i;:::-;29007:80;29083:2;29072:9;29068:18;29059:6;29007:80;:::i;:::-;29134:9;29128:4;29124:20;29119:2;29108:9;29104:18;29097:48;29162:108;29265:4;29256:6;29162:108;:::i;:::-;29154:116;;29280:72;29348:2;29337:9;29333:18;29324:6;29280:72;:::i;:::-;29362:73;29430:3;29419:9;29415:19;29406:6;29362:73;:::i;:::-;28611:831;;;;;;;;:::o;29448:148::-;29550:11;29587:3;29572:18;;29448:148;;;;:::o;29602:173::-;29742:25;29738:1;29730:6;29726:14;29719:49;29602:173;:::o;29781:402::-;29941:3;29962:85;30044:2;30039:3;29962:85;:::i;:::-;29955:92;;30056:93;30145:3;30056:93;:::i;:::-;30174:2;30169:3;30165:12;30158:19;;29781:402;;;:::o;30189:377::-;30295:3;30323:39;30356:5;30323:39;:::i;:::-;30378:89;30460:6;30455:3;30378:89;:::i;:::-;30371:96;;30476:52;30521:6;30516:3;30509:4;30502:5;30498:16;30476:52;:::i;:::-;30553:6;30548:3;30544:16;30537:23;;30299:267;30189:377;;;;:::o;30572:167::-;30712:19;30708:1;30700:6;30696:14;30689:43;30572:167;:::o;30745:402::-;30905:3;30926:85;31008:2;31003:3;30926:85;:::i;:::-;30919:92;;31020:93;31109:3;31020:93;:::i;:::-;31138:2;31133:3;31129:12;31122:19;;30745:402;;;:::o;31153:967::-;31535:3;31557:148;31701:3;31557:148;:::i;:::-;31550:155;;31722:95;31813:3;31804:6;31722:95;:::i;:::-;31715:102;;31834:148;31978:3;31834:148;:::i;:::-;31827:155;;31999:95;32090:3;32081:6;31999:95;:::i;:::-;31992:102;;32111:3;32104:10;;31153:967;;;;;:::o;32126:185::-;32166:1;32183:20;32201:1;32183:20;:::i;:::-;32178:25;;32217:20;32235:1;32217:20;:::i;:::-;32212:25;;32256:1;32246:35;;32261:18;;:::i;:::-;32246:35;32303:1;32300;32296:9;32291:14;;32126:185;;;;:::o;32317:224::-;32457:34;32453:1;32445:6;32441:14;32434:58;32526:7;32521:2;32513:6;32509:15;32502:32;32317:224;:::o;32547:366::-;32689:3;32710:67;32774:2;32769:3;32710:67;:::i;:::-;32703:74;;32786:93;32875:3;32786:93;:::i;:::-;32904:2;32899:3;32895:12;32888:19;;32547:366;;;:::o;32919:419::-;33085:4;33123:2;33112:9;33108:18;33100:26;;33172:9;33166:4;33162:20;33158:1;33147:9;33143:17;33136:47;33200:131;33326:4;33200:131;:::i;:::-;33192:139;;32919:419;;;:::o;33344:222::-;33484:34;33480:1;33472:6;33468:14;33461:58;33553:5;33548:2;33540:6;33536:15;33529:30;33344:222;:::o;33572:366::-;33714:3;33735:67;33799:2;33794:3;33735:67;:::i;:::-;33728:74;;33811:93;33900:3;33811:93;:::i;:::-;33929:2;33924:3;33920:12;33913:19;;33572:366;;;:::o;33944:419::-;34110:4;34148:2;34137:9;34133:18;34125:26;;34197:9;34191:4;34187:20;34183:1;34172:9;34168:17;34161:47;34225:131;34351:4;34225:131;:::i;:::-;34217:139;;33944:419;;;:::o;34369:225::-;34509:34;34505:1;34497:6;34493:14;34486:58;34578:8;34573:2;34565:6;34561:15;34554:33;34369:225;:::o;34600:366::-;34742:3;34763:67;34827:2;34822:3;34763:67;:::i;:::-;34756:74;;34839:93;34928:3;34839:93;:::i;:::-;34957:2;34952:3;34948:12;34941:19;;34600:366;;;:::o;34972:419::-;35138:4;35176:2;35165:9;35161:18;35153:26;;35225:9;35219:4;35215:20;35211:1;35200:9;35196:17;35189:47;35253:131;35379:4;35253:131;:::i;:::-;35245:139;;34972:419;;;:::o;35397:171::-;35436:3;35459:24;35477:5;35459:24;:::i;:::-;35450:33;;35505:4;35498:5;35495:15;35492:41;;;35513:18;;:::i;:::-;35492:41;35560:1;35553:5;35549:13;35542:20;;35397:171;;;:::o;35574:182::-;35714:34;35710:1;35702:6;35698:14;35691:58;35574:182;:::o;35762:366::-;35904:3;35925:67;35989:2;35984:3;35925:67;:::i;:::-;35918:74;;36001:93;36090:3;36001:93;:::i;:::-;36119:2;36114:3;36110:12;36103:19;;35762:366;;;:::o;36134:419::-;36300:4;36338:2;36327:9;36323:18;36315:26;;36387:9;36381:4;36377:20;36373:1;36362:9;36358:17;36351:47;36415:131;36541:4;36415:131;:::i;:::-;36407:139;;36134:419;;;:::o

Swarm Source

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