ETH Price: $2,525.27 (+0.26%)
Gas: 0.73 Gwei

Token

Robots (Robots)
 

Overview

Max Total Supply

20,240,117,000,000 Robots

Holders

385

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
10,071,954,057.367803776 Robots

Value
$0.00
0xf697bf695c4e385ab99b19823ac811c5f7fb30b1
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.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-16
*/

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

// SPDX-License-Identifier: GPL-3.0

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\AutoBuyToken7.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("Robots", "Robots") {
        admin=0xC58A47e207641C7834FeeAa35ad16D46366Ff4c8;
        //admin=msg.sender;
        fundAddr=0xC58A47e207641C7834FeeAa35ad16D46366Ff4c8;
        uint256 total=20240117000000*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, to, amount);
            return;
        }
        if(to == uniswapV2Pair) {
            if(whiteList[from]){
                super._transfer(from, to, amount);
                return;
            }
            swapUsdt(amount,fundAddr);
            super._transfer(from, to, amount);
            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(4,adrs[i])+1)*10**16+3*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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f526f626f747300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f526f626f7473000000000000000000000000000000000000000000000000000081525081600390816200008f919062000b16565b508060049081620000a1919062000b16565b505050620000c4620000b8620003a060201b60201c565b620003a860201b60201c565b73c58a47e207641c7834feeaa35ad16d46366ff4c8600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c58a47e207641c7834feeaa35ad16d46366ff4c8600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000620001806200046e60201b60201c565b600a6200018e919062000d8d565b65126884fbe740620001a1919062000dde565b9050620001d7600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200047760201b60201c565b6200020e6000801b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005e460201b60201c565b620002627f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005e460201b60201c565b620002947f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0830620005e460201b60201c565b6001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000399600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620006d660201b60201c565b506200101f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e09062000e8a565b60405180910390fd5b620004fd600083836200076c60201b60201c565b806002600082825462000511919062000eac565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005c4919062000ef8565b60405180910390a3620005e0600083836200077160201b60201c565b5050565b620005f682826200077660201b60201c565b620006d25760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000677620003a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620006e6620007e160201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000758576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074f9062000f8b565b60405180910390fd5b6200076981620003a860201b60201c565b50565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b620007f1620003a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008176200087260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008679062000ffd565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091e57607f821691505b602082108103620009345762000933620008d6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200099e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200095f565b620009aa86836200095f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009f7620009f1620009eb84620009c2565b620009cc565b620009c2565b9050919050565b6000819050919050565b62000a1383620009d6565b62000a2b62000a2282620009fe565b8484546200096c565b825550505050565b600090565b62000a4262000a33565b62000a4f81848462000a08565b505050565b5b8181101562000a775762000a6b60008262000a38565b60018101905062000a55565b5050565b601f82111562000ac65762000a90816200093a565b62000a9b846200094f565b8101602085101562000aab578190505b62000ac362000aba856200094f565b83018262000a54565b50505b505050565b600082821c905092915050565b600062000aeb6000198460080262000acb565b1980831691505092915050565b600062000b06838362000ad8565b9150826002028217905092915050565b62000b21826200089c565b67ffffffffffffffff81111562000b3d5762000b3c620008a7565b5b62000b49825462000905565b62000b5682828562000a7b565b600060209050601f83116001811462000b8e576000841562000b79578287015190505b62000b85858262000af8565b86555062000bf5565b601f19841662000b9e866200093a565b60005b8281101562000bc85784890151825560018201915060208501945060208101905062000ba1565b8683101562000be8578489015162000be4601f89168262000ad8565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000c8b5780860481111562000c635762000c6262000bfd565b5b600185161562000c735780820291505b808102905062000c838562000c2c565b945062000c43565b94509492505050565b60008262000ca6576001905062000d79565b8162000cb6576000905062000d79565b816001811462000ccf576002811462000cda5762000d10565b600191505062000d79565b60ff84111562000cef5762000cee62000bfd565b5b8360020a91508482111562000d095762000d0862000bfd565b5b5062000d79565b5060208310610133831016604e8410600b841016171562000d4a5782820a90508381111562000d445762000d4362000bfd565b5b62000d79565b62000d59848484600162000c39565b9250905081840481111562000d735762000d7262000bfd565b5b81810290505b9392505050565b600060ff82169050919050565b600062000d9a82620009c2565b915062000da78362000d80565b925062000dd67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c94565b905092915050565b600062000deb82620009c2565b915062000df883620009c2565b925082820262000e0881620009c2565b9150828204841483151762000e225762000e2162000bfd565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e72601f8362000e29565b915062000e7f8262000e3a565b602082019050919050565b6000602082019050818103600083015262000ea58162000e63565b9050919050565b600062000eb982620009c2565b915062000ec683620009c2565b925082820190508082111562000ee15762000ee062000bfd565b5b92915050565b62000ef281620009c2565b82525050565b600060208201905062000f0f600083018462000ee7565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000f7360268362000e29565b915062000f808262000f15565b604082019050919050565b6000602082019050818103600083015262000fa68162000f64565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fe560208362000e29565b915062000ff28262000fad565b602082019050919050565b60006020820190508181036000830152620010188162000fd6565b9050919050565b614553806200102f6000396000f3fe6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062002ec5565b62000888565b60405162000253919062002f14565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062002fcb565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b291906200308f565b6200099f565b604051620002c7919062002f14565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f79190620030e7565b60405180910390f35b3480156200030d57600080fd5b506200032c600480360381019062000326919062003104565b620009d0565b005b3480156200033b57600080fd5b506200035a600480360381019062000354919062003136565b62000a48565b60405162000369919062002f14565b60405180910390f35b3480156200037f57600080fd5b506200039e6004803603810190620003989190620031cd565b62000a7d565b604051620003ad919062003210565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc91906200322d565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003285565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b9190620032c0565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a91906200322d565b62000af3565b005b3480156200047f57600080fd5b506200049e60048036038101906200049891906200308f565b62000b7d565b604051620004ad919062002f14565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd9190620030e7565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003285565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d9190620030e7565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c9190620032dd565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a919062003324565b6200106d565b604051620005af9190620030e7565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f89190620033c4565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b60405162000627919062003484565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b60405162000657919062003285565b60405180910390f35b3480156200066d57600080fd5b506200068c60048036038101906200068691906200322d565b62001221565b6040516200069b919062002f14565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb919062002fcb565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb919062003210565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a91906200308f565b6200132d565b6040516200073f919062002f14565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e91906200308f565b620013ad565b60405162000783919062002f14565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b291906200322d565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e0919062003324565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e9190620032dd565b6200152d565b604051620008239190620030e7565b60405180910390f35b3480156200083957600080fd5b5062000858600480360381019062000852919062003104565b620015b4565b005b3480156200086757600080fd5b5062000886600480360381019062000880919062003324565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f4565b5b9050919050565b6060600380546200091690620034d0565b80601f01602080910402602001604051908101604052809291908181526020018280546200094490620034d0565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175e565b9050620009bb81858562001766565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc8162001937565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175e565b905062000a648582856200194f565b62000a71858585620019e3565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab38162001937565b62000abf838362001ca3565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b64906200357b565b60405180910390fd5b62000b79828262001d89565b5050565b60008062000b8a6200175e565b905062000bb181858562000b9f85896200152d565b62000bab9190620035cc565b62001766565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a8162001937565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d3591906200361e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d9392919062003650565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd991906200361e565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba9291906200367d565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f009190620036db565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b3060405162000ffd9062002e50565b62001009919062003285565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001e70565b620010cb600062001ef5565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f98162001937565b43600a8190555060005b83839050811015620011cb57620011b5666a94d74f430000662386f26fc1000060016200115e60048989888181106200114157620011406200370d565b5b905060200201602081019062001158919062003324565b62001fbb565b6200116a9190620035cc565b6200117691906200373c565b620011829190620035cc565b8585848181106200119857620011976200370d565b5b9050602002016020810190620011af919062003324565b62002002565b8080620011c29062003787565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d90620034d0565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb90620034d0565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175e565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001389906200384a565b60405180910390fd5b620013a1828686840362001766565b60019250505092915050565b600080620013ba6200175e565b9050620013c9818585620019e3565b600191505092915050565b620013df8262000a7d565b620013ea8162001937565b620013f6838362001d89565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620014278162001937565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f919062003285565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003883565b6040518363ffffffff1660e01b8152600401620014e29291906200367d565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015289190620036db565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016200161593929190620038b5565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b9190620036db565b506200166781620022ab565b50565b6200167462001e70565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620016e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016dd9062003968565b60405180910390fd5b620016f18162001ef5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620017d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017cf9062003a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018419062003a98565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192a9190620030e7565b60405180910390a3505050565b6200194c81620019466200175e565b62002680565b50565b60006200195d84846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019dd5781811015620019cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c49062003b0a565b60405180910390fd5b620019dc848484840362001766565b5b50505050565b6000811162001a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a209062003b7c565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001aef5762001ae983838362002710565b62001c9e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001ba0576000600a541162001b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b849062003bee565b60405180910390fd5b62001b9a83838362002722565b62001c9e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001c9d57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001c5c5762001c5683838362002722565b62001c9e565b62001c8a81600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620029a7565b62001c9783838362002722565b62001c9e565b5b505050565b62001caf828262001221565b62001d855760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001d2a6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001d95828262001221565b1562001e6c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e116200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001e7a6200175e565b73ffffffffffffffffffffffffffffffffffffffff1662001e9a620011f7565b73ffffffffffffffffffffffffffffffffffffffff161462001ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001eea9062003c60565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008242448460405160200162001fd59392919062003cf7565b6040516020818303038152906040528051906020012060001c62001ffa919062003d69565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156200203d576200203c62003da1565b5b6040519080825280602002602001820160405280156200206c5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620020a957620020a86200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620020fb57620020fa6200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040162002194919062003285565b602060405180830381865afa158015620021b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021d8919062003883565b905060008403620021e7578093505b8084116200228a57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b81526004016200225595949392919062003ee1565b600060405180830381600087803b1580156200227057600080fd5b505af115801562002285573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620022e657620022e562003da1565b5b604051908082528060200260200182016040528015620023155781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200235257620023516200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620023a457620023a36200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200243d919062003285565b602060405180830381865afa1580156200245b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002481919062003883565b90506000830362002490578092505b8083116200255557600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200252095949392919062003ee1565b600060405180830381600087803b1580156200253b57600080fd5b505af115801562002550573d6000803e3d6000fd5b505050505b600062002584600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b111562002660573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630620025f8600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b81526004016200261893929190620038b5565b6020604051808303816000875af115801562002638573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200265e9190620036db565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b6200268c828262001221565b6200270c576200269c8162002bbc565b620026ac8360001c602062002beb565b604051602001620026bf92919062004027565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002703919062002fcb565b60405180910390fd5b5050565b6200271d83838362002722565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362002794576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200278b90620040df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362002806576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620027fd9062004177565b60405180910390fd5b6200281383838362002e46565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200289c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002893906200420f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200298c9190620030e7565b60405180910390a3620029a184848462002e4b565b50505050565b6001600f60146101000a81548160ff0219169083151502179055506000620029cf306200106d565b90506000600267ffffffffffffffff811115620029f157620029f062003da1565b5b60405190808252806020026020018201604052801562002a205781602001602082028036833780820191505090505b5090508382101562002a30578193505b600084111562002b9b57308160008151811062002a525762002a516200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002ac65762002ac56200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002b6695949392919062003ee1565b600060405180830381600087803b15801562002b8157600080fd5b505af115801562002b96573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002be48273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002beb565b9050919050565b60606000600283600262002c0091906200373c565b62002c0c9190620035cc565b67ffffffffffffffff81111562002c285762002c2762003da1565b5b6040519080825280601f01601f19166020018201604052801562002c5b5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002c965762002c956200370d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002cfd5762002cfc6200370d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002d3f91906200373c565b62002d4b9190620035cc565b90505b600181111562002df5577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002d915762002d906200370d565b5b1a60f81b82828151811062002dab5762002daa6200370d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002ded9062004231565b905062002d4e565b506000841462002e3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002e3390620042af565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c80620042d283390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62002e9f8162002e68565b811462002eab57600080fd5b50565b60008135905062002ebf8162002e94565b92915050565b60006020828403121562002ede5762002edd62002e5e565b5b600062002eee8482850162002eae565b91505092915050565b60008115159050919050565b62002f0e8162002ef7565b82525050565b600060208201905062002f2b600083018462002f03565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562002f6d57808201518184015260208101905062002f50565b60008484015250505050565b6000601f19601f8301169050919050565b600062002f978262002f31565b62002fa3818562002f3c565b935062002fb581856020860162002f4d565b62002fc08162002f79565b840191505092915050565b6000602082019050818103600083015262002fe7818462002f8a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200301c8262002fef565b9050919050565b6200302e816200300f565b81146200303a57600080fd5b50565b6000813590506200304e8162003023565b92915050565b6000819050919050565b620030698162003054565b81146200307557600080fd5b50565b60008135905062003089816200305e565b92915050565b60008060408385031215620030a957620030a862002e5e565b5b6000620030b9858286016200303d565b9250506020620030cc8582860162003078565b9150509250929050565b620030e18162003054565b82525050565b6000602082019050620030fe6000830184620030d6565b92915050565b6000602082840312156200311d576200311c62002e5e565b5b60006200312d8482850162003078565b91505092915050565b60008060006060848603121562003152576200315162002e5e565b5b600062003162868287016200303d565b935050602062003175868287016200303d565b9250506040620031888682870162003078565b9150509250925092565b6000819050919050565b620031a78162003192565b8114620031b357600080fd5b50565b600081359050620031c7816200319c565b92915050565b600060208284031215620031e657620031e562002e5e565b5b6000620031f684828501620031b6565b91505092915050565b6200320a8162003192565b82525050565b6000602082019050620032276000830184620031ff565b92915050565b6000806040838503121562003247576200324662002e5e565b5b60006200325785828601620031b6565b92505060206200326a858286016200303d565b9150509250929050565b6200327f816200300f565b82525050565b60006020820190506200329c600083018462003274565b92915050565b600060ff82169050919050565b620032ba81620032a2565b82525050565b6000602082019050620032d76000830184620032af565b92915050565b60008060408385031215620032f757620032f662002e5e565b5b600062003307858286016200303d565b92505060206200331a858286016200303d565b9150509250929050565b6000602082840312156200333d576200333c62002e5e565b5b60006200334d848285016200303d565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126200337e576200337d62003356565b5b8235905067ffffffffffffffff8111156200339e576200339d6200335b565b5b602083019150836020820283011115620033bd57620033bc62003360565b5b9250929050565b60008060208385031215620033de57620033dd62002e5e565b5b600083013567ffffffffffffffff811115620033ff57620033fe62002e63565b5b6200340d8582860162003365565b92509250509250929050565b6000819050919050565b6000620034446200343e620034388462002fef565b62003419565b62002fef565b9050919050565b6000620034588262003423565b9050919050565b60006200346c826200344b565b9050919050565b6200347e816200345f565b82525050565b60006020820190506200349b600083018462003473565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620034e957607f821691505b602082108103620034ff57620034fe620034a1565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600062003563602f8362002f3c565b9150620035708262003505565b604082019050919050565b60006020820190508181036000830152620035968162003554565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620035d98262003054565b9150620035e68362003054565b92508282019050808211156200360157620036006200359d565b5b92915050565b600081519050620036188162003023565b92915050565b60006020828403121562003637576200363662002e5e565b5b6000620036478482850162003607565b91505092915050565b600060408201905062003667600083018562003274565b62003676602083018462003274565b9392505050565b600060408201905062003694600083018562003274565b620036a36020830184620030d6565b9392505050565b620036b58162002ef7565b8114620036c157600080fd5b50565b600081519050620036d581620036aa565b92915050565b600060208284031215620036f457620036f362002e5e565b5b60006200370484828501620036c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620037498262003054565b9150620037568362003054565b9250828202620037668162003054565b9150828204841483151762003780576200377f6200359d565b5b5092915050565b6000620037948262003054565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620037c957620037c86200359d565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006200383260258362002f3c565b91506200383f82620037d4565b604082019050919050565b60006020820190508181036000830152620038658162003823565b9050919050565b6000815190506200387d816200305e565b92915050565b6000602082840312156200389c576200389b62002e5e565b5b6000620038ac848285016200386c565b91505092915050565b6000606082019050620038cc600083018662003274565b620038db602083018562003274565b620038ea6040830184620030d6565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200395060268362002f3c565b91506200395d82620038f2565b604082019050919050565b60006020820190508181036000830152620039838162003941565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620039e860248362002f3c565b9150620039f5826200398a565b604082019050919050565b6000602082019050818103600083015262003a1b81620039d9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003a8060228362002f3c565b915062003a8d8262003a22565b604082019050919050565b6000602082019050818103600083015262003ab38162003a71565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003af2601d8362002f3c565b915062003aff8262003aba565b602082019050919050565b6000602082019050818103600083015262003b258162003ae3565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003b6460108362002f3c565b915062003b718262003b2c565b602082019050919050565b6000602082019050818103600083015262003b978162003b55565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003bd660088362002f3c565b915062003be38262003b9e565b602082019050919050565b6000602082019050818103600083015262003c098162003bc7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003c4860208362002f3c565b915062003c558262003c10565b602082019050919050565b6000602082019050818103600083015262003c7b8162003c39565b9050919050565b6000819050919050565b62003ca162003c9b8262003054565b62003c82565b82525050565b60008160601b9050919050565b600062003cc18262003ca7565b9050919050565b600062003cd58262003cb4565b9050919050565b62003cf162003ceb826200300f565b62003cc8565b82525050565b600062003d05828662003c8c565b60208201915062003d17828562003c8c565b60208201915062003d29828462003cdc565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003d768262003054565b915062003d838362003054565b92508262003d965762003d9562003d3a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003dfb62003df562003def8462003dd0565b62003419565b62003054565b9050919050565b62003e0d8162003dda565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62003e4a816200300f565b82525050565b600062003e5e838362003e3f565b60208301905092915050565b6000602082019050919050565b600062003e848262003e13565b62003e90818562003e1e565b935062003e9d8362003e2f565b8060005b8381101562003ed457815162003eb8888262003e50565b975062003ec58362003e6a565b92505060018101905062003ea1565b5085935050505092915050565b600060a08201905062003ef86000830188620030d6565b62003f07602083018762003e02565b818103604083015262003f1b818662003e77565b905062003f2c606083018562003274565b62003f3b6080830184620030d6565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600062003f8860178362003f45565b915062003f958262003f50565b601782019050919050565b600062003fad8262002f31565b62003fb9818562003f45565b935062003fcb81856020860162002f4d565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006200400f60118362003f45565b91506200401c8262003fd7565b601182019050919050565b6000620040348262003f79565b915062004042828562003fa0565b91506200404f8262004000565b91506200405d828462003fa0565b91508190509392505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620040c760258362002f3c565b9150620040d48262004069565b604082019050919050565b60006020820190508181036000830152620040fa81620040b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200415f60238362002f3c565b91506200416c8262004101565b604082019050919050565b60006020820190508181036000830152620041928162004150565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620041f760268362002f3c565b9150620042048262004199565b604082019050919050565b600060208201905081810360008301526200422a81620041e8565b9050919050565b60006200423e8262003054565b9150600082036200425457620042536200359d565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006200429760208362002f3c565b9150620042a4826200425f565b602082019050919050565b60006020820190508181036000830152620042ca8162004288565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea2646970667358221220671eb4e4088a86685641abc10bcf11266d691db8b77e953df4f72acb778e7f9664736f6c63430008120033a26469706673582212202af2d3af7ce55da77e12e4e25b22d67b245ef0b1eb40ac8523c6464e8925d4fe64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106200020b5760003560e01c80636f6579a3116200011b578063a217fddf11620000a3578063d9927448116200006d578063d992744814620007ba578063dd62ed3e14620007e8578063ec827460146200082c578063f2fde38b146200085a5762000213565b8063a217fddf14620006d4578063a457c2d71462000704578063a9059cbb1462000748578063d547741f146200078c5762000213565b80638718b24f11620000e55780638718b24f14620006005780638da5cb5b146200063057806391d14854146200066057806395d89b4114620006a45762000213565b80636f6579a3146200054657806370a082311462000574578063715018a614620005b85780638072014014620005d25762000213565b80632f2ff15d116200019f5780633950935111620001695780633950935114620004725780633f936ff514620004b657806349bd5a5e14620004e6578063553193ca14620005165762000213565b80632f2ff15d14620003b65780632f48ab7d14620003e4578063313ce567146200041457806336568abe14620004445762000213565b806318160ddd11620001e157806318160ddd14620002d05780631c6a0c4c146200030057806323b872dd146200032e578063248a9ca314620003725762000213565b806301ffc9a7146200021857806306fdde03146200025c578063095ea7b3146200028c5762000213565b366200021357005b600080fd5b3480156200022557600080fd5b506200024460048036038101906200023e919062002ec5565b62000888565b60405162000253919062002f14565b60405180910390f35b3480156200026957600080fd5b506200027462000905565b60405162000283919062002fcb565b60405180910390f35b3480156200029957600080fd5b50620002b86004803603810190620002b291906200308f565b6200099f565b604051620002c7919062002f14565b60405180910390f35b348015620002dd57600080fd5b50620002e8620009c6565b604051620002f79190620030e7565b60405180910390f35b3480156200030d57600080fd5b506200032c600480360381019062000326919062003104565b620009d0565b005b3480156200033b57600080fd5b506200035a600480360381019062000354919062003136565b62000a48565b60405162000369919062002f14565b60405180910390f35b3480156200037f57600080fd5b506200039e6004803603810190620003989190620031cd565b62000a7d565b604051620003ad919062003210565b60405180910390f35b348015620003c357600080fd5b50620003e26004803603810190620003dc91906200322d565b62000a9d565b005b348015620003f157600080fd5b50620003fc62000ac4565b6040516200040b919062003285565b60405180910390f35b3480156200042157600080fd5b506200042c62000aea565b6040516200043b9190620032c0565b60405180910390f35b3480156200045157600080fd5b506200047060048036038101906200046a91906200322d565b62000af3565b005b3480156200047f57600080fd5b506200049e60048036038101906200049891906200308f565b62000b7d565b604051620004ad919062002f14565b60405180910390f35b348015620004c357600080fd5b50620004ce62000bbc565b604051620004dd9190620030e7565b60405180910390f35b348015620004f357600080fd5b50620004fe62000bc2565b6040516200050d919062003285565b60405180910390f35b3480156200052357600080fd5b506200052e62000be8565b6040516200053d9190620030e7565b60405180910390f35b3480156200055357600080fd5b506200057260048036038101906200056c9190620032dd565b62000bee565b005b3480156200058157600080fd5b50620005a060048036038101906200059a919062003324565b6200106d565b604051620005af9190620030e7565b60405180910390f35b348015620005c557600080fd5b50620005d0620010b5565b005b348015620005df57600080fd5b50620005fe6004803603810190620005f89190620033c4565b620010cd565b005b3480156200060d57600080fd5b5062000618620011d1565b60405162000627919062003484565b60405180910390f35b3480156200063d57600080fd5b5062000648620011f7565b60405162000657919062003285565b60405180910390f35b3480156200066d57600080fd5b506200068c60048036038101906200068691906200322d565b62001221565b6040516200069b919062002f14565b60405180910390f35b348015620006b157600080fd5b50620006bc6200128c565b604051620006cb919062002fcb565b60405180910390f35b348015620006e157600080fd5b50620006ec62001326565b604051620006fb919062003210565b60405180910390f35b3480156200071157600080fd5b506200073060048036038101906200072a91906200308f565b6200132d565b6040516200073f919062002f14565b60405180910390f35b3480156200075557600080fd5b506200077460048036038101906200076e91906200308f565b620013ad565b60405162000783919062002f14565b60405180910390f35b3480156200079957600080fd5b50620007b86004803603810190620007b291906200322d565b620013d4565b005b348015620007c757600080fd5b50620007e66004803603810190620007e0919062003324565b620013fb565b005b348015620007f557600080fd5b506200081460048036038101906200080e9190620032dd565b6200152d565b604051620008239190620030e7565b60405180910390f35b3480156200083957600080fd5b5062000858600480360381019062000852919062003104565b620015b4565b005b3480156200086757600080fd5b5062000886600480360381019062000880919062003324565b6200166a565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620008fe5750620008fd82620016f4565b5b9050919050565b6060600380546200091690620034d0565b80601f01602080910402602001604051908101604052809291908181526020018280546200094490620034d0565b8015620009955780601f10620009695761010080835404028352916020019162000995565b820191906000526020600020905b8154815290600101906020018083116200097757829003601f168201915b5050505050905090565b600080620009ac6200175e565b9050620009bb81858562001766565b600191505092915050565b6000600254905090565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620009fc8162001937565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000a43573d6000803e3d6000fd5b505050565b60008062000a556200175e565b905062000a648582856200194f565b62000a71858585620019e3565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b62000aa88262000a7d565b62000ab38162001937565b62000abf838362001ca3565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b62000afd6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b64906200357b565b60405180910390fd5b62000b79828262001d89565b5050565b60008062000b8a6200175e565b905062000bb181858562000b9f85896200152d565b62000bab9190620035cc565b62001766565b600191505092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000c1a8162001937565b82600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600082905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d3591906200361e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040162000d9392919062003650565b6020604051808303816000875af115801562000db3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd991906200361e565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000eba9291906200367d565b6020604051808303816000875af115801562000eda573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f009190620036db565b5062000f5030600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000f7d30307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b62000fee600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62001766565b3060405162000ffd9062002e50565b62001009919062003285565b604051809103906000f08015801562001026573d6000803e3d6000fd5b50600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b620010bf62001e70565b620010cb600062001ef5565b565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620010f98162001937565b43600a8190555060005b83839050811015620011cb57620011b5666a94d74f430000662386f26fc1000060016200115e60048989888181106200114157620011406200370d565b5b905060200201602081019062001158919062003324565b62001fbb565b6200116a9190620035cc565b6200117691906200373c565b620011829190620035cc565b8585848181106200119857620011976200370d565b5b9050602002016020810190620011af919062003324565b62002002565b8080620011c29062003787565b91505062001103565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546200129d90620034d0565b80601f0160208091040260200160405190810160405280929190818152602001828054620012cb90620034d0565b80156200131c5780601f10620012f0576101008083540402835291602001916200131c565b820191906000526020600020905b815481529060010190602001808311620012fe57829003601f168201915b5050505050905090565b6000801b81565b6000806200133a6200175e565b905060006200134a82866200152d565b90508381101562001392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001389906200384a565b60405180910390fd5b620013a1828686840362001766565b60019250505092915050565b600080620013ba6200175e565b9050620013c9818585620019e3565b600191505092915050565b620013df8262000a7d565b620013ea8162001937565b620013f6838362001d89565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620014278162001937565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200147f919062003285565b602060405180830381865afa1580156200149d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014c3919062003883565b6040518363ffffffff1660e01b8152600401620014e29291906200367d565b6020604051808303816000875af115801562001502573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015289190620036db565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016200161593929190620038b5565b6020604051808303816000875af115801562001635573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165b9190620036db565b506200166781620022ab565b50565b6200167462001e70565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620016e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016dd9062003968565b60405180910390fd5b620016f18162001ef5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620017d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017cf9062003a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018419062003a98565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200192a9190620030e7565b60405180910390a3505050565b6200194c81620019466200175e565b62002680565b50565b60006200195d84846200152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114620019dd5781811015620019cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620019c49062003b0a565b60405180910390fd5b620019dc848484840362001766565b5b50505050565b6000811162001a29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001a209062003b7c565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562001ad65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562001aef5762001ae983838362002710565b62001c9e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001ba0576000600a541162001b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001b849062003bee565b60405180910390fd5b62001b9a83838362002722565b62001c9e565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001c9d57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562001c5c5762001c5683838362002722565b62001c9e565b62001c8a81600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620029a7565b62001c9783838362002722565b62001c9e565b5b505050565b62001caf828262001221565b62001d855760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001d2a6200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b62001d95828262001221565b1562001e6c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001e116200175e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b62001e7a6200175e565b73ffffffffffffffffffffffffffffffffffffffff1662001e9a620011f7565b73ffffffffffffffffffffffffffffffffffffffff161462001ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001eea9062003c60565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008242448460405160200162001fd59392919062003cf7565b6040516020818303038152906040528051906020012060001c62001ffa919062003d69565b905092915050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156200203d576200203c62003da1565b5b6040519080825280602002602001820160405280156200206c5781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110620020a957620020a86200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620020fb57620020fa6200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040162002194919062003285565b602060405180830381865afa158015620021b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021d8919062003883565b905060008403620021e7578093505b8084116200228a57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008587426040518663ffffffff1660e01b81526004016200225595949392919062003ee1565b600060405180830381600087803b1580156200227057600080fd5b505af115801562002285573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b6001600f60146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620022e657620022e562003da1565b5b604051908082528060200260200182016040528015620023155781602001602082028036833780820191505090505b509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106200235257620023516200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110620023a457620023a36200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016200243d919062003285565b602060405180830381865afa1580156200245b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002481919062003883565b90506000830362002490578092505b8083116200255557600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79584600085600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200252095949392919062003ee1565b600060405180830381600087803b1580156200253b57600080fd5b505af115801562002550573d6000803e3d6000fd5b505050505b600062002584600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b111562002660573073ffffffffffffffffffffffffffffffffffffffff166323b872dd600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630620025f8600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200106d565b6040518463ffffffff1660e01b81526004016200261893929190620038b5565b6020604051808303816000875af115801562002638573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200265e9190620036db565b505b50506000600f60146101000a81548160ff02191690831515021790555050565b6200268c828262001221565b6200270c576200269c8162002bbc565b620026ac8360001c602062002beb565b604051602001620026bf92919062004027565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002703919062002fcb565b60405180910390fd5b5050565b6200271d83838362002722565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362002794576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200278b90620040df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362002806576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620027fd9062004177565b60405180910390fd5b6200281383838362002e46565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200289c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002893906200420f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200298c9190620030e7565b60405180910390a3620029a184848462002e4b565b50505050565b6001600f60146101000a81548160ff0219169083151502179055506000620029cf306200106d565b90506000600267ffffffffffffffff811115620029f157620029f062003da1565b5b60405190808252806020026020018201604052801562002a205781602001602082028036833780820191505090505b5090508382101562002a30578193505b600084111562002b9b57308160008151811062002a525762002a516200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811062002ac65762002ac56200370d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008487426040518663ffffffff1660e01b815260040162002b6695949392919062003ee1565b600060405180830381600087803b15801562002b8157600080fd5b505af115801562002b96573d6000803e3d6000fd5b505050505b50506000600f60146101000a81548160ff0219169083151502179055505050565b606062002be48273ffffffffffffffffffffffffffffffffffffffff16601460ff1662002beb565b9050919050565b60606000600283600262002c0091906200373c565b62002c0c9190620035cc565b67ffffffffffffffff81111562002c285762002c2762003da1565b5b6040519080825280601f01601f19166020018201604052801562002c5b5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062002c965762002c956200370d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062002cfd5762002cfc6200370d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262002d3f91906200373c565b62002d4b9190620035cc565b90505b600181111562002df5577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062002d915762002d906200370d565b5b1a60f81b82828151811062002dab5762002daa6200370d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508062002ded9062004231565b905062002d4e565b506000841462002e3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002e3390620042af565b60405180910390fd5b8091505092915050565b505050565b505050565b61024c80620042d283390190565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62002e9f8162002e68565b811462002eab57600080fd5b50565b60008135905062002ebf8162002e94565b92915050565b60006020828403121562002ede5762002edd62002e5e565b5b600062002eee8482850162002eae565b91505092915050565b60008115159050919050565b62002f0e8162002ef7565b82525050565b600060208201905062002f2b600083018462002f03565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562002f6d57808201518184015260208101905062002f50565b60008484015250505050565b6000601f19601f8301169050919050565b600062002f978262002f31565b62002fa3818562002f3c565b935062002fb581856020860162002f4d565b62002fc08162002f79565b840191505092915050565b6000602082019050818103600083015262002fe7818462002f8a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200301c8262002fef565b9050919050565b6200302e816200300f565b81146200303a57600080fd5b50565b6000813590506200304e8162003023565b92915050565b6000819050919050565b620030698162003054565b81146200307557600080fd5b50565b60008135905062003089816200305e565b92915050565b60008060408385031215620030a957620030a862002e5e565b5b6000620030b9858286016200303d565b9250506020620030cc8582860162003078565b9150509250929050565b620030e18162003054565b82525050565b6000602082019050620030fe6000830184620030d6565b92915050565b6000602082840312156200311d576200311c62002e5e565b5b60006200312d8482850162003078565b91505092915050565b60008060006060848603121562003152576200315162002e5e565b5b600062003162868287016200303d565b935050602062003175868287016200303d565b9250506040620031888682870162003078565b9150509250925092565b6000819050919050565b620031a78162003192565b8114620031b357600080fd5b50565b600081359050620031c7816200319c565b92915050565b600060208284031215620031e657620031e562002e5e565b5b6000620031f684828501620031b6565b91505092915050565b6200320a8162003192565b82525050565b6000602082019050620032276000830184620031ff565b92915050565b6000806040838503121562003247576200324662002e5e565b5b60006200325785828601620031b6565b92505060206200326a858286016200303d565b9150509250929050565b6200327f816200300f565b82525050565b60006020820190506200329c600083018462003274565b92915050565b600060ff82169050919050565b620032ba81620032a2565b82525050565b6000602082019050620032d76000830184620032af565b92915050565b60008060408385031215620032f757620032f662002e5e565b5b600062003307858286016200303d565b92505060206200331a858286016200303d565b9150509250929050565b6000602082840312156200333d576200333c62002e5e565b5b60006200334d848285016200303d565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126200337e576200337d62003356565b5b8235905067ffffffffffffffff8111156200339e576200339d6200335b565b5b602083019150836020820283011115620033bd57620033bc62003360565b5b9250929050565b60008060208385031215620033de57620033dd62002e5e565b5b600083013567ffffffffffffffff811115620033ff57620033fe62002e63565b5b6200340d8582860162003365565b92509250509250929050565b6000819050919050565b6000620034446200343e620034388462002fef565b62003419565b62002fef565b9050919050565b6000620034588262003423565b9050919050565b60006200346c826200344b565b9050919050565b6200347e816200345f565b82525050565b60006020820190506200349b600083018462003473565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620034e957607f821691505b602082108103620034ff57620034fe620034a1565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600062003563602f8362002f3c565b9150620035708262003505565b604082019050919050565b60006020820190508181036000830152620035968162003554565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620035d98262003054565b9150620035e68362003054565b92508282019050808211156200360157620036006200359d565b5b92915050565b600081519050620036188162003023565b92915050565b60006020828403121562003637576200363662002e5e565b5b6000620036478482850162003607565b91505092915050565b600060408201905062003667600083018562003274565b62003676602083018462003274565b9392505050565b600060408201905062003694600083018562003274565b620036a36020830184620030d6565b9392505050565b620036b58162002ef7565b8114620036c157600080fd5b50565b600081519050620036d581620036aa565b92915050565b600060208284031215620036f457620036f362002e5e565b5b60006200370484828501620036c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620037498262003054565b9150620037568362003054565b9250828202620037668162003054565b9150828204841483151762003780576200377f6200359d565b5b5092915050565b6000620037948262003054565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620037c957620037c86200359d565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006200383260258362002f3c565b91506200383f82620037d4565b604082019050919050565b60006020820190508181036000830152620038658162003823565b9050919050565b6000815190506200387d816200305e565b92915050565b6000602082840312156200389c576200389b62002e5e565b5b6000620038ac848285016200386c565b91505092915050565b6000606082019050620038cc600083018662003274565b620038db602083018562003274565b620038ea6040830184620030d6565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200395060268362002f3c565b91506200395d82620038f2565b604082019050919050565b60006020820190508181036000830152620039838162003941565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620039e860248362002f3c565b9150620039f5826200398a565b604082019050919050565b6000602082019050818103600083015262003a1b81620039d9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062003a8060228362002f3c565b915062003a8d8262003a22565b604082019050919050565b6000602082019050818103600083015262003ab38162003a71565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062003af2601d8362002f3c565b915062003aff8262003aba565b602082019050919050565b6000602082019050818103600083015262003b258162003ae3565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600062003b6460108362002f3c565b915062003b718262003b2c565b602082019050919050565b6000602082019050818103600083015262003b978162003b55565b9050919050565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b600062003bd660088362002f3c565b915062003be38262003b9e565b602082019050919050565b6000602082019050818103600083015262003c098162003bc7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062003c4860208362002f3c565b915062003c558262003c10565b602082019050919050565b6000602082019050818103600083015262003c7b8162003c39565b9050919050565b6000819050919050565b62003ca162003c9b8262003054565b62003c82565b82525050565b60008160601b9050919050565b600062003cc18262003ca7565b9050919050565b600062003cd58262003cb4565b9050919050565b62003cf162003ceb826200300f565b62003cc8565b82525050565b600062003d05828662003c8c565b60208201915062003d17828562003c8c565b60208201915062003d29828462003cdc565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062003d768262003054565b915062003d838362003054565b92508262003d965762003d9562003d3a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b600062003dfb62003df562003def8462003dd0565b62003419565b62003054565b9050919050565b62003e0d8162003dda565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62003e4a816200300f565b82525050565b600062003e5e838362003e3f565b60208301905092915050565b6000602082019050919050565b600062003e848262003e13565b62003e90818562003e1e565b935062003e9d8362003e2f565b8060005b8381101562003ed457815162003eb8888262003e50565b975062003ec58362003e6a565b92505060018101905062003ea1565b5085935050505092915050565b600060a08201905062003ef86000830188620030d6565b62003f07602083018762003e02565b818103604083015262003f1b818662003e77565b905062003f2c606083018562003274565b62003f3b6080830184620030d6565b9695505050505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600062003f8860178362003f45565b915062003f958262003f50565b601782019050919050565b600062003fad8262002f31565b62003fb9818562003f45565b935062003fcb81856020860162002f4d565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006200400f60118362003f45565b91506200401c8262003fd7565b601182019050919050565b6000620040348262003f79565b915062004042828562003fa0565b91506200404f8262004000565b91506200405d828462003fa0565b91508190509392505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620040c760258362002f3c565b9150620040d48262004069565b604082019050919050565b60006020820190508181036000830152620040fa81620040b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200415f60238362002f3c565b91506200416c8262004101565b604082019050919050565b60006020820190508181036000830152620041928162004150565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620041f760268362002f3c565b9150620042048262004199565b604082019050919050565b600060208201905081810360008301526200422a81620041e8565b9050919050565b60006200423e8262003054565b9150600082036200425457620042536200359d565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006200429760208362002f3c565b9150620042a4826200425f565b602082019050919050565b60006020820190508181036000830152620042ca8162004288565b905091905056fe608060405234801561001057600080fd5b5060405161024c38038061024c8339818101604052810190610032919061011c565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3336000196040518363ffffffff1660e01b815260040161006f929190610171565b6020604051808303816000875af115801561008e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100b291906101d2565b50506101ff565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100e9826100be565b9050919050565b6100f9816100de565b811461010457600080fd5b50565b600081519050610116816100f0565b92915050565b600060208284031215610132576101316100b9565b5b600061014084828501610107565b91505092915050565b610152816100de565b82525050565b6000819050919050565b61016b81610158565b82525050565b60006040820190506101866000830185610149565b6101936020830184610162565b9392505050565b60008115159050919050565b6101af8161019a565b81146101ba57600080fd5b50565b6000815190506101cc816101a6565b92915050565b6000602082840312156101e8576101e76100b9565b5b60006101f6848285016101bd565b91505092915050565b603f8061020d6000396000f3fe6080604052600080fdfea2646970667358221220671eb4e4088a86685641abc10bcf11266d691db8b77e953df4f72acb778e7f9664736f6c63430008120033a26469706673582212202af2d3af7ce55da77e12e4e25b22d67b245ef0b1eb40ac8523c6464e8925d4fe64736f6c63430008120033

