ETH Price: $3,926.95 (+0.87%)

Contract

0x110dA1C895c1A06aB983Bb5122aEeFBD34537ddB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve204441092024-08-02 23:22:59135 days ago1722640979IN
0x110dA1C8...D34537ddB
0 ETH0.000043191.73902161
Transfer190366162024-01-18 22:05:47332 days ago1705615547IN
0x110dA1C8...D34537ddB
0 ETH0.0014084435.93528268
Approve187419262023-12-08 13:46:23374 days ago1702043183IN
0x110dA1C8...D34537ddB
0 ETH0.0012560750.67082825
Approve185649142023-11-13 18:57:59398 days ago1699901879IN
0x110dA1C8...D34537ddB
0 ETH0.002090344.40558599
Approve185572112023-11-12 17:06:47399 days ago1699808807IN
0x110dA1C8...D34537ddB
0 ETH0.0026960557.50854778
Approve185541952023-11-12 6:57:47400 days ago1699772267IN
0x110dA1C8...D34537ddB
0 ETH0.0008344617.79960765
Approve185541822023-11-12 6:55:11400 days ago1699772111IN
0x110dA1C8...D34537ddB
0 ETH0.0005213517.54150926
Approve185375852023-11-09 23:11:35402 days ago1699571495IN
0x110dA1C8...D34537ddB
0 ETH0.0011208945.21732156
Approve185375852023-11-09 23:11:35402 days ago1699571495IN
0x110dA1C8...D34537ddB
0 ETH0.001123645.21732156
Approve185338442023-11-09 10:39:11403 days ago1699526351IN
0x110dA1C8...D34537ddB
0 ETH0.0008442633.97570389
Approve185338422023-11-09 10:38:47403 days ago1699526327IN
0x110dA1C8...D34537ddB
0 ETH0.0008534.28975088
Approve185338402023-11-09 10:38:23403 days ago1699526303IN
0x110dA1C8...D34537ddB
0 ETH0.000886735.68372136
Approve185335892023-11-09 9:47:47403 days ago1699523267IN
0x110dA1C8...D34537ddB
0 ETH0.0008441530.99747753
Approve185335882023-11-09 9:47:35403 days ago1699523255IN
0x110dA1C8...D34537ddB
0 ETH0.0014601230.97879874
Transfer185171352023-11-07 2:35:11405 days ago1699324511IN
0x110dA1C8...D34537ddB
0 ETH0.0014942222.08627749
Approve185070882023-11-05 16:47:23406 days ago1699202843IN
0x110dA1C8...D34537ddB
0 ETH0.0012326326.33328902
Approve185041662023-11-05 6:56:59407 days ago1699167419IN
0x110dA1C8...D34537ddB
0 ETH0.0006665322.39031521
Approve185041412023-11-05 6:51:59407 days ago1699167119IN
0x110dA1C8...D34537ddB
0 ETH0.0005912719.86201963
Approve185017562023-11-04 22:50:59407 days ago1699138259IN
0x110dA1C8...D34537ddB
0 ETH0.0007243215.45018472
Approve185017492023-11-04 22:49:35407 days ago1699138175IN
0x110dA1C8...D34537ddB
0 ETH0.00066714.24959642
Approve185016832023-11-04 22:36:11407 days ago1699137371IN
0x110dA1C8...D34537ddB
0 ETH0.0004592215.43240842
Approve185011352023-11-04 20:45:23407 days ago1699130723IN
0x110dA1C8...D34537ddB
0 ETH0.0006077112.95963543
Approve185006492023-11-04 19:07:11407 days ago1699124831IN
0x110dA1C8...D34537ddB
0 ETH0.0003974813.37396226
Approve184988732023-11-04 13:09:23408 days ago1699103363IN
0x110dA1C8...D34537ddB
0 ETH0.0006029722.50818034
Approve184988422023-11-04 13:03:11408 days ago1699102991IN
0x110dA1C8...D34537ddB
0 ETH0.0006514826.28127669
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Altar

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-26
*/

// Sources flattened with hardhat v2.9.1 https://hardhat.org

// File contracts/library/SafeMath.sol
// SPDX-License-Identifier: MIT

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 contracts/interfaces/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 contracts/interfaces/IAccessControlEnumerable.sol

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        external
        view
        returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}


// File 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 contracts/interfaces/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 contracts/utils/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 contracts/library/Math.sol

// OpenZeppelin Contracts (last updated v4.7.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) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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 10, 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 * 8) < value ? 1 : 0);
        }
    }
}


// File contracts/library/Strings.sol

// OpenZeppelin Contracts (last updated v4.7.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 `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);
    }
}


// File contracts/utils/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:
 *
 * ```
 * 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}:
 *
 * ```
 * 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.
 */
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 contracts/library/EnumerableSet.sol


pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set)
        internal
        view
        returns (bytes32[] memory)
    {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set)
        internal
        view
        returns (address[] memory)
    {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set)
        internal
        view
        returns (uint256[] memory)
    {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}


// File contracts/utils/AccessControlEnumerable.sol

pragma solidity ^0.8.0;



/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is
    IAccessControlEnumerable,
    AccessControl
{
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        public
        view
        virtual
        override
        returns (address)
    {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account)
        internal
        virtual
        override
    {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account)
        internal
        virtual
        override
    {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}


// File contracts/interfaces/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.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 contracts/interfaces/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 contracts/utils/ERC20.sol

pragma solidity ^0.8.0;



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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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 contracts/utils/ERC20Burnable.sol

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File contracts/utils/ERC20PresetMinterRebaser.sol

// File: contracts/ERC20PresetMinterRebaser.sol

pragma solidity ^0.8.0;

// import access control and erc20 burnable


contract ERC20PresetMinterRebaser is
    Context,
    AccessControlEnumerable,
    ERC20Burnable
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant REBASER_ROLE = keccak256("REBASER_ROLE");

    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(REBASER_ROLE, _msgSender());
    }
}


// File contracts/utils/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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// File contracts/Altar.sol

pragma solidity ^0.8.0;




/* 
    Can you engage in the Gods' Gambit and still get through it unscathed?
    Find out now:
        - Website: https://altar.money   
        - Twitter: https://twitter.com/altar_money
        - Telegram: https://t.me/altar_money
*/

abstract contract IALTAR {
    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(
        uint256 epoch,
        uint256 prevAltarsScalingFactor,
        uint256 newAltarsScalingFactor
    );

    /* - Extra Events - */
    /**
     * @notice Tokens minted event
     */
    event Mint(address to, uint256 amount);

    /**
     * @notice Tokens burned event
     */
    event Burn(address from, uint256 amount);
}

