ETH Price: $2,920.04 (-2.82%)
Gas: 1 Gwei

Token

Xbaby (Xbaby)
 

Overview

Max Total Supply

1,000,000,000,000 Xbaby

Holders

301

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 Xbaby

Value
$0.00
0x9525a113914b5f85c04ff61cd2d42ccd9c9485cf
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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("Xbaby", "Xbaby") {
        admin=0xb501E69B3ccf2A7EC8eB94DA0a2873ed5739577C;
        //admin=msg.sender;
        fundAddr=0x9A32a10415264360fFCE7F435356C88f32Fd1E56;
        uint256 total=1000000000000*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;//0xc6e88A94dcEA6f032d805D10558aCf67279f7b4E;//usdt test
        address swap=_swap;//0xD99D1c33F9fC3444f8101754aBC46c52416550D1;//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"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f58626162790000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5862616279000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620008ab565b508060049080519060200190620000af929190620008ab565b505050620000d2620000c6620003ad60201b60201c565b620003b560201b60201c565b73b501e69b3ccf2a7ec8eb94da0a2873ed5739577c600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739a32a10415264360ffce7f435356c88f32fd1e56600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200018e6200047b60201b60201c565b600a6200019c919062000b2d565b64e8d4a51000620001ae919062000c6a565b9050620001e4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200048460201b60201c565b6200021b6000801b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f260201b60201c565b6200026f7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005f260201b60201c565b620002a17f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0830620005f260201b60201c565b6001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003a6600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006e460201b60201c565b5062000e24565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ee9062000a25565b60405180910390fd5b6200050b600083836200077b60201b60201c565b80600260008282546200051f919062000a75565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005d2919062000a47565b60405180910390a3620005ee600083836200078060201b60201c565b5050565b6200060482826200078560201b60201c565b620006e05760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000685620003ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620006f4620007f060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075e90620009e1565b60405180910390fd5b6200077881620003b560201b60201c565b50565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b62000800620003ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008266200088160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200087f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008769062000a03565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620008b99062000ce2565b90600052602060002090601f016020900481019282620008dd576000855562000929565b82601f10620008f857805160ff191683800117855562000929565b8280016001018555821562000929579182015b82811115620009285782518255916020019190600101906200090b565b5b5090506200093891906200093c565b5090565b5b80821115620009575760008160009055506001016200093d565b5090565b60006200096a60268362000a64565b9150620009778262000d83565b604082019050919050565b60006200099160208362000a64565b91506200099e8262000dd2565b602082019050919050565b6000620009b8601f8362000a64565b9150620009c58262000dfb565b602082019050919050565b620009db8162000ccb565b82525050565b60006020820190508181036000830152620009fc816200095b565b9050919050565b6000602082019050818103600083015262000a1e8162000982565b9050919050565b6000602082019050818103600083015262000a4081620009a9565b9050919050565b600060208201905062000a5e6000830184620009d0565b92915050565b600082825260208201905092915050565b600062000a828262000ccb565b915062000a8f8362000ccb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ac75762000ac662000d18565b5b828201905092915050565b6000808291508390505b600185111562000b245780860481111562000afc5762000afb62000d18565b5b600185161562000b0c5780820291505b808102905062000b1c8562000d76565b945062000adc565b94509492505050565b600062000b3a8262000ccb565b915062000b478362000cd5565b925062000b767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b7e565b905092915050565b60008262000b90576001905062000c63565b8162000ba0576000905062000c63565b816001811462000bb9576002811462000bc45762000bfa565b600191505062000c63565b60ff84111562000bd95762000bd862000d18565b5b8360020a91508482111562000bf35762000bf262000d18565b5b5062000c63565b5060208310610133831016604e8410600b841016171562000c345782820a90508381111562000c2e5762000c2d62000d18565b5b62000c63565b62000c43848484600162000ad2565b9250905081840481111562000c5d5762000c5c62000d18565b5b81810290505b9392505050565b600062000c778262000ccb565b915062000c848362000ccb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cc05762000cbf62000d18565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000cfb57607f821691505b6020821081141562000d125762000d1162000d47565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6149178062000e346000396000f3fe6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e9190620035ca565b62000888565b60405162000253919062003b8a565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003be1565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b29190620034a7565b6200099f565b604051620002c7919062003b8a565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f7919062003dbf565b60405180910390f35b3480156200030d57600080fd5b506200032c6004803603810190620003269190620035f6565b620009d0565b005b3480156200033b57600080fd5b506200035a600480360381019062000354919062003451565b62000a48565b60405162000369919062003b8a565b60405180910390f35b3480156200037f57600080fd5b506200039e60048036038101906200039891906200355d565b62000a7d565b604051620003ad919062003ba7565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc919062003589565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003ad6565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003e40565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a919062003589565b62000af3565b005b3480156200047f57600080fd5b506200049e6004803603810190620004989190620034a7565b62000b7d565b604051620004ad919062003b8a565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd919062003dbf565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003ad6565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d919062003dbf565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c919062003410565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620033b8565b6200109d565b604051620005af919062003dbf565b60405180910390f35b348015620005c557600080fd5b50620005d0620010e5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f89190620034e8565b620010fd565b005b3480156200060d57600080fd5b506200061862001249565b60405162000627919062003bc4565b60405180910390f35b3480156200063d57600080fd5b50620006486200126f565b60405162000657919062003ad6565b60405180910390f35b3480156200066d57600080fd5b506200068c600480360381019062000686919062003589565b62001299565b6040516200069b919062003b8a565b60405180910390f35b348015620006b157600080fd5b50620006bc62001304565b604051620006cb919062003be1565b60405180910390f35b348015620006e157600080fd5b50620006ec6200139e565b604051620006fb919062003ba7565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a9190620034a7565b620013a5565b6040516200073f919062003b8a565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e9190620034a7565b62001425565b60405162000783919062003b8a565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b2919062003589565b6200144c565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620033b8565b62001473565b005b348015620007f557600080fd5b506200081460048036038101906200080e919062003410565b620015c5565b60405162000823919062003dbf565b60405180910390f35b3480156200083957600080fd5b50620008586004803603810190620008529190620035f6565b6200164c565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620033b8565b62001712565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd826200179d565b5b9050919050565b6060600380546200091690620040e1565b80601f01602080910402602001604051908101604052809291908181526020018280546200094490620040e1565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac62001807565b9050620009bb8185856200180f565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc81620019e2565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a5562001807565b905062000a64858285620019fa565b62000a7185858562001a8e565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab381620019e2565b62000abf838362001eb3565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd62001807565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003d9d565b60405180910390fd5b62000b79828262001f99565b5050565b60008062000b8a62001807565b905062000bb181858562000b9f8589620015c5565b62000bab919062003ebd565b6200180f565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a81620019e2565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801562000d0a57600080fd5b505afa15801562000d1f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d459190620033e4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000da392919062003af3565b602060405180830381600087803b15801562000dbe57600080fd5b505af115801562000dd3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000df99190620033e4565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eda92919062003b5d565b602060405180830381600087803b15801562000ef557600080fd5b505af115801562000f0a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f30919062003531565b5062000f8030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200180f565b62000fad30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200180f565b6200101e600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200180f565b306040516200102d90620032bc565b62001039919062003ad6565b604051809103906000f08015801562001056573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010ef62002080565b620010fb600062002105565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b086200112981620019e2565b43600a8190555060005b8383905081101562001243576200122d66f8b0a10e470000662386f26fc100006001620011b2600589898881811062001195577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190620011ac9190620033b8565b620021cb565b620011be919062003ebd565b620011ca919062003f52565b620011d6919062003ebd565b85858481811062001210577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190620012279190620033b8565b62002212565b80806200123a9062004117565b91505062001133565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200131590620040e1565b80601f01602080910402602001604051908101604052809291908181526020018280546200134390620040e1565b8015620013945780601f10620013685761010080835404028352916020019162001394565b820191906000526020600020905b8154815290600101906020018083116200137657829003601f168201915b5050505050905090565b6000801b81565b600080620013b262001807565b90506000620013c28286620015c5565b9050838110156200140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014019062003d7b565b60405180910390fd5b6200141982868684036200180f565b60019250505092915050565b6000806200143262001807565b90506200144181858562001a8e565b600191505092915050565b620014578262000a7d565b6200146281620019e2565b6200146e838362001f99565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b086200149f81620019e2565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620014f7919062003ad6565b60206040518083038186803b1580156200151057600080fd5b505afa15801562001525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200154b919062003622565b6040518363ffffffff1660e01b81526004016200156a92919062003b5d565b602060405180830381600087803b1580156200158557600080fd5b505af11580156200159a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015c0919062003531565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016ad9392919062003b20565b602060405180830381600087803b158015620016c857600080fd5b505af1158015620016dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001703919062003531565b506200170f8162002538565b50565b6200171c62002080565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017869062003c49565b60405180910390fd5b6200179a8162002105565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018799062003d59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620018f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018ec9062003c6b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620019d5919062003dbf565b60405180910390a3505050565b620019f781620019f162001807565b6200299a565b50565b600062001a088484620015c5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462001a88578181101562001a78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a6f9062003c8d565b60405180910390fd5b62001a8784848484036200180f565b5b50505050565b6000811162001ad4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001acb9062003d15565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001b815750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001b9a5762001b9483838362002a2a565b62001eae565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001cf2576000600a541162001c39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001c309062003cd1565b60405180910390fd5b62001c70833062001c6a606462001c5b60018762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001c9b606462001c8c60018462002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b600d600082825462001cae919062003ebd565b9250508190555062001cec838362001ce6606462001cd760638762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001eae565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001ead57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001daf5762001da983838362002a6c565b62001eae565b62001de6833062001de0606462001dd160018762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001e11606462001e0260018462002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b600d600082825462001e24919062003ebd565b9250508190555062001e6881600d5462001e3f919062003ebd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002cf3565b6000600d8190555062001ea7838362001ea1606462001e9260638762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001eae565b5b505050565b62001ebf828262001299565b62001f955760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f3a62001807565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001fa5828262001299565b156200207c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200202162001807565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6200208a62001807565b73ffffffffffffffffffffffffffffffffffffffff16620020aa6200126f565b73ffffffffffffffffffffffffffffffffffffffff161462002103576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620020fa9062003cf3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082424484604051602001620021e59392919062003a93565b6040516020818303038152906040528051906020012060001c6200220a919062004197565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002271577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620022a05781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811062002301577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811062002377577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040162002410919062003ad6565b60206040518083038186803b1580156200242957600080fd5b505afa1580156200243e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002464919062003622565b9050600084141562002474578093505b8084116200251757600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620024e295949392919062003ddc565b600060405180830381600087803b158015620024fd57600080fd5b505af115801562002512573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002597577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620025c65781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811062002627577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200269d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040162002736919062003ad6565b60206040518083038186803b1580156200274f57600080fd5b505afa15801562002764573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200278a919062003622565b905060008314156200279a578092505b8083116200285f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200282a95949392919062003ddc565b600060405180830381600087803b1580156200284557600080fd5b505af11580156200285a573d6000803e3d6000fd5b505050505b60006200288e600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b11156200297a573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163062002902600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b6040518463ffffffff1660e01b8152600401620029229392919062003b20565b602060405180830381600087803b1580156200293d57600080fd5b505af115801562002952573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002978919062003531565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620029a6828262001299565b62002a2657620029b68162002f74565b620029c68360001c602062002fa3565b604051602001620029d992919062003a51565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a1d919062003be1565b60405180910390fd5b5050565b62002a3783838362002a6c565b505050565b6000818362002a4c919062003f52565b905092915050565b6000818362002a64919062003f1a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562002adf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002ad69062003d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002b499062003c27565b60405180910390fd5b62002b5f838383620032b2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002bdf9062003caf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002cd8919062003dbf565b60405180910390a362002ced848484620032b7565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002d1b306200109d565b90506000600267ffffffffffffffff81111562002d61577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801562002d905781602001602082028036833780820191505090505b5090508382101562002da0578193505b600084111562002f5357308160008151811062002de6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002e7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002f1e95949392919062003ddc565b600060405180830381600087803b15801562002f3957600080fd5b505af115801562002f4e573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002f9c8273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002fa3565b9050919050565b60606000600283600262002fb8919062003f52565b62002fc4919062003ebd565b67ffffffffffffffff81111562003004577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015620030375781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062003096577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062003121577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262003163919062003f52565b6200316f919062003ebd565b90505b600181111562003261577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110620031d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811062003217577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806200325990620040b2565b905062003172565b5060008414620032a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200329f9062003c05565b60405180910390fd5b8091505092915050565b505050565b505050565b61024e806200469483390190565b600081359050620032db8162004611565b92915050565b600081519050620032f28162004611565b92915050565b60008083601f8401126200330b57600080fd5b8235905067ffffffffffffffff8111156200332557600080fd5b6020830191508360208202830111156200333e57600080fd5b9250929050565b60008151905062003356816200462b565b92915050565b6000813590506200336d8162004645565b92915050565b60008135905062003384816200465f565b92915050565b6000813590506200339b8162004679565b92915050565b600081519050620033b28162004679565b92915050565b600060208284031215620033cb57600080fd5b6000620033db84828501620032ca565b91505092915050565b600060208284031215620033f757600080fd5b60006200340784828501620032e1565b91505092915050565b600080604083850312156200342457600080fd5b60006200343485828601620032ca565b92505060206200344785828601620032ca565b9150509250929050565b6000806000606084860312156200346757600080fd5b60006200347786828701620032ca565b93505060206200348a86828701620032ca565b92505060406200349d868287016200338a565b9150509250925092565b60008060408385031215620034bb57600080fd5b6000620034cb85828601620032ca565b9250506020620034de858286016200338a565b9150509250929050565b60008060208385031215620034fc57600080fd5b600083013567ffffffffffffffff8111156200351757600080fd5b6200352585828601620032f8565b92509250509250929050565b6000602082840312156200354457600080fd5b6000620035548482850162003345565b91505092915050565b6000602082840312156200357057600080fd5b600062003580848285016200335c565b91505092915050565b600080604083850312156200359d57600080fd5b6000620035ad858286016200335c565b9250506020620035c085828601620032ca565b9150509250929050565b600060208284031215620035dd57600080fd5b6000620035ed8482850162003373565b91505092915050565b6000602082840312156200360957600080fd5b600062003619848285016200338a565b91505092915050565b6000602082840312156200363557600080fd5b60006200364584828501620033a1565b91505092915050565b60006200365c838362003668565b60208301905092915050565b620036738162003fb3565b82525050565b620036848162003fb3565b82525050565b6200369f620036998262003fb3565b62004165565b82525050565b6000620036b28262003e6d565b620036be818562003e90565b9350620036cb8362003e5d565b8060005b8381101562003702578151620036e688826200364e565b9750620036f38362003e83565b925050600181019050620036cf565b5085935050505092915050565b6200371a8162003fc7565b82525050565b6200372b8162003fd3565b82525050565b6200373c8162004040565b82525050565b6200374d8162004068565b82525050565b6000620037608262003e78565b6200376c818562003ea1565b93506200377e8185602086016200407c565b62003789816200425c565b840191505092915050565b6000620037a18262003e78565b620037ad818562003eb2565b9350620037bf8185602086016200407c565b80840191505092915050565b6000620037da60208362003ea1565b9150620037e7826200427a565b602082019050919050565b60006200380160238362003ea1565b91506200380e82620042a3565b604082019050919050565b60006200382860268362003ea1565b91506200383582620042f2565b604082019050919050565b60006200384f60228362003ea1565b91506200385c8262004341565b604082019050919050565b600062003876601d8362003ea1565b9150620038838262004390565b602082019050919050565b60006200389d60268362003ea1565b9150620038aa82620043b9565b604082019050919050565b6000620038c460088362003ea1565b9150620038d18262004408565b602082019050919050565b6000620038eb60208362003ea1565b9150620038f88262004431565b602082019050919050565b60006200391260108362003ea1565b91506200391f826200445a565b602082019050919050565b60006200393960258362003ea1565b9150620039468262004483565b604082019050919050565b60006200396060248362003ea1565b91506200396d82620044d2565b604082019050919050565b60006200398760178362003eb2565b9150620039948262004521565b601782019050919050565b6000620039ae60258362003ea1565b9150620039bb826200454a565b604082019050919050565b6000620039d560118362003eb2565b9150620039e28262004599565b601182019050919050565b6000620039fc602f8362003ea1565b915062003a0982620045c2565b604082019050919050565b62003a1f8162004029565b82525050565b62003a3a62003a348262004029565b6200418d565b82525050565b62003a4b8162004033565b82525050565b600062003a5e8262003978565b915062003a6c828562003794565b915062003a7982620039c6565b915062003a87828462003794565b91508190509392505050565b600062003aa1828662003a25565b60208201915062003ab3828562003a25565b60208201915062003ac582846200368a565b601482019150819050949350505050565b600060208201905062003aed600083018462003679565b92915050565b600060408201905062003b0a600083018562003679565b62003b19602083018462003679565b9392505050565b600060608201905062003b37600083018662003679565b62003b46602083018562003679565b62003b55604083018462003a14565b949350505050565b600060408201905062003b74600083018562003679565b62003b83602083018462003a14565b9392505050565b600060208201905062003ba160008301846200370f565b92915050565b600060208201905062003bbe600083018462003720565b92915050565b600060208201905062003bdb600083018462003731565b92915050565b6000602082019050818103600083015262003bfd818462003753565b905092915050565b6000602082019050818103600083015262003c2081620037cb565b9050919050565b6000602082019050818103600083015262003c4281620037f2565b9050919050565b6000602082019050818103600083015262003c648162003819565b9050919050565b6000602082019050818103600083015262003c868162003840565b9050919050565b6000602082019050818103600083015262003ca88162003867565b9050919050565b6000602082019050818103600083015262003cca816200388e565b9050919050565b6000602082019050818103600083015262003cec81620038b5565b9050919050565b6000602082019050818103600083015262003d0e81620038dc565b9050919050565b6000602082019050818103600083015262003d308162003903565b9050919050565b6000602082019050818103600083015262003d52816200392a565b9050919050565b6000602082019050818103600083015262003d748162003951565b9050919050565b6000602082019050818103600083015262003d96816200399f565b9050919050565b6000602082019050818103600083015262003db881620039ed565b9050919050565b600060208201905062003dd6600083018462003a14565b92915050565b600060a08201905062003df3600083018862003a14565b62003e02602083018762003742565b818103604083015262003e168186620036a5565b905062003e27606083018562003679565b62003e36608083018462003a14565b9695505050505050565b600060208201905062003e57600083018462003a40565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600062003eca8262004029565b915062003ed78362004029565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562003f0f5762003f0e620041cf565b5b828201905092915050565b600062003f278262004029565b915062003f348362004029565b92508262003f475762003f46620041fe565b5b828204905092915050565b600062003f5f8262004029565b915062003f6c8362004029565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562003fa85762003fa7620041cf565b5b828202905092915050565b600062003fc08262004009565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006200404d8262004054565b9050919050565b6000620040618262004009565b9050919050565b6000620040758262004029565b9050919050565b60005b838110156200409c5780820151818401526020810190506200407f565b83811115620040ac576000848401525b50505050565b6000620040bf8262004029565b91506000821415620040d657620040d5620041cf565b5b600182039050919050565b60006002820490506001821680620040fa57607f821691505b602082108114156200411157620041106200422d565b5b50919050565b6000620041248262004029565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200415a5762004159620041cf565b5b600182019050919050565b6000620041728262004179565b9050919050565b600062004186826200426d565b9050919050565b6000819050919050565b6000620041a48262004029565b9150620041b18362004029565b925082620041c457620041c3620041fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6200461c8162003fb3565b81146200462857600080fd5b50565b620046368162003fc7565b81146200464257600080fd5b50565b620046508162003fd3565b81146200465c57600080fd5b50565b6200466a8162003fdd565b81146200467657600080fd5b50565b620046848162004029565b81146200469057600080fd5b5056fe608060405234801561001057600080fd5b5060405161024e38038061024e833981810160405281019061003291906100f2565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610162565b602060405180830381600087803b15801561008957600080fd5b505af115801561009d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c1919061011b565b5050610201565b6000815190506100d7816101d3565b92915050565b6000815190506100ec816101ea565b92915050565b60006020828403121561010457600080fd5b6000610112848285016100c8565b91505092915050565b60006020828403121561012d57600080fd5b600061013b848285016100dd565b91505092915050565b61014d8161018b565b82525050565b61015c816101c9565b82525050565b60006040820190506101776000830185610144565b6101846020830184610153565b9392505050565b6000610196826101a9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6101dc8161018b565b81146101e757600080fd5b50565b6101f38161019d565b81146101fe57600080fd5b50565b603f8061020f6000396000f3fe6080604052600080fdfea2646970667358221220cddfa3a3e8ee64099548099a91bbef05a0deaa3abf7345add1c7e2a60fd5181664736f6c63430008040033a264697066735822122096cbbb4cc8da20a149c2ed4f1bda85394644cb61459dd705334588f0e847cb3564736f6c63430008040033

Deployed Bytecode

0x6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e9190620035ca565b62000888565b60405162000253919062003b8a565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062003be1565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b29190620034a7565b6200099f565b604051620002c7919062003b8a565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f7919062003dbf565b60405180910390f35b3480156200030d57600080fd5b506200032c6004803603810190620003269190620035f6565b620009d0565b005b3480156200033b57600080fd5b506200035a600480360381019062000354919062003451565b62000a48565b60405162000369919062003b8a565b60405180910390f35b3480156200037f57600080fd5b506200039e60048036038101906200039891906200355d565b62000a7d565b604051620003ad919062003ba7565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc919062003589565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003ad6565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b919062003e40565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a919062003589565b62000af3565b005b3480156200047f57600080fd5b506200049e6004803603810190620004989190620034a7565b62000b7d565b604051620004ad919062003b8a565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd919062003dbf565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003ad6565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d919062003dbf565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c919062003410565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a9190620033b8565b6200109d565b604051620005af919062003dbf565b60405180910390f35b348015620005c557600080fd5b50620005d0620010e5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f89190620034e8565b620010fd565b005b3480156200060d57600080fd5b506200061862001249565b60405162000627919062003bc4565b60405180910390f35b3480156200063d57600080fd5b50620006486200126f565b60405162000657919062003ad6565b60405180910390f35b3480156200066d57600080fd5b506200068c600480360381019062000686919062003589565b62001299565b6040516200069b919062003b8a565b60405180910390f35b348015620006b157600080fd5b50620006bc62001304565b604051620006cb919062003be1565b60405180910390f35b348015620006e157600080fd5b50620006ec6200139e565b604051620006fb919062003ba7565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a9190620034a7565b620013a5565b6040516200073f919062003b8a565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e9190620034a7565b62001425565b60405162000783919062003b8a565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b2919062003589565b6200144c565b005b348015620007c757600080fd5b50620007e66004803603810190620007e09190620033b8565b62001473565b005b348015620007f557600080fd5b506200081460048036038101906200080e919062003410565b620015c5565b60405162000823919062003dbf565b60405180910390f35b3480156200083957600080fd5b50620008586004803603810190620008529190620035f6565b6200164c565b005b3480156200086757600080fd5b50620008866004803603810190620008809190620033b8565b62001712565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd826200179d565b5b9050919050565b6060600380546200091690620040e1565b80601f01602080910402602001604051908101604052809291908181526020018280546200094490620040e1565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac62001807565b9050620009bb8185856200180f565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc81620019e2565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a5562001807565b905062000a64858285620019fa565b62000a7185858562001a8e565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab381620019e2565b62000abf838362001eb3565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd62001807565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b649062003d9d565b60405180910390fd5b62000b79828262001f99565b5050565b60008062000b8a62001807565b905062000bb181858562000b9f8589620015c5565b62000bab919062003ebd565b6200180f565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a81620019e2565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801562000d0a57600080fd5b505afa15801562000d1f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d459190620033e4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000da392919062003af3565b602060405180830381600087803b15801562000dbe57600080fd5b505af115801562000dd3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000df99190620033e4565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eda92919062003b5d565b602060405180830381600087803b15801562000ef557600080fd5b505af115801562000f0a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f30919062003531565b5062000f8030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200180f565b62000fad30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200180f565b6200101e600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200180f565b306040516200102d90620032bc565b62001039919062003ad6565b604051809103906000f08015801562001056573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010ef62002080565b620010fb600062002105565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b086200112981620019e2565b43600a8190555060005b8383905081101562001243576200122d66f8b0a10e470000662386f26fc100006001620011b2600589898881811062001195577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190620011ac9190620033b8565b620021cb565b620011be919062003ebd565b620011ca919062003f52565b620011d6919062003ebd565b85858481811062001210577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190620012279190620033b8565b62002212565b80806200123a9062004117565b91505062001133565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200131590620040e1565b80601f01602080910402602001604051908101604052809291908181526020018280546200134390620040e1565b8015620013945780601f10620013685761010080835404028352916020019162001394565b820191906000526020600020905b8154815290600101906020018083116200137657829003601f168201915b5050505050905090565b6000801b81565b600080620013b262001807565b90506000620013c28286620015c5565b9050838110156200140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014019062003d7b565b60405180910390fd5b6200141982868684036200180f565b60019250505092915050565b6000806200143262001807565b90506200144181858562001a8e565b600191505092915050565b620014578262000a7d565b6200146281620019e2565b6200146e838362001f99565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b086200149f81620019e2565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401620014f7919062003ad6565b60206040518083038186803b1580156200151057600080fd5b505afa15801562001525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200154b919062003622565b6040518363ffffffff1660e01b81526004016200156a92919062003b5d565b602060405180830381600087803b1580156200158557600080fd5b505af11580156200159a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015c0919062003531565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401620016ad9392919062003b20565b602060405180830381600087803b158015620016c857600080fd5b505af1158015620016dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001703919062003531565b506200170f8162002538565b50565b6200171c62002080565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017869062003c49565b60405180910390fd5b6200179a8162002105565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018799062003d59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620018f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018ec9062003c6b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620019d5919062003dbf565b60405180910390a3505050565b620019f781620019f162001807565b6200299a565b50565b600062001a088484620015c5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462001a88578181101562001a78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a6f9062003c8d565b60405180910390fd5b62001a8784848484036200180f565b5b50505050565b6000811162001ad4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001acb9062003d15565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001b815750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001b9a5762001b9483838362002a2a565b62001eae565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001cf2576000600a541162001c39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001c309062003cd1565b60405180910390fd5b62001c70833062001c6a606462001c5b60018762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001c9b606462001c8c60018462002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b600d600082825462001cae919062003ebd565b9250508190555062001cec838362001ce6606462001cd760638762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001eae565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001ead57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001daf5762001da983838362002a6c565b62001eae565b62001de6833062001de0606462001dd160018762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001e11606462001e0260018462002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b600d600082825462001e24919062003ebd565b9250508190555062001e6881600d5462001e3f919062003ebd565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662002cf3565b6000600d8190555062001ea7838362001ea1606462001e9260638762002a3c90919063ffffffff16565b62002a5490919063ffffffff16565b62002a6c565b62001eae565b5b505050565b62001ebf828262001299565b62001f955760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001f3a62001807565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001fa5828262001299565b156200207c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200202162001807565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6200208a62001807565b73ffffffffffffffffffffffffffffffffffffffff16620020aa6200126f565b73ffffffffffffffffffffffffffffffffffffffff161462002103576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620020fa9062003cf3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082424484604051602001620021e59392919062003a93565b6040516020818303038152906040528051906020012060001c6200220a919062004197565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002271577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620022a05781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811062002301577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811062002377577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040162002410919062003ad6565b60206040518083038186803b1580156200242957600080fd5b505afa1580156200243e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002464919062003622565b9050600084141562002474578093505b8084116200251757600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b8152600401620024e295949392919062003ddc565b600060405180830381600087803b158015620024fd57600080fd5b505af115801562002512573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562002597577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620025c65781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811062002627577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106200269d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040162002736919062003ad6565b60206040518083038186803b1580156200274f57600080fd5b505afa15801562002764573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200278a919062003622565b905060008314156200279a578092505b8083116200285f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200282a95949392919062003ddc565b600060405180830381600087803b1580156200284557600080fd5b505af11580156200285a573d6000803e3d6000fd5b505050505b60006200288e600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b11156200297a573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163062002902600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200109d565b6040518463ffffffff1660e01b8152600401620029229392919062003b20565b602060405180830381600087803b1580156200293d57600080fd5b505af115801562002952573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002978919062003531565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b620029a6828262001299565b62002a2657620029b68162002f74565b620029c68360001c602062002fa3565b604051602001620029d992919062003a51565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002a1d919062003be1565b60405180910390fd5b5050565b62002a3783838362002a6c565b505050565b6000818362002a4c919062003f52565b905092915050565b6000818362002a64919062003f1a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562002adf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002ad69062003d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002b499062003c27565b60405180910390fd5b62002b5f838383620032b2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562002be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002bdf9062003caf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162002cd8919062003dbf565b60405180910390a362002ced848484620032b7565b50505050565b6001600f60146101000a81548160ff021916908315150217905550600062002d1b306200109d565b90506000600267ffffffffffffffff81111562002d61577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801562002d905781602001602082028036833780820191505090505b5090508382101562002da0578193505b600084111562002f5357308160008151811062002de6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002e7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002f1e95949392919062003ddc565b600060405180830381600087803b15801562002f3957600080fd5b505af115801562002f4e573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002f9c8273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002fa3565b9050919050565b60606000600283600262002fb8919062003f52565b62002fc4919062003ebd565b67ffffffffffffffff81111562003004577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015620030375781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062003096577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062003121577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262003163919062003f52565b6200316f919062003ebd565b90505b600181111562003261577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110620031d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811062003217577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806200325990620040b2565b905062003172565b5060008414620032a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200329f9062003c05565b60405180910390fd5b8091505092915050565b505050565b505050565b61024e806200469483390190565b600081359050620032db8162004611565b92915050565b600081519050620032f28162004611565b92915050565b60008083601f8401126200330b57600080fd5b8235905067ffffffffffffffff8111156200332557600080fd5b6020830191508360208202830111156200333e57600080fd5b9250929050565b60008151905062003356816200462b565b92915050565b6000813590506200336d8162004645565b92915050565b60008135905062003384816200465f565b92915050565b6000813590506200339b8162004679565b92915050565b600081519050620033b28162004679565b92915050565b600060208284031215620033cb57600080fd5b6000620033db84828501620032ca565b91505092915050565b600060208284031215620033f757600080fd5b60006200340784828501620032e1565b91505092915050565b600080604083850312156200342457600080fd5b60006200343485828601620032ca565b92505060206200344785828601620032ca565b9150509250929050565b6000806000606084860312156200346757600080fd5b60006200347786828701620032ca565b93505060206200348a86828701620032ca565b92505060406200349d868287016200338a565b9150509250925092565b60008060408385031215620034bb57600080fd5b6000620034cb85828601620032ca565b9250506020620034de858286016200338a565b9150509250929050565b60008060208385031215620034fc57600080fd5b600083013567ffffffffffffffff8111156200351757600080fd5b6200352585828601620032f8565b92509250509250929050565b6000602082840312156200354457600080fd5b6000620035548482850162003345565b91505092915050565b6000602082840312156200357057600080fd5b600062003580848285016200335c565b91505092915050565b600080604083850312156200359d57600080fd5b6000620035ad858286016200335c565b9250506020620035c085828601620032ca565b9150509250929050565b600060208284031215620035dd57600080fd5b6000620035ed8482850162003373565b91505092915050565b6000602082840312156200360957600080fd5b600062003619848285016200338a565b91505092915050565b6000602082840312156200363557600080fd5b60006200364584828501620033a1565b91505092915050565b60006200365c838362003668565b60208301905092915050565b620036738162003fb3565b82525050565b620036848162003fb3565b82525050565b6200369f620036998262003fb3565b62004165565b82525050565b6000620036b28262003e6d565b620036be818562003e90565b9350620036cb8362003e5d565b8060005b8381101562003702578151620036e688826200364e565b9750620036f38362003e83565b925050600181019050620036cf565b5085935050505092915050565b6200371a8162003fc7565b82525050565b6200372b8162003fd3565b82525050565b6200373c8162004040565b82525050565b6200374d8162004068565b82525050565b6000620037608262003e78565b6200376c818562003ea1565b93506200377e8185602086016200407c565b62003789816200425c565b840191505092915050565b6000620037a18262003e78565b620037ad818562003eb2565b9350620037bf8185602086016200407c565b80840191505092915050565b6000620037da60208362003ea1565b9150620037e7826200427a565b602082019050919050565b60006200380160238362003ea1565b91506200380e82620042a3565b604082019050919050565b60006200382860268362003ea1565b91506200383582620042f2565b604082019050919050565b60006200384f60228362003ea1565b91506200385c8262004341565b604082019050919050565b600062003876601d8362003ea1565b9150620038838262004390565b602082019050919050565b60006200389d60268362003ea1565b9150620038aa82620043b9565b604082019050919050565b6000620038c460088362003ea1565b9150620038d18262004408565b602082019050919050565b6000620038eb60208362003ea1565b9150620038f88262004431565b602082019050919050565b60006200391260108362003ea1565b91506200391f826200445a565b602082019050919050565b60006200393960258362003ea1565b9150620039468262004483565b604082019050919050565b60006200396060248362003ea1565b91506200396d82620044d2565b604082019050919050565b60006200398760178362003eb2565b9150620039948262004521565b601782019050919050565b6000620039ae60258362003ea1565b9150620039bb826200454a565b604082019050919050565b6000620039d560118362003eb2565b9150620039e28262004599565b601182019050919050565b6000620039fc602f8362003ea1565b915062003a0982620045c2565b604082019050919050565b62003a1f8162004029565b82525050565b62003a3a62003a348262004029565b6200418d565b82525050565b62003a4b8162004033565b82525050565b600062003a5e8262003978565b915062003a6c828562003794565b915062003a7982620039c6565b915062003a87828462003794565b91508190509392505050565b600062003aa1828662003a25565b60208201915062003ab3828562003a25565b60208201915062003ac582846200368a565b601482019150819050949350505050565b600060208201905062003aed600083018462003679565b92915050565b600060408201905062003b0a600083018562003679565b62003b19602083018462003679565b9392505050565b600060608201905062003b37600083018662003679565b62003b46602083018562003679565b62003b55604083018462003a14565b949350505050565b600060408201905062003b74600083018562003679565b62003b83602083018462003a14565b9392505050565b600060208201905062003ba160008301846200370f565b92915050565b600060208201905062003bbe600083018462003720565b92915050565b600060208201905062003bdb600083018462003731565b92915050565b6000602082019050818103600083015262003bfd818462003753565b905092915050565b6000602082019050818103600083015262003c2081620037cb565b9050919050565b6000602082019050818103600083015262003c4281620037f2565b9050919050565b6000602082019050818103600083015262003c648162003819565b9050919050565b6000602082019050818103600083015262003c868162003840565b9050919050565b6000602082019050818103600083015262003ca88162003867565b9050919050565b6000602082019050818103600083015262003cca816200388e565b9050919050565b6000602082019050818103600083015262003cec81620038b5565b9050919050565b6000602082019050818103600083015262003d0e81620038dc565b9050919050565b6000602082019050818103600083015262003d308162003903565b9050919050565b6000602082019050818103600083015262003d52816200392a565b9050919050565b6000602082019050818103600083015262003d748162003951565b9050919050565b6000602082019050818103600083015262003d96816200399f565b9050919050565b6000602082019050818103600083015262003db881620039ed565b9050919050565b600060208201905062003dd6600083018462003a14565b92915050565b600060a08201905062003df3600083018862003a14565b62003e02602083018762003742565b818103604083015262003e168186620036a5565b905062003e27606083018562003679565b62003e36608083018462003a14565b9695505050505050565b600060208201905062003e57600083018462003a40565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600062003eca8262004029565b915062003ed78362004029565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562003f0f5762003f0e620041cf565b5b828201905092915050565b600062003f278262004029565b915062003f348362004029565b92508262003f475762003f46620041fe565b5b828204905092915050565b600062003f5f8262004029565b915062003f6c8362004029565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562003fa85762003fa7620041cf565b5b828202905092915050565b600062003fc08262004009565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006200404d8262004054565b9050919050565b6000620040618262004009565b9050919050565b6000620040758262004029565b9050919050565b60005b838110156200409c5780820151818401526020810190506200407f565b83811115620040ac576000848401525b50505050565b6000620040bf8262004029565b91506000821415620040d657620040d5620041cf565b5b600182039050919050565b60006002820490506001821680620040fa57607f821691505b602082108114156200411157620041106200422d565b5b50919050565b6000620041248262004029565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200415a5762004159620041cf565b5b600182019050919050565b6000620041728262004179565b9050919050565b600062004186826200426d565b9050919050565b6000819050919050565b6000620041a48262004029565b9150620041b18362004029565b925082620041c457620041c3620041fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6200461c8162003fb3565b81146200462857600080fd5b50565b620046368162003fc7565b81146200464257600080fd5b50565b620046508162003fd3565b81146200465c57600080fd5b50565b6200466a8162003fdd565b81146200467657600080fd5b50565b620046848162004029565b81146200469057600080fd5b5056fe608060405234801561001057600080fd5b5060405161024e38038061024e833981810160405281019061003291906100f2565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610162565b602060405180830381600087803b15801561008957600080fd5b505af115801561009d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c1919061011b565b5050610201565b6000815190506100d7816101d3565b92915050565b6000815190506100ec816101ea565b92915050565b60006020828403121561010457600080fd5b6000610112848285016100c8565b91505092915050565b60006020828403121561012d57600080fd5b600061013b848285016100dd565b91505092915050565b61014d8161018b565b82525050565b61015c816101c9565b82525050565b60006040820190506101776000830185610144565b6101846020830184610153565b9392505050565b6000610196826101a9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6101dc8161018b565b81146101e757600080fd5b50565b6101f38161019d565b81146101fe57600080fd5b50565b603f8061020f6000396000f3fe6080604052600080fdfea2646970667358221220cddfa3a3e8ee64099548099a91bbef05a0deaa3abf7345add1c7e2a60fd5181664736f6c63430008040033a264697066735822122096cbbb4cc8da20a149c2ed4f1bda85394644cb61459dd705334588f0e847cb3564736f6c63430008040033

Deployed Bytecode Sourcemap

62933:6106:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37632:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54082:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52851:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68871:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54863:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39455:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39896:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63168:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64696:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41040:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55533:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63274:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63133:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63194:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63942:748;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53022:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45177:103;;;;;;;;;;;;;:::i;:::-;;68268:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63354:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44536:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37928:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37033:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56274:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53355:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40336:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68698:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53611:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66196:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45435:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37632:204;37717:4;37756:32;37741:47;;;:11;:47;;;;:87;;;;37792:36;37816:11;37792:23;:36::i;:::-;37741:87;37734:94;;37632:204;;;:::o;51722:100::-;51776:13;51809:5;51802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51722:100;:::o;54082:201::-;54165:4;54182:13;54198:12;:10;:12::i;:::-;54182:28;;54221:32;54230:5;54237:7;54246:6;54221:8;:32::i;:::-;54271:4;54264:11;;;54082:201;;;;:::o;52851:108::-;52912:7;52939:12;;52932:19;;52851:108;:::o;68871:122::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;68957:10:::1;68949:28;;:36;68978:6;68949:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68871:122:::0;;:::o;54863:261::-;54960:4;54977:15;54995:12;:10;:12::i;:::-;54977:30;;55018:38;55034:4;55040:7;55049:6;55018:15;:38::i;:::-;55067:27;55077:4;55083:2;55087:6;55067:9;:27::i;:::-;55112:4;55105:11;;;54863:261;;;;;:::o;39455:131::-;39529:7;39556:6;:12;39563:4;39556:12;;;;;;;;;;;:22;;;39549:29;;39455:131;;;:::o;39896:147::-;39979:18;39992:4;39979:12;:18::i;:::-;37524:16;37535:4;37524:10;:16::i;:::-;40010:25:::1;40021:4;40027:7;40010:10;:25::i;:::-;39896:147:::0;;;:::o;63168:19::-;;;;;;;;;;;;;:::o;64696:92::-;64754:5;64779:1;64772:8;;64696:92;:::o;41040:218::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:23;;;41128:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41224:26;41236:4;41242:7;41224:11;:26::i;:::-;41040:218;;:::o;55533:238::-;55621:4;55638:13;55654:12;:10;:12::i;:::-;55638:28;;55677:64;55686:5;55693:7;55730:10;55702:25;55712:5;55719:7;55702:9;:25::i;:::-;:38;;;;:::i;:::-;55677:8;:64::i;:::-;55759:4;55752:11;;;55533:238;;;;:::o;63274:24::-;;;;:::o;63133:28::-;;;;;;;;;;;;;:::o;63194:30::-;;;;:::o;63942:748::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;64036:6:::1;64031:4;;:11;;;;;;;;;;;;;;;;;;64109:12;64122:5;64109:18;;64223:4;64193:15;;:35;;;;;;;;;;;;;;;;;;64268:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64255:50;;;64314:4;64321;;;;;;;;;;;64255:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64239:13;;:87;;;;;;;;;;;;;;;;;;64343:4;;;;;;;;;;;64337:19;;;64365:15;;;;;;;;;;;64383:17;64337:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64412:67;64429:4;64444:15;;;;;;;;;;;64461:17;64412:8;:67::i;:::-;64490:56;64507:4;64522;64528:17;64490:8;:56::i;:::-;64557:59;64566:5;;;;;;;;;;;64581:15;;;;;;;;;;;64598:17;64557:8;:59::i;:::-;64676:4;64647:35;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64627:17;;:55;;;;;;;;;;;;;;;;;;37551:1;63942:748:::0;;;:::o;53022:127::-;53096:7;53123:9;:18;53133:7;53123:18;;;;;;;;;;;;;;;;53116:25;;53022:127;;;:::o;45177:103::-;44422:13;:11;:13::i;:::-;45242:30:::1;45269:1;45242:18;:30::i;:::-;45177:103::o:0;68268:236::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;68372:12:::1;68354:15;:30;;;;68399:6;68395:101;68410:4;;:11;;68408:1;:13;68395:101;;;68440:56;68479:8;68472:6;68469:1;68451:17;68458:1;68460:4;;68465:1;68460:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68451:6;:17::i;:::-;:19;;;;:::i;:::-;68450:28;;;;:::i;:::-;:37;;;;:::i;:::-;68488:4;;68493:1;68488:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68440:9;:56::i;:::-;68422:3;;;;;:::i;:::-;;;;68395:101;;;;68268:236:::0;;;:::o;63354:41::-;;;;;;;;;;;;;:::o;44536:87::-;44582:7;44609:6;;;;;;;;;;;44602:13;;44536:87;:::o;37928:147::-;38014:4;38038:6;:12;38045:4;38038:12;;;;;;;;;;;:20;;:29;38059:7;38038:29;;;;;;;;;;;;;;;;;;;;;;;;;38031:36;;37928:147;;;;:::o;51941:104::-;51997:13;52030:7;52023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51941:104;:::o;37033:49::-;37078:4;37033:49;;;:::o;56274:436::-;56367:4;56384:13;56400:12;:10;:12::i;:::-;56384:28;;56423:24;56450:25;56460:5;56467:7;56450:9;:25::i;:::-;56423:52;;56514:15;56494:16;:35;;56486:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56607:60;56616:5;56623:7;56651:15;56632:16;:34;56607:8;:60::i;:::-;56698:4;56691:11;;;;56274:436;;;;:::o;53355:193::-;53434:4;53451:13;53467:12;:10;:12::i;:::-;53451:28;;53490;53500:5;53507:2;53511:6;53490:9;:28::i;:::-;53536:4;53529:11;;;53355:193;;;;:::o;40336:149::-;40420:18;40433:4;40420:12;:18::i;:::-;37524:16;37535:4;37524:10;:16::i;:::-;40451:26:::1;40463:4;40469:7;40451:11;:26::i;:::-;40336:149:::0;;;:::o;68698:161::-;63026:25;37524:16;37535:4;37524:10;:16::i;:::-;68782:6:::1;68776:22;;;68799:10;68818:6;68811:24;;;68844:4;68811:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68776:75;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68698:161:::0;;:::o;53611:151::-;53700:7;53727:11;:18;53739:5;53727:18;;;;;;;;;;;;;;;:27;53746:7;53727:27;;;;;;;;;;;;;;;;53720:34;;53611:151;;;;:::o;66196:158::-;66252:4;;;;;;;;;;;66246:24;;;66271:10;66291:4;66298:6;66246:59;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66316:30;66339:6;66316:22;:30::i;:::-;66196:158;:::o;45435:201::-;44422:13;:11;:13::i;:::-;45544:1:::1;45524:22;;:8;:22;;;;45516:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45600:28;45619:8;45600:18;:28::i;:::-;45435:201:::0;:::o;6569:157::-;6654:4;6693:25;6678:40;;;:11;:40;;;;6671:47;;6569:157;;;:::o;34714:98::-;34767:7;34794:10;34787:17;;34714:98;:::o;60267:346::-;60386:1;60369:19;;:5;:19;;;;60361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60467:1;60448:21;;:7;:21;;;;60440:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60551:6;60521:11;:18;60533:5;60521:18;;;;;;;;;;;;;;;:27;60540:7;60521:27;;;;;;;;;;;;;;;:36;;;;60589:7;60573:32;;60582:5;60573:32;;;60598:6;60573:32;;;;;;:::i;:::-;;;;;;;;60267:346;;;:::o;38379:105::-;38446:30;38457:4;38463:12;:10;:12::i;:::-;38446:10;:30::i;:::-;38379:105;:::o;60904:419::-;61005:24;61032:25;61042:5;61049:7;61032:9;:25::i;:::-;61005:52;;61092:17;61072:16;:37;61068:248;;61154:6;61134:16;:26;;61126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61238:51;61247:5;61254:7;61282:6;61263:16;:25;61238:8;:51::i;:::-;61068:248;60904:419;;;;:::o;64799:1085::-;64940:1;64931:6;:10;64923:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;64994:13;;;;;;;;;;;64986:21;;:4;:21;;;;:44;;;;;65017:13;;;;;;;;;;;65011:19;;:2;:19;;;;64986:44;64983:127;;;65047:30;65060:4;65066:2;65070:6;65047:12;:30::i;:::-;65092:7;;64983:127;65131:13;;;;;;;;;;;65123:21;;:4;:21;;;65120:300;;;65185:1;65169:15;;:17;65161:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;65214:60;65230:4;65244;65251:22;65269:3;65251:13;65262:1;65251:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65214:15;:60::i;:::-;65300:22;65318:3;65300:13;65311:1;65300:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65289:9;;:33;;;;;;;:::i;:::-;;;;;;;;65337:50;65353:4;65359:2;65363:23;65382:3;65363:14;65374:2;65363:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65337:15;:50::i;:::-;65402:7;;65120:300;65439:13;;;;;;;;;;;65433:19;;:2;:19;;;65430:447;;;65472:9;:15;65482:4;65472:15;;;;;;;;;;;;;;;;;;;;;;;;;65469:112;;;65507:33;65523:4;65529:2;65533:6;65507:15;:33::i;:::-;65559:7;;65469:112;65595:60;65611:4;65625;65632:22;65650:3;65632:13;65643:1;65632:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65595:15;:60::i;:::-;65681:22;65699:3;65681:13;65692:1;65681:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;65670:9;;:33;;;;;;;:::i;:::-;;;;;;;;65718:35;65737:6;65727:9;;:16;;;;:::i;:::-;65744:8;;;;;;;;;;;65718;:35::i;:::-;65778:1;65768:9;:11;;;;65794:50;65810:4;65816:2;65820:23;65839:3;65820:14;65831:2;65820:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;65794:15;:50::i;:::-;65859:7;;65430:447;64799:1085;;;;:::o;42637:238::-;42721:22;42729:4;42735:7;42721;:22::i;:::-;42716:152;;42792:4;42760:6;:12;42767:4;42760:12;;;;;;;;;;;:20;;:29;42781:7;42760:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;42843:12;:10;:12::i;:::-;42816:40;;42834:7;42816:40;;42828:4;42816:40;;;;;;;;;;42716:152;42637:238;;:::o;43055:239::-;43139:22;43147:4;43153:7;43139;:22::i;:::-;43135:152;;;43210:5;43178:6;:12;43185:4;43178:12;;;;;;;;;;;:20;;:29;43199:7;43178:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;43262:12;:10;:12::i;:::-;43235:40;;43253:7;43235:40;;43247:4;43235:40;;;;;;;;;;43135:152;43055:239;;:::o;44701:132::-;44776:12;:10;:12::i;:::-;44765:23;;:7;:5;:7::i;:::-;:23;;;44757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44701:132::o;45796:191::-;45870:16;45889:6;;;;;;;;;;;45870:25;;45915:8;45906:6;;:17;;;;;;;;;;;;;;;;;;45970:8;45939:40;;45960:8;45939:40;;;;;;;;;;;;45796:191;;:::o;68510:180::-;68574:4;68676:6;68630:15;68646:16;68665:5;68613:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68603:69;;;;;;68598:75;;:84;;;;:::i;:::-;68591:91;;68510:180;;;;:::o;66360:611::-;66141:4;66132:6;;:13;;;;;;;;;;;;;;;;;;66442:21:::1;66480:1;66466:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66442:40;;66511:4;;;;;;;;;;;66493;66498:1;66493:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;66545:4;66527;66532:1;66527:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;66561:15;66586:4;;;;;;;;;;;66579:22;;;66610:4;66579:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66561:55;;66643:1;66630:11;:14;66627:39;;;66659:7;66645:21;;66627:39;66721:7;66706:11;:22;66703:260;;66739:15;;;;;;;;;;;:69;;;66823:11;66849:1;66892:4;66919:2;66937:15;66739:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66703:260;66156:1;;66177:5:::0;66168:6;;:14;;;;;;;;;;;;;;;;;;66360:611;;:::o;66977:807::-;66141:4;66132:6;;:13;;;;;;;;;;;;;;;;;;67061:21:::1;67099:1;67085:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67061:40;;67130:4;;;;;;;;;;;67112;67117:1;67112:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;67164:4;67146;67151:1;67146:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;67180:15;67205:4;;;;;;;;;;;67198:22;;;67229:4;67198:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67180:55;;67262:1;67249:11;:14;67246:39;;;67278:7;67264:21;;67246:39;67340:7;67325:11;:22;67322:275;;67358:15;;;;;;;;;;;:69;;;67442:11;67468:1;67511:4;67538:17;;;;;;;;;;;67571:15;67358:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67322:275;67649:1;67611:37;67629:17;;;;;;;;;;;67611:9;:37::i;:::-;:39;67608:168;;;67675:4;67661:33;;;67703:17;;;;;;;;;;;67731:4;67738:37;67756:17;;;;;;;;;;;67738:9;:37::i;:::-;67661:115;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67608:168;66156:1;;66177:5:::0;66168:6;;:14;;;;;;;;;;;;;;;;;;66977:807;:::o;38774:492::-;38863:22;38871:4;38877:7;38863;:22::i;:::-;38858:401;;39051:28;39071:7;39051:19;:28::i;:::-;39152:38;39180:4;39172:13;;39187:2;39152:19;:38::i;:::-;38956:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38902:345;;;;;;;;;;;:::i;:::-;;;;;;;;38858:401;38774:492;;:::o;65890:178::-;66017:43;66033:6;66041:9;66052:7;66017:15;:43::i;:::-;65890:178;;;:::o;30710:98::-;30768:7;30799:1;30795;:5;;;;:::i;:::-;30788:12;;30710:98;;;;:::o;31109:::-;31167:7;31198:1;31194;:5;;;;:::i;:::-;31187:12;;31109:98;;;;:::o;57180:806::-;57293:1;57277:18;;:4;:18;;;;57269:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57370:1;57356:16;;:2;:16;;;;57348:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57425:38;57446:4;57452:2;57456:6;57425:20;:38::i;:::-;57476:19;57498:9;:15;57508:4;57498:15;;;;;;;;;;;;;;;;57476:37;;57547:6;57532:11;:21;;57524:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;57664:6;57650:11;:20;57632:9;:15;57642:4;57632:15;;;;;;;;;;;;;;;:38;;;;57867:6;57850:9;:13;57860:2;57850:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;57917:2;57902:26;;57911:4;57902:26;;;57921:6;57902:26;;;;;;:::i;:::-;;;;;;;;57941:37;57961:4;57967:2;57971:6;57941:19;:37::i;:::-;57180:806;;;;:::o;67796:464::-;66141:4;66132:6;;:13;;;;;;;;;;;;;;;;;;67877:15:::1;67895:24;67913:4;67895:9;:24::i;:::-;67877:42;;67930:21;67968:1;67954:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67930:40;;67992:11;67984:7;:19;67981:42;;;68016:7;68004:19;;67981:42;68049:1;68037:11;:13;68034:219;;;68084:4;68066;68071:1;68066:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;68114:4;;;;;;;;;;;68104;68109:1;68104:7;;;;;;;;;;;;;;;;;;;;;:14;;;;;;;;;::::0;::::1;68133:15;;;;;;;;;;;:69;;;68203:11;68215:1;68217:4;68222:2;68225:15;68133:108;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;68034:219;66156:1;;66177:5:::0;66168:6;;:14;;;;;;;;;;;;;;;;;;67796:464;;:::o;23669:151::-;23727:13;23760:52;23788:4;23772:22;;21544:2;23760:52;;:11;:52::i;:::-;23753:59;;23669:151;;;:::o;23065:447::-;23140:13;23166:19;23211:1;23202:6;23198:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23188:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23166:47;;23224:15;:6;23231:1;23224:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;23250;:6;23257:1;23250:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;23281:9;23306:1;23297:6;23293:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23281:26;;23276:131;23313:1;23309;:5;23276:131;;;23348:8;23365:3;23357:5;:11;23348:21;;;;;;;;;;;;;;;;;;23336:6;23343:1;23336:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;23394:1;23384:11;;;;;23316:3;;;;:::i;:::-;;;23276:131;;;;23434:1;23425:5;:10;23417:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:6;23483:21;;;23065:447;;;;:::o;61923:91::-;;;;:::o;62618:90::-;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;318:367::-;391:8;401:6;451:3;444:4;436:6;432:17;428:27;418:2;;469:1;466;459:12;418:2;505:6;492:20;482:30;;535:18;527:6;524:30;521:2;;;567:1;564;557:12;521:2;604:4;596:6;592:17;580:29;;658:3;650:4;642:6;638:17;628:8;624:32;621:41;618:2;;;675:1;672;665:12;618:2;408:277;;;;;:::o;691:137::-;745:5;776:6;770:13;761:22;;792:30;816:5;792:30;:::i;:::-;751:77;;;;:::o;834:139::-;880:5;918:6;905:20;896:29;;934:33;961:5;934:33;:::i;:::-;886:87;;;;:::o;979:137::-;1024:5;1062:6;1049:20;1040:29;;1078:32;1104:5;1078:32;:::i;:::-;1030:86;;;;:::o;1122:139::-;1168:5;1206:6;1193:20;1184:29;;1222:33;1249:5;1222:33;:::i;:::-;1174:87;;;;:::o;1267:143::-;1324:5;1355:6;1349:13;1340:22;;1371:33;1398:5;1371:33;:::i;:::-;1330:80;;;;:::o;1416:262::-;1475:6;1524:2;1512:9;1503:7;1499:23;1495:32;1492:2;;;1540:1;1537;1530:12;1492:2;1583:1;1608:53;1653:7;1644:6;1633:9;1629:22;1608:53;:::i;:::-;1598:63;;1554:117;1482:196;;;;:::o;1684:284::-;1754:6;1803:2;1791:9;1782:7;1778:23;1774:32;1771:2;;;1819:1;1816;1809:12;1771:2;1862:1;1887:64;1943:7;1934:6;1923:9;1919:22;1887:64;:::i;:::-;1877:74;;1833:128;1761:207;;;;:::o;1974:407::-;2042:6;2050;2099:2;2087:9;2078:7;2074:23;2070:32;2067:2;;;2115:1;2112;2105:12;2067:2;2158:1;2183:53;2228:7;2219:6;2208:9;2204:22;2183:53;:::i;:::-;2173:63;;2129:117;2285:2;2311:53;2356:7;2347:6;2336:9;2332:22;2311:53;:::i;:::-;2301:63;;2256:118;2057:324;;;;;:::o;2387:552::-;2464:6;2472;2480;2529:2;2517:9;2508:7;2504:23;2500:32;2497:2;;;2545:1;2542;2535:12;2497:2;2588:1;2613:53;2658:7;2649:6;2638:9;2634:22;2613:53;:::i;:::-;2603:63;;2559:117;2715:2;2741:53;2786:7;2777:6;2766:9;2762:22;2741:53;:::i;:::-;2731:63;;2686:118;2843:2;2869:53;2914:7;2905:6;2894:9;2890:22;2869:53;:::i;:::-;2859:63;;2814:118;2487:452;;;;;:::o;2945:407::-;3013:6;3021;3070:2;3058:9;3049:7;3045:23;3041:32;3038:2;;;3086:1;3083;3076:12;3038:2;3129:1;3154:53;3199:7;3190:6;3179:9;3175:22;3154:53;:::i;:::-;3144:63;;3100:117;3256:2;3282:53;3327:7;3318:6;3307:9;3303:22;3282:53;:::i;:::-;3272:63;;3227:118;3028:324;;;;;:::o;3358:425::-;3444:6;3452;3501:2;3489:9;3480:7;3476:23;3472:32;3469:2;;;3517:1;3514;3507:12;3469:2;3588:1;3577:9;3573:17;3560:31;3618:18;3610:6;3607:30;3604:2;;;3650:1;3647;3640:12;3604:2;3686:80;3758:7;3749:6;3738:9;3734:22;3686:80;:::i;:::-;3668:98;;;;3531:245;3459:324;;;;;:::o;3789:278::-;3856:6;3905:2;3893:9;3884:7;3880:23;3876:32;3873:2;;;3921:1;3918;3911:12;3873:2;3964:1;3989:61;4042:7;4033:6;4022:9;4018:22;3989:61;:::i;:::-;3979:71;;3935:125;3863:204;;;;:::o;4073:262::-;4132:6;4181:2;4169:9;4160:7;4156:23;4152:32;4149:2;;;4197:1;4194;4187:12;4149:2;4240:1;4265:53;4310:7;4301:6;4290:9;4286:22;4265:53;:::i;:::-;4255:63;;4211:117;4139:196;;;;:::o;4341:407::-;4409:6;4417;4466:2;4454:9;4445:7;4441:23;4437:32;4434:2;;;4482:1;4479;4472:12;4434:2;4525:1;4550:53;4595:7;4586:6;4575:9;4571:22;4550:53;:::i;:::-;4540:63;;4496:117;4652:2;4678:53;4723:7;4714:6;4703:9;4699:22;4678:53;:::i;:::-;4668:63;;4623:118;4424:324;;;;;:::o;4754:260::-;4812:6;4861:2;4849:9;4840:7;4836:23;4832:32;4829:2;;;4877:1;4874;4867:12;4829:2;4920:1;4945:52;4989:7;4980:6;4969:9;4965:22;4945:52;:::i;:::-;4935:62;;4891:116;4819:195;;;;:::o;5020:262::-;5079:6;5128:2;5116:9;5107:7;5103:23;5099:32;5096:2;;;5144:1;5141;5134:12;5096:2;5187:1;5212:53;5257:7;5248:6;5237:9;5233:22;5212:53;:::i;:::-;5202:63;;5158:117;5086:196;;;;:::o;5288:284::-;5358:6;5407:2;5395:9;5386:7;5382:23;5378:32;5375:2;;;5423:1;5420;5413:12;5375:2;5466:1;5491:64;5547:7;5538:6;5527:9;5523:22;5491:64;:::i;:::-;5481:74;;5437:128;5365:207;;;;:::o;5578:179::-;5647:10;5668:46;5710:3;5702:6;5668:46;:::i;:::-;5746:4;5741:3;5737:14;5723:28;;5658:99;;;;:::o;5763:108::-;5840:24;5858:5;5840:24;:::i;:::-;5835:3;5828:37;5818:53;;:::o;5877:118::-;5964:24;5982:5;5964:24;:::i;:::-;5959:3;5952:37;5942:53;;:::o;6001:157::-;6106:45;6126:24;6144:5;6126:24;:::i;:::-;6106:45;:::i;:::-;6101:3;6094:58;6084:74;;:::o;6194:732::-;6313:3;6342:54;6390:5;6342:54;:::i;:::-;6412:86;6491:6;6486:3;6412:86;:::i;:::-;6405:93;;6522:56;6572:5;6522:56;:::i;:::-;6601:7;6632:1;6617:284;6642:6;6639:1;6636:13;6617:284;;;6718:6;6712:13;6745:63;6804:3;6789:13;6745:63;:::i;:::-;6738:70;;6831:60;6884:6;6831:60;:::i;:::-;6821:70;;6677:224;6664:1;6661;6657:9;6652:14;;6617:284;;;6621:14;6917:3;6910:10;;6318:608;;;;;;;:::o;6932:109::-;7013:21;7028:5;7013:21;:::i;:::-;7008:3;7001:34;6991:50;;:::o;7047:118::-;7134:24;7152:5;7134:24;:::i;:::-;7129:3;7122:37;7112:53;;:::o;7171:181::-;7283:62;7339:5;7283:62;:::i;:::-;7278:3;7271:75;7261:91;;:::o;7358:147::-;7453:45;7492:5;7453:45;:::i;:::-;7448:3;7441:58;7431:74;;:::o;7511:364::-;7599:3;7627:39;7660:5;7627:39;:::i;:::-;7682:71;7746:6;7741:3;7682:71;:::i;:::-;7675:78;;7762:52;7807:6;7802:3;7795:4;7788:5;7784:16;7762:52;:::i;:::-;7839:29;7861:6;7839:29;:::i;:::-;7834:3;7830:39;7823:46;;7603:272;;;;;:::o;7881:377::-;7987:3;8015:39;8048:5;8015:39;:::i;:::-;8070:89;8152:6;8147:3;8070:89;:::i;:::-;8063:96;;8168:52;8213:6;8208:3;8201:4;8194:5;8190:16;8168:52;:::i;:::-;8245:6;8240:3;8236:16;8229:23;;7991:267;;;;;:::o;8264:366::-;8406:3;8427:67;8491:2;8486:3;8427:67;:::i;:::-;8420:74;;8503:93;8592:3;8503:93;:::i;:::-;8621:2;8616:3;8612:12;8605:19;;8410:220;;;:::o;8636:366::-;8778:3;8799:67;8863:2;8858:3;8799:67;:::i;:::-;8792:74;;8875:93;8964:3;8875:93;:::i;:::-;8993:2;8988:3;8984:12;8977:19;;8782:220;;;:::o;9008:366::-;9150:3;9171:67;9235:2;9230:3;9171:67;:::i;:::-;9164:74;;9247:93;9336:3;9247:93;:::i;:::-;9365:2;9360:3;9356:12;9349:19;;9154:220;;;:::o;9380:366::-;9522:3;9543:67;9607:2;9602:3;9543:67;:::i;:::-;9536:74;;9619:93;9708:3;9619:93;:::i;:::-;9737:2;9732:3;9728:12;9721:19;;9526:220;;;:::o;9752:366::-;9894:3;9915:67;9979:2;9974:3;9915:67;:::i;:::-;9908:74;;9991:93;10080:3;9991:93;:::i;:::-;10109:2;10104:3;10100:12;10093:19;;9898:220;;;:::o;10124:366::-;10266:3;10287:67;10351:2;10346:3;10287:67;:::i;:::-;10280:74;;10363:93;10452:3;10363:93;:::i;:::-;10481:2;10476:3;10472:12;10465:19;;10270:220;;;:::o;10496:365::-;10638:3;10659:66;10723:1;10718:3;10659:66;:::i;:::-;10652:73;;10734:93;10823:3;10734:93;:::i;:::-;10852:2;10847:3;10843:12;10836:19;;10642:219;;;:::o;10867:366::-;11009:3;11030:67;11094:2;11089:3;11030:67;:::i;:::-;11023:74;;11106:93;11195:3;11106:93;:::i;:::-;11224:2;11219:3;11215:12;11208:19;;11013:220;;;:::o;11239:366::-;11381:3;11402:67;11466:2;11461:3;11402:67;:::i;:::-;11395:74;;11478:93;11567:3;11478:93;:::i;:::-;11596:2;11591:3;11587:12;11580:19;;11385:220;;;:::o;11611:366::-;11753:3;11774:67;11838:2;11833:3;11774:67;:::i;:::-;11767:74;;11850:93;11939:3;11850:93;:::i;:::-;11968:2;11963:3;11959:12;11952:19;;11757:220;;;:::o;11983:366::-;12125:3;12146:67;12210:2;12205:3;12146:67;:::i;:::-;12139:74;;12222:93;12311:3;12222:93;:::i;:::-;12340:2;12335:3;12331:12;12324:19;;12129:220;;;:::o;12355:402::-;12515:3;12536:85;12618:2;12613:3;12536:85;:::i;:::-;12529:92;;12630:93;12719:3;12630:93;:::i;:::-;12748:2;12743:3;12739:12;12732:19;;12519:238;;;:::o;12763:366::-;12905:3;12926:67;12990:2;12985:3;12926:67;:::i;:::-;12919:74;;13002:93;13091:3;13002:93;:::i;:::-;13120:2;13115:3;13111:12;13104:19;;12909:220;;;:::o;13135:402::-;13295:3;13316:85;13398:2;13393:3;13316:85;:::i;:::-;13309:92;;13410:93;13499:3;13410:93;:::i;:::-;13528:2;13523:3;13519:12;13512:19;;13299:238;;;:::o;13543:366::-;13685:3;13706:67;13770:2;13765:3;13706:67;:::i;:::-;13699:74;;13782:93;13871:3;13782:93;:::i;:::-;13900:2;13895:3;13891:12;13884:19;;13689:220;;;:::o;13915:118::-;14002:24;14020:5;14002:24;:::i;:::-;13997:3;13990:37;13980:53;;:::o;14039:157::-;14144:45;14164:24;14182:5;14164:24;:::i;:::-;14144:45;:::i;:::-;14139:3;14132:58;14122:74;;:::o;14202:112::-;14285:22;14301:5;14285:22;:::i;:::-;14280:3;14273:35;14263:51;;:::o;14320:967::-;14702:3;14724:148;14868:3;14724:148;:::i;:::-;14717:155;;14889:95;14980:3;14971:6;14889:95;:::i;:::-;14882:102;;15001:148;15145:3;15001:148;:::i;:::-;14994:155;;15166:95;15257:3;15248:6;15166:95;:::i;:::-;15159:102;;15278:3;15271:10;;14706:581;;;;;:::o;15293:538::-;15461:3;15476:75;15547:3;15538:6;15476:75;:::i;:::-;15576:2;15571:3;15567:12;15560:19;;15589:75;15660:3;15651:6;15589:75;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15702:75;15773:3;15764:6;15702:75;:::i;:::-;15802:2;15797:3;15793:12;15786:19;;15822:3;15815:10;;15465:366;;;;;;:::o;15837:222::-;15930:4;15968:2;15957:9;15953:18;15945:26;;15981:71;16049:1;16038:9;16034:17;16025:6;15981:71;:::i;:::-;15935:124;;;;:::o;16065:332::-;16186:4;16224:2;16213:9;16209:18;16201:26;;16237:71;16305:1;16294:9;16290:17;16281:6;16237:71;:::i;:::-;16318:72;16386:2;16375:9;16371:18;16362:6;16318:72;:::i;:::-;16191:206;;;;;:::o;16403:442::-;16552:4;16590:2;16579:9;16575:18;16567:26;;16603:71;16671:1;16660:9;16656:17;16647:6;16603:71;:::i;:::-;16684:72;16752:2;16741:9;16737:18;16728:6;16684:72;:::i;:::-;16766;16834:2;16823:9;16819:18;16810:6;16766:72;:::i;:::-;16557:288;;;;;;:::o;16851:332::-;16972:4;17010:2;16999:9;16995:18;16987:26;;17023:71;17091:1;17080:9;17076:17;17067:6;17023:71;:::i;:::-;17104:72;17172:2;17161:9;17157:18;17148:6;17104:72;:::i;:::-;16977:206;;;;;:::o;17189:210::-;17276:4;17314:2;17303:9;17299:18;17291:26;;17327:65;17389:1;17378:9;17374:17;17365:6;17327:65;:::i;:::-;17281:118;;;;:::o;17405:222::-;17498:4;17536:2;17525:9;17521:18;17513:26;;17549:71;17617:1;17606:9;17602:17;17593:6;17549:71;:::i;:::-;17503:124;;;;:::o;17633:272::-;17751:4;17789:2;17778:9;17774:18;17766:26;;17802:96;17895:1;17884:9;17880:17;17871:6;17802:96;:::i;:::-;17756:149;;;;:::o;17911:313::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:78;18212:4;18203:6;18139:78;:::i;:::-;18131:86;;18029:195;;;;:::o;18230:419::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18401:248;;;:::o;18655:419::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:131;19062:4;18936:131;:::i;:::-;18928:139;;18826:248;;;:::o;19080:419::-;19246:4;19284:2;19273:9;19269:18;19261:26;;19333:9;19327:4;19323:20;19319:1;19308:9;19304:17;19297:47;19361:131;19487:4;19361:131;:::i;:::-;19353:139;;19251:248;;;:::o;19505:419::-;19671:4;19709:2;19698:9;19694:18;19686:26;;19758:9;19752:4;19748:20;19744:1;19733:9;19729:17;19722:47;19786:131;19912:4;19786:131;:::i;:::-;19778:139;;19676:248;;;:::o;19930:419::-;20096:4;20134:2;20123:9;20119:18;20111:26;;20183:9;20177:4;20173:20;20169:1;20158:9;20154:17;20147:47;20211:131;20337:4;20211:131;:::i;:::-;20203:139;;20101:248;;;:::o;20355:419::-;20521:4;20559:2;20548:9;20544:18;20536:26;;20608:9;20602:4;20598:20;20594:1;20583:9;20579:17;20572:47;20636:131;20762:4;20636:131;:::i;:::-;20628:139;;20526:248;;;:::o;20780:419::-;20946:4;20984:2;20973:9;20969:18;20961:26;;21033:9;21027:4;21023:20;21019:1;21008:9;21004:17;20997:47;21061:131;21187:4;21061:131;:::i;:::-;21053:139;;20951:248;;;:::o;21205:419::-;21371:4;21409:2;21398:9;21394:18;21386:26;;21458:9;21452:4;21448:20;21444:1;21433:9;21429:17;21422:47;21486:131;21612:4;21486:131;:::i;:::-;21478:139;;21376:248;;;:::o;21630:419::-;21796:4;21834:2;21823:9;21819:18;21811:26;;21883:9;21877:4;21873:20;21869:1;21858:9;21854:17;21847:47;21911:131;22037:4;21911:131;:::i;:::-;21903:139;;21801:248;;;:::o;22055:419::-;22221:4;22259:2;22248:9;22244:18;22236:26;;22308:9;22302:4;22298:20;22294:1;22283:9;22279:17;22272:47;22336:131;22462:4;22336:131;:::i;:::-;22328:139;;22226:248;;;:::o;22480:419::-;22646:4;22684:2;22673:9;22669:18;22661:26;;22733:9;22727:4;22723:20;22719:1;22708:9;22704:17;22697:47;22761:131;22887:4;22761:131;:::i;:::-;22753:139;;22651:248;;;:::o;22905:419::-;23071:4;23109:2;23098:9;23094:18;23086:26;;23158:9;23152:4;23148:20;23144:1;23133:9;23129:17;23122:47;23186:131;23312:4;23186:131;:::i;:::-;23178:139;;23076:248;;;:::o;23330:419::-;23496:4;23534:2;23523:9;23519:18;23511:26;;23583:9;23577:4;23573:20;23569:1;23558:9;23554:17;23547:47;23611:131;23737:4;23611:131;:::i;:::-;23603:139;;23501:248;;;:::o;23755:222::-;23848:4;23886:2;23875:9;23871:18;23863:26;;23899:71;23967:1;23956:9;23952:17;23943:6;23899:71;:::i;:::-;23853:124;;;;:::o;23983:831::-;24246:4;24284:3;24273:9;24269:19;24261:27;;24298:71;24366:1;24355:9;24351:17;24342:6;24298:71;:::i;:::-;24379:80;24455:2;24444:9;24440:18;24431:6;24379:80;:::i;:::-;24506:9;24500:4;24496:20;24491:2;24480:9;24476:18;24469:48;24534:108;24637:4;24628:6;24534:108;:::i;:::-;24526:116;;24652:72;24720:2;24709:9;24705:18;24696:6;24652:72;:::i;:::-;24734:73;24802:3;24791:9;24787:19;24778:6;24734:73;:::i;:::-;24251:563;;;;;;;;:::o;24820:214::-;24909:4;24947:2;24936:9;24932:18;24924:26;;24960:67;25024:1;25013:9;25009:17;25000:6;24960:67;:::i;:::-;24914:120;;;;:::o;25040:132::-;25107:4;25130:3;25122:11;;25160:4;25155:3;25151:14;25143:22;;25112:60;;;:::o;25178:114::-;25245:6;25279:5;25273:12;25263:22;;25252:40;;;:::o;25298:99::-;25350:6;25384:5;25378:12;25368:22;;25357:40;;;:::o;25403:113::-;25473:4;25505;25500:3;25496:14;25488:22;;25478:38;;;:::o;25522:184::-;25621:11;25655:6;25650:3;25643:19;25695:4;25690:3;25686:14;25671:29;;25633:73;;;;:::o;25712:169::-;25796:11;25830:6;25825:3;25818:19;25870:4;25865:3;25861:14;25846:29;;25808:73;;;;:::o;25887:148::-;25989:11;26026:3;26011:18;;26001:34;;;;:::o;26041:305::-;26081:3;26100:20;26118:1;26100:20;:::i;:::-;26095:25;;26134:20;26152:1;26134:20;:::i;:::-;26129:25;;26288:1;26220:66;26216:74;26213:1;26210:81;26207:2;;;26294:18;;:::i;:::-;26207:2;26338:1;26335;26331:9;26324:16;;26085:261;;;;:::o;26352:185::-;26392:1;26409:20;26427:1;26409:20;:::i;:::-;26404:25;;26443:20;26461:1;26443:20;:::i;:::-;26438:25;;26482:1;26472:2;;26487:18;;:::i;:::-;26472:2;26529:1;26526;26522:9;26517:14;;26394:143;;;;:::o;26543:348::-;26583:7;26606:20;26624:1;26606:20;:::i;:::-;26601:25;;26640:20;26658:1;26640:20;:::i;:::-;26635:25;;26828:1;26760:66;26756:74;26753:1;26750:81;26745:1;26738:9;26731:17;26727:105;26724:2;;;26835:18;;:::i;:::-;26724:2;26883:1;26880;26876:9;26865:20;;26591:300;;;;:::o;26897:96::-;26934:7;26963:24;26981:5;26963:24;:::i;:::-;26952:35;;26942:51;;;:::o;26999:90::-;27033:7;27076:5;27069:13;27062:21;27051:32;;27041:48;;;:::o;27095:77::-;27132:7;27161:5;27150:16;;27140:32;;;:::o;27178:149::-;27214:7;27254:66;27247:5;27243:78;27232:89;;27222:105;;;:::o;27333:126::-;27370:7;27410:42;27403:5;27399:54;27388:65;;27378:81;;;:::o;27465:77::-;27502:7;27531:5;27520:16;;27510:32;;;:::o;27548:86::-;27583:7;27623:4;27616:5;27612:16;27601:27;;27591:43;;;:::o;27640:176::-;27715:9;27748:62;27804:5;27748:62;:::i;:::-;27735:75;;27725:91;;;:::o;27822:138::-;27897:9;27930:24;27948:5;27930:24;:::i;:::-;27917:37;;27907:53;;;:::o;27966:121::-;28024:9;28057:24;28075:5;28057:24;:::i;:::-;28044:37;;28034:53;;;:::o;28093:307::-;28161:1;28171:113;28185:6;28182:1;28179:13;28171:113;;;28270:1;28265:3;28261:11;28255:18;28251:1;28246:3;28242:11;28235:39;28207:2;28204:1;28200:10;28195:15;;28171:113;;;28302:6;28299:1;28296:13;28293:2;;;28382:1;28373:6;28368:3;28364:16;28357:27;28293:2;28142:258;;;;:::o;28406:171::-;28445:3;28468:24;28486:5;28468:24;:::i;:::-;28459:33;;28514:4;28507:5;28504:15;28501:2;;;28522:18;;:::i;:::-;28501:2;28569:1;28562:5;28558:13;28551:20;;28449:128;;;:::o;28583:320::-;28627:6;28664:1;28658:4;28654:12;28644:22;;28711:1;28705:4;28701:12;28732:18;28722:2;;28788:4;28780:6;28776:17;28766:27;;28722:2;28850;28842:6;28839:14;28819:18;28816:38;28813:2;;;28869:18;;:::i;:::-;28813:2;28634:269;;;;:::o;28909:233::-;28948:3;28971:24;28989:5;28971:24;:::i;:::-;28962:33;;29017:66;29010:5;29007:77;29004:2;;;29087:18;;:::i;:::-;29004:2;29134:1;29127:5;29123:13;29116:20;;28952:190;;;:::o;29148:100::-;29187:7;29216:26;29236:5;29216:26;:::i;:::-;29205:37;;29195:53;;;:::o;29254:94::-;29293:7;29322:20;29336:5;29322:20;:::i;:::-;29311:31;;29301:47;;;:::o;29354:79::-;29393:7;29422:5;29411:16;;29401:32;;;:::o;29439:176::-;29471:1;29488:20;29506:1;29488:20;:::i;:::-;29483:25;;29522:20;29540:1;29522:20;:::i;:::-;29517:25;;29561:1;29551:2;;29566:18;;:::i;:::-;29551:2;29607:1;29604;29600:9;29595:14;;29473:142;;;;:::o;29621:180::-;29669:77;29666:1;29659:88;29766:4;29763:1;29756:15;29790:4;29787:1;29780:15;29807:180;29855:77;29852:1;29845:88;29952:4;29949:1;29942:15;29976:4;29973:1;29966:15;29993:180;30041:77;30038:1;30031:88;30138:4;30135:1;30128:15;30162:4;30159:1;30152:15;30179:102;30220:6;30271:2;30267:7;30262:2;30255:5;30251:14;30247:28;30237:38;;30227:54;;;:::o;30287:94::-;30320:8;30368:5;30364:2;30360:14;30339:35;;30329:52;;;:::o;30387:182::-;30527:34;30523:1;30515:6;30511:14;30504:58;30493:76;:::o;30575:222::-;30715:34;30711:1;30703:6;30699:14;30692:58;30784:5;30779:2;30771:6;30767:15;30760:30;30681:116;:::o;30803:225::-;30943:34;30939:1;30931:6;30927:14;30920:58;31012:8;31007:2;30999:6;30995:15;30988:33;30909:119;:::o;31034:221::-;31174:34;31170:1;31162:6;31158:14;31151:58;31243:4;31238:2;31230:6;31226:15;31219:29;31140:115;:::o;31261:179::-;31401:31;31397:1;31389:6;31385:14;31378:55;31367:73;:::o;31446:225::-;31586:34;31582:1;31574:6;31570:14;31563:58;31655:8;31650:2;31642:6;31638:15;31631:33;31552:119;:::o;31677:158::-;31817:10;31813:1;31805:6;31801:14;31794:34;31783:52;:::o;31841:182::-;31981:34;31977:1;31969:6;31965:14;31958:58;31947:76;:::o;32029:166::-;32169:18;32165:1;32157:6;32153:14;32146:42;32135:60;:::o;32201:224::-;32341:34;32337:1;32329:6;32325:14;32318:58;32410:7;32405:2;32397:6;32393:15;32386:32;32307:118;:::o;32431:223::-;32571:34;32567:1;32559:6;32555:14;32548:58;32640:6;32635:2;32627:6;32623:15;32616:31;32537:117;:::o;32660:173::-;32800:25;32796:1;32788:6;32784:14;32777:49;32766:67;:::o;32839:224::-;32979:34;32975:1;32967:6;32963:14;32956:58;33048:7;33043:2;33035:6;33031:15;33024:32;32945:118;:::o;33069:167::-;33209:19;33205:1;33197:6;33193:14;33186:43;33175:61;:::o;33242:234::-;33382:34;33378:1;33370:6;33366:14;33359:58;33451:17;33446:2;33438:6;33434:15;33427:42;33348:128;:::o;33482:122::-;33555:24;33573:5;33555:24;:::i;:::-;33548:5;33545:35;33535:2;;33594:1;33591;33584:12;33535:2;33525:79;:::o;33610:116::-;33680:21;33695:5;33680:21;:::i;:::-;33673:5;33670:32;33660:2;;33716:1;33713;33706:12;33660:2;33650:76;:::o;33732:122::-;33805:24;33823:5;33805:24;:::i;:::-;33798:5;33795:35;33785:2;;33844:1;33841;33834:12;33785:2;33775:79;:::o;33860:120::-;33932:23;33949:5;33932:23;:::i;:::-;33925:5;33922:34;33912:2;;33970:1;33967;33960:12;33912:2;33902:78;:::o;33986:122::-;34059:24;34077:5;34059:24;:::i;:::-;34052:5;34049:35;34039:2;;34098:1;34095;34088:12;34039:2;34029:79;:::o

Swarm Source

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