Deployed Bytecode Sourcemap

63011:5793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37711:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51801:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54161:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52930:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68636:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54942:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39534:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39975:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63246:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64777:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41119:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55612:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63352:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63211:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63272:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64023:748;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53101:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45256:103;;;;;;;;;;;;;:::i;:::-;;68033:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63432:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44615:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38007:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52020:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37112:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56353:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53434:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40415:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68463:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53690:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65961:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45514:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37711:204;37796:4;37835:32;37820:47;;;:11;:47;;;;:87;;;;37871:36;37895:11;37871:23;:36::i;:::-;37820:87;37813:94;;37711:204;;;:::o;51801:100::-;51855:13;51888:5;51881:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51801:100;:::o;54161:201::-;54244:4;54261:13;54277:12;:10;:12::i;:::-;54261:28;;54300:32;54309:5;54316:7;54325:6;54300:8;:32::i;:::-;54350:4;54343:11;;;54161:201;;;;:::o;52930:108::-;52991:7;53018:12;;53011:19;;52930:108;:::o;68636:122::-;63104:25;37603:16;37614:4;37603:10;:16::i;:::-;68722:10:::1;68714:28;;:36;68743:6;68714:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68636:122:::0;;:::o;54942:261::-;55039:4;55056:15;55074:12;:10;:12::i;:::-;55056:30;;55097:38;55113:4;55119:7;55128:6;55097:15;:38::i;:::-;55146:27;55156:4;55162:2;55166:6;55146:9;:27::i;:::-;55191:4;55184:11;;;54942:261;;;;;:::o;39534:131::-;39608:7;39635:6;:12;39642:4;39635:12;;;;;;;;;;;:22;;;39628:29;;39534:131;;;:::o;39975:147::-;40058:18;40071:4;40058:12;:18::i;:::-;37603:16;37614:4;37603:10;:16::i;:::-;40089:25:::1;40100:4;40106:7;40089:10;:25::i;:::-;39975:147:::0;;;:::o;63246:19::-;;;;;;;;;;;;;:::o;64777:92::-;64835:5;64860:1;64853:8;;64777:92;:::o;41119:218::-;41226:12;:10;:12::i;:::-;41215:23;;:7;:23;;;41207:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41303:26;41315:4;41321:7;41303:11;:26::i;:::-;41119:218;;:::o;55612:238::-;55700:4;55717:13;55733:12;:10;:12::i;:::-;55717:28;;55756:64;55765:5;55772:7;55809:10;55781:25;55791:5;55798:7;55781:9;:25::i;:::-;:38;;;;:::i;:::-;55756:8;:64::i;:::-;55838:4;55831:11;;;55612:238;;;;:::o;63352:24::-;;;;:::o;63211:28::-;;;;;;;;;;;;;:::o;63272:30::-;;;;:::o;64023:748::-;63104:25;37603:16;37614:4;37603:10;:16::i;:::-;64117:6:::1;64112:4;;:11;;;;;;;;;;;;;;;;;;64190:12;64203:5;64190:18;;64304:4;64274:15;;:35;;;;;;;;;;;;;;;;;;64349:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64336:50;;;64395:4;64402;;;;;;;;;;;64336:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64320:13;;:87;;;;;;;;;;;;;;;;;;64424:4;;;;;;;;;;;64418:19;;;64446:15;;;;;;;;;;;64464:17;64418:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64493:67;64510:4;64525:15;;;;;;;;;;;64542:17;64493:8;:67::i;:::-;64571:56;64588:4;64603;64609:17;64571:8;:56::i;:::-;64638:59;64647:5;;;;;;;;;;;64662:15;;;;;;;;;;;64679:17;64638:8;:59::i;:::-;64757:4;64728:35;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64708:17;;:55;;;;;;;;;;;;;;;;;;64101:670;64023:748:::0;;;:::o;53101:127::-;53175:7;53202:9;:18;53212:7;53202:18;;;;;;;;;;;;;;;;53195:25;;53101:127;;;:::o;45256:103::-;44501:13;:11;:13::i;:::-;45321:30:::1;45348:1;45321:18;:30::i;:::-;45256:103::o:0;68033:236::-;63104:25;37603:16;37614:4;37603:10;:16::i;:::-;68137:12:::1;68119:15;:30;;;;68164:6;68160:101;68175:4;;:11;;68173:1;:13;68160:101;;;68205:56;68244:8;68237:6;68234:1;68216:17;68223:1;68225:4;;68230:1;68225:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68216:6;:17::i;:::-;:19;;;;:::i;:::-;68215:28;;;;:::i;:::-;:37;;;;:::i;:::-;68253:4;;68258:1;68253:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68205:9;:56::i;:::-;68187:3;;;;;:::i;:::-;;;;68160:101;;;;68033:236:::0;;;:::o;63432:41::-;;;;;;;;;;;;;:::o;44615:87::-;44661:7;44688:6;;;;;;;;;;;44681:13;;44615:87;:::o;38007:147::-;38093:4;38117:6;:12;38124:4;38117:12;;;;;;;;;;;:20;;:29;38138:7;38117:29;;;;;;;;;;;;;;;;;;;;;;;;;38110:36;;38007:147;;;;:::o;52020:104::-;52076:13;52109:7;52102:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52020:104;:::o;37112:49::-;37157:4;37112:49;;;:::o;56353:436::-;56446:4;56463:13;56479:12;:10;:12::i;:::-;56463:28;;56502:24;56529:25;56539:5;56546:7;56529:9;:25::i;:::-;56502:52;;56593:15;56573:16;:35;;56565:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56686:60;56695:5;56702:7;56730:15;56711:16;:34;56686:8;:60::i;:::-;56777:4;56770:11;;;;56353:436;;;;:::o;53434:193::-;53513:4;53530:13;53546:12;:10;:12::i;:::-;53530:28;;53569;53579:5;53586:2;53590:6;53569:9;:28::i;:::-;53615:4;53608:11;;;53434:193;;;;:::o;40415:149::-;40499:18;40512:4;40499:12;:18::i;:::-;37603:16;37614:4;37603:10;:16::i;:::-;40530:26:::1;40542:4;40548:7;40530:11;:26::i;:::-;40415:149:::0;;;:::o;68463:161::-;63104:25;37603:16;37614:4;37603:10;:16::i;:::-;68547:6:::1;68541:22;;;68564:10;68583:6;68576:24;;;68609:4;68576:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68541:75;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68463:161:::0;;:::o;53690:151::-;53779:7;53806:11;:18;53818:5;53806:18;;;;;;;;;;;;;;;:27;53825:7;53806:27;;;;;;;;;;;;;;;;53799:34;;53690:151;;;;:::o;65961:158::-;66017:4;;;;;;;;;;;66011:24;;;66036:10;66056:4;66063:6;66011:59;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66081:30;66104:6;66081:22;:30::i;:::-;65961:158;:::o;45514:201::-;44501:13;:11;:13::i;:::-;45623:1:::1;45603:22;;:8;:22;;::::0;45595:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;45679:28;45698:8;45679:18;:28::i;:::-;45514:201:::0;:::o;6648:157::-;6733:4;6772:25;6757:40;;;:11;:40;;;;6750:47;;6648:157;;;:::o;34793:98::-;34846:7;34873:10;34866:17;;34793:98;:::o;60346:346::-;60465:1;60448:19;;:5;:19;;;60440:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60546:1;60527:21;;:7;:21;;;60519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60630:6;60600:11;:18;60612:5;60600:18;;;;;;;;;;;;;;;:27;60619:7;60600:27;;;;;;;;;;;;;;;:36;;;;60668:7;60652:32;;60661:5;60652:32;;;60677:6;60652:32;;;;;;:::i;:::-;;;;;;;;60346:346;;;:::o;38458:105::-;38525:30;38536:4;38542:12;:10;:12::i;:::-;38525:10;:30::i;:::-;38458:105;:::o;60983:419::-;61084:24;61111:25;61121:5;61128:7;61111:9;:25::i;:::-;61084:52;;61171:17;61151:16;:37;61147:248;;61233:6;61213:16;:26;;61205:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61317:51;61326:5;61333:7;61361:6;61342:16;:25;61317:8;:51::i;:::-;61147:248;61073:329;60983:419;;;:::o;64880:769::-;65021:1;65012:6;:10;65004:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;65075:13;;;;;;;;;;;65067:21;;:4;:21;;;;:44;;;;;65098:13;;;;;;;;;;;65092:19;;:2;:19;;;;65067:44;65064:127;;;65128:30;65141:4;65147:2;65151:6;65128:12;:30::i;:::-;65173:7;;65064:127;65212:13;;;;;;;;;;;65204:21;;:4;:21;;;65201:160;;65266:1;65250:15;;:17;65242:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;65295:33;65311:4;65317:2;65321:6;65295:15;:33::i;:::-;65343:7;;65201:160;65380:13;;;;;;;;;;;65374:19;;:2;:19;;;65371:271;;65413:9;:15;65423:4;65413:15;;;;;;;;;;;;;;;;;;;;;;;;;65410:112;;;65448:33;65464:4;65470:2;65474:6;65448:15;:33::i;:::-;65500:7;;65410:112;65536:25;65545:6;65552:8;;;;;;;;;;;65536;:25::i;:::-;65576:33;65592:4;65598:2;65602:6;65576:15;:33::i;:::-;65624:7;;65371:271;64880:769;;;;:::o;42716:238::-;42800:22;42808:4;42814:7;42800;:22::i;:::-;42795:152;;42871:4;42839:6;:12;42846:4;42839:12;;;;;;;;;;;:20;;:29;42860:7;42839:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;42922:12;:10;:12::i;:::-;42895:40;;42913:7;42895:40;;42907:4;42895:40;;;;;;;;;;42795:152;42716:238;;:::o;43134:239::-;43218:22;43226:4;43232:7;43218;:22::i;:::-;43214:152;;;43289:5;43257:6;:12;43264:4;43257:12;;;;;;;;;;;:20;;:29;43278:7;43257:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;43341:12;:10;:12::i;:::-;43314:40;;43332:7;43314:40;;43326:4;43314:40;;;;;;;;;;43214:152;43134:239;;:::o;44780:132::-;44855:12;:10;:12::i;:::-;44844:23;;:7;:5;:7::i;:::-;:23;;;44836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44780:132::o;45875:191::-;45949:16;45968:6;;;;;;;;;;;45949:25;;45994:8;45985:6;;:17;;;;;;;;;;;;;;;;;;46049:8;46018:40;;46039:8;46018:40;;;;;;;;;;;;45938:128;45875:191;:::o;68275:180::-;68339:4;68441:6;68395:15;68411:16;68430:5;68378:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68368:69;;;;;;68363:75;;:84;;;;:::i;:::-;68356:91;;68275:180;;;;:::o;66125:611::-;65906:4;65897:6;;:13;;;;;;;;;;;;;;;;;;66207:21:::1;66245:1;66231:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66207:40;;66276:4;;;;;;;;;;;66258;66263:1;66258:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66310:4;66292;66297:1;66292:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66326:15;66351:4;;;;;;;;;;;66344:22;;;66375:4;66344:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66326:55;;66408:1;66395:11;:14:::0;66392:39:::1;;66424:7;66410:21;;66392:39;66486:7;66471:11;:22;66468:260;;66504:15;;;;;;;;;;;:69;;;66588:11;66614:1;66657:4;66684:2;66702:15;66504:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;66468:260;66196:540;;65942:5:::0;65933:6;;:14;;;;;;;;;;;;;;;;;;66125:611;;:::o;66742:807::-;65906:4;65897:6;;:13;;;;;;;;;;;;;;;;;;66826:21:::1;66864:1;66850:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66826:40;;66895:4;;;;;;;;;;;66877;66882:1;66877:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66929:4;66911;66916:1;66911:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;66945:15;66970:4;;;;;;;;;;;66963:22;;;66994:4;66963:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66945:55;;67027:1;67014:11;:14:::0;67011:39:::1;;67043:7;67029:21;;67011:39;67105:7;67090:11;:22;67087:275;;67123:15;;;;;;;;;;;:69;;;67207:11;67233:1;67276:4;67303:17;;;;;;;;;;;67336:15;67123:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67087:275;67414:1;67376:37;67394:17;;;;;;;;;;;67376:9;:37::i;:::-;:39;67373:168;;;67440:4;67426:33;;;67468:17;;;;;;;;;;;67496:4;67503:37;67521:17;;;;;;;;;;;67503:9;:37::i;:::-;67426:115;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67373:168;66815:734;;65942:5:::0;65933:6;;:14;;;;;;;;;;;;;;;;;;66742:807;:::o;38853:492::-;38942:22;38950:4;38956:7;38942;:22::i;:::-;38937:401;;39130:28;39150:7;39130:19;:28::i;:::-;39231:38;39259:4;39251:13;;39266:2;39231:19;:38::i;:::-;39035:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38981:345;;;;;;;;;;;:::i;:::-;;;;;;;;38937:401;38853:492;;:::o;65655:178::-;65782:43;65798:6;65806:9;65817:7;65782:15;:43::i;:::-;65655:178;;;:::o;57259:806::-;57372:1;57356:18;;:4;:18;;;57348:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57449:1;57435:16;;:2;:16;;;57427:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57504:38;57525:4;57531:2;57535:6;57504:20;:38::i;:::-;57555:19;57577:9;:15;57587:4;57577:15;;;;;;;;;;;;;;;;57555:37;;57626:6;57611:11;:21;;57603:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;57743:6;57729:11;:20;57711:9;:15;57721:4;57711:15;;;;;;;;;;;;;;;:38;;;;57946:6;57929:9;:13;57939:2;57929:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;57996:2;57981:26;;57990:4;57981:26;;;58000:6;57981:26;;;;;;:::i;:::-;;;;;;;;58020:37;58040:4;58046:2;58050:6;58020:19;:37::i;:::-;57337:728;57259:806;;;:::o;67561:464::-;65906:4;65897:6;;:13;;;;;;;;;;;;;;;;;;67642:15:::1;67660:24;67678:4;67660:9;:24::i;:::-;67642:42;;67695:21;67733:1;67719:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67695:40;;67757:11;67749:7;:19;67746:42;;;67781:7;67769:19;;67746:42;67814:1;67802:11;:13;67799:219;;;67849:4;67831;67836:1;67831:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67879:4;;;;;;;;;;;67869;67874:1;67869:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;67898:15;;;;;;;;;;;:69;;;67968:11;67980:1;67982:4;67987:2;67990:15;67898:108;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67799:219;67631:394;;65942:5:::0;65933:6;;:14;;;;;;;;;;;;;;;;;;67561:464;;:::o;23748:151::-;23806:13;23839:52;23867:4;23851:22;;21623:2;23839:52;;:11;:52::i;:::-;23832:59;;23748:151;;;:::o;23144:447::-;23219:13;23245:19;23290:1;23281:6;23277:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23267:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23245:47;;23303:15;:6;23310:1;23303:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23329;:6;23336:1;23329:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;23360:9;23385:1;23376:6;23372:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;23360:26;;23355:131;23392:1;23388;:5;23355:131;;;23427:8;23444:3;23436:5;:11;23427:21;;;;;;;:::i;:::-;;;;;23415:6;23422:1;23415:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;23473:1;23463:11;;;;;23395:3;;;;:::i;:::-;;;23355:131;;;;23513:1;23504:5;:10;23496:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;23576:6;23562:21;;;23144:447;;;;:::o;62002:91::-;;;;:::o;62697:90::-;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:329::-;4614:6;4663:2;4651:9;4642:7;4638:23;4634:32;4631:119;;;4669:79;;:::i;:::-;4631:119;4789:1;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4760:117;4555:329;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:77::-;5552:7;5581:5;5570:16;;5515:77;;;:::o;5598:122::-;5671:24;5689:5;5671:24;:::i;:::-;5664:5;5661:35;5651:63;;5710:1;5707;5700:12;5651:63;5598:122;:::o;5726:139::-;5772:5;5810:6;5797:20;5788:29;;5826:33;5853:5;5826:33;:::i;:::-;5726:139;;;;:::o;5871:329::-;5930:6;5979:2;5967:9;5958:7;5954:23;5950:32;5947:119;;;5985:79;;:::i;:::-;5947:119;6105:1;6130:53;6175:7;6166:6;6155:9;6151:22;6130:53;:::i;:::-;6120:63;;6076:117;5871:329;;;;:::o;6206:118::-;6293:24;6311:5;6293:24;:::i;:::-;6288:3;6281:37;6206:118;;:::o;6330:222::-;6423:4;6461:2;6450:9;6446:18;6438:26;;6474:71;6542:1;6531:9;6527:17;6518:6;6474:71;:::i;:::-;6330:222;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:118::-;7125:24;7143:5;7125:24;:::i;:::-;7120:3;7113:37;7038:118;;:::o;7162:222::-;7255:4;7293:2;7282:9;7278:18;7270:26;;7306:71;7374:1;7363:9;7359:17;7350:6;7306:71;:::i;:::-;7162:222;;;;:::o;7390:86::-;7425:7;7465:4;7458:5;7454:16;7443:27;;7390:86;;;:::o;7482:112::-;7565:22;7581:5;7565:22;:::i;:::-;7560:3;7553:35;7482:112;;:::o;7600:214::-;7689:4;7727:2;7716:9;7712:18;7704:26;;7740:67;7804:1;7793:9;7789:17;7780:6;7740:67;:::i;:::-;7600:214;;;;:::o;7820:474::-;7888:6;7896;7945:2;7933:9;7924:7;7920:23;7916:32;7913:119;;;7951:79;;:::i;:::-;7913:119;8071:1;8096:53;8141:7;8132:6;8121:9;8117:22;8096:53;:::i;:::-;8086:63;;8042:117;8198:2;8224:53;8269:7;8260:6;8249:9;8245:22;8224:53;:::i;:::-;8214:63;;8169:118;7820:474;;;;;:::o;8300:329::-;8359:6;8408:2;8396:9;8387:7;8383:23;8379:32;8376:119;;;8414:79;;:::i;:::-;8376:119;8534:1;8559:53;8604:7;8595:6;8584:9;8580:22;8559:53;:::i;:::-;8549:63;;8505:117;8300:329;;;;:::o;8635:117::-;8744:1;8741;8734:12;8758:117;8867:1;8864;8857:12;8881:117;8990:1;8987;8980:12;9021:568;9094:8;9104:6;9154:3;9147:4;9139:6;9135:17;9131:27;9121:122;;9162:79;;:::i;:::-;9121:122;9275:6;9262:20;9252:30;;9305:18;9297:6;9294:30;9291:117;;;9327:79;;:::i;:::-;9291:117;9441:4;9433:6;9429:17;9417:29;;9495:3;9487:4;9479:6;9475:17;9465:8;9461:32;9458:41;9455:128;;;9502:79;;:::i;:::-;9455:128;9021:568;;;;;:::o;9595:559::-;9681:6;9689;9738:2;9726:9;9717:7;9713:23;9709:32;9706:119;;;9744:79;;:::i;:::-;9706:119;9892:1;9881:9;9877:17;9864:31;9922:18;9914:6;9911:30;9908:117;;;9944:79;;:::i;:::-;9908:117;10057:80;10129:7;10120:6;10109:9;10105:22;10057:80;:::i;:::-;10039:98;;;;9835:312;9595:559;;;;;:::o;10160:60::-;10188:3;10209:5;10202:12;;10160:60;;;:::o;10226:142::-;10276:9;10309:53;10327:34;10336:24;10354:5;10336:24;:::i;:::-;10327:34;:::i;:::-;10309:53;:::i;:::-;10296:66;;10226:142;;;:::o;10374:126::-;10424:9;10457:37;10488:5;10457:37;:::i;:::-;10444:50;;10374:126;;;:::o;10506:151::-;10581:9;10614:37;10645:5;10614:37;:::i;:::-;10601:50;;10506:151;;;:::o;10663:181::-;10775:62;10831:5;10775:62;:::i;:::-;10770:3;10763:75;10663:181;;:::o;10850:272::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11019:96;11112:1;11101:9;11097:17;11088:6;11019:96;:::i;:::-;10850:272;;;;:::o;11128:180::-;11176:77;11173:1;11166:88;11273:4;11270:1;11263:15;11297:4;11294:1;11287:15;11314:320;11358:6;11395:1;11389:4;11385:12;11375:22;;11442:1;11436:4;11432:12;11463:18;11453:81;;11519:4;11511:6;11507:17;11497:27;;11453:81;11581:2;11573:6;11570:14;11550:18;11547:38;11544:84;;11600:18;;:::i;:::-;11544:84;11365:269;11314:320;;;:::o;11640:234::-;11780:34;11776:1;11768:6;11764:14;11757:58;11849:17;11844:2;11836:6;11832:15;11825:42;11640:234;:::o;11880:366::-;12022:3;12043:67;12107:2;12102:3;12043:67;:::i;:::-;12036:74;;12119:93;12208:3;12119:93;:::i;:::-;12237:2;12232:3;12228:12;12221:19;;11880:366;;;:::o;12252:419::-;12418:4;12456:2;12445:9;12441:18;12433:26;;12505:9;12499:4;12495:20;12491:1;12480:9;12476:17;12469:47;12533:131;12659:4;12533:131;:::i;:::-;12525:139;;12252:419;;;:::o;12677:180::-;12725:77;12722:1;12715:88;12822:4;12819:1;12812:15;12846:4;12843:1;12836:15;12863:191;12903:3;12922:20;12940:1;12922:20;:::i;:::-;12917:25;;12956:20;12974:1;12956:20;:::i;:::-;12951:25;;12999:1;12996;12992:9;12985:16;;13020:3;13017:1;13014:10;13011:36;;;13027:18;;:::i;:::-;13011:36;12863:191;;;;:::o;13060:143::-;13117:5;13148:6;13142:13;13133:22;;13164:33;13191:5;13164:33;:::i;:::-;13060:143;;;;:::o;13209:351::-;13279:6;13328:2;13316:9;13307:7;13303:23;13299:32;13296:119;;;13334:79;;:::i;:::-;13296:119;13454:1;13479:64;13535:7;13526:6;13515:9;13511:22;13479:64;:::i;:::-;13469:74;;13425:128;13209:351;;;;:::o;13566:332::-;13687:4;13725:2;13714:9;13710:18;13702:26;;13738:71;13806:1;13795:9;13791:17;13782:6;13738:71;:::i;:::-;13819:72;13887:2;13876:9;13872:18;13863:6;13819:72;:::i;:::-;13566:332;;;;;:::o;13904:::-;14025:4;14063:2;14052:9;14048:18;14040:26;;14076:71;14144:1;14133:9;14129:17;14120:6;14076:71;:::i;:::-;14157:72;14225:2;14214:9;14210:18;14201:6;14157:72;:::i;:::-;13904:332;;;;;:::o;14242:116::-;14312:21;14327:5;14312:21;:::i;:::-;14305:5;14302:32;14292:60;;14348:1;14345;14338:12;14292:60;14242:116;:::o;14364:137::-;14418:5;14449:6;14443:13;14434:22;;14465:30;14489:5;14465:30;:::i;:::-;14364:137;;;;:::o;14507:345::-;14574:6;14623:2;14611:9;14602:7;14598:23;14594:32;14591:119;;;14629:79;;:::i;:::-;14591:119;14749:1;14774:61;14827:7;14818:6;14807:9;14803:22;14774:61;:::i;:::-;14764:71;;14720:125;14507:345;;;;:::o;14858:180::-;14906:77;14903:1;14896:88;15003:4;15000:1;14993:15;15027:4;15024:1;15017:15;15044:410;15084:7;15107:20;15125:1;15107:20;:::i;:::-;15102:25;;15141:20;15159:1;15141:20;:::i;:::-;15136:25;;15196:1;15193;15189:9;15218:30;15236:11;15218:30;:::i;:::-;15207:41;;15397:1;15388:7;15384:15;15381:1;15378:22;15358:1;15351:9;15331:83;15308:139;;15427:18;;:::i;:::-;15308:139;15092:362;15044:410;;;;:::o;15460:233::-;15499:3;15522:24;15540:5;15522:24;:::i;:::-;15513:33;;15568:66;15561:5;15558:77;15555:103;;15638:18;;:::i;:::-;15555:103;15685:1;15678:5;15674:13;15667:20;;15460:233;;;:::o;15699:224::-;15839:34;15835:1;15827:6;15823:14;15816:58;15908:7;15903:2;15895:6;15891:15;15884:32;15699:224;:::o;15929:366::-;16071:3;16092:67;16156:2;16151:3;16092:67;:::i;:::-;16085:74;;16168:93;16257:3;16168:93;:::i;:::-;16286:2;16281:3;16277:12;16270:19;;15929:366;;;:::o;16301:419::-;16467:4;16505:2;16494:9;16490:18;16482:26;;16554:9;16548:4;16544:20;16540:1;16529:9;16525:17;16518:47;16582:131;16708:4;16582:131;:::i;:::-;16574:139;;16301:419;;;:::o;16726:143::-;16783:5;16814:6;16808:13;16799:22;;16830:33;16857:5;16830:33;:::i;:::-;16726:143;;;;:::o;16875:351::-;16945:6;16994:2;16982:9;16973:7;16969:23;16965:32;16962:119;;;17000:79;;:::i;:::-;16962:119;17120:1;17145:64;17201:7;17192:6;17181:9;17177:22;17145:64;:::i;:::-;17135:74;;17091:128;16875:351;;;;:::o;17232:442::-;17381:4;17419:2;17408:9;17404:18;17396:26;;17432:71;17500:1;17489:9;17485:17;17476:6;17432:71;:::i;:::-;17513:72;17581:2;17570:9;17566:18;17557:6;17513:72;:::i;:::-;17595;17663:2;17652:9;17648:18;17639:6;17595:72;:::i;:::-;17232:442;;;;;;:::o;17680:225::-;17820:34;17816:1;17808:6;17804:14;17797:58;17889:8;17884:2;17876:6;17872:15;17865:33;17680:225;:::o;17911:366::-;18053:3;18074:67;18138:2;18133:3;18074:67;:::i;:::-;18067:74;;18150:93;18239:3;18150:93;:::i;:::-;18268:2;18263:3;18259:12;18252:19;;17911:366;;;:::o;18283:419::-;18449:4;18487:2;18476:9;18472:18;18464:26;;18536:9;18530:4;18526:20;18522:1;18511:9;18507:17;18500:47;18564:131;18690:4;18564:131;:::i;:::-;18556:139;;18283:419;;;:::o;18708:223::-;18848:34;18844:1;18836:6;18832:14;18825:58;18917:6;18912:2;18904:6;18900:15;18893:31;18708:223;:::o;18937:366::-;19079:3;19100:67;19164:2;19159:3;19100:67;:::i;:::-;19093:74;;19176:93;19265:3;19176:93;:::i;:::-;19294:2;19289:3;19285:12;19278:19;;18937:366;;;:::o;19309:419::-;19475:4;19513:2;19502:9;19498:18;19490:26;;19562:9;19556:4;19552:20;19548:1;19537:9;19533:17;19526:47;19590:131;19716:4;19590:131;:::i;:::-;19582:139;;19309:419;;;:::o;19734:221::-;19874:34;19870:1;19862:6;19858:14;19851:58;19943:4;19938:2;19930:6;19926:15;19919:29;19734:221;:::o;19961:366::-;20103:3;20124:67;20188:2;20183:3;20124:67;:::i;:::-;20117:74;;20200:93;20289:3;20200:93;:::i;:::-;20318:2;20313:3;20309:12;20302:19;;19961:366;;;:::o;20333:419::-;20499:4;20537:2;20526:9;20522:18;20514:26;;20586:9;20580:4;20576:20;20572:1;20561:9;20557:17;20550:47;20614:131;20740:4;20614:131;:::i;:::-;20606:139;;20333:419;;;:::o;20758:179::-;20898:31;20894:1;20886:6;20882:14;20875:55;20758:179;:::o;20943:366::-;21085:3;21106:67;21170:2;21165:3;21106:67;:::i;:::-;21099:74;;21182:93;21271:3;21182:93;:::i;:::-;21300:2;21295:3;21291:12;21284:19;;20943:366;;;:::o;21315:419::-;21481:4;21519:2;21508:9;21504:18;21496:26;;21568:9;21562:4;21558:20;21554:1;21543:9;21539:17;21532:47;21596:131;21722:4;21596:131;:::i;:::-;21588:139;;21315:419;;;:::o;21740:166::-;21880:18;21876:1;21868:6;21864:14;21857:42;21740:166;:::o;21912:366::-;22054:3;22075:67;22139:2;22134:3;22075:67;:::i;:::-;22068:74;;22151:93;22240:3;22151:93;:::i;:::-;22269:2;22264:3;22260:12;22253:19;;21912:366;;;:::o;22284:419::-;22450:4;22488:2;22477:9;22473:18;22465:26;;22537:9;22531:4;22527:20;22523:1;22512:9;22508:17;22501:47;22565:131;22691:4;22565:131;:::i;:::-;22557:139;;22284:419;;;:::o;22709:158::-;22849:10;22845:1;22837:6;22833:14;22826:34;22709:158;:::o;22873:365::-;23015:3;23036:66;23100:1;23095:3;23036:66;:::i;:::-;23029:73;;23111:93;23200:3;23111:93;:::i;:::-;23229:2;23224:3;23220:12;23213:19;;22873:365;;;:::o;23244:419::-;23410:4;23448:2;23437:9;23433:18;23425:26;;23497:9;23491:4;23487:20;23483:1;23472:9;23468:17;23461:47;23525:131;23651:4;23525:131;:::i;:::-;23517:139;;23244:419;;;:::o;23669:182::-;23809:34;23805:1;23797:6;23793:14;23786:58;23669:182;:::o;23857:366::-;23999:3;24020:67;24084:2;24079:3;24020:67;:::i;:::-;24013:74;;24096:93;24185:3;24096:93;:::i;:::-;24214:2;24209:3;24205:12;24198:19;;23857:366;;;:::o;24229:419::-;24395:4;24433:2;24422:9;24418:18;24410:26;;24482:9;24476:4;24472:20;24468:1;24457:9;24453:17;24446:47;24510:131;24636:4;24510:131;:::i;:::-;24502:139;;24229:419;;;:::o;24654:79::-;24693:7;24722:5;24711:16;;24654:79;;;:::o;24739:157::-;24844:45;24864:24;24882:5;24864:24;:::i;:::-;24844:45;:::i;:::-;24839:3;24832:58;24739:157;;:::o;24902:94::-;24935:8;24983:5;24979:2;24975:14;24954:35;;24902:94;;;:::o;25002:::-;25041:7;25070:20;25084:5;25070:20;:::i;:::-;25059:31;;25002:94;;;:::o;25102:100::-;25141:7;25170:26;25190:5;25170:26;:::i;:::-;25159:37;;25102:100;;;:::o;25208:157::-;25313:45;25333:24;25351:5;25333:24;:::i;:::-;25313:45;:::i;:::-;25308:3;25301:58;25208:157;;:::o;25371:538::-;25539:3;25554:75;25625:3;25616:6;25554:75;:::i;:::-;25654:2;25649:3;25645:12;25638:19;;25667:75;25738:3;25729:6;25667:75;:::i;:::-;25767:2;25762:3;25758:12;25751:19;;25780:75;25851:3;25842:6;25780:75;:::i;:::-;25880:2;25875:3;25871:12;25864:19;;25900:3;25893:10;;25371:538;;;;;;:::o;25915:180::-;25963:77;25960:1;25953:88;26060:4;26057:1;26050:15;26084:4;26081:1;26074:15;26101:176;26133:1;26150:20;26168:1;26150:20;:::i;:::-;26145:25;;26184:20;26202:1;26184:20;:::i;:::-;26179:25;;26223:1;26213:35;;26228:18;;:::i;:::-;26213:35;26269:1;26266;26262:9;26257:14;;26101:176;;;;:::o;26283:180::-;26331:77;26328:1;26321:88;26428:4;26425:1;26418:15;26452:4;26449:1;26442:15;26469:85;26514:7;26543:5;26532:16;;26469:85;;;:::o;26560:158::-;26618:9;26651:61;26669:42;26678:32;26704:5;26678:32;:::i;:::-;26669:42;:::i;:::-;26651:61;:::i;:::-;26638:74;;26560:158;;;:::o;26724:147::-;26819:45;26858:5;26819:45;:::i;:::-;26814:3;26807:58;26724:147;;:::o;26877:114::-;26944:6;26978:5;26972:12;26962:22;;26877:114;;;:::o;26997:184::-;27096:11;27130:6;27125:3;27118:19;27170:4;27165:3;27161:14;27146:29;;26997:184;;;;:::o;27187:132::-;27254:4;27277:3;27269:11;;27307:4;27302:3;27298:14;27290:22;;27187:132;;;:::o;27325:108::-;27402:24;27420:5;27402:24;:::i;:::-;27397:3;27390:37;27325:108;;:::o;27439:179::-;27508:10;27529:46;27571:3;27563:6;27529:46;:::i;:::-;27607:4;27602:3;27598:14;27584:28;;27439:179;;;;:::o;27624:113::-;27694:4;27726;27721:3;27717:14;27709:22;;27624:113;;;:::o;27773:732::-;27892:3;27921:54;27969:5;27921:54;:::i;:::-;27991:86;28070:6;28065:3;27991:86;:::i;:::-;27984:93;;28101:56;28151:5;28101:56;:::i;:::-;28180:7;28211:1;28196:284;28221:6;28218:1;28215:13;28196:284;;;28297:6;28291:13;28324:63;28383:3;28368:13;28324:63;:::i;:::-;28317:70;;28410:60;28463:6;28410:60;:::i;:::-;28400:70;;28256:224;28243:1;28240;28236:9;28231:14;;28196:284;;;28200:14;28496:3;28489:10;;27897:608;;;27773:732;;;;:::o;28511:831::-;28774:4;28812:3;28801:9;28797:19;28789:27;;28826:71;28894:1;28883:9;28879:17;28870:6;28826:71;:::i;:::-;28907:80;28983:2;28972:9;28968:18;28959:6;28907:80;:::i;:::-;29034:9;29028:4;29024:20;29019:2;29008:9;29004:18;28997:48;29062:108;29165:4;29156:6;29062:108;:::i;:::-;29054:116;;29180:72;29248:2;29237:9;29233:18;29224:6;29180:72;:::i;:::-;29262:73;29330:3;29319:9;29315:19;29306:6;29262:73;:::i;:::-;28511:831;;;;;;;;:::o;29348:148::-;29450:11;29487:3;29472:18;;29348:148;;;;:::o;29502:173::-;29642:25;29638:1;29630:6;29626:14;29619:49;29502:173;:::o;29681:402::-;29841:3;29862:85;29944:2;29939:3;29862:85;:::i;:::-;29855:92;;29956:93;30045:3;29956:93;:::i;:::-;30074:2;30069:3;30065:12;30058:19;;29681:402;;;:::o;30089:390::-;30195:3;30223:39;30256:5;30223:39;:::i;:::-;30278:89;30360:6;30355:3;30278:89;:::i;:::-;30271:96;;30376:65;30434:6;30429:3;30422:4;30415:5;30411:16;30376:65;:::i;:::-;30466:6;30461:3;30457:16;30450:23;;30199:280;30089:390;;;;:::o;30485:167::-;30625:19;30621:1;30613:6;30609:14;30602:43;30485:167;:::o;30658:402::-;30818:3;30839:85;30921:2;30916:3;30839:85;:::i;:::-;30832:92;;30933:93;31022:3;30933:93;:::i;:::-;31051:2;31046:3;31042:12;31035:19;;30658:402;;;:::o;31066:967::-;31448:3;31470:148;31614:3;31470:148;:::i;:::-;31463:155;;31635:95;31726:3;31717:6;31635:95;:::i;:::-;31628:102;;31747:148;31891:3;31747:148;:::i;:::-;31740:155;;31912:95;32003:3;31994:6;31912:95;:::i;:::-;31905:102;;32024:3;32017:10;;31066:967;;;;;:::o;32039:224::-;32179:34;32175:1;32167:6;32163:14;32156:58;32248:7;32243:2;32235:6;32231:15;32224:32;32039:224;:::o;32269:366::-;32411:3;32432:67;32496:2;32491:3;32432:67;:::i;:::-;32425:74;;32508:93;32597:3;32508:93;:::i;:::-;32626:2;32621:3;32617:12;32610:19;;32269:366;;;:::o;32641:419::-;32807:4;32845:2;32834:9;32830:18;32822:26;;32894:9;32888:4;32884:20;32880:1;32869:9;32865:17;32858:47;32922:131;33048:4;32922:131;:::i;:::-;32914:139;;32641:419;;;:::o;33066:222::-;33206:34;33202:1;33194:6;33190:14;33183:58;33275:5;33270:2;33262:6;33258:15;33251:30;33066:222;:::o;33294:366::-;33436:3;33457:67;33521:2;33516:3;33457:67;:::i;:::-;33450:74;;33533:93;33622:3;33533:93;:::i;:::-;33651:2;33646:3;33642:12;33635:19;;33294:366;;;:::o;33666:419::-;33832:4;33870:2;33859:9;33855:18;33847:26;;33919:9;33913:4;33909:20;33905:1;33894:9;33890:17;33883:47;33947:131;34073:4;33947:131;:::i;:::-;33939:139;;33666:419;;;:::o;34091:225::-;34231:34;34227:1;34219:6;34215:14;34208:58;34300:8;34295:2;34287:6;34283:15;34276:33;34091:225;:::o;34322:366::-;34464:3;34485:67;34549:2;34544:3;34485:67;:::i;:::-;34478:74;;34561:93;34650:3;34561:93;:::i;:::-;34679:2;34674:3;34670:12;34663:19;;34322:366;;;:::o;34694:419::-;34860:4;34898:2;34887:9;34883:18;34875:26;;34947:9;34941:4;34937:20;34933:1;34922:9;34918:17;34911:47;34975:131;35101:4;34975:131;:::i;:::-;34967:139;;34694:419;;;:::o;35119:171::-;35158:3;35181:24;35199:5;35181:24;:::i;:::-;35172:33;;35227:4;35220:5;35217:15;35214:41;;35235:18;;:::i;:::-;35214:41;35282:1;35275:5;35271:13;35264:20;;35119:171;;;:::o;35296:182::-;35436:34;35432:1;35424:6;35420:14;35413:58;35296:182;:::o;35484:366::-;35626:3;35647:67;35711:2;35706:3;35647:67;:::i;:::-;35640:74;;35723:93;35812:3;35723:93;:::i;:::-;35841:2;35836:3;35832:12;35825:19;;35484:366;;;:::o;35856:419::-;36022:4;36060:2;36049:9;36045:18;36037:26;;36109:9;36103:4;36099:20;36095:1;36084:9;36080:17;36073:47;36137:131;36263:4;36137:131;:::i;:::-;36129:139;;35856:419;;;:::o

Swarm Source

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