contract Altar is ERC20PresetMinterRebaser, Ownable, IALTAR {
    using SafeMath for uint256;
    
    // max wallet
    uint maxTxAmount = 20000000 * 10**18;
    uint maxWalletAmount = 20000000 * 10**18;
    mapping(address => bool) public excludedMaxTxAmount;
    mapping(address => bool) public excludedMaxWalletAmount;
    mapping(address => bool) public ammPairs;
    bool public tradingEnabled = true;
    uint lastDebaseBlock;
    uint rebaseDeltaBlock;
    bool public toggleLimits = true;
    bool public rebaseActivated = true;

    /**
     * @dev Guard variable for re-entrancy checks. Not currently used
     */
    bool internal _notEntered;

    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;

    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;

    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public altarsScalingFactor;

    mapping(address => uint256) internal _altarBalances;

    mapping(address => mapping(address => uint256)) internal _allowedFragments;

    uint256 public initSupply;

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    bytes32 public DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );

    uint256 private INIT_SUPPLY =  1000000000 * 10**18;
    uint256 private _totalSupply;

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    constructor(address _factory, address weth) ERC20PresetMinterRebaser("Altar", "ALTR") {
        excludedMaxTxAmount[owner()] = true;
        excludedMaxTxAmount[address(this)] = true;
        excludedMaxTxAmount[address(0xdead)] = true;
        excludedMaxTxAmount[address(0)] = true;
        excludedMaxWalletAmount[owner()] = true;
        excludedMaxWalletAmount[address(this)] = true;
        excludedMaxWalletAmount[address(0xdead)] = true;
        excludedMaxWalletAmount[address(0)] = true;
        IUniswapV2Factory factory = IUniswapV2Factory(_factory);
        factory.createPair(address(this), weth);
        rebaseDeltaBlock = 100;
        address pair = factory.getPair(address(this), weth);
        setAmmPair(pair, true);
        altarsScalingFactor = BASE;
        initSupply = _fragmentToAltar(INIT_SUPPLY);
        _totalSupply = INIT_SUPPLY;
        _altarBalances[owner()] = initSupply;
        lastDebaseBlock = block.number;
        emit Transfer(address(0), msg.sender, INIT_SUPPLY);
    }

    // ADMIN METHOD
    function setMaxWalletAmount(uint256 amount) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        maxWalletAmount = amount;
    }

    function setMaxTxAmount(uint256 amount) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        maxTxAmount = amount;
    }
    
    function setExcludedMaxTxAmount(address wallet, bool value) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        excludedMaxTxAmount[wallet] = value;
    }

    function setRebaseActivated(bool value) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        rebaseActivated = value;
    }

    function setRebaseDeltaBlock(uint value) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        rebaseDeltaBlock = value;
    }

    function setToggleLimits(bool value) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        toggleLimits = value;
    }

    function setExcludedMaxWalletAmount(address wallet, bool value) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        excludedMaxWalletAmount[wallet] = value;
    }

    function setAmmPair(address pair, bool value) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        ammPairs[pair] = value;
    }

    function setTradingEnabled(bool value) public{
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role");
        tradingEnabled = value;
    }

    /**
     * @return The total number of fragments.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @notice Computes the current max scaling factor
     */
    function maxScalingFactor() external view returns (uint256) {
        return _maxScalingFactor();
    }

    function _maxScalingFactor() internal view returns (uint256) {
        // scaling factor can only go up to 2**256-1 = initSupply * altarsScalingFactor
        // this is used to check if altarsScalingFactor will be too high to compute balances when rebasing.
        return uint256(int256(-1)) / initSupply;
    }

    /**
     * @notice Mints new tokens, increasing totalSupply, initSupply, and a users balance.
     */
    function mint(address to, uint256 amount) external returns (bool) {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mint(to, amount);
        return true;
    }

    function _mint(address to, uint256 amount) internal override {
        // increase totalSupply
        _totalSupply = _totalSupply.add(amount);

        // get underlying value
        uint256 altarValue = _fragmentToAltar(amount);

        // increase initSupply
        initSupply = initSupply.add(altarValue);

        // make sure the mint didnt push maxScalingFactor too low
        require(
            altarsScalingFactor <= _maxScalingFactor(),
            "max scaling factor too low"
        );

        // add balance
        _altarBalances[to] = _altarBalances[to].add(altarValue);

        emit Mint(to, amount);
        emit Transfer(address(0), to, amount);
    }

    /**
     * @notice Burns tokens from msg.sender, decreases totalSupply, initSupply, and a users balance.
     */

    function burn(uint256 amount) public override {
        _burn(amount);
    }

    function _burn(uint256 amount) internal {
        // decrease totalSupply
        _totalSupply = _totalSupply.sub(amount);

        // get underlying value
        uint256 altarValue = _fragmentToAltar(amount);

        // decrease initSupply
        initSupply = initSupply.sub(altarValue);

        // decrease balance
        _altarBalances[msg.sender] = _altarBalances[msg.sender].sub(altarValue);
        emit Burn(msg.sender, amount);
        emit Transfer(msg.sender, address(0), amount);
    }

    /**
     * @notice Mints new tokens using underlying amount, increasing totalSupply, initSupply, and a users balance.
     */
    function mintUnderlying(address to, uint256 amount) public returns (bool) {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mintUnderlying(to, amount);
        return true;
    }

    function _mintUnderlying(address to, uint256 amount) internal {
        // increase initSupply
        initSupply = initSupply.add(amount);

        // get external value
        uint256 scaledAmount = _altarToFragment(amount);

        // increase totalSupply
        _totalSupply = _totalSupply.add(scaledAmount);

        // make sure the mint didnt push maxScalingFactor too low
        require(
            altarsScalingFactor <= _maxScalingFactor(),
            "max scaling factor too low"
        );

        // add balance
        _altarBalances[to] = _altarBalances[to].add(amount);

        emit Mint(to, scaledAmount);
        emit Transfer(address(0), to, scaledAmount);
    }

    /**
     * @dev Transfer underlying balance to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transferUnderlying(address to, uint256 value)
        public
        validRecipient(to)
        returns (bool)
    {
        if (toggleLimits){
            if (msg.sender != owner() && to != owner() && to != address(0) && to != address(0xdead)){
                if (!excludedMaxWalletAmount[msg.sender] && !excludedMaxWalletAmount[to]){
                    require(_altarToFragment(value) + balanceOf(to) <= maxWalletAmount, "Altar: Exceeds maximum wallet amount");
                }
            }
        }
        // sub from balance of sender
        _altarBalances[msg.sender] = _altarBalances[msg.sender].sub(value);

        // add to balance of receiver
        _altarBalances[to] = _altarBalances[to].add(value);
        emit Transfer(msg.sender, to, _altarToFragment(value));
        return true;
    }

    /* - ERC20 functionality - */

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        override
        validRecipient(to)
        returns (bool)
    {
        if (toggleLimits){
            if (msg.sender != owner() && to != owner() && to != address(0) && to != address(0xdead)){
                if (!excludedMaxWalletAmount[msg.sender] && !excludedMaxWalletAmount[to]){
                    require(value + balanceOf(to) <= maxWalletAmount, "Altar: Exceeds maximum wallet amount");
                }
            }
        }
        // underlying balance is stored in altars, so divide by current scaling factor

        // note, this means as scaling factor grows, dust will be untransferrable.
        // minimum transfer value == altarsScalingFactor / 1e24;

        // get amount in underlying
        uint256 altarValue = _fragmentToAltar(value);

        // sub from balance of sender
        _altarBalances[msg.sender] = _altarBalances[msg.sender].sub(altarValue);

        // add to balance of receiver
        _altarBalances[to] = _altarBalances[to].add(altarValue);
        emit Transfer(msg.sender, to, value);

        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override validRecipient(to) returns (bool) {
        if (toggleLimits){
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead)){
                if (!tradingEnabled){
                    revert("Altar: Trading not enabled");
                }
                if (ammPairs[from] && !excludedMaxTxAmount[to]){
                    require(value <= maxTxAmount, "Altar: Exceeds maximum tx amount");
                    require(value + balanceOf(to) <= maxWalletAmount, "Altar: Exceeds maximum wallet amount");
                } else if (ammPairs[to] && !excludedMaxTxAmount[from]){
                    require(value <= maxTxAmount, "Altar: Exceeds maximum tx amount");
                } else if (!excludedMaxTxAmount[from] && !excludedMaxTxAmount[to]){
                    require(value + balanceOf(to) <= maxWalletAmount, "Altar: Exceeds maximum wallet amount");
                }
            }
        }
        // decrease allowance
        _allowedFragments[from][msg.sender] = _allowedFragments[from][
            msg.sender
        ].sub(value);

        // get value in altars
        uint256 altarValue = _fragmentToAltar(value);

        // sub from from
        _altarBalances[from] = _altarBalances[from].sub(altarValue);
        _altarBalances[to] = _altarBalances[to].add(altarValue);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who) public view override returns (uint256) {
        return _altarToFragment(_altarBalances[who]);
    }

    /** @notice Currently returns the internal storage amount
     * @param who The address to query.
     * @return The underlying balance of the specified address.
     */
    function balanceOfUnderlying(address who) public view returns (uint256) {
        return _altarBalances[who];
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][
            spender
        ].add(addedValue);
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(
                subtractedValue
            );
        }
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    // --- Approve by signature ---
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        require(block.timestamp <= deadline, "ALTAR/permit-expired");

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                        PERMIT_TYPEHASH,
                        owner,
                        spender,
                        value,
                        nonces[owner]++,
                        deadline
                    )
                )
            )
        );

        require(owner != address(0), "ALTAR/invalid-address-0");
        require(owner == ecrecover(digest, v, r, s), "ALTAR/invalid-permit");
        _allowedFragments[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function shouldRebase() external view returns(bool){
        if (!rebaseActivated){
            return false;
        }
        return block.number > lastDebaseBlock + rebaseDeltaBlock;
    }

    function rebase(
        uint256 indexDelta,
        bool positive
    ) public returns (uint256) {
        require(hasRole(REBASER_ROLE, _msgSender()), "Must have rebaser role");

        // no change
        if (indexDelta == 0) {
            emit Rebase(lastDebaseBlock, altarsScalingFactor, altarsScalingFactor);
            lastDebaseBlock = block.number;
            return _totalSupply;
        }
        uint temp = indexDelta;
        indexDelta = temp * (block.number - lastDebaseBlock);

        // for events
        uint256 prevAltarsScalingFactor = altarsScalingFactor;
        if (!positive) {
            // negative rebase, decrease scaling factor
            altarsScalingFactor = altarsScalingFactor
                .mul(BASE.sub(indexDelta))
                .div(BASE);
        } else {
            // positive rebase, increase scaling factor
            uint256 newScalingFactor = altarsScalingFactor
                .mul(BASE.add(indexDelta))
                .div(BASE);
            if (newScalingFactor < _maxScalingFactor()) {
                altarsScalingFactor = newScalingFactor;
            } else {
                altarsScalingFactor = _maxScalingFactor();
            }
        }

        // update total supply, correctly
        _totalSupply = _altarToFragment(initSupply);

        emit Rebase(lastDebaseBlock, prevAltarsScalingFactor, altarsScalingFactor);
        lastDebaseBlock = block.number;
        return _totalSupply;
    }

    function altarToFragment(uint256 altar) public view returns (uint256) {
        return _altarToFragment(altar);
    }

    function fragmentToAltar(uint256 value) public view returns (uint256) {
        return _fragmentToAltar(value);
    }

    function _altarToFragment(uint256 altar) internal view returns (uint256) {
        return altar.mul(altarsScalingFactor).div(internalDecimals);
    }

    function _fragmentToAltar(uint256 value) internal view returns (uint256) {
        return value.mul(internalDecimals).div(altarsScalingFactor);
    }

    // Rescue tokens
    function rescueTokens(
        address token,
        address to,
        uint256 amount
    ) public onlyOwner returns (bool) {
        // transfer to
        IERC20(token).transfer(to, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"weth","type":"address"}],"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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevAltarsScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAltarsScalingFactor","type":"uint256"}],"name":"Rebase","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":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"altar","type":"uint256"}],"name":"altarToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"altarsScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fragmentToAltar","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rebaseActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAmmPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludedMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludedMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setRebaseActivated","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRebaseDeltaBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setToggleLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shouldRebase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"toggleLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526a108b2a2c280290940000006008556a108b2a2c280290940000006009556001600d60006101000a81548160ff0219169083151502179055506001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506b033b2e3c9fd0803ce80000006017553480156200009057600080fd5b5060405162006eb838038062006eb88339818101604052810190620000b6919062000cfe565b6040518060400160405280600581526020017f416c7461720000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f414c545200000000000000000000000000000000000000000000000000000000815250818181600590805190602001906200013c92919062000c0b565b5080600690805190602001906200015592919062000c0b565b5050506200017c6000801b620001706200074c60201b60201c565b6200075460201b60201c565b620001bd7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001b16200074c60201b60201c565b6200075460201b60201c565b620001fe7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b75620001f26200074c60201b60201c565b6200075460201b60201c565b505062000220620002146200074c60201b60201c565b6200076a60201b60201c565b6001600a6000620002366200083060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620003a76200083060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060008290508073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630846040518363ffffffff1660e01b81526004016200054492919062000d88565b602060405180830381600087803b1580156200055f57600080fd5b505af115801562000574573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200059a919062000cd2565b506064600f8190555060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530856040518363ffffffff1660e01b8152600401620005e292919062000d88565b60206040518083038186803b158015620005fb57600080fd5b505afa15801562000610573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000636919062000cd2565b90506200064b8160016200085a60201b60201c565b670de0b6b3a76400006011819055506200066d6017546200091b60201b60201c565b60148190555060175460188190555060145460126000620006936200083060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600e819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6017546040516200073a919062000dd7565b60405180910390a35050505062000fe2565b600033905090565b6200076682826200096360201b60201c565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200087e6000801b620008726200074c60201b60201c565b620009ab60201b60201c565b620008c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b79062000db5565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006200095c6011546200094869d3c21bcecceda10000008562000a1560201b620034a31790919060201c565b62000a2d60201b620034b91790919060201c565b9050919050565b6200097a828262000a4560201b620034cf1760201c565b620009a6816001600085815260200190815260200160002062000b3660201b620035af1790919060201c565b505050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000818362000a25919062000e3d565b905092915050565b6000818362000a3d919062000e05565b905092915050565b62000a578282620009ab60201b60201c565b62000b3257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000ad76200074c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000b66836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62000b6e60201b60201c565b905092915050565b600062000b82838362000be860201b60201c565b62000bdd57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000be2565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b82805462000c199062000edc565b90600052602060002090601f01602090048101928262000c3d576000855562000c89565b82601f1062000c5857805160ff191683800117855562000c89565b8280016001018555821562000c89579182015b8281111562000c8857825182559160200191906001019062000c6b565b5b50905062000c98919062000c9c565b5090565b5b8082111562000cb757600081600090555060010162000c9d565b5090565b60008151905062000ccc8162000fc8565b92915050565b60006020828403121562000ce557600080fd5b600062000cf58482850162000cbb565b91505092915050565b6000806040838503121562000d1257600080fd5b600062000d228582860162000cbb565b925050602062000d358582860162000cbb565b9150509250929050565b62000d4a8162000e9e565b82525050565b600062000d5f60148362000df4565b915062000d6c8262000f9f565b602082019050919050565b62000d828162000ed2565b82525050565b600060408201905062000d9f600083018562000d3f565b62000dae602083018462000d3f565b9392505050565b6000602082019050818103600083015262000dd08162000d50565b9050919050565b600060208201905062000dee600083018462000d77565b92915050565b600082825260208201905092915050565b600062000e128262000ed2565b915062000e1f8362000ed2565b92508262000e325762000e3162000f41565b5b828204905092915050565b600062000e4a8262000ed2565b915062000e578362000ed2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e935762000e9262000f12565b5b828202905092915050565b600062000eab8262000eb2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000ef557607f821691505b6020821081141562000f0c5762000f0b62000f70565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4d75737420686176652061646d696e20726f6c65000000000000000000000000600082015250565b62000fd38162000e9e565b811462000fdf57600080fd5b50565b615ec68062000ff26000396000f3fe608060405234801561001057600080fd5b50600436106103af5760003560e01c8063737f67f5116101f4578063a72905a21161011a578063d505accf116100ad578063dd62ed3e1161007c578063dd62ed3e14610bd0578063ec28438a14610c00578063ec342ad014610c1c578063f2fde38b14610c3a576103af565b8063d505accf14610b4a578063d539139314610b66578063d547741f14610b84578063dd07a2a314610ba0576103af565b8063c2e5ec04116100e9578063c2e5ec0414610ab2578063ca15c87314610ace578063cea9d26f14610afe578063d0d253f214610b2e576103af565b8063a72905a214610a06578063a9059cbb14610a36578063af3e2eb514610a66578063b0dd7e7014610a96576103af565b8063917505f41161019257806397d63f931161016157806397d63f931461097e5780639e21422b1461099c578063a217fddf146109b8578063a457c2d7146109d6576103af565b8063917505f4146108e457806391d148541461091457806395b104c91461094457806395d89b4114610960576103af565b806383eb70e5116101ce57806383eb70e51461085c5780638da5cb5b1461087a5780639010d07c146108985780639108756e146108c8576103af565b8063737f67f5146107f257806379cc6790146108105780637ecebe001461082c576103af565b806332d20d2f116102d957806340c10f191161027757806363eab10a1161024657806363eab10a1461077c57806364dd48f51461079a57806370a08231146107b8578063715018a6146107e8576103af565b806340c10f19146106e257806342966c68146107125780634ada218b1461072e578063607377b31461074c576103af565b806336568abe116102b357806336568abe1461063657806339509351146106525780633af9e669146106825780634022cca9146106b2576103af565b806332d20d2f146105b8578063336d2692146105e85780633644e51514610618576103af565b806320606b70116103515780632f2ff15d116103205780632f2ff15d1461054257806330adf81f1461055e578063313ce5671461057c57806331c666c61461059a576103af565b806320606b70146104a857806323b872dd146104c6578063248a9ca3146104f657806327a14fc214610526576103af565b80630a6569231161038d5780630a6569231461043257806311d3e6c41461044e57806314228b0b1461046c57806318160ddd1461048a576103af565b806301ffc9a7146103b457806306fdde03146103e4578063095ea7b314610402575b600080fd5b6103ce60048036038101906103c99190614d53565b610c56565b6040516103db9190615264565b60405180910390f35b6103ec610cd0565b6040516103f99190615340565b60405180910390f35b61041c60048036038101906104179190614c24565b610d62565b6040516104299190615264565b60405180910390f35b61044c60048036038101906104479190614be8565b610e54565b005b610456610f02565b60405161046391906155c2565b60405180910390f35b610474610f11565b6040516104819190615264565b60405180910390f35b610492610f24565b60405161049f91906155c2565b60405180910390f35b6104b0610f2e565b6040516104bd919061527f565b60405180910390f35b6104e060048036038101906104db9190614afb565b610f52565b6040516104ed9190615264565b60405180910390f35b610510600480360381019061050b9190614cb2565b611714565b60405161051d919061527f565b60405180910390f35b610540600480360381019061053b9190614d7c565b611733565b005b61055c60048036038101906105579190614cdb565b611790565b005b6105666117b1565b604051610573919061527f565b60405180910390f35b6105846117d8565b6040516105919190615614565b60405180910390f35b6105a26117e1565b6040516105af9190615264565b60405180910390f35b6105d260048036038101906105cd9190614a96565b6117f4565b6040516105df9190615264565b60405180910390f35b61060260048036038101906105fd9190614c24565b611814565b60405161060f9190615264565b60405180910390f35b610620611c3b565b60405161062d919061527f565b60405180910390f35b610650600480360381019061064b9190614cdb565b611c41565b005b61066c60048036038101906106679190614c24565b611cc4565b6040516106799190615264565b60405180910390f35b61069c60048036038101906106979190614a96565b611ec0565b6040516106a991906155c2565b60405180910390f35b6106cc60048036038101906106c79190614d7c565b611f09565b6040516106d991906155c2565b60405180910390f35b6106fc60048036038101906106f79190614c24565b611f1b565b6040516107099190615264565b60405180910390f35b61072c60048036038101906107279190614d7c565b611fa1565b005b610736611fad565b6040516107439190615264565b60405180910390f35b61076660048036038101906107619190614a96565b611fc0565b6040516107739190615264565b60405180910390f35b610784611fe0565b6040516107919190615264565b60405180910390f35b6107a2612017565b6040516107af91906155c2565b60405180910390f35b6107d260048036038101906107cd9190614a96565b612025565b6040516107df91906155c2565b60405180910390f35b6107f0612076565b005b6107fa61208a565b60405161080791906155c2565b60405180910390f35b61082a60048036038101906108259190614c24565b612090565b005b61084660048036038101906108419190614a96565b6120b0565b60405161085391906155c2565b60405180910390f35b6108646120c8565b604051610871919061527f565b60405180910390f35b6108826120ec565b60405161088f9190615220565b60405180910390f35b6108b260048036038101906108ad9190614d17565b612116565b6040516108bf9190615220565b60405180910390f35b6108e260048036038101906108dd9190614c60565b612145565b005b6108fe60048036038101906108f99190614c24565b6121b5565b60405161090b9190615264565b60405180910390f35b61092e60048036038101906109299190614cdb565b61223b565b60405161093b9190615264565b60405180910390f35b61095e60048036038101906109599190614c60565b6122a5565b005b610968612315565b6040516109759190615340565b60405180910390f35b6109866123a7565b60405161099391906155c2565b60405180910390f35b6109b660048036038101906109b19190614be8565b6123ad565b005b6109c061245b565b6040516109cd919061527f565b60405180910390f35b6109f060048036038101906109eb9190614c24565b612462565b6040516109fd9190615264565b60405180910390f35b610a206004803603810190610a1b9190614a96565b6126f2565b604051610a2d9190615264565b60405180910390f35b610a506004803603810190610a4b9190614c24565b612712565b604051610a5d9190615264565b60405180910390f35b610a806004803603810190610a7b9190614d7c565b612b37565b604051610a8d91906155c2565b60405180910390f35b610ab06004803603810190610aab9190614d7c565b612b49565b005b610acc6004803603810190610ac79190614c60565b612ba6565b005b610ae86004803603810190610ae39190614cb2565b612c16565b604051610af591906155c2565b60405180910390f35b610b186004803603810190610b139190614afb565b612c3a565b604051610b259190615264565b60405180910390f35b610b486004803603810190610b439190614be8565b612cdd565b005b610b646004803603810190610b5f9190614b4a565b612d8b565b005b610b6e6130bf565b604051610b7b919061527f565b60405180910390f35b610b9e6004803603810190610b999190614cdb565b6130e3565b005b610bba6004803603810190610bb59190614da5565b613104565b604051610bc791906155c2565b60405180910390f35b610bea6004803603810190610be59190614abf565b61332f565b604051610bf791906155c2565b60405180910390f35b610c1a6004803603810190610c159190614d7c565b6133b6565b005b610c24613413565b604051610c3191906155c2565b60405180910390f35b610c546004803603810190610c4f9190614a96565b61341f565b005b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cc95750610cc8826135df565b5b9050919050565b606060058054610cdf90615853565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90615853565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b600081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e4291906155c2565b60405180910390a36001905092915050565b610e686000801b610e63613659565b61223b565b610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90615482565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610f0c613661565b905090565b601060009054906101000a900460ff1681565b6000601854905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8f57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc857600080fd5b601060009054906101000a900460ff161561145c57610fe56120ec565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561105357506110236120ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561108c5750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110c6575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561145b57600d60009054906101000a900460ff1661111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190615382565b60405180910390fd5b600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156111bd5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561126457600854831115611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90615402565b60405180910390fd5b60095461121385612025565b8461121e9190615656565b111561125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906154a2565b60405180910390fd5b61145a565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156113075750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561135657600854831115611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890615402565b60405180910390fd5b611459565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113fa5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114585760095461140b85612025565b846114169190615656565b1115611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e906154a2565b60405180910390fd5b5b5b5b5b5b6114eb83601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000611576846136ac565b90506115ca81601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165f81601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516116ff91906155c2565b60405180910390a36001925050509392505050565b6000806000838152602001908152602001600020600101549050919050565b6117476000801b611742613659565b61223b565b611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90615482565b60405180910390fd5b8060098190555050565b61179982611714565b6117a2816136fc565b6117ac8383613710565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b601060019054906101000a900460ff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185157600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561188a57600080fd5b601060009054906101000a900460ff1615611a99576118a76120ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561191557506118e56120ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561194e5750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611988575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611a9857600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a315750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a9757600954611a4285612025565b611a4b85613744565b611a559190615656565b1115611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d906154a2565b60405180910390fd5b5b5b5b611aeb83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b8083601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611c1b86613744565b604051611c2891906155c2565b60405180910390a3600191505092915050565b60155481565b611c49613659565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad906155a2565b60405180910390fd5b611cc0828261377e565b5050565b6000611d5582601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611eae91906155c2565b60405180910390a36001905092915050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611f1482613744565b9050919050565b6000611f4e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611f49613659565b61223b565b611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490615442565b60405180910390fd5b611f9783836137b2565b6001905092915050565b611faa8161397a565b50565b600d60009054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000601060019054906101000a900460ff16611fff5760009050612014565b600f54600e5461200f9190615656565b431190505b90565b69d3c21bcecceda100000081565b600061206f601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613744565b9050919050565b61207e613af5565b6120886000613b73565b565b60115481565b6120a28261209c613659565b83613c39565b6120ac8282613cc5565b5050565b60166020528060005260406000206000915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061213d8260016000868152602001908152602001600020613e9590919063ffffffff16565b905092915050565b6121596000801b612154613659565b61223b565b612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90615482565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60006121e87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66121e3613659565b61223b565b612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90615442565b60405180910390fd5b6122318383613eaf565b6001905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122b96000801b6122b4613659565b61223b565b6122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90615482565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b60606006805461232490615853565b80601f016020809104026020016040519081016040528092919081815260200182805461235090615853565b801561239d5780601f106123725761010080835404028352916020019161239d565b820191906000526020600020905b81548152906001019060200180831161238057829003601f168201915b5050505050905090565b60145481565b6123c16000801b6123bc613659565b61223b565b612400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f790615482565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000801b81565b600080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310612572576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612606565b612585838261369690919063ffffffff16565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516126df91906155c2565b60405180910390a3600191505092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561274f57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278857600080fd5b601060009054906101000a900460ff161561298f576127a56120ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561281357506127e36120ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561284c5750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612886575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561298e57600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561292f5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298d5760095461294085612025565b8461294b9190615656565b111561298c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612983906154a2565b60405180910390fd5b5b5b5b600061299a846136ac565b90506129ee81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a8381601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051612b2391906155c2565b60405180910390a360019250505092915050565b6000612b42826136ac565b9050919050565b612b5d6000801b612b58613659565b61223b565b612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390615482565b60405180910390fd5b80600f8190555050565b612bba6000801b612bb5613659565b61223b565b612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090615482565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000612c3360016000848152602001908152602001600020614077565b9050919050565b6000612c44613af5565b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401612c7f92919061523b565b602060405180830381600087803b158015612c9957600080fd5b505af1158015612cad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd19190614c89565b50600190509392505050565b612cf16000801b612cec613659565b61223b565b612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790615482565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b83421115612dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc590615462565b60405180910390fd5b60006015547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989601660008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612e4a90615885565b919050558a604051602001612e649695949392919061529a565b60405160208183030381529060405280519060200120604051602001612e8b9291906151af565b604051602081830303815290604052805190602001209050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415612f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0a90615562565b60405180910390fd5b60018185858560405160008152602001604052604051612f3694939291906152fb565b6020604051602081039080840390855afa158015612f58573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc6906154e2565b60405180910390fd5b85601360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925886040516130ad91906155c2565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6130ec82611714565b6130f5816136fc565b6130ff838361377e565b505050565b60006131377f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b75613132613659565b61223b565b613176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316d906154c2565b60405180910390fd5b60008314156131d1577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0600e546011546011546040516131b8939291906155dd565b60405180910390a143600e819055506018549050613329565b6000839050600e54436131e49190615737565b816131ef91906156dd565b9350600060115490508361325157613246670de0b6b3a764000061323861322788670de0b6b3a764000061369690919063ffffffff16565b6011546134a390919063ffffffff16565b6134b990919063ffffffff16565b6011819055506132ca565b600061329c670de0b6b3a764000061328e61327d89670de0b6b3a76400006136e690919063ffffffff16565b6011546134a390919063ffffffff16565b6134b990919063ffffffff16565b90506132a6613661565b8110156132b957806011819055506132c8565b6132c1613661565b6011819055505b505b6132d5601454613744565b6018819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0600e5482601154604051613312939291906155dd565b60405180910390a143600e81905550601854925050505b92915050565b6000601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6133ca6000801b6133c5613659565b61223b565b613409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340090615482565b60405180910390fd5b8060088190555050565b670de0b6b3a764000081565b613427613af5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348e906153c2565b60405180910390fd5b6134a081613b73565b50565b600081836134b191906156dd565b905092915050565b600081836134c791906156ac565b905092915050565b6134d9828261223b565b6135ab57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613550613659565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006135d7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61408c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136525750613651826140fc565b5b9050919050565b600033905090565b60006014547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61369191906156ac565b905090565b600081836136a49190615737565b905092915050565b60006136df6011546136d169d3c21bcecceda1000000856134a390919063ffffffff16565b6134b990919063ffffffff16565b9050919050565b600081836136f49190615656565b905092915050565b61370d81613708613659565b614166565b50565b61371a82826134cf565b61373f81600160008581526020019081526020016000206135af90919063ffffffff16565b505050565b600061377769d3c21bcecceda1000000613769601154856134a390919063ffffffff16565b6134b990919063ffffffff16565b9050919050565b61378882826141eb565b6137ad81600160008581526020019081526020016000206142cc90919063ffffffff16565b505050565b6137c7816018546136e690919063ffffffff16565b60188190555060006137d8826136ac565b90506137ef816014546136e690919063ffffffff16565b6014819055506137fd613661565b6011541115613841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383890615582565b60405180910390fd5b61389381601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838360405161390792919061523b565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161396d91906155c2565b60405180910390a3505050565b61398f8160185461369690919063ffffffff16565b60188190555060006139a0826136ac565b90506139b78160145461369690919063ffffffff16565b601481905550613a0f81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca53383604051613a8392919061523b565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ae991906155c2565b60405180910390a35050565b613afd613659565b73ffffffffffffffffffffffffffffffffffffffff16613b1b6120ec565b73ffffffffffffffffffffffffffffffffffffffff1614613b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6890615502565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613c45848461332f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114613cbf5781811015613cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca890615422565b60405180910390fd5b613cbe84848484036142fc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d2c90615522565b60405180910390fd5b613d41826000836144c7565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dbf906153a2565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e7c91906155c2565b60405180910390a3613e90836000846144cc565b505050565b6000613ea483600001836144d1565b60001c905092915050565b613ec4816014546136e690919063ffffffff16565b6014819055506000613ed582613744565b9050613eec816018546136e690919063ffffffff16565b601881905550613efa613661565b6011541115613f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f3590615582565b60405180910390fd5b613f9082601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838260405161400492919061523b565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161406a91906155c2565b60405180910390a3505050565b600061408582600001614522565b9050919050565b60006140988383614533565b6140f15782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506140f6565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b614170828261223b565b6141e75761417d81614556565b61418b8360001c6020614583565b60405160200161419c9291906151e6565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141de9190615340565b60405180910390fd5b5050565b6141f5828261223b565b156142c857600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061426d613659565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006142f4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61487d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561436c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161436390615542565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156143dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143d3906153e2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516144ba91906155c2565b60405180910390a3505050565b505050565b505050565b600082600001828154811061450f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606061457c8273ffffffffffffffffffffffffffffffffffffffff16601460ff16614583565b9050919050565b60606000600283600261459691906156dd565b6145a09190615656565b67ffffffffffffffff8111156145df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156146115781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061466f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106146f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261473991906156dd565b6147439190615656565b90505b600181111561482f577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106147ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106147e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061482890615829565b9050614746565b5060008414614873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161486a90615362565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020549050600081146149f75760006001826148af9190615737565b90506000600186600001805490506148c79190615737565b905081811461498257600086600001828154811061490e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110614958577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806149bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506149fd565b60009150505b92915050565b600081359050614a1281615e06565b92915050565b600081359050614a2781615e1d565b92915050565b600081519050614a3c81615e1d565b92915050565b600081359050614a5181615e34565b92915050565b600081359050614a6681615e4b565b92915050565b600081359050614a7b81615e62565b92915050565b600081359050614a9081615e79565b92915050565b600060208284031215614aa857600080fd5b6000614ab684828501614a03565b91505092915050565b60008060408385031215614ad257600080fd5b6000614ae085828601614a03565b9250506020614af185828601614a03565b9150509250929050565b600080600060608486031215614b1057600080fd5b6000614b1e86828701614a03565b9350506020614b2f86828701614a03565b9250506040614b4086828701614a6c565b9150509250925092565b600080600080600080600060e0888a031215614b6557600080fd5b6000614b738a828b01614a03565b9750506020614b848a828b01614a03565b9650506040614b958a828b01614a6c565b9550506060614ba68a828b01614a6c565b9450506080614bb78a828b01614a81565b93505060a0614bc88a828b01614a42565b92505060c0614bd98a828b01614a42565b91505092959891949750929550565b60008060408385031215614bfb57600080fd5b6000614c0985828601614a03565b9250506020614c1a85828601614a18565b9150509250929050565b60008060408385031215614c3757600080fd5b6000614c4585828601614a03565b9250506020614c5685828601614a6c565b9150509250929050565b600060208284031215614c7257600080fd5b6000614c8084828501614a18565b91505092915050565b600060208284031215614c9b57600080fd5b6000614ca984828501614a2d565b91505092915050565b600060208284031215614cc457600080fd5b6000614cd284828501614a42565b91505092915050565b60008060408385031215614cee57600080fd5b6000614cfc85828601614a42565b9250506020614d0d85828601614a03565b9150509250929050565b60008060408385031215614d2a57600080fd5b6000614d3885828601614a42565b9250506020614d4985828601614a6c565b9150509250929050565b600060208284031215614d6557600080fd5b6000614d7384828501614a57565b91505092915050565b600060208284031215614d8e57600080fd5b6000614d9c84828501614a6c565b91505092915050565b60008060408385031215614db857600080fd5b6000614dc685828601614a6c565b9250506020614dd785828601614a18565b9150509250929050565b614dea8161576b565b82525050565b614df98161577d565b82525050565b614e0881615789565b82525050565b614e1f614e1a82615789565b6158ce565b82525050565b6000614e308261562f565b614e3a818561563a565b9350614e4a8185602086016157f6565b614e5381615965565b840191505092915050565b6000614e698261562f565b614e73818561564b565b9350614e838185602086016157f6565b80840191505092915050565b6000614e9c60208361563a565b9150614ea782615976565b602082019050919050565b6000614ebf601a8361563a565b9150614eca8261599f565b602082019050919050565b6000614ee260228361563a565b9150614eed826159c8565b604082019050919050565b6000614f0560268361563a565b9150614f1082615a17565b604082019050919050565b6000614f2860228361563a565b9150614f3382615a66565b604082019050919050565b6000614f4b60028361564b565b9150614f5682615ab5565b600282019050919050565b6000614f6e60208361563a565b9150614f7982615ade565b602082019050919050565b6000614f91601d8361563a565b9150614f9c82615b07565b602082019050919050565b6000614fb460158361563a565b9150614fbf82615b30565b602082019050919050565b6000614fd760148361563a565b9150614fe282615b59565b602082019050919050565b6000614ffa60148361563a565b915061500582615b82565b602082019050919050565b600061501d60248361563a565b915061502882615bab565b604082019050919050565b600061504060168361563a565b915061504b82615bfa565b602082019050919050565b600061506360148361563a565b915061506e82615c23565b602082019050919050565b600061508660208361563a565b915061509182615c4c565b602082019050919050565b60006150a960218361563a565b91506150b482615c75565b604082019050919050565b60006150cc60248361563a565b91506150d782615cc4565b604082019050919050565b60006150ef60178361564b565b91506150fa82615d13565b601782019050919050565b600061511260178361563a565b915061511d82615d3c565b602082019050919050565b6000615135601a8361563a565b915061514082615d65565b602082019050919050565b600061515860118361564b565b915061516382615d8e565b601182019050919050565b600061517b602f8361563a565b915061518682615db7565b604082019050919050565b61519a816157df565b82525050565b6151a9816157e9565b82525050565b60006151ba82614f3e565b91506151c68285614e0e565b6020820191506151d68284614e0e565b6020820191508190509392505050565b60006151f1826150e2565b91506151fd8285614e5e565b91506152088261514b565b91506152148284614e5e565b91508190509392505050565b60006020820190506152356000830184614de1565b92915050565b60006040820190506152506000830185614de1565b61525d6020830184615191565b9392505050565b60006020820190506152796000830184614df0565b92915050565b60006020820190506152946000830184614dff565b92915050565b600060c0820190506152af6000830189614dff565b6152bc6020830188614de1565b6152c96040830187614de1565b6152d66060830186615191565b6152e36080830185615191565b6152f060a0830184615191565b979650505050505050565b60006080820190506153106000830187614dff565b61531d60208301866151a0565b61532a6040830185614dff565b6153376060830184614dff565b95945050505050565b6000602082019050818103600083015261535a8184614e25565b905092915050565b6000602082019050818103600083015261537b81614e8f565b9050919050565b6000602082019050818103600083015261539b81614eb2565b9050919050565b600060208201905081810360008301526153bb81614ed5565b9050919050565b600060208201905081810360008301526153db81614ef8565b9050919050565b600060208201905081810360008301526153fb81614f1b565b9050919050565b6000602082019050818103600083015261541b81614f61565b9050919050565b6000602082019050818103600083015261543b81614f84565b9050919050565b6000602082019050818103600083015261545b81614fa7565b9050919050565b6000602082019050818103600083015261547b81614fca565b9050919050565b6000602082019050818103600083015261549b81614fed565b9050919050565b600060208201905081810360008301526154bb81615010565b9050919050565b600060208201905081810360008301526154db81615033565b9050919050565b600060208201905081810360008301526154fb81615056565b9050919050565b6000602082019050818103600083015261551b81615079565b9050919050565b6000602082019050818103600083015261553b8161509c565b9050919050565b6000602082019050818103600083015261555b816150bf565b9050919050565b6000602082019050818103600083015261557b81615105565b9050919050565b6000602082019050818103600083015261559b81615128565b9050919050565b600060208201905081810360008301526155bb8161516e565b9050919050565b60006020820190506155d76000830184615191565b92915050565b60006060820190506155f26000830186615191565b6155ff6020830185615191565b61560c6040830184615191565b949350505050565b600060208201905061562960008301846151a0565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000615661826157df565b915061566c836157df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156156a1576156a06158d8565b5b828201905092915050565b60006156b7826157df565b91506156c2836157df565b9250826156d2576156d1615907565b5b828204905092915050565b60006156e8826157df565b91506156f3836157df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561572c5761572b6158d8565b5b828202905092915050565b6000615742826157df565b915061574d836157df565b9250828210156157605761575f6158d8565b5b828203905092915050565b6000615776826157bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156158145780820151818401526020810190506157f9565b83811115615823576000848401525b50505050565b6000615834826157df565b91506000821415615848576158476158d8565b5b600182039050919050565b6000600282049050600182168061586b57607f821691505b6020821081141561587f5761587e615936565b5b50919050565b6000615890826157df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158c3576158c26158d8565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416c7461723a2054726164696e67206e6f7420656e61626c6564000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f416c7461723a2045786365656473206d6178696d756d20747820616d6f756e74600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4d7573742068617665206d696e74657220726f6c650000000000000000000000600082015250565b7f414c5441522f7065726d69742d65787069726564000000000000000000000000600082015250565b7f4d75737420686176652061646d696e20726f6c65000000000000000000000000600082015250565b7f416c7461723a2045786365656473206d6178696d756d2077616c6c657420616d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b7f4d7573742068617665207265626173657220726f6c6500000000000000000000600082015250565b7f414c5441522f696e76616c69642d7065726d6974000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f414c5441522f696e76616c69642d616464726573732d30000000000000000000600082015250565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615e0f8161576b565b8114615e1a57600080fd5b50565b615e268161577d565b8114615e3157600080fd5b50565b615e3d81615789565b8114615e4857600080fd5b50565b615e5481615793565b8114615e5f57600080fd5b50565b615e6b816157df565b8114615e7657600080fd5b50565b615e82816157e9565b8114615e8d57600080fd5b5056fea2646970667358221220b38568e7978a31a7febb80dcc47b4dad25ff182b9c549dfd00ee15ba2d0914dd64736f6c634300080300330000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103af5760003560e01c8063737f67f5116101f4578063a72905a21161011a578063d505accf116100ad578063dd62ed3e1161007c578063dd62ed3e14610bd0578063ec28438a14610c00578063ec342ad014610c1c578063f2fde38b14610c3a576103af565b8063d505accf14610b4a578063d539139314610b66578063d547741f14610b84578063dd07a2a314610ba0576103af565b8063c2e5ec04116100e9578063c2e5ec0414610ab2578063ca15c87314610ace578063cea9d26f14610afe578063d0d253f214610b2e576103af565b8063a72905a214610a06578063a9059cbb14610a36578063af3e2eb514610a66578063b0dd7e7014610a96576103af565b8063917505f41161019257806397d63f931161016157806397d63f931461097e5780639e21422b1461099c578063a217fddf146109b8578063a457c2d7146109d6576103af565b8063917505f4146108e457806391d148541461091457806395b104c91461094457806395d89b4114610960576103af565b806383eb70e5116101ce57806383eb70e51461085c5780638da5cb5b1461087a5780639010d07c146108985780639108756e146108c8576103af565b8063737f67f5146107f257806379cc6790146108105780637ecebe001461082c576103af565b806332d20d2f116102d957806340c10f191161027757806363eab10a1161024657806363eab10a1461077c57806364dd48f51461079a57806370a08231146107b8578063715018a6146107e8576103af565b806340c10f19146106e257806342966c68146107125780634ada218b1461072e578063607377b31461074c576103af565b806336568abe116102b357806336568abe1461063657806339509351146106525780633af9e669146106825780634022cca9146106b2576103af565b806332d20d2f146105b8578063336d2692146105e85780633644e51514610618576103af565b806320606b70116103515780632f2ff15d116103205780632f2ff15d1461054257806330adf81f1461055e578063313ce5671461057c57806331c666c61461059a576103af565b806320606b70146104a857806323b872dd146104c6578063248a9ca3146104f657806327a14fc214610526576103af565b80630a6569231161038d5780630a6569231461043257806311d3e6c41461044e57806314228b0b1461046c57806318160ddd1461048a576103af565b806301ffc9a7146103b457806306fdde03146103e4578063095ea7b314610402575b600080fd5b6103ce60048036038101906103c99190614d53565b610c56565b6040516103db9190615264565b60405180910390f35b6103ec610cd0565b6040516103f99190615340565b60405180910390f35b61041c60048036038101906104179190614c24565b610d62565b6040516104299190615264565b60405180910390f35b61044c60048036038101906104479190614be8565b610e54565b005b610456610f02565b60405161046391906155c2565b60405180910390f35b610474610f11565b6040516104819190615264565b60405180910390f35b610492610f24565b60405161049f91906155c2565b60405180910390f35b6104b0610f2e565b6040516104bd919061527f565b60405180910390f35b6104e060048036038101906104db9190614afb565b610f52565b6040516104ed9190615264565b60405180910390f35b610510600480360381019061050b9190614cb2565b611714565b60405161051d919061527f565b60405180910390f35b610540600480360381019061053b9190614d7c565b611733565b005b61055c60048036038101906105579190614cdb565b611790565b005b6105666117b1565b604051610573919061527f565b60405180910390f35b6105846117d8565b6040516105919190615614565b60405180910390f35b6105a26117e1565b6040516105af9190615264565b60405180910390f35b6105d260048036038101906105cd9190614a96565b6117f4565b6040516105df9190615264565b60405180910390f35b61060260048036038101906105fd9190614c24565b611814565b60405161060f9190615264565b60405180910390f35b610620611c3b565b60405161062d919061527f565b60405180910390f35b610650600480360381019061064b9190614cdb565b611c41565b005b61066c60048036038101906106679190614c24565b611cc4565b6040516106799190615264565b60405180910390f35b61069c60048036038101906106979190614a96565b611ec0565b6040516106a991906155c2565b60405180910390f35b6106cc60048036038101906106c79190614d7c565b611f09565b6040516106d991906155c2565b60405180910390f35b6106fc60048036038101906106f79190614c24565b611f1b565b6040516107099190615264565b60405180910390f35b61072c60048036038101906107279190614d7c565b611fa1565b005b610736611fad565b6040516107439190615264565b60405180910390f35b61076660048036038101906107619190614a96565b611fc0565b6040516107739190615264565b60405180910390f35b610784611fe0565b6040516107919190615264565b60405180910390f35b6107a2612017565b6040516107af91906155c2565b60405180910390f35b6107d260048036038101906107cd9190614a96565b612025565b6040516107df91906155c2565b60405180910390f35b6107f0612076565b005b6107fa61208a565b60405161080791906155c2565b60405180910390f35b61082a60048036038101906108259190614c24565b612090565b005b61084660048036038101906108419190614a96565b6120b0565b60405161085391906155c2565b60405180910390f35b6108646120c8565b604051610871919061527f565b60405180910390f35b6108826120ec565b60405161088f9190615220565b60405180910390f35b6108b260048036038101906108ad9190614d17565b612116565b6040516108bf9190615220565b60405180910390f35b6108e260048036038101906108dd9190614c60565b612145565b005b6108fe60048036038101906108f99190614c24565b6121b5565b60405161090b9190615264565b60405180910390f35b61092e60048036038101906109299190614cdb565b61223b565b60405161093b9190615264565b60405180910390f35b61095e60048036038101906109599190614c60565b6122a5565b005b610968612315565b6040516109759190615340565b60405180910390f35b6109866123a7565b60405161099391906155c2565b60405180910390f35b6109b660048036038101906109b19190614be8565b6123ad565b005b6109c061245b565b6040516109cd919061527f565b60405180910390f35b6109f060048036038101906109eb9190614c24565b612462565b6040516109fd9190615264565b60405180910390f35b610a206004803603810190610a1b9190614a96565b6126f2565b604051610a2d9190615264565b60405180910390f35b610a506004803603810190610a4b9190614c24565b612712565b604051610a5d9190615264565b60405180910390f35b610a806004803603810190610a7b9190614d7c565b612b37565b604051610a8d91906155c2565b60405180910390f35b610ab06004803603810190610aab9190614d7c565b612b49565b005b610acc6004803603810190610ac79190614c60565b612ba6565b005b610ae86004803603810190610ae39190614cb2565b612c16565b604051610af591906155c2565b60405180910390f35b610b186004803603810190610b139190614afb565b612c3a565b604051610b259190615264565b60405180910390f35b610b486004803603810190610b439190614be8565b612cdd565b005b610b646004803603810190610b5f9190614b4a565b612d8b565b005b610b6e6130bf565b604051610b7b919061527f565b60405180910390f35b610b9e6004803603810190610b999190614cdb565b6130e3565b005b610bba6004803603810190610bb59190614da5565b613104565b604051610bc791906155c2565b60405180910390f35b610bea6004803603810190610be59190614abf565b61332f565b604051610bf791906155c2565b60405180910390f35b610c1a6004803603810190610c159190614d7c565b6133b6565b005b610c24613413565b604051610c3191906155c2565b60405180910390f35b610c546004803603810190610c4f9190614a96565b61341f565b005b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cc95750610cc8826135df565b5b9050919050565b606060058054610cdf90615853565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90615853565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b600081601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e4291906155c2565b60405180910390a36001905092915050565b610e686000801b610e63613659565b61223b565b610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90615482565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610f0c613661565b905090565b601060009054906101000a900460ff1681565b6000601854905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8f57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc857600080fd5b601060009054906101000a900460ff161561145c57610fe56120ec565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561105357506110236120ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561108c5750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110c6575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561145b57600d60009054906101000a900460ff1661111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190615382565b60405180910390fd5b600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156111bd5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561126457600854831115611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90615402565b60405180910390fd5b60095461121385612025565b8461121e9190615656565b111561125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906154a2565b60405180910390fd5b61145a565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156113075750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561135657600854831115611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890615402565b60405180910390fd5b611459565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113fa5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114585760095461140b85612025565b846114169190615656565b1115611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e906154a2565b60405180910390fd5b5b5b5b5b5b6114eb83601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000611576846136ac565b90506115ca81601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165f81601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516116ff91906155c2565b60405180910390a36001925050509392505050565b6000806000838152602001908152602001600020600101549050919050565b6117476000801b611742613659565b61223b565b611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90615482565b60405180910390fd5b8060098190555050565b61179982611714565b6117a2816136fc565b6117ac8383613710565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b601060019054906101000a900460ff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185157600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561188a57600080fd5b601060009054906101000a900460ff1615611a99576118a76120ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561191557506118e56120ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561194e5750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611988575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611a9857600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a315750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a9757600954611a4285612025565b611a4b85613744565b611a559190615656565b1115611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d906154a2565b60405180910390fd5b5b5b5b611aeb83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b8083601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611c1b86613744565b604051611c2891906155c2565b60405180910390a3600191505092915050565b60155481565b611c49613659565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad906155a2565b60405180910390fd5b611cc0828261377e565b5050565b6000611d5582601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611eae91906155c2565b60405180910390a36001905092915050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611f1482613744565b9050919050565b6000611f4e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6611f49613659565b61223b565b611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490615442565b60405180910390fd5b611f9783836137b2565b6001905092915050565b611faa8161397a565b50565b600d60009054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000601060019054906101000a900460ff16611fff5760009050612014565b600f54600e5461200f9190615656565b431190505b90565b69d3c21bcecceda100000081565b600061206f601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613744565b9050919050565b61207e613af5565b6120886000613b73565b565b60115481565b6120a28261209c613659565b83613c39565b6120ac8282613cc5565b5050565b60166020528060005260406000206000915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061213d8260016000868152602001908152602001600020613e9590919063ffffffff16565b905092915050565b6121596000801b612154613659565b61223b565b612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90615482565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60006121e87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66121e3613659565b61223b565b612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e90615442565b60405180910390fd5b6122318383613eaf565b6001905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122b96000801b6122b4613659565b61223b565b6122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90615482565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b60606006805461232490615853565b80601f016020809104026020016040519081016040528092919081815260200182805461235090615853565b801561239d5780601f106123725761010080835404028352916020019161239d565b820191906000526020600020905b81548152906001019060200180831161238057829003601f168201915b5050505050905090565b60145481565b6123c16000801b6123bc613659565b61223b565b612400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f790615482565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000801b81565b600080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310612572576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612606565b612585838261369690919063ffffffff16565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516126df91906155c2565b60405180910390a3600191505092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561274f57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278857600080fd5b601060009054906101000a900460ff161561298f576127a56120ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561281357506127e36120ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561284c5750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612886575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561298e57600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561292f5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298d5760095461294085612025565b8461294b9190615656565b111561298c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612983906154a2565b60405180910390fd5b5b5b5b600061299a846136ac565b90506129ee81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a8381601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051612b2391906155c2565b60405180910390a360019250505092915050565b6000612b42826136ac565b9050919050565b612b5d6000801b612b58613659565b61223b565b612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390615482565b60405180910390fd5b80600f8190555050565b612bba6000801b612bb5613659565b61223b565b612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090615482565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000612c3360016000848152602001908152602001600020614077565b9050919050565b6000612c44613af5565b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401612c7f92919061523b565b602060405180830381600087803b158015612c9957600080fd5b505af1158015612cad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd19190614c89565b50600190509392505050565b612cf16000801b612cec613659565b61223b565b612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790615482565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b83421115612dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc590615462565b60405180910390fd5b60006015547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989601660008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612e4a90615885565b919050558a604051602001612e649695949392919061529a565b60405160208183030381529060405280519060200120604051602001612e8b9291906151af565b604051602081830303815290604052805190602001209050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415612f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0a90615562565b60405180910390fd5b60018185858560405160008152602001604052604051612f3694939291906152fb565b6020604051602081039080840390855afa158015612f58573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc6906154e2565b60405180910390fd5b85601360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925886040516130ad91906155c2565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6130ec82611714565b6130f5816136fc565b6130ff838361377e565b505050565b60006131377f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b75613132613659565b61223b565b613176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316d906154c2565b60405180910390fd5b60008314156131d1577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0600e546011546011546040516131b8939291906155dd565b60405180910390a143600e819055506018549050613329565b6000839050600e54436131e49190615737565b816131ef91906156dd565b9350600060115490508361325157613246670de0b6b3a764000061323861322788670de0b6b3a764000061369690919063ffffffff16565b6011546134a390919063ffffffff16565b6134b990919063ffffffff16565b6011819055506132ca565b600061329c670de0b6b3a764000061328e61327d89670de0b6b3a76400006136e690919063ffffffff16565b6011546134a390919063ffffffff16565b6134b990919063ffffffff16565b90506132a6613661565b8110156132b957806011819055506132c8565b6132c1613661565b6011819055505b505b6132d5601454613744565b6018819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0600e5482601154604051613312939291906155dd565b60405180910390a143600e81905550601854925050505b92915050565b6000601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6133ca6000801b6133c5613659565b61223b565b613409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340090615482565b60405180910390fd5b8060088190555050565b670de0b6b3a764000081565b613427613af5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348e906153c2565b60405180910390fd5b6134a081613b73565b50565b600081836134b191906156dd565b905092915050565b600081836134c791906156ac565b905092915050565b6134d9828261223b565b6135ab57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613550613659565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006135d7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61408c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136525750613651826140fc565b5b9050919050565b600033905090565b60006014547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61369191906156ac565b905090565b600081836136a49190615737565b905092915050565b60006136df6011546136d169d3c21bcecceda1000000856134a390919063ffffffff16565b6134b990919063ffffffff16565b9050919050565b600081836136f49190615656565b905092915050565b61370d81613708613659565b614166565b50565b61371a82826134cf565b61373f81600160008581526020019081526020016000206135af90919063ffffffff16565b505050565b600061377769d3c21bcecceda1000000613769601154856134a390919063ffffffff16565b6134b990919063ffffffff16565b9050919050565b61378882826141eb565b6137ad81600160008581526020019081526020016000206142cc90919063ffffffff16565b505050565b6137c7816018546136e690919063ffffffff16565b60188190555060006137d8826136ac565b90506137ef816014546136e690919063ffffffff16565b6014819055506137fd613661565b6011541115613841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383890615582565b60405180910390fd5b61389381601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838360405161390792919061523b565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161396d91906155c2565b60405180910390a3505050565b61398f8160185461369690919063ffffffff16565b60188190555060006139a0826136ac565b90506139b78160145461369690919063ffffffff16565b601481905550613a0f81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461369690919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca53383604051613a8392919061523b565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ae991906155c2565b60405180910390a35050565b613afd613659565b73ffffffffffffffffffffffffffffffffffffffff16613b1b6120ec565b73ffffffffffffffffffffffffffffffffffffffff1614613b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6890615502565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000613c45848461332f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114613cbf5781811015613cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca890615422565b60405180910390fd5b613cbe84848484036142fc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d2c90615522565b60405180910390fd5b613d41826000836144c7565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dbf906153a2565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e7c91906155c2565b60405180910390a3613e90836000846144cc565b505050565b6000613ea483600001836144d1565b60001c905092915050565b613ec4816014546136e690919063ffffffff16565b6014819055506000613ed582613744565b9050613eec816018546136e690919063ffffffff16565b601881905550613efa613661565b6011541115613f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f3590615582565b60405180910390fd5b613f9082601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136e690919063ffffffff16565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838260405161400492919061523b565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161406a91906155c2565b60405180910390a3505050565b600061408582600001614522565b9050919050565b60006140988383614533565b6140f15782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506140f6565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b614170828261223b565b6141e75761417d81614556565b61418b8360001c6020614583565b60405160200161419c9291906151e6565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141de9190615340565b60405180910390fd5b5050565b6141f5828261223b565b156142c857600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061426d613659565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006142f4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61487d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561436c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161436390615542565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156143dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143d3906153e2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516144ba91906155c2565b60405180910390a3505050565b505050565b505050565b600082600001828154811061450f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b606061457c8273ffffffffffffffffffffffffffffffffffffffff16601460ff16614583565b9050919050565b60606000600283600261459691906156dd565b6145a09190615656565b67ffffffffffffffff8111156145df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156146115781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061466f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106146f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261473991906156dd565b6147439190615656565b90505b600181111561482f577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106147ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106147e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061482890615829565b9050614746565b5060008414614873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161486a90615362565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020549050600081146149f75760006001826148af9190615737565b90506000600186600001805490506148c79190615737565b905081811461498257600086600001828154811061490e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110614958577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806149bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506149fd565b60009150505b92915050565b600081359050614a1281615e06565b92915050565b600081359050614a2781615e1d565b92915050565b600081519050614a3c81615e1d565b92915050565b600081359050614a5181615e34565b92915050565b600081359050614a6681615e4b565b92915050565b600081359050614a7b81615e62565b92915050565b600081359050614a9081615e79565b92915050565b600060208284031215614aa857600080fd5b6000614ab684828501614a03565b91505092915050565b60008060408385031215614ad257600080fd5b6000614ae085828601614a03565b9250506020614af185828601614a03565b9150509250929050565b600080600060608486031215614b1057600080fd5b6000614b1e86828701614a03565b9350506020614b2f86828701614a03565b9250506040614b4086828701614a6c565b9150509250925092565b600080600080600080600060e0888a031215614b6557600080fd5b6000614b738a828b01614a03565b9750506020614b848a828b01614a03565b9650506040614b958a828b01614a6c565b9550506060614ba68a828b01614a6c565b9450506080614bb78a828b01614a81565b93505060a0614bc88a828b01614a42565b92505060c0614bd98a828b01614a42565b91505092959891949750929550565b60008060408385031215614bfb57600080fd5b6000614c0985828601614a03565b9250506020614c1a85828601614a18565b9150509250929050565b60008060408385031215614c3757600080fd5b6000614c4585828601614a03565b9250506020614c5685828601614a6c565b9150509250929050565b600060208284031215614c7257600080fd5b6000614c8084828501614a18565b91505092915050565b600060208284031215614c9b57600080fd5b6000614ca984828501614a2d565b91505092915050565b600060208284031215614cc457600080fd5b6000614cd284828501614a42565b91505092915050565b60008060408385031215614cee57600080fd5b6000614cfc85828601614a42565b9250506020614d0d85828601614a03565b9150509250929050565b60008060408385031215614d2a57600080fd5b6000614d3885828601614a42565b9250506020614d4985828601614a6c565b9150509250929050565b600060208284031215614d6557600080fd5b6000614d7384828501614a57565b91505092915050565b600060208284031215614d8e57600080fd5b6000614d9c84828501614a6c565b91505092915050565b60008060408385031215614db857600080fd5b6000614dc685828601614a6c565b9250506020614dd785828601614a18565b9150509250929050565b614dea8161576b565b82525050565b614df98161577d565b82525050565b614e0881615789565b82525050565b614e1f614e1a82615789565b6158ce565b82525050565b6000614e308261562f565b614e3a818561563a565b9350614e4a8185602086016157f6565b614e5381615965565b840191505092915050565b6000614e698261562f565b614e73818561564b565b9350614e838185602086016157f6565b80840191505092915050565b6000614e9c60208361563a565b9150614ea782615976565b602082019050919050565b6000614ebf601a8361563a565b9150614eca8261599f565b602082019050919050565b6000614ee260228361563a565b9150614eed826159c8565b604082019050919050565b6000614f0560268361563a565b9150614f1082615a17565b604082019050919050565b6000614f2860228361563a565b9150614f3382615a66565b604082019050919050565b6000614f4b60028361564b565b9150614f5682615ab5565b600282019050919050565b6000614f6e60208361563a565b9150614f7982615ade565b602082019050919050565b6000614f91601d8361563a565b9150614f9c82615b07565b602082019050919050565b6000614fb460158361563a565b9150614fbf82615b30565b602082019050919050565b6000614fd760148361563a565b9150614fe282615b59565b602082019050919050565b6000614ffa60148361563a565b915061500582615b82565b602082019050919050565b600061501d60248361563a565b915061502882615bab565b604082019050919050565b600061504060168361563a565b915061504b82615bfa565b602082019050919050565b600061506360148361563a565b915061506e82615c23565b602082019050919050565b600061508660208361563a565b915061509182615c4c565b602082019050919050565b60006150a960218361563a565b91506150b482615c75565b604082019050919050565b60006150cc60248361563a565b91506150d782615cc4565b604082019050919050565b60006150ef60178361564b565b91506150fa82615d13565b601782019050919050565b600061511260178361563a565b915061511d82615d3c565b602082019050919050565b6000615135601a8361563a565b915061514082615d65565b602082019050919050565b600061515860118361564b565b915061516382615d8e565b601182019050919050565b600061517b602f8361563a565b915061518682615db7565b604082019050919050565b61519a816157df565b82525050565b6151a9816157e9565b82525050565b60006151ba82614f3e565b91506151c68285614e0e565b6020820191506151d68284614e0e565b6020820191508190509392505050565b60006151f1826150e2565b91506151fd8285614e5e565b91506152088261514b565b91506152148284614e5e565b91508190509392505050565b60006020820190506152356000830184614de1565b92915050565b60006040820190506152506000830185614de1565b61525d6020830184615191565b9392505050565b60006020820190506152796000830184614df0565b92915050565b60006020820190506152946000830184614dff565b92915050565b600060c0820190506152af6000830189614dff565b6152bc6020830188614de1565b6152c96040830187614de1565b6152d66060830186615191565b6152e36080830185615191565b6152f060a0830184615191565b979650505050505050565b60006080820190506153106000830187614dff565b61531d60208301866151a0565b61532a6040830185614dff565b6153376060830184614dff565b95945050505050565b6000602082019050818103600083015261535a8184614e25565b905092915050565b6000602082019050818103600083015261537b81614e8f565b9050919050565b6000602082019050818103600083015261539b81614eb2565b9050919050565b600060208201905081810360008301526153bb81614ed5565b9050919050565b600060208201905081810360008301526153db81614ef8565b9050919050565b600060208201905081810360008301526153fb81614f1b565b9050919050565b6000602082019050818103600083015261541b81614f61565b9050919050565b6000602082019050818103600083015261543b81614f84565b9050919050565b6000602082019050818103600083015261545b81614fa7565b9050919050565b6000602082019050818103600083015261547b81614fca565b9050919050565b6000602082019050818103600083015261549b81614fed565b9050919050565b600060208201905081810360008301526154bb81615010565b9050919050565b600060208201905081810360008301526154db81615033565b9050919050565b600060208201905081810360008301526154fb81615056565b9050919050565b6000602082019050818103600083015261551b81615079565b9050919050565b6000602082019050818103600083015261553b8161509c565b9050919050565b6000602082019050818103600083015261555b816150bf565b9050919050565b6000602082019050818103600083015261557b81615105565b9050919050565b6000602082019050818103600083015261559b81615128565b9050919050565b600060208201905081810360008301526155bb8161516e565b9050919050565b60006020820190506155d76000830184615191565b92915050565b60006060820190506155f26000830186615191565b6155ff6020830185615191565b61560c6040830184615191565b949350505050565b600060208201905061562960008301846151a0565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000615661826157df565b915061566c836157df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156156a1576156a06158d8565b5b828201905092915050565b60006156b7826157df565b91506156c2836157df565b9250826156d2576156d1615907565b5b828204905092915050565b60006156e8826157df565b91506156f3836157df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561572c5761572b6158d8565b5b828202905092915050565b6000615742826157df565b915061574d836157df565b9250828210156157605761575f6158d8565b5b828203905092915050565b6000615776826157bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156158145780820151818401526020810190506157f9565b83811115615823576000848401525b50505050565b6000615834826157df565b91506000821415615848576158476158d8565b5b600182039050919050565b6000600282049050600182168061586b57607f821691505b6020821081141561587f5761587e615936565b5b50919050565b6000615890826157df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158c3576158c26158d8565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416c7461723a2054726164696e67206e6f7420656e61626c6564000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f416c7461723a2045786365656473206d6178696d756d20747820616d6f756e74600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4d7573742068617665206d696e74657220726f6c650000000000000000000000600082015250565b7f414c5441522f7065726d69742d65787069726564000000000000000000000000600082015250565b7f4d75737420686176652061646d696e20726f6c65000000000000000000000000600082015250565b7f416c7461723a2045786365656473206d6178696d756d2077616c6c657420616d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b7f4d7573742068617665207265626173657220726f6c6500000000000000000000600082015250565b7f414c5441522f696e76616c69642d7065726d6974000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f414c5441522f696e76616c69642d616464726573732d30000000000000000000600082015250565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615e0f8161576b565b8114615e1a57600080fd5b50565b615e268161577d565b8114615e3157600080fd5b50565b615e3d81615789565b8114615e4857600080fd5b50565b615e5481615793565b8114615e5f57600080fd5b50565b615e6b816157df565b8114615e7657600080fd5b50565b615e82816157e9565b8114615e8d57600080fd5b5056fea2646970667358221220b38568e7978a31a7febb80dcc47b4dad25ff182b9c549dfd00ee15ba2d0914dd64736f6c63430008030033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

-----Decoded View---------------
Arg [0] : _factory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
Arg [1] : weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2


Deployed Bytecode Sourcemap

76655:19803:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52527:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58971:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90946:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81068:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81680:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77132:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81498:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78267:155;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87713:1534;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34355:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79727:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34846:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77989:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59933:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77170:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76928:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85190:839;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78113:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36072:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91570:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89688:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95631:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82227:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83269:78;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77037:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76870:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93913:196;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77418:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89368:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74282:103;;;:::i;:::-;;77664:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71615:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78153:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72148:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73634:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53416:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80672:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84011:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32778:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80308:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59190:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77850:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80095:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31807:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92254:612;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76990:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86292:1159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95758:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80489:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81254:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53793:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96225:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80847:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92911:994;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72079:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35327:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94117:1506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90112:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79913:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77536:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74540:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52527:290;52657:4;52714:42;52699:57;;;:11;:57;;;;:110;;;;52773:36;52797:11;52773:23;:36::i;:::-;52699:110;52679:130;;52527:290;;;:::o;58971:100::-;59025:13;59058:5;59051:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58971:100;:::o;90946:251::-;91047:4;91110:5;91069:17;:29;91087:10;91069:29;;;;;;;;;;;;;;;:38;91099:7;91069:38;;;;;;;;;;;;;;;:46;;;;91152:7;91131:36;;91140:10;91131:36;;;91161:5;91131:36;;;;;;:::i;:::-;;;;;;;;91185:4;91178:11;;90946:251;;;;:::o;81068:178::-;81139:41;31852:4;81147:18;;81167:12;:10;:12::i;:::-;81139:7;:41::i;:::-;81131:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;81233:5;81216:8;:14;81225:4;81216:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;81068:178;;:::o;81680:105::-;81731:7;81758:19;:17;:19::i;:::-;81751:26;;81680:105;:::o;77132:31::-;;;;;;;;;;;;;:::o;81498:100::-;81551:7;81578:12;;81571:19;;81498:100;:::o;78267:155::-;78318:104;78267:155;:::o;87713:1534::-;87854:4;87841:2;78594:3;78580:18;;:2;:18;;;;78572:27;;;;;;78632:4;78618:19;;:2;:19;;;;78610:28;;;;;;87875:12:::1;;;;;;;;;;;87871:901;;;87915:7;:5;:7::i;:::-;87907:15;;:4;:15;;;;:32;;;;;87932:7;:5;:7::i;:::-;87926:13;;:2;:13;;;;87907:32;:52;;;;;87957:1;87943:16;;:2;:16;;;;87907:52;:77;;;;;87977:6;87963:21;;:2;:21;;;;87907:77;87903:858;;;88009:14;;;;;;;;;;;88004:99;;88047:36;;;;;;;;;;:::i;:::-;;;;;;;;88004:99;88125:8;:14;88134:4;88125:14;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;;88144:19;:23;88164:2;88144:23;;;;;;;;;;;;;;;;;;;;;;;;;88143:24;88125:42;88121:625;;;88208:11;;88199:5;:20;;88191:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;88312:15;;88295:13;88305:2;88295:9;:13::i;:::-;88287:5;:21;;;;:::i;:::-;:40;;88279:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;88121:625;;;88398:8;:12;88407:2;88398:12;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;;88415:19;:25;88435:4;88415:25;;;;;;;;;;;;;;;;;;;;;;;;;88414:26;88398:42;88394:352;;;88481:11;;88472:5;:20;;88464:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;88394:352;;;88560:19;:25;88580:4;88560:25;;;;;;;;;;;;;;;;;;;;;;;;;88559:26;:54;;;;;88590:19;:23;88610:2;88590:23;;;;;;;;;;;;;;;;;;;;;;;;;88589:24;88559:54;88555:191;;;88670:15;;88653:13;88663:2;88653:9;:13::i;:::-;88645:5;:21;;;;:::i;:::-;:40;;88637:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;88555:191;88394:352;88121:625;87903:858;87871:901;88851:70;88915:5;88851:17;:23;88869:4;88851:23;;;;;;;;;;;;;;;:59;88889:10;88851:59;;;;;;;;;;;;;;;;:63;;:70;;;;:::i;:::-;88813:17;:23;88831:4;88813:23;;;;;;;;;;;;;;;:35;88837:10;88813:35;;;;;;;;;;;;;;;:108;;;;88966:18;88987:23;89004:5;88987:16;:23::i;:::-;88966:44;;89072:36;89097:10;89072:14;:20;89087:4;89072:20;;;;;;;;;;;;;;;;:24;;:36;;;;:::i;:::-;89049:14;:20;89064:4;89049:20;;;;;;;;;;;;;;;:59;;;;89140:34;89163:10;89140:14;:18;89155:2;89140:18;;;;;;;;;;;;;;;;:22;;:34;;;;:::i;:::-;89119:14;:18;89134:2;89119:18;;;;;;;;;;;;;;;:55;;;;89205:2;89190:25;;89199:4;89190:25;;;89209:5;89190:25;;;;;;:::i;:::-;;;;;;;;89235:4;89228:11;;;87713:1534:::0;;;;;;:::o;34355:181::-;34474:7;34506:6;:12;34513:4;34506:12;;;;;;;;;;;:22;;;34499:29;;34355:181;;;:::o;79727:178::-;79796:41;31852:4;79804:18;;79824:12;:10;:12::i;:::-;79796:7;:41::i;:::-;79788:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;79891:6;79873:15;:24;;;;79727:178;:::o;34846:188::-;34965:18;34978:4;34965:12;:18::i;:::-;32298:16;32309:4;32298:10;:16::i;:::-;35001:25:::1;35012:4;35018:7;35001:10;:25::i;:::-;34846:188:::0;;;:::o;77989:117::-;78040:66;77989:117;;;:::o;59933:93::-;59991:5;60016:2;60009:9;;59933:93;:::o;77170:34::-;;;;;;;;;;;;;:::o;76928:55::-;;;;;;;;;;;;;;;;;;;;;;:::o;85190:839::-;85307:4;85285:2;78594:3;78580:18;;:2;:18;;;;78572:27;;;;;;78632:4;78618:19;;:2;:19;;;;78610:28;;;;;;85333:12:::1;;;;;;;;;;;85329:388;;;85379:7;:5;:7::i;:::-;85365:21;;:10;:21;;;;:38;;;;;85396:7;:5;:7::i;:::-;85390:13;;:2;:13;;;;85365:38;:58;;;;;85421:1;85407:16;;:2;:16;;;;85365:58;:83;;;;;85441:6;85427:21;;:2;:21;;;;85365:83;85361:345;;;85473:23;:35;85497:10;85473:35;;;;;;;;;;;;;;;;;;;;;;;;;85472:36;:68;;;;;85513:23;:27;85537:2;85513:27;;;;;;;;;;;;;;;;;;;;;;;;;85512:28;85472:68;85468:223;;;85615:15;;85598:13;85608:2;85598:9;:13::i;:::-;85572:23;85589:5;85572:16;:23::i;:::-;:39;;;;:::i;:::-;:58;;85564:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;85468:223;85361:345;85329:388;85795:37;85826:5;85795:14;:26;85810:10;85795:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;85766:14;:26;85781:10;85766:26;;;;;;;;;;;;;;;:66;;;;85905:29;85928:5;85905:14;:18;85920:2;85905:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;85884:14;:18;85899:2;85884:18;;;;;;;;;;;;;;;:50;;;;85971:2;85950:49;;85959:10;85950:49;;;85975:23;85992:5;85975:16;:23::i;:::-;85950:49;;;;;;:::i;:::-;;;;;;;;86017:4;86010:11;;85190:839:::0;;;;;:::o;78113:31::-;;;;:::o;36072:287::-;36225:12;:10;:12::i;:::-;36214:23;;:7;:23;;;36192:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;36325:26;36337:4;36343:7;36325:11;:26::i;:::-;36072:287;;:::o;91570:422::-;91686:4;91749:78;91816:10;91749:17;:29;91767:10;91749:29;;;;;;;;;;;;;;;:62;91793:7;91749:62;;;;;;;;;;;;;;;;:66;;:78;;;;:::i;:::-;91708:17;:29;91726:10;91708:29;;;;;;;;;;;;;;;:38;91738:7;91708:38;;;;;;;;;;;;;;;:119;;;;91891:7;91843:119;;91866:10;91843:119;;;91913:17;:29;91931:10;91913:29;;;;;;;;;;;;;;;:38;91943:7;91913:38;;;;;;;;;;;;;;;;91843:119;;;;;;:::i;:::-;;;;;;;;91980:4;91973:11;;91570:422;;;;:::o;89688:117::-;89751:7;89778:14;:19;89793:3;89778:19;;;;;;;;;;;;;;;;89771:26;;89688:117;;;:::o;95631:119::-;95692:7;95719:23;95736:5;95719:16;:23::i;:::-;95712:30;;95631:119;;;:::o;82227:205::-;82287:4;82312:34;72117:24;82333:12;:10;:12::i;:::-;82312:7;:34::i;:::-;82304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82385:17;82391:2;82395:6;82385:5;:17::i;:::-;82420:4;82413:11;;82227:205;;;;:::o;83269:78::-;83326:13;83332:6;83326:5;:13::i;:::-;83269:78;:::o;77037:33::-;;;;;;;;;;;;;:::o;76870:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;93913:196::-;93959:4;93980:15;;;;;;;;;;;93975:60;;94018:5;94011:12;;;;93975:60;94085:16;;94067:15;;:34;;;;:::i;:::-;94052:12;:49;94045:56;;93913:196;;:::o;77418:49::-;77461:6;77418:49;:::o;89368:134::-;89430:7;89457:37;89474:14;:19;89489:3;89474:19;;;;;;;;;;;;;;;;89457:16;:37::i;:::-;89450:44;;89368:134;;;:::o;74282:103::-;73520:13;:11;:13::i;:::-;74347:30:::1;74374:1;74347:18;:30::i;:::-;74282:103::o:0;77664:34::-;;;;:::o;71615:164::-;71692:46;71708:7;71717:12;:10;:12::i;:::-;71731:6;71692:15;:46::i;:::-;71749:22;71755:7;71764:6;71749:5;:22::i;:::-;71615:164;;:::o;78153:41::-;;;;;;;;;;;;;;;;;:::o;72148:64::-;72187:25;72148:64;:::o;73634:87::-;73680:7;73707:6;;;;;;;;;;;73700:13;;73634:87;:::o;53416:203::-;53551:7;53583:28;53605:5;53583:12;:18;53596:4;53583:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;53576:35;;53416:203;;;;:::o;80672:167::-;80734:41;31852:4;80742:18;;80762:12;:10;:12::i;:::-;80734:7;:41::i;:::-;80726:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;80826:5;80811:12;;:20;;;;;;;;;;;;;;;;;;80672:167;:::o;84011:223::-;84079:4;84104:34;72117:24;84125:12;:10;:12::i;:::-;84104:7;:34::i;:::-;84096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;84177:27;84193:2;84197:6;84177:15;:27::i;:::-;84222:4;84215:11;;84011:223;;;;:::o;32778:197::-;32909:4;32938:6;:12;32945:4;32938:12;;;;;;;;;;;:20;;:29;32959:7;32938:29;;;;;;;;;;;;;;;;;;;;;;;;;32931:36;;32778:197;;;;:::o;80308:173::-;80373:41;31852:4;80381:18;;80401:12;:10;:12::i;:::-;80373:7;:41::i;:::-;80365:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;80468:5;80450:15;;:23;;;;;;;;;;;;;;;;;;80308:173;:::o;59190:104::-;59246:13;59279:7;59272:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59190:104;:::o;77850:25::-;;;;:::o;80095:205::-;80180:41;31852:4;80188:18;;80208:12;:10;:12::i;:::-;80180:7;:41::i;:::-;80172:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;80287:5;80257:19;:27;80277:6;80257:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;80095:205;;:::o;31807:49::-;31852:4;31807:49;;;:::o;92254:612::-;92375:4;92397:16;92416:17;:29;92434:10;92416:29;;;;;;;;;;;;;;;:38;92446:7;92416:38;;;;;;;;;;;;;;;;92397:57;;92488:8;92469:15;:27;92465:237;;92554:1;92513:17;:29;92531:10;92513:29;;;;;;;;;;;;;;;:38;92543:7;92513:38;;;;;;;;;;;;;;;:42;;;;92465:237;;;92629:61;92660:15;92629:8;:12;;:61;;;;:::i;:::-;92588:17;:29;92606:10;92588:29;;;;;;;;;;;;;;;:38;92618:7;92588:38;;;;;;;;;;;;;;;:102;;;;92465:237;92765:7;92717:119;;92740:10;92717:119;;;92787:17;:29;92805:10;92787:29;;;;;;;;;;;;;;;:38;92817:7;92787:38;;;;;;;;;;;;;;;;92717:119;;;;;;:::i;:::-;;;;;;;;92854:4;92847:11;;;92254:612;;;;:::o;76990:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;86292:1159::-;86417:4;86395:2;78594:3;78580:18;;:2;:18;;;;78572:27;;;;;;78632:4;78618:19;;:2;:19;;;;78610:28;;;;;;86443:12:::1;;;;;;;;;;;86439:370;;;86489:7;:5;:7::i;:::-;86475:21;;:10;:21;;;;:38;;;;;86506:7;:5;:7::i;:::-;86500:13;;:2;:13;;;;86475:38;:58;;;;;86531:1;86517:16;;:2;:16;;;;86475:58;:83;;;;;86551:6;86537:21;;:2;:21;;;;86475:83;86471:327;;;86583:23;:35;86607:10;86583:35;;;;;;;;;;;;;;;;;;;;;;;;;86582:36;:68;;;;;86623:23;:27;86647:2;86623:27;;;;;;;;;;;;;;;;;;;;;;;;;86622:28;86582:68;86578:205;;;86707:15;;86690:13;86700:2;86690:9;:13::i;:::-;86682:5;:21;;;;:::i;:::-;:40;;86674:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;86578:205;86471:327;86439:370;87098:18;87119:23;87136:5;87119:16;:23::i;:::-;87098:44;;87223:42;87254:10;87223:14;:26;87238:10;87223:26;;;;;;;;;;;;;;;;:30;;:42;;;;:::i;:::-;87194:14;:26;87209:10;87194:26;;;;;;;;;;;;;;;:71;;;;87338:34;87361:10;87338:14;:18;87353:2;87338:18;;;;;;;;;;;;;;;;:22;;:34;;;;:::i;:::-;87317:14;:18;87332:2;87317:18;;;;;;;;;;;;;;;:55;;;;87409:2;87388:31;;87397:10;87388:31;;;87413:5;87388:31;;;;;;:::i;:::-;;;;;;;;87439:4;87432:11;;;86292:1159:::0;;;;;:::o;95758:119::-;95819:7;95846:23;95863:5;95846:16;:23::i;:::-;95839:30;;95758:119;;;:::o;80489:175::-;80555:41;31852:4;80563:18;;80583:12;:10;:12::i;:::-;80555:7;:41::i;:::-;80547:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;80651:5;80632:16;:24;;;;80489:175;:::o;81254:171::-;81318:41;31852:4;81326:18;;81346:12;:10;:12::i;:::-;81318:7;:41::i;:::-;81310:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;81412:5;81395:14;;:22;;;;;;;;;;;;;;;;;;81254:171;:::o;53793:192::-;53918:7;53950:27;:12;:18;53963:4;53950:18;;;;;;;;;;;:25;:27::i;:::-;53943:34;;53793:192;;;:::o;96225:230::-;96350:4;73520:13;:11;:13::i;:::-;96398:5:::1;96391:22;;;96414:2;96418:6;96391:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;96443:4;96436:11;;96225:230:::0;;;;;:::o;80847:213::-;80936:41;31852:4;80944:18;;80964:12;:10;:12::i;:::-;80936:7;:41::i;:::-;80928:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;81047:5;81013:23;:31;81037:6;81013:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;80847:213;;:::o;92911:994::-;93138:8;93119:15;:27;;93111:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;93184:14;93289:16;;78040:66;93393:15;;93435:5;93467:7;93501:5;93533:6;:13;93540:5;93533:13;;;;;;;;;;;;;;;;:15;;;;;;;;;:::i;:::-;;;;;93575:8;93356:250;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93324:301;;;;;;93225:415;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93201:450;;;;;;93184:467;;93689:1;93672:19;;:5;:19;;;;93664:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;93747:26;93757:6;93765:1;93768;93771;93747:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93738:35;;:5;:35;;;93730:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93845:5;93809:17;:24;93827:5;93809:24;;;;;;;;;;;;;;;:33;93834:7;93809:33;;;;;;;;;;;;;;;:41;;;;93882:7;93866:31;;93875:5;93866:31;;;93891:5;93866:31;;;;;;:::i;:::-;;;;;;;;92911:994;;;;;;;;:::o;72079:62::-;72117:24;72079:62;:::o;35327:190::-;35447:18;35460:4;35447:12;:18::i;:::-;32298:16;32309:4;32298:10;:16::i;:::-;35483:26:::1;35495:4;35501:7;35483:11;:26::i;:::-;35327:190:::0;;;:::o;94117:1506::-;94209:7;94237:35;72187:25;94259:12;:10;:12::i;:::-;94237:7;:35::i;:::-;94229:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;94352:1;94338:10;:15;94334:197;;;94375:65;94382:15;;94399:19;;94420;;94375:65;;;;;;;;:::i;:::-;;;;;;;;94473:12;94455:15;:30;;;;94507:12;;94500:19;;;;94334:197;94541:9;94553:10;94541:22;;94610:15;;94595:12;:30;;;;:::i;:::-;94587:4;:39;;;;:::i;:::-;94574:52;;94662:31;94696:19;;94662:53;;94731:8;94726:633;;94835:91;77567:6;94835:63;94877:20;94886:10;77567:6;94877:8;;:20;;;;:::i;:::-;94835:19;;:41;;:63;;;;:::i;:::-;:85;;:91;;;;:::i;:::-;94813:19;:113;;;;94726:633;;;95016:24;95043:91;77567:6;95043:63;95085:20;95094:10;77567:6;95085:8;;:20;;;;:::i;:::-;95043:19;;:41;;:63;;;;:::i;:::-;:85;;:91;;;;:::i;:::-;95016:118;;95172:19;:17;:19::i;:::-;95153:16;:38;95149:199;;;95234:16;95212:19;:38;;;;95149:199;;;95313:19;:17;:19::i;:::-;95291;:41;;;;95149:199;94726:633;;95429:28;95446:10;;95429:16;:28::i;:::-;95414:12;:43;;;;95475:69;95482:15;;95499:23;95524:19;;95475:69;;;;;;;;:::i;:::-;;;;;;;;95573:12;95555:15;:30;;;;95603:12;;95596:19;;;;94117:1506;;;;;:::o;90112:192::-;90230:7;90262:17;:25;90280:6;90262:25;;;;;;;;;;;;;;;:34;90288:7;90262:34;;;;;;;;;;;;;;;;90255:41;;90112:192;;;;:::o;79913:170::-;79978:41;31852:4;79986:18;;80006:12;:10;:12::i;:::-;79978:7;:41::i;:::-;79970:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;80069:6;80055:11;:20;;;;79913:170;:::o;77536:37::-;77567:6;77536:37;:::o;74540:238::-;73520:13;:11;:13::i;:::-;74663:1:::1;74643:22;;:8;:22;;;;74621:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;74742:28;74761:8;74742:18;:28::i;:::-;74540:238:::0;:::o;3774:98::-;3832:7;3863:1;3859;:5;;;;:::i;:::-;3852:12;;3774:98;;;;:::o;4173:::-;4231:7;4262:1;4258;:5;;;;:::i;:::-;4251:12;;4173:98;;;;:::o;37738:238::-;37822:22;37830:4;37836:7;37822;:22::i;:::-;37817:152;;37893:4;37861:6;:12;37868:4;37861:12;;;;;;;;;;;:20;;:29;37882:7;37861:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;37944:12;:10;:12::i;:::-;37917:40;;37935:7;37917:40;;37929:4;37917:40;;;;;;;;;;37817:152;37738:238;;:::o;46989:175::-;47077:4;47106:50;47111:3;:10;;47147:5;47131:23;;47123:32;;47106:4;:50::i;:::-;47099:57;;46989:175;;;;:::o;32406:280::-;32536:4;32593:32;32578:47;;;:11;:47;;;;:100;;;;32642:36;32666:11;32642:23;:36::i;:::-;32578:100;32558:120;;32406:280;;;:::o;12308:98::-;12361:7;12388:10;12381:17;;12308:98;:::o;81793:317::-;81845:7;82092:10;;82085:2;82070:32;;;;:::i;:::-;82063:39;;81793:317;:::o;3417:98::-;3475:7;3506:1;3502;:5;;;;:::i;:::-;3495:12;;3417:98;;;;:::o;96044:151::-;96108:7;96135:52;96167:19;;96135:27;77461:6;96135:5;:9;;:27;;;;:::i;:::-;:31;;:52;;;;:::i;:::-;96128:59;;96044:151;;;:::o;3036:98::-;3094:7;3125:1;3121;:5;;;;:::i;:::-;3114:12;;3036:98;;;;:::o;33279:105::-;33346:30;33357:4;33363:12;:10;:12::i;:::-;33346:10;:30::i;:::-;33279:105;:::o;54078:201::-;54198:31;54215:4;54221:7;54198:16;:31::i;:::-;54240;54263:7;54240:12;:18;54253:4;54240:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;54078:201;;:::o;95885:151::-;95949:7;95976:52;77461:6;95976:30;95986:19;;95976:5;:9;;:30;;;;:::i;:::-;:34;;:52;;;;:::i;:::-;95969:59;;95885:151;;;:::o;54373:206::-;54494:32;54512:4;54518:7;54494:17;:32::i;:::-;54537:34;54563:7;54537:12;:18;54550:4;54537:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;54373:206;;:::o;82440:699::-;82560:24;82577:6;82560:12;;:16;;:24;;;;:::i;:::-;82545:12;:39;;;;82630:18;82651:24;82668:6;82651:16;:24::i;:::-;82630:45;;82733:26;82748:10;82733;;:14;;:26;;;;:::i;:::-;82720:10;:39;;;;82884:19;:17;:19::i;:::-;82861;;:42;;82839:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;83015:34;83038:10;83015:14;:18;83030:2;83015:18;;;;;;;;;;;;;;;;:22;;:34;;;;:::i;:::-;82994:14;:18;83009:2;82994:18;;;;;;;;;;;;;;;:55;;;;83067:16;83072:2;83076:6;83067:16;;;;;;;:::i;:::-;;;;;;;;83120:2;83099:32;;83116:1;83099:32;;;83124:6;83099:32;;;;;;:::i;:::-;;;;;;;;82440:699;;;:::o;83355:515::-;83454:24;83471:6;83454:12;;:16;;:24;;;;:::i;:::-;83439:12;:39;;;;83524:18;83545:24;83562:6;83545:16;:24::i;:::-;83524:45;;83627:26;83642:10;83627;;:14;;:26;;;;:::i;:::-;83614:10;:39;;;;83724:42;83755:10;83724:14;:26;83739:10;83724:26;;;;;;;;;;;;;;;;:30;;:42;;;;:::i;:::-;83695:14;:26;83710:10;83695:26;;;;;;;;;;;;;;;:71;;;;83782:24;83787:10;83799:6;83782:24;;;;;;;:::i;:::-;;;;;;;;83851:1;83822:40;;83831:10;83822:40;;;83855:6;83822:40;;;;;;:::i;:::-;;;;;;;;83355:515;;:::o;73799:132::-;73874:12;:10;:12::i;:::-;73863:23;;:7;:5;:7::i;:::-;:23;;;73855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73799:132::o;74938:191::-;75012:16;75031:6;;;;;;;;;;;75012:25;;75057:8;75048:6;;:17;;;;;;;;;;;;;;;;;;75112:8;75081:40;;75102:8;75081:40;;;;;;;;;;;;74938:191;;:::o;68566:502::-;68701:24;68728:25;68738:5;68745:7;68728:9;:25::i;:::-;68701:52;;68788:17;68768:16;:37;68764:297;;68868:6;68848:16;:26;;68822:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;68983:51;68992:5;68999:7;69027:6;69008:16;:25;68983:8;:51::i;:::-;68764:297;68566:502;;;;:::o;66782:675::-;66885:1;66866:21;;:7;:21;;;;66858:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66938:49;66959:7;66976:1;66980:6;66938:20;:49::i;:::-;67000:22;67025:9;:18;67035:7;67025:18;;;;;;;;;;;;;;;;67000:43;;67080:6;67062:14;:24;;67054:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;67199:6;67182:14;:23;67161:9;:18;67171:7;67161:18;;;;;;;;;;;;;;;:44;;;;67316:6;67300:12;;:22;;;;;;;;;;;67377:1;67351:37;;67360:7;67351:37;;;67381:6;67351:37;;;;;;:::i;:::-;;;;;;;;67401:48;67421:7;67438:1;67442:6;67401:19;:48::i;:::-;66782:675;;;:::o;48363:190::-;48464:7;48520:22;48524:3;:10;;48536:5;48520:3;:22::i;:::-;48512:31;;48489:56;;48363:190;;;;:::o;84242:710::-;84360:22;84375:6;84360:10;;:14;;:22;;;;:::i;:::-;84347:10;:35;;;;84426:20;84449:24;84466:6;84449:16;:24::i;:::-;84426:47;;84534:30;84551:12;84534;;:16;;:30;;;;:::i;:::-;84519:12;:45;;;;84689:19;:17;:19::i;:::-;84666;;:42;;84644:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;84820:30;84843:6;84820:14;:18;84835:2;84820:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;84799:14;:18;84814:2;84799:18;;;;;;;;;;;;;;;:51;;;;84868:22;84873:2;84877:12;84868:22;;;;;;;:::i;:::-;;;;;;;;84927:2;84906:38;;84923:1;84906:38;;;84931:12;84906:38;;;;;;:::i;:::-;;;;;;;;84242:710;;;:::o;47892:117::-;47955:7;47982:19;47990:3;:10;;47982:7;:19::i;:::-;47975:26;;47892:117;;;:::o;40514:414::-;40577:4;40599:21;40609:3;40614:5;40599:9;:21::i;:::-;40594:327;;40637:3;:11;;40654:5;40637:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40820:3;:11;;:18;;;;40798:3;:12;;:19;40811:5;40798:19;;;;;;;;;;;:40;;;;40860:4;40853:11;;;;40594:327;40904:5;40897:12;;40514:414;;;;;:::o;14249:207::-;14379:4;14423:25;14408:40;;;:11;:40;;;;14401:47;;14249:207;;;:::o;33674:492::-;33763:22;33771:4;33777:7;33763;:22::i;:::-;33758:401;;33951:28;33971:7;33951:19;:28::i;:::-;34052:38;34080:4;34072:13;;34087:2;34052:19;:38::i;:::-;33856:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33802:345;;;;;;;;;;;:::i;:::-;;;;;;;;33758:401;33674:492;;:::o;38156:239::-;38240:22;38248:4;38254:7;38240;:22::i;:::-;38236:152;;;38311:5;38279:6;:12;38286:4;38279:12;;;;;;;;;;;:20;;:29;38300:7;38279:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;38363:12;:10;:12::i;:::-;38336:40;;38354:7;38336:40;;38348:4;38336:40;;;;;;;;;;38236:152;38156:239;;:::o;47340:181::-;47431:4;47460:53;47468:3;:10;;47504:5;47488:23;;47480:32;;47460:7;:53::i;:::-;47453:60;;47340:181;;;;:::o;67895:380::-;68048:1;68031:19;;:5;:19;;;;68023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68129:1;68110:21;;:7;:21;;;;68102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68213:6;68183:11;:18;68195:5;68183:18;;;;;;;;;;;;;;;:27;68202:7;68183:27;;;;;;;;;;;;;;;:36;;;;68251:7;68235:32;;68244:5;68235:32;;;68260:6;68235:32;;;;;;:::i;:::-;;;;;;;;67895:380;;;:::o;69668:125::-;;;;:::o;70397:124::-;;;;:::o;43320:152::-;43414:7;43446:3;:11;;43458:5;43446:18;;;;;;;;;;;;;;;;;;;;;;;;43439:25;;43320:152;;;;:::o;42857:109::-;42913:7;42940:3;:11;;:18;;;;42933:25;;42857:109;;;:::o;42610:161::-;42710:4;42762:1;42739:3;:12;;:19;42752:5;42739:19;;;;;;;;;;;;:24;;42732:31;;42610:161;;;;:::o;29767:151::-;29825:13;29858:52;29886:4;29870:22;;27890:2;29858:52;;:11;:52::i;:::-;29851:59;;29767:151;;;:::o;29131:479::-;29233:13;29264:19;29309:1;29300:6;29296:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;29286:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29264:47;;29322:15;:6;29329:1;29322:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;29348;:6;29355:1;29348:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;29379:9;29404:1;29395:6;29391:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;29379:26;;29374:131;29411:1;29407;:5;29374:131;;;29446:8;29463:3;29455:5;:11;29446:21;;;;;;;;;;;;;;;;;;29434:6;29441:1;29434:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;29492:1;29482:11;;;;;29414:3;;;;:::i;:::-;;;29374:131;;;;29532:1;29523:5;:10;29515:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;29595:6;29581:21;;;29131:479;;;;:::o;41104:1420::-;41170:4;41288:18;41309:3;:12;;:19;41322:5;41309:19;;;;;;;;;;;;41288:40;;41359:1;41345:10;:15;41341:1176;;41720:21;41757:1;41744:10;:14;;;;:::i;:::-;41720:38;;41773:17;41814:1;41793:3;:11;;:18;;;;:22;;;;:::i;:::-;41773:42;;41849:13;41836:9;:26;41832:405;;41883:17;41903:3;:11;;41915:9;41903:22;;;;;;;;;;;;;;;;;;;;;;;;41883:42;;42057:9;42028:3;:11;;42040:13;42028:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;42168:10;42142:3;:12;;:23;42155:9;42142:23;;;;;;;;;;;:36;;;;41832:405;;42318:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42413:3;:12;;:19;42426:5;42413:19;;;;;;;;;;;42406:26;;;42456:4;42449:11;;;;;;;41341:1176;42500:5;42493:12;;;41104:1420;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:137::-;;376:6;370:13;361:22;;392:30;416:5;392:30;:::i;:::-;351:77;;;;:::o;434:139::-;;518:6;505:20;496:29;;534:33;561:5;534:33;:::i;:::-;486:87;;;;:::o;579:137::-;;662:6;649:20;640:29;;678:32;704:5;678:32;:::i;:::-;630:86;;;;:::o;722:139::-;;806:6;793:20;784:29;;822:33;849:5;822:33;:::i;:::-;774:87;;;;:::o;867:135::-;;949:6;936:20;927:29;;965:31;990:5;965:31;:::i;:::-;917:85;;;;:::o;1008:262::-;;1116:2;1104:9;1095:7;1091:23;1087:32;1084:2;;;1132:1;1129;1122:12;1084:2;1175:1;1200:53;1245:7;1236:6;1225:9;1221:22;1200:53;:::i;:::-;1190:63;;1146:117;1074:196;;;;:::o;1276:407::-;;;1401:2;1389:9;1380:7;1376:23;1372:32;1369:2;;;1417:1;1414;1407:12;1369:2;1460:1;1485:53;1530:7;1521:6;1510:9;1506:22;1485:53;:::i;:::-;1475:63;;1431:117;1587:2;1613:53;1658:7;1649:6;1638:9;1634:22;1613:53;:::i;:::-;1603:63;;1558:118;1359:324;;;;;:::o;1689:552::-;;;;1831:2;1819:9;1810:7;1806:23;1802:32;1799:2;;;1847:1;1844;1837:12;1799:2;1890:1;1915:53;1960:7;1951:6;1940:9;1936:22;1915:53;:::i;:::-;1905:63;;1861:117;2017:2;2043:53;2088:7;2079:6;2068:9;2064:22;2043:53;:::i;:::-;2033:63;;1988:118;2145:2;2171:53;2216:7;2207:6;2196:9;2192:22;2171:53;:::i;:::-;2161:63;;2116:118;1789:452;;;;;:::o;2247:1132::-;;;;;;;;2455:3;2443:9;2434:7;2430:23;2426:33;2423:2;;;2472:1;2469;2462:12;2423:2;2515:1;2540:53;2585:7;2576:6;2565:9;2561:22;2540:53;:::i;:::-;2530:63;;2486:117;2642:2;2668:53;2713:7;2704:6;2693:9;2689:22;2668:53;:::i;:::-;2658:63;;2613:118;2770:2;2796:53;2841:7;2832:6;2821:9;2817:22;2796:53;:::i;:::-;2786:63;;2741:118;2898:2;2924:53;2969:7;2960:6;2949:9;2945:22;2924:53;:::i;:::-;2914:63;;2869:118;3026:3;3053:51;3096:7;3087:6;3076:9;3072:22;3053:51;:::i;:::-;3043:61;;2997:117;3153:3;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3124:119;3282:3;3309:53;3354:7;3345:6;3334:9;3330:22;3309:53;:::i;:::-;3299:63;;3253:119;2413:966;;;;;;;;;;:::o;3385:401::-;;;3507:2;3495:9;3486:7;3482:23;3478:32;3475:2;;;3523:1;3520;3513:12;3475:2;3566:1;3591:53;3636:7;3627:6;3616:9;3612:22;3591:53;:::i;:::-;3581:63;;3537:117;3693:2;3719:50;3761:7;3752:6;3741:9;3737:22;3719:50;:::i;:::-;3709:60;;3664:115;3465:321;;;;;:::o;3792:407::-;;;3917:2;3905:9;3896:7;3892:23;3888:32;3885:2;;;3933:1;3930;3923:12;3885:2;3976:1;4001:53;4046:7;4037:6;4026:9;4022:22;4001:53;:::i;:::-;3991:63;;3947:117;4103:2;4129:53;4174:7;4165:6;4154:9;4150:22;4129:53;:::i;:::-;4119:63;;4074:118;3875:324;;;;;:::o;4205:256::-;;4310:2;4298:9;4289:7;4285:23;4281:32;4278:2;;;4326:1;4323;4316:12;4278:2;4369:1;4394:50;4436:7;4427:6;4416:9;4412:22;4394:50;:::i;:::-;4384:60;;4340:114;4268:193;;;;:::o;4467:278::-;;4583:2;4571:9;4562:7;4558:23;4554:32;4551:2;;;4599:1;4596;4589:12;4551:2;4642:1;4667:61;4720:7;4711:6;4700:9;4696:22;4667:61;:::i;:::-;4657:71;;4613:125;4541:204;;;;:::o;4751:262::-;;4859:2;4847:9;4838:7;4834:23;4830:32;4827:2;;;4875:1;4872;4865:12;4827:2;4918:1;4943:53;4988:7;4979:6;4968:9;4964:22;4943:53;:::i;:::-;4933:63;;4889:117;4817:196;;;;:::o;5019:407::-;;;5144:2;5132:9;5123:7;5119:23;5115:32;5112:2;;;5160:1;5157;5150:12;5112:2;5203:1;5228:53;5273:7;5264:6;5253:9;5249:22;5228:53;:::i;:::-;5218:63;;5174:117;5330:2;5356:53;5401:7;5392:6;5381:9;5377:22;5356:53;:::i;:::-;5346:63;;5301:118;5102:324;;;;;:::o;5432:407::-;;;5557:2;5545:9;5536:7;5532:23;5528:32;5525:2;;;5573:1;5570;5563:12;5525:2;5616:1;5641:53;5686:7;5677:6;5666:9;5662:22;5641:53;:::i;:::-;5631:63;;5587:117;5743:2;5769:53;5814:7;5805:6;5794:9;5790:22;5769:53;:::i;:::-;5759:63;;5714:118;5515:324;;;;;:::o;5845:260::-;;5952:2;5940:9;5931:7;5927:23;5923:32;5920:2;;;5968:1;5965;5958:12;5920:2;6011:1;6036:52;6080:7;6071:6;6060:9;6056:22;6036:52;:::i;:::-;6026:62;;5982:116;5910:195;;;;:::o;6111:262::-;;6219:2;6207:9;6198:7;6194:23;6190:32;6187:2;;;6235:1;6232;6225:12;6187:2;6278:1;6303:53;6348:7;6339:6;6328:9;6324:22;6303:53;:::i;:::-;6293:63;;6249:117;6177:196;;;;:::o;6379:401::-;;;6501:2;6489:9;6480:7;6476:23;6472:32;6469:2;;;6517:1;6514;6507:12;6469:2;6560:1;6585:53;6630:7;6621:6;6610:9;6606:22;6585:53;:::i;:::-;6575:63;;6531:117;6687:2;6713:50;6755:7;6746:6;6735:9;6731:22;6713:50;:::i;:::-;6703:60;;6658:115;6459:321;;;;;:::o;6786:118::-;6873:24;6891:5;6873:24;:::i;:::-;6868:3;6861:37;6851:53;;:::o;6910:109::-;6991:21;7006:5;6991:21;:::i;:::-;6986:3;6979:34;6969:50;;:::o;7025:118::-;7112:24;7130:5;7112:24;:::i;:::-;7107:3;7100:37;7090:53;;:::o;7149:157::-;7254:45;7274:24;7292:5;7274:24;:::i;:::-;7254:45;:::i;:::-;7249:3;7242:58;7232:74;;:::o;7312:364::-;;7428:39;7461:5;7428:39;:::i;:::-;7483:71;7547:6;7542:3;7483:71;:::i;:::-;7476:78;;7563:52;7608:6;7603:3;7596:4;7589:5;7585:16;7563:52;:::i;:::-;7640:29;7662:6;7640:29;:::i;:::-;7635:3;7631:39;7624:46;;7404:272;;;;;:::o;7682:377::-;;7816:39;7849:5;7816:39;:::i;:::-;7871:89;7953:6;7948:3;7871:89;:::i;:::-;7864:96;;7969:52;8014:6;8009:3;8002:4;7995:5;7991:16;7969:52;:::i;:::-;8046:6;8041:3;8037:16;8030:23;;7792:267;;;;;:::o;8065:366::-;;8228:67;8292:2;8287:3;8228:67;:::i;:::-;8221:74;;8304:93;8393:3;8304:93;:::i;:::-;8422:2;8417:3;8413:12;8406:19;;8211:220;;;:::o;8437:366::-;;8600:67;8664:2;8659:3;8600:67;:::i;:::-;8593:74;;8676:93;8765:3;8676:93;:::i;:::-;8794:2;8789:3;8785:12;8778:19;;8583:220;;;:::o;8809:366::-;;8972:67;9036:2;9031:3;8972:67;:::i;:::-;8965:74;;9048:93;9137:3;9048:93;:::i;:::-;9166:2;9161:3;9157:12;9150:19;;8955:220;;;:::o;9181:366::-;;9344:67;9408:2;9403:3;9344:67;:::i;:::-;9337:74;;9420:93;9509:3;9420:93;:::i;:::-;9538:2;9533:3;9529:12;9522:19;;9327:220;;;:::o;9553:366::-;;9716:67;9780:2;9775:3;9716:67;:::i;:::-;9709:74;;9792:93;9881:3;9792:93;:::i;:::-;9910:2;9905:3;9901:12;9894:19;;9699:220;;;:::o;9925:400::-;;10106:84;10188:1;10183:3;10106:84;:::i;:::-;10099:91;;10199:93;10288:3;10199:93;:::i;:::-;10317:1;10312:3;10308:11;10301:18;;10089:236;;;:::o;10331:366::-;;10494:67;10558:2;10553:3;10494:67;:::i;:::-;10487:74;;10570:93;10659:3;10570:93;:::i;:::-;10688:2;10683:3;10679:12;10672:19;;10477:220;;;:::o;10703:366::-;;10866:67;10930:2;10925:3;10866:67;:::i;:::-;10859:74;;10942:93;11031:3;10942:93;:::i;:::-;11060:2;11055:3;11051:12;11044:19;;10849:220;;;:::o;11075:366::-;;11238:67;11302:2;11297:3;11238:67;:::i;:::-;11231:74;;11314:93;11403:3;11314:93;:::i;:::-;11432:2;11427:3;11423:12;11416:19;;11221:220;;;:::o;11447:366::-;;11610:67;11674:2;11669:3;11610:67;:::i;:::-;11603:74;;11686:93;11775:3;11686:93;:::i;:::-;11804:2;11799:3;11795:12;11788:19;;11593:220;;;:::o;11819:366::-;;11982:67;12046:2;12041:3;11982:67;:::i;:::-;11975:74;;12058:93;12147:3;12058:93;:::i;:::-;12176:2;12171:3;12167:12;12160:19;;11965:220;;;:::o;12191:366::-;;12354:67;12418:2;12413:3;12354:67;:::i;:::-;12347:74;;12430:93;12519:3;12430:93;:::i;:::-;12548:2;12543:3;12539:12;12532:19;;12337:220;;;:::o;12563:366::-;;12726:67;12790:2;12785:3;12726:67;:::i;:::-;12719:74;;12802:93;12891:3;12802:93;:::i;:::-;12920:2;12915:3;12911:12;12904:19;;12709:220;;;:::o;12935:366::-;;13098:67;13162:2;13157:3;13098:67;:::i;:::-;13091:74;;13174:93;13263:3;13174:93;:::i;:::-;13292:2;13287:3;13283:12;13276:19;;13081:220;;;:::o;13307:366::-;;13470:67;13534:2;13529:3;13470:67;:::i;:::-;13463:74;;13546:93;13635:3;13546:93;:::i;:::-;13664:2;13659:3;13655:12;13648:19;;13453:220;;;:::o;13679:366::-;;13842:67;13906:2;13901:3;13842:67;:::i;:::-;13835:74;;13918:93;14007:3;13918:93;:::i;:::-;14036:2;14031:3;14027:12;14020:19;;13825:220;;;:::o;14051:366::-;;14214:67;14278:2;14273:3;14214:67;:::i;:::-;14207:74;;14290:93;14379:3;14290:93;:::i;:::-;14408:2;14403:3;14399:12;14392:19;;14197:220;;;:::o;14423:402::-;;14604:85;14686:2;14681:3;14604:85;:::i;:::-;14597:92;;14698:93;14787:3;14698:93;:::i;:::-;14816:2;14811:3;14807:12;14800:19;;14587:238;;;:::o;14831:366::-;;14994:67;15058:2;15053:3;14994:67;:::i;:::-;14987:74;;15070:93;15159:3;15070:93;:::i;:::-;15188:2;15183:3;15179:12;15172:19;;14977:220;;;:::o;15203:366::-;;15366:67;15430:2;15425:3;15366:67;:::i;:::-;15359:74;;15442:93;15531:3;15442:93;:::i;:::-;15560:2;15555:3;15551:12;15544:19;;15349:220;;;:::o;15575:402::-;;15756:85;15838:2;15833:3;15756:85;:::i;:::-;15749:92;;15850:93;15939:3;15850:93;:::i;:::-;15968:2;15963:3;15959:12;15952:19;;15739:238;;;:::o;15983:366::-;;16146:67;16210:2;16205:3;16146:67;:::i;:::-;16139:74;;16222:93;16311:3;16222:93;:::i;:::-;16340:2;16335:3;16331:12;16324:19;;16129:220;;;:::o;16355:118::-;16442:24;16460:5;16442:24;:::i;:::-;16437:3;16430:37;16420:53;;:::o;16479:112::-;16562:22;16578:5;16562:22;:::i;:::-;16557:3;16550:35;16540:51;;:::o;16597:663::-;;16860:148;17004:3;16860:148;:::i;:::-;16853:155;;17018:75;17089:3;17080:6;17018:75;:::i;:::-;17118:2;17113:3;17109:12;17102:19;;17131:75;17202:3;17193:6;17131:75;:::i;:::-;17231:2;17226:3;17222:12;17215:19;;17251:3;17244:10;;16842:418;;;;;:::o;17266:967::-;;17670:148;17814:3;17670:148;:::i;:::-;17663:155;;17835:95;17926:3;17917:6;17835:95;:::i;:::-;17828:102;;17947:148;18091:3;17947:148;:::i;:::-;17940:155;;18112:95;18203:3;18194:6;18112:95;:::i;:::-;18105:102;;18224:3;18217:10;;17652:581;;;;;:::o;18239:222::-;;18370:2;18359:9;18355:18;18347:26;;18383:71;18451:1;18440:9;18436:17;18427:6;18383:71;:::i;:::-;18337:124;;;;:::o;18467:332::-;;18626:2;18615:9;18611:18;18603:26;;18639:71;18707:1;18696:9;18692:17;18683:6;18639:71;:::i;:::-;18720:72;18788:2;18777:9;18773:18;18764:6;18720:72;:::i;:::-;18593:206;;;;;:::o;18805:210::-;;18930:2;18919:9;18915:18;18907:26;;18943:65;19005:1;18994:9;18990:17;18981:6;18943:65;:::i;:::-;18897:118;;;;:::o;19021:222::-;;19152:2;19141:9;19137:18;19129:26;;19165:71;19233:1;19222:9;19218:17;19209:6;19165:71;:::i;:::-;19119:124;;;;:::o;19249:775::-;;19520:3;19509:9;19505:19;19497:27;;19534:71;19602:1;19591:9;19587:17;19578:6;19534:71;:::i;:::-;19615:72;19683:2;19672:9;19668:18;19659:6;19615:72;:::i;:::-;19697;19765:2;19754:9;19750:18;19741:6;19697:72;:::i;:::-;19779;19847:2;19836:9;19832:18;19823:6;19779:72;:::i;:::-;19861:73;19929:3;19918:9;19914:19;19905:6;19861:73;:::i;:::-;19944;20012:3;20001:9;19997:19;19988:6;19944:73;:::i;:::-;19487:537;;;;;;;;;:::o;20030:545::-;;20241:3;20230:9;20226:19;20218:27;;20255:71;20323:1;20312:9;20308:17;20299:6;20255:71;:::i;:::-;20336:68;20400:2;20389:9;20385:18;20376:6;20336:68;:::i;:::-;20414:72;20482:2;20471:9;20467:18;20458:6;20414:72;:::i;:::-;20496;20564:2;20553:9;20549:18;20540:6;20496:72;:::i;:::-;20208:367;;;;;;;:::o;20581:313::-;;20732:2;20721:9;20717:18;20709:26;;20781:9;20775:4;20771:20;20767:1;20756:9;20752:17;20745:47;20809:78;20882:4;20873:6;20809:78;:::i;:::-;20801:86;;20699:195;;;;:::o;20900:419::-;;21104:2;21093:9;21089:18;21081:26;;21153:9;21147:4;21143:20;21139:1;21128:9;21124:17;21117:47;21181:131;21307:4;21181:131;:::i;:::-;21173:139;;21071:248;;;:::o;21325:419::-;;21529:2;21518:9;21514:18;21506:26;;21578:9;21572:4;21568:20;21564:1;21553:9;21549:17;21542:47;21606:131;21732:4;21606:131;:::i;:::-;21598:139;;21496:248;;;:::o;21750:419::-;;21954:2;21943:9;21939:18;21931:26;;22003:9;21997:4;21993:20;21989:1;21978:9;21974:17;21967:47;22031:131;22157:4;22031:131;:::i;:::-;22023:139;;21921:248;;;:::o;22175:419::-;;22379:2;22368:9;22364:18;22356:26;;22428:9;22422:4;22418:20;22414:1;22403:9;22399:17;22392:47;22456:131;22582:4;22456:131;:::i;:::-;22448:139;;22346:248;;;:::o;22600:419::-;;22804:2;22793:9;22789:18;22781:26;;22853:9;22847:4;22843:20;22839:1;22828:9;22824:17;22817:47;22881:131;23007:4;22881:131;:::i;:::-;22873:139;;22771:248;;;:::o;23025:419::-;;23229:2;23218:9;23214:18;23206:26;;23278:9;23272:4;23268:20;23264:1;23253:9;23249:17;23242:47;23306:131;23432:4;23306:131;:::i;:::-;23298:139;;23196:248;;;:::o;23450:419::-;;23654:2;23643:9;23639:18;23631:26;;23703:9;23697:4;23693:20;23689:1;23678:9;23674:17;23667:47;23731:131;23857:4;23731:131;:::i;:::-;23723:139;;23621:248;;;:::o;23875:419::-;;24079:2;24068:9;24064:18;24056:26;;24128:9;24122:4;24118:20;24114:1;24103:9;24099:17;24092:47;24156:131;24282:4;24156:131;:::i;:::-;24148:139;;24046:248;;;:::o;24300:419::-;;24504:2;24493:9;24489:18;24481:26;;24553:9;24547:4;24543:20;24539:1;24528:9;24524:17;24517:47;24581:131;24707:4;24581:131;:::i;:::-;24573:139;;24471:248;;;:::o;24725:419::-;;24929:2;24918:9;24914:18;24906:26;;24978:9;24972:4;24968:20;24964:1;24953:9;24949:17;24942:47;25006:131;25132:4;25006:131;:::i;:::-;24998:139;;24896:248;;;:::o;25150:419::-;;25354:2;25343:9;25339:18;25331:26;;25403:9;25397:4;25393:20;25389:1;25378:9;25374:17;25367:47;25431:131;25557:4;25431:131;:::i;:::-;25423:139;;25321:248;;;:::o;25575:419::-;;25779:2;25768:9;25764:18;25756:26;;25828:9;25822:4;25818:20;25814:1;25803:9;25799:17;25792:47;25856:131;25982:4;25856:131;:::i;:::-;25848:139;;25746:248;;;:::o;26000:419::-;;26204:2;26193:9;26189:18;26181:26;;26253:9;26247:4;26243:20;26239:1;26228:9;26224:17;26217:47;26281:131;26407:4;26281:131;:::i;:::-;26273:139;;26171:248;;;:::o;26425:419::-;;26629:2;26618:9;26614:18;26606:26;;26678:9;26672:4;26668:20;26664:1;26653:9;26649:17;26642:47;26706:131;26832:4;26706:131;:::i;:::-;26698:139;;26596:248;;;:::o;26850:419::-;;27054:2;27043:9;27039:18;27031:26;;27103:9;27097:4;27093:20;27089:1;27078:9;27074:17;27067:47;27131:131;27257:4;27131:131;:::i;:::-;27123:139;;27021:248;;;:::o;27275:419::-;;27479:2;27468:9;27464:18;27456:26;;27528:9;27522:4;27518:20;27514:1;27503:9;27499:17;27492:47;27556:131;27682:4;27556:131;:::i;:::-;27548:139;;27446:248;;;:::o;27700:419::-;;27904:2;27893:9;27889:18;27881:26;;27953:9;27947:4;27943:20;27939:1;27928:9;27924:17;27917:47;27981:131;28107:4;27981:131;:::i;:::-;27973:139;;27871:248;;;:::o;28125:419::-;;28329:2;28318:9;28314:18;28306:26;;28378:9;28372:4;28368:20;28364:1;28353:9;28349:17;28342:47;28406:131;28532:4;28406:131;:::i;:::-;28398:139;;28296:248;;;:::o;28550:419::-;;28754:2;28743:9;28739:18;28731:26;;28803:9;28797:4;28793:20;28789:1;28778:9;28774:17;28767:47;28831:131;28957:4;28831:131;:::i;:::-;28823:139;;28721:248;;;:::o;28975:222::-;;29106:2;29095:9;29091:18;29083:26;;29119:71;29187:1;29176:9;29172:17;29163:6;29119:71;:::i;:::-;29073:124;;;;:::o;29203:442::-;;29390:2;29379:9;29375:18;29367:26;;29403:71;29471:1;29460:9;29456:17;29447:6;29403:71;:::i;:::-;29484:72;29552:2;29541:9;29537:18;29528:6;29484:72;:::i;:::-;29566;29634:2;29623:9;29619:18;29610:6;29566:72;:::i;:::-;29357:288;;;;;;:::o;29651:214::-;;29778:2;29767:9;29763:18;29755:26;;29791:67;29855:1;29844:9;29840:17;29831:6;29791:67;:::i;:::-;29745:120;;;;:::o;29871:99::-;;29957:5;29951:12;29941:22;;29930:40;;;:::o;29976:169::-;;30094:6;30089:3;30082:19;30134:4;30129:3;30125:14;30110:29;;30072:73;;;;:::o;30151:148::-;;30290:3;30275:18;;30265:34;;;;:::o;30305:305::-;;30364:20;30382:1;30364:20;:::i;:::-;30359:25;;30398:20;30416:1;30398:20;:::i;:::-;30393:25;;30552:1;30484:66;30480:74;30477:1;30474:81;30471:2;;;30558:18;;:::i;:::-;30471:2;30602:1;30599;30595:9;30588:16;;30349:261;;;;:::o;30616:185::-;;30673:20;30691:1;30673:20;:::i;:::-;30668:25;;30707:20;30725:1;30707:20;:::i;:::-;30702:25;;30746:1;30736:2;;30751:18;;:::i;:::-;30736:2;30793:1;30790;30786:9;30781:14;;30658:143;;;;:::o;30807:348::-;;30870:20;30888:1;30870:20;:::i;:::-;30865:25;;30904:20;30922:1;30904:20;:::i;:::-;30899:25;;31092:1;31024:66;31020:74;31017:1;31014:81;31009:1;31002:9;30995:17;30991:105;30988:2;;;31099:18;;:::i;:::-;30988:2;31147:1;31144;31140:9;31129:20;;30855:300;;;;:::o;31161:191::-;;31221:20;31239:1;31221:20;:::i;:::-;31216:25;;31255:20;31273:1;31255:20;:::i;:::-;31250:25;;31294:1;31291;31288:8;31285:2;;;31299:18;;:::i;:::-;31285:2;31344:1;31341;31337:9;31329:17;;31206:146;;;;:::o;31358:96::-;;31424:24;31442:5;31424:24;:::i;:::-;31413:35;;31403:51;;;:::o;31460:90::-;;31537:5;31530:13;31523:21;31512:32;;31502:48;;;:::o;31556:77::-;;31622:5;31611:16;;31601:32;;;:::o;31639:149::-;;31715:66;31708:5;31704:78;31693:89;;31683:105;;;:::o;31794:126::-;;31871:42;31864:5;31860:54;31849:65;;31839:81;;;:::o;31926:77::-;;31992:5;31981:16;;31971:32;;;:::o;32009:86::-;;32084:4;32077:5;32073:16;32062:27;;32052:43;;;:::o;32101:307::-;32169:1;32179:113;32193:6;32190:1;32187:13;32179:113;;;32278:1;32273:3;32269:11;32263:18;32259:1;32254:3;32250:11;32243:39;32215:2;32212:1;32208:10;32203:15;;32179:113;;;32310:6;32307:1;32304:13;32301:2;;;32390:1;32381:6;32376:3;32372:16;32365:27;32301:2;32150:258;;;;:::o;32414:171::-;;32476:24;32494:5;32476:24;:::i;:::-;32467:33;;32522:4;32515:5;32512:15;32509:2;;;32530:18;;:::i;:::-;32509:2;32577:1;32570:5;32566:13;32559:20;;32457:128;;;:::o;32591:320::-;;32672:1;32666:4;32662:12;32652:22;;32719:1;32713:4;32709:12;32740:18;32730:2;;32796:4;32788:6;32784:17;32774:27;;32730:2;32858;32850:6;32847:14;32827:18;32824:38;32821:2;;;32877:18;;:::i;:::-;32821:2;32642:269;;;;:::o;32917:233::-;;32979:24;32997:5;32979:24;:::i;:::-;32970:33;;33025:66;33018:5;33015:77;33012:2;;;33095:18;;:::i;:::-;33012:2;33142:1;33135:5;33131:13;33124:20;;32960:190;;;:::o;33156:79::-;;33224:5;33213:16;;33203:32;;;:::o;33241:180::-;33289:77;33286:1;33279:88;33386:4;33383:1;33376:15;33410:4;33407:1;33400:15;33427:180;33475:77;33472:1;33465:88;33572:4;33569:1;33562:15;33596:4;33593:1;33586:15;33613:180;33661:77;33658:1;33651:88;33758:4;33755:1;33748:15;33782:4;33779:1;33772:15;33799:102;;33891:2;33887:7;33882:2;33875:5;33871:14;33867:28;33857:38;;33847:54;;;:::o;33907:182::-;34047:34;34043:1;34035:6;34031:14;34024:58;34013:76;:::o;34095:176::-;34235:28;34231:1;34223:6;34219:14;34212:52;34201:70;:::o;34277:221::-;34417:34;34413:1;34405:6;34401:14;34394:58;34486:4;34481:2;34473:6;34469:15;34462:29;34383:115;:::o;34504:225::-;34644:34;34640:1;34632:6;34628:14;34621:58;34713:8;34708:2;34700:6;34696:15;34689:33;34610:119;:::o;34735:221::-;34875:34;34871:1;34863:6;34859:14;34852:58;34944:4;34939:2;34931:6;34927:15;34920:29;34841:115;:::o;34962:214::-;35102:66;35098:1;35090:6;35086:14;35079:90;35068:108;:::o;35182:182::-;35322:34;35318:1;35310:6;35306:14;35299:58;35288:76;:::o;35370:179::-;35510:31;35506:1;35498:6;35494:14;35487:55;35476:73;:::o;35555:171::-;35695:23;35691:1;35683:6;35679:14;35672:47;35661:65;:::o;35732:170::-;35872:22;35868:1;35860:6;35856:14;35849:46;35838:64;:::o;35908:170::-;36048:22;36044:1;36036:6;36032:14;36025:46;36014:64;:::o;36084:223::-;36224:34;36220:1;36212:6;36208:14;36201:58;36293:6;36288:2;36280:6;36276:15;36269:31;36190:117;:::o;36313:172::-;36453:24;36449:1;36441:6;36437:14;36430:48;36419:66;:::o;36491:170::-;36631:22;36627:1;36619:6;36615:14;36608:46;36597:64;:::o;36667:182::-;36807:34;36803:1;36795:6;36791:14;36784:58;36773:76;:::o;36855:220::-;36995:34;36991:1;36983:6;36979:14;36972:58;37064:3;37059:2;37051:6;37047:15;37040:28;36961:114;:::o;37081:223::-;37221:34;37217:1;37209:6;37205:14;37198:58;37290:6;37285:2;37277:6;37273:15;37266:31;37187:117;:::o;37310:173::-;37450:25;37446:1;37438:6;37434:14;37427:49;37416:67;:::o;37489:173::-;37629:25;37625:1;37617:6;37613:14;37606:49;37595:67;:::o;37668:176::-;37808:28;37804:1;37796:6;37792:14;37785:52;37774:70;:::o;37850:167::-;37990:19;37986:1;37978:6;37974:14;37967:43;37956:61;:::o;38023:234::-;38163:34;38159:1;38151:6;38147:14;38140:58;38232:17;38227:2;38219:6;38215:15;38208:42;38129:128;:::o;38263:122::-;38336:24;38354:5;38336:24;:::i;:::-;38329:5;38326:35;38316:2;;38375:1;38372;38365:12;38316:2;38306:79;:::o;38391:116::-;38461:21;38476:5;38461:21;:::i;:::-;38454:5;38451:32;38441:2;;38497:1;38494;38487:12;38441:2;38431:76;:::o;38513:122::-;38586:24;38604:5;38586:24;:::i;:::-;38579:5;38576:35;38566:2;;38625:1;38622;38615:12;38566:2;38556:79;:::o;38641:120::-;38713:23;38730:5;38713:23;:::i;:::-;38706:5;38703:34;38693:2;;38751:1;38748;38741:12;38693:2;38683:78;:::o;38767:122::-;38840:24;38858:5;38840:24;:::i;:::-;38833:5;38830:35;38820:2;;38879:1;38876;38869:12;38820:2;38810:79;:::o;38895:118::-;38966:22;38982:5;38966:22;:::i;:::-;38959:5;38956:33;38946:2;;39003:1;39000;38993:12;38946:2;38936:77;:::o

Swarm Source

ipfs://b38568e7978a31a7febb80dcc47b4dad25ff182b9c549dfd00ee15ba2d0914dd

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.