Token USD Coin

Overview ERC20

Total Supply:
1,001,000,000,000 USDC

Holders:
12 addresses

Profile Summary

 
Contract:
0xa252ae872060e0f13aa96dc91bbd52a5cfa604730xa252ae872060e0F13AA96DC91BBd52A5CFA60473

Decimals:
6
Balance
198,324,854.819339 USDC
0xa96302d2e82ddae7226447215232a142a4f3387a
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xe44a09787c1576b97fbe1da811090a51eddca04f

Contract Name:
MockERC20

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-06
*/

// File: @openzeppelin/contracts/token/ERC20/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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/access/IAccessControl.sol


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin/contracts/access/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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * 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: @openzeppelin/contracts/access/AccessControlEnumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (access/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/mocks/MockERC20.sol

// contracts/mocks/MockERC20.sol

pragma solidity 0.8.4;





contract MockERC20 is Context, AccessControlEnumerable, ERC20, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    uint8 private _decimals;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name_, string memory symbol_, uint8 decimals_) ERC20(name_, symbol_) {
        _decimals = decimals_;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

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

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "MockERC20: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "MockERC20: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "MockERC20: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"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":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","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":"PAUSER_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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200355c3803806200355c833981810160405281019062000037919062000521565b8282816005908051906020019062000051929190620003e8565b5080600690805190602001906200006a929190620003e8565b5050506000600760006101000a81548160ff02191690831515021790555080600760016101000a81548160ff021916908360ff160217905550620000c76000801b620000bb6200015260201b60201c565b6200015a60201b60201c565b620001087f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000fc6200015260201b60201c565b6200015a60201b60201c565b620001497f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6200013d6200015260201b60201c565b6200015a60201b60201c565b50505062000740565b600033905090565b6200016c82826200017060201b60201c565b5050565b620001878282620001b860201b62000c721760201c565b620001b38160016000858152602001908152602001600020620002a960201b62000d521790919060201c565b505050565b620001ca8282620002e160201b60201c565b620002a557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200024a6200015260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002d9836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200034b60201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006200035f8383620003c560201b60201c565b620003ba578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620003bf565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620003f6906200064b565b90600052602060002090601f0160209004810192826200041a576000855562000466565b82601f106200043557805160ff191683800117855562000466565b8280016001018555821562000466579182015b828111156200046557825182559160200191906001019062000448565b5b50905062000475919062000479565b5090565b5b80821115620004945760008160009055506001016200047a565b5090565b6000620004af620004a984620005d2565b620005a9565b905082815260208101848484011115620004c857600080fd5b620004d584828562000615565b509392505050565b600082601f830112620004ef57600080fd5b81516200050184826020860162000498565b91505092915050565b6000815190506200051b8162000726565b92915050565b6000806000606084860312156200053757600080fd5b600084015167ffffffffffffffff8111156200055257600080fd5b6200056086828701620004dd565b935050602084015167ffffffffffffffff8111156200057e57600080fd5b6200058c86828701620004dd565b92505060406200059f868287016200050a565b9150509250925092565b6000620005b5620005c8565b9050620005c3828262000681565b919050565b6000604051905090565b600067ffffffffffffffff821115620005f057620005ef620006e6565b5b620005fb8262000715565b9050602081019050919050565b600060ff82169050919050565b60005b838110156200063557808201518184015260208101905062000618565b8381111562000645576000848401525b50505050565b600060028204905060018216806200066457607f821691505b602082108114156200067b576200067a620006b7565b5b50919050565b6200068c8262000715565b810181811067ffffffffffffffff82111715620006ae57620006ad620006e6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620007318162000608565b81146200073d57600080fd5b50565b612e0c80620007506000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a457c2d711610097578063d539139311610071578063d5391393146104bf578063d547741f146104dd578063dd62ed3e146104f9578063e63ab1e9146105295761018e565b8063a457c2d71461042f578063a9059cbb1461045f578063ca15c8731461048f5761018e565b806370a08231146103595780638456cb59146103895780639010d07c1461039357806391d14854146103c357806395d89b41146103f3578063a217fddf146104115761018e565b80632f2ff15d1161014b578063395093511161012557806339509351146102e55780633f4ba83a1461031557806340c10f191461031f5780635c975abb1461033b5761018e565b80632f2ff15d1461028f578063313ce567146102ab57806336568abe146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461021157806323b872dd1461022f578063248a9ca31461025f575b600080fd5b6101ad60048036038101906101a8919061202b565b610547565b6040516101ba91906123d4565b60405180910390f35b6101cb6105c1565b6040516101d8919061240a565b60405180910390f35b6101fb60048036038101906101f69190611f4e565b610653565b60405161020891906123d4565b60405180910390f35b610219610676565b604051610226919061262c565b60405180910390f35b61024960048036038101906102449190611eff565b610680565b60405161025691906123d4565b60405180910390f35b61027960048036038101906102749190611f8a565b6106af565b60405161028691906123ef565b60405180910390f35b6102a960048036038101906102a49190611fb3565b6106ce565b005b6102b36106ef565b6040516102c09190612647565b60405180910390f35b6102e360048036038101906102de9190611fb3565b610706565b005b6102ff60048036038101906102fa9190611f4e565b610789565b60405161030c91906123d4565b60405180910390f35b61031d6107c0565b005b61033960048036038101906103349190611f4e565b61083a565b005b6103436108b8565b60405161035091906123d4565b60405180910390f35b610373600480360381019061036e9190611e9a565b6108cf565b604051610380919061262c565b60405180910390f35b610391610918565b005b6103ad60048036038101906103a89190611fef565b610992565b6040516103ba91906123b9565b60405180910390f35b6103dd60048036038101906103d89190611fb3565b6109c1565b6040516103ea91906123d4565b60405180910390f35b6103fb610a2b565b604051610408919061240a565b60405180910390f35b610419610abd565b60405161042691906123ef565b60405180910390f35b61044960048036038101906104449190611f4e565b610ac4565b60405161045691906123d4565b60405180910390f35b61047960048036038101906104749190611f4e565b610b3b565b60405161048691906123d4565b60405180910390f35b6104a960048036038101906104a49190611f8a565b610b5e565b6040516104b6919061262c565b60405180910390f35b6104c7610b82565b6040516104d491906123ef565b60405180910390f35b6104f760048036038101906104f29190611fb3565b610ba6565b005b610513600480360381019061050e9190611ec3565b610bc7565b604051610520919061262c565b60405180910390f35b610531610c4e565b60405161053e91906123ef565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ba57506105b982610d82565b5b9050919050565b6060600580546105d090612855565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90612855565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b60008061065e610dfc565b905061066b818585610e04565b600191505092915050565b6000600454905090565b60008061068b610dfc565b9050610698858285610fcf565b6106a385858561105b565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6106d7826106af565b6106e0816112d6565b6106ea83836112ea565b505050565b6000600760019054906101000a900460ff16905090565b61070e610dfc565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461077b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610772906125cc565b60405180910390fd5b610785828261131e565b5050565b600080610794610dfc565b90506107b58185856107a68589610bc7565b6107b09190612689565b610e04565b600191505092915050565b6107f17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6107ec610dfc565b6109c1565b610830576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108279061252c565b60405180910390fd5b610838611352565b565b61086b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610866610dfc565b6109c1565b6108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a1906124ec565b60405180910390fd5b6108b482826113b5565b5050565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109497f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610944610dfc565b6109c1565b610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f9061254c565b60405180910390fd5b61099061150d565b565b60006109b9826001600086815260200190815260200160002061157090919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610a3a90612855565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6690612855565b8015610ab35780601f10610a8857610100808354040283529160200191610ab3565b820191906000526020600020905b815481529060010190602001808311610a9657829003601f168201915b5050505050905090565b6000801b81565b600080610acf610dfc565b90506000610add8286610bc7565b905083811015610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b19906125ac565b60405180910390fd5b610b2f8286868403610e04565b60019250505092915050565b600080610b46610dfc565b9050610b5381858561105b565b600191505092915050565b6000610b7b6001600084815260200190815260200160002061158a565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610baf826106af565b610bb8816112d6565b610bc2838361131e565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610c7c82826109c1565b610d4e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610cf3610dfc565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000610d7a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61159f565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610df55750610df48261160f565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b9061258c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb9061248c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc2919061262c565b60405180910390a3505050565b6000610fdb8484610bc7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110555781811015611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e906124ac565b60405180910390fd5b6110548484848403610e04565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c29061256c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111329061244c565b60405180910390fd5b611146838383611679565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c4906124cc565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112bd919061262c565b60405180910390a36112d0848484611689565b50505050565b6112e7816112e2610dfc565b61168e565b50565b6112f48282610c72565b6113198160016000858152602001908152602001600020610d5290919063ffffffff16565b505050565b6113288282611713565b61134d81600160008581526020019081526020016000206117f490919063ffffffff16565b505050565b61135a611824565b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61139e610dfc565b6040516113ab91906123b9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906125ec565b60405180910390fd5b61143160008383611679565b80600460008282546114439190612689565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f5919061262c565b60405180910390a361150960008383611689565b5050565b61151561186d565b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611559610dfc565b60405161156691906123b9565b60405180910390a1565b600061157f83600001836118b7565b60001c905092915050565b600061159882600001611908565b9050919050565b60006115ab8383611919565b611604578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611609565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61168483838361193c565b505050565b505050565b61169882826109c1565b61170f576116a581611994565b6116b38360001c60206119c1565b6040516020016116c492919061237f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611706919061240a565b60405180910390fd5b5050565b61171d82826109c1565b156117f057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611795610dfc565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600061181c836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611cbb565b905092915050565b61182c6108b8565b61186b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118629061246c565b60405180910390fd5b565b6118756108b8565b156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac9061250c565b60405180910390fd5b565b60008260000182815481106118f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611947838383611e41565b61194f6108b8565b1561198f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119869061260c565b60405180910390fd5b505050565b60606119ba8273ffffffffffffffffffffffffffffffffffffffff16601460ff166119c1565b9050919050565b6060600060028360026119d491906126df565b6119de9190612689565b67ffffffffffffffff811115611a1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a4f5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611aad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611b37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611b7791906126df565b611b819190612689565b90505b6001811115611c6d577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611be9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611c26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611c669061282b565b9050611b84565b5060008414611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061242c565b60405180910390fd5b8091505092915050565b60008083600101600084815260200190815260200160002054905060008114611e35576000600182611ced9190612739565b9050600060018660000180549050611d059190612739565b9050818114611dc0576000866000018281548110611d4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611d96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611dfa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611e3b565b60009150505b92915050565b505050565b600081359050611e5581612d7a565b92915050565b600081359050611e6a81612d91565b92915050565b600081359050611e7f81612da8565b92915050565b600081359050611e9481612dbf565b92915050565b600060208284031215611eac57600080fd5b6000611eba84828501611e46565b91505092915050565b60008060408385031215611ed657600080fd5b6000611ee485828601611e46565b9250506020611ef585828601611e46565b9150509250929050565b600080600060608486031215611f1457600080fd5b6000611f2286828701611e46565b9350506020611f3386828701611e46565b9250506040611f4486828701611e85565b9150509250925092565b60008060408385031215611f6157600080fd5b6000611f6f85828601611e46565b9250506020611f8085828601611e85565b9150509250929050565b600060208284031215611f9c57600080fd5b6000611faa84828501611e5b565b91505092915050565b60008060408385031215611fc657600080fd5b6000611fd485828601611e5b565b9250506020611fe585828601611e46565b9150509250929050565b6000806040838503121561200257600080fd5b600061201085828601611e5b565b925050602061202185828601611e85565b9150509250929050565b60006020828403121561203d57600080fd5b600061204b84828501611e70565b91505092915050565b61205d8161276d565b82525050565b61206c8161277f565b82525050565b61207b8161278b565b82525050565b600061208c82612662565b612096818561266d565b93506120a68185602086016127f8565b6120af816128e5565b840191505092915050565b60006120c582612662565b6120cf818561267e565b93506120df8185602086016127f8565b80840191505092915050565b60006120f860208361266d565b9150612103826128f6565b602082019050919050565b600061211b60238361266d565b91506121268261291f565b604082019050919050565b600061213e60148361266d565b91506121498261296e565b602082019050919050565b600061216160228361266d565b915061216c82612997565b604082019050919050565b6000612184601d8361266d565b915061218f826129e6565b602082019050919050565b60006121a760268361266d565b91506121b282612a0f565b604082019050919050565b60006121ca60288361266d565b91506121d582612a5e565b604082019050919050565b60006121ed60108361266d565b91506121f882612aad565b602082019050919050565b6000612210602b8361266d565b915061221b82612ad6565b604082019050919050565b600061223360298361266d565b915061223e82612b25565b604082019050919050565b600061225660258361266d565b915061226182612b74565b604082019050919050565b600061227960248361266d565b915061228482612bc3565b604082019050919050565b600061229c60178361267e565b91506122a782612c12565b601782019050919050565b60006122bf60258361266d565b91506122ca82612c3b565b604082019050919050565b60006122e260118361267e565b91506122ed82612c8a565b601182019050919050565b6000612305602f8361266d565b915061231082612cb3565b604082019050919050565b6000612328601f8361266d565b915061233382612d02565b602082019050919050565b600061234b602a8361266d565b915061235682612d2b565b604082019050919050565b61236a816127e1565b82525050565b612379816127eb565b82525050565b600061238a8261228f565b915061239682856120ba565b91506123a1826122d5565b91506123ad82846120ba565b91508190509392505050565b60006020820190506123ce6000830184612054565b92915050565b60006020820190506123e96000830184612063565b92915050565b60006020820190506124046000830184612072565b92915050565b600060208201905081810360008301526124248184612081565b905092915050565b60006020820190508181036000830152612445816120eb565b9050919050565b600060208201905081810360008301526124658161210e565b9050919050565b6000602082019050818103600083015261248581612131565b9050919050565b600060208201905081810360008301526124a581612154565b9050919050565b600060208201905081810360008301526124c581612177565b9050919050565b600060208201905081810360008301526124e58161219a565b9050919050565b60006020820190508181036000830152612505816121bd565b9050919050565b60006020820190508181036000830152612525816121e0565b9050919050565b6000602082019050818103600083015261254581612203565b9050919050565b6000602082019050818103600083015261256581612226565b9050919050565b6000602082019050818103600083015261258581612249565b9050919050565b600060208201905081810360008301526125a58161226c565b9050919050565b600060208201905081810360008301526125c5816122b2565b9050919050565b600060208201905081810360008301526125e5816122f8565b9050919050565b600060208201905081810360008301526126058161231b565b9050919050565b600060208201905081810360008301526126258161233e565b9050919050565b60006020820190506126416000830184612361565b92915050565b600060208201905061265c6000830184612370565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612694826127e1565b915061269f836127e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126d4576126d3612887565b5b828201905092915050565b60006126ea826127e1565b91506126f5836127e1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561272e5761272d612887565b5b828202905092915050565b6000612744826127e1565b915061274f836127e1565b92508282101561276257612761612887565b5b828203905092915050565b6000612778826127c1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156128165780820151818401526020810190506127fb565b83811115612825576000848401525b50505050565b6000612836826127e1565b9150600082141561284a57612849612887565b5b600182039050919050565b6000600282049050600182168061286d57607f821691505b60208210811415612881576128806128b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4d6f636b45524332303a206d7573742068617665206d696e74657220726f6c6560008201527f20746f206d696e74000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4d6f636b45524332303a206d75737420686176652070617573657220726f6c6560008201527f20746f20756e7061757365000000000000000000000000000000000000000000602082015250565b7f4d6f636b45524332303a206d75737420686176652070617573657220726f6c6560008201527f20746f2070617573650000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b612d838161276d565b8114612d8e57600080fd5b50565b612d9a8161278b565b8114612da557600080fd5b50565b612db181612795565b8114612dbc57600080fd5b50565b612dc8816127e1565b8114612dd357600080fd5b5056fea26469706673582212209cfc4ba5e7a41f29d3d1ca84f5cdf48b39fd150347a78430bd87fb8ddd439cbf64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000d577261707065642045746865720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045745544800000000000000000000000000000000000000000000000000000000

Deployed ByteCode Sourcemap

67024:2210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65093:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44131:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46482:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45251:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47263:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60668:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61109:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67761:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62253:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47967:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68842:164;;;:::i;:::-;;68061:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41005:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45422:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68466:158;;;:::i;:::-;;65906:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59141:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44350:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58246:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48708:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45755:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66233:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67108:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61549:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46011:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67177:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65093:214;65178:4;65217:42;65202:57;;;:11;:57;;;;:97;;;;65263:36;65287:11;65263:23;:36::i;:::-;65202:97;65195:104;;65093:214;;;:::o;44131:100::-;44185:13;44218:5;44211:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44131:100;:::o;46482:201::-;46565:4;46582:13;46598:12;:10;:12::i;:::-;46582:28;;46621:32;46630:5;46637:7;46646:6;46621:8;:32::i;:::-;46671:4;46664:11;;;46482:201;;;;:::o;45251:108::-;45312:7;45339:12;;45332:19;;45251:108;:::o;47263:295::-;47394:4;47411:15;47429:12;:10;:12::i;:::-;47411:30;;47452:38;47468:4;47474:7;47483:6;47452:15;:38::i;:::-;47501:27;47511:4;47517:2;47521:6;47501:9;:27::i;:::-;47546:4;47539:11;;;47263:295;;;;;:::o;60668:131::-;60742:7;60769:6;:12;60776:4;60769:12;;;;;;;;;;;:22;;;60762:29;;60668:131;;;:::o;61109:147::-;61192:18;61205:4;61192:12;:18::i;:::-;58737:16;58748:4;58737:10;:16::i;:::-;61223:25:::1;61234:4;61240:7;61223:10;:25::i;:::-;61109:147:::0;;;:::o;67761:100::-;67819:5;67844:9;;;;;;;;;;;67837:16;;67761:100;:::o;62253:218::-;62360:12;:10;:12::i;:::-;62349:23;;:7;:23;;;62341:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;62437:26;62449:4;62455:7;62437:11;:26::i;:::-;62253:218;;:::o;47967:238::-;48055:4;48072:13;48088:12;:10;:12::i;:::-;48072:28;;48111:64;48120:5;48127:7;48164:10;48136:25;48146:5;48153:7;48136:9;:25::i;:::-;:38;;;;:::i;:::-;48111:8;:64::i;:::-;48193:4;48186:11;;;47967:238;;;;:::o;68842:164::-;68895:34;67215:24;68916:12;:10;:12::i;:::-;68895:7;:34::i;:::-;68887:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;68988:10;:8;:10::i;:::-;68842:164::o;68061:191::-;68137:34;67146:24;68158:12;:10;:12::i;:::-;68137:7;:34::i;:::-;68129:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;68227:17;68233:2;68237:6;68227:5;:17::i;:::-;68061:191;;:::o;41005:86::-;41052:4;41076:7;;;;;;;;;;;41069:14;;41005:86;:::o;45422:127::-;45496:7;45523:9;:18;45533:7;45523:18;;;;;;;;;;;;;;;;45516:25;;45422:127;;;:::o;68466:158::-;68517:34;67215:24;68538:12;:10;:12::i;:::-;68517:7;:34::i;:::-;68509:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;68608:8;:6;:8::i;:::-;68466:158::o;65906:153::-;65996:7;66023:28;66045:5;66023:12;:18;66036:4;66023:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;66016:35;;65906:153;;;;:::o;59141:147::-;59227:4;59251:6;:12;59258:4;59251:12;;;;;;;;;;;:20;;:29;59272:7;59251:29;;;;;;;;;;;;;;;;;;;;;;;;;59244:36;;59141:147;;;;:::o;44350:104::-;44406:13;44439:7;44432:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44350:104;:::o;58246:49::-;58291:4;58246:49;;;:::o;48708:436::-;48801:4;48818:13;48834:12;:10;:12::i;:::-;48818:28;;48857:24;48884:25;48894:5;48901:7;48884:9;:25::i;:::-;48857:52;;48948:15;48928:16;:35;;48920:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49041:60;49050:5;49057:7;49085:15;49066:16;:34;49041:8;:60::i;:::-;49132:4;49125:11;;;;48708:436;;;;:::o;45755:193::-;45834:4;45851:13;45867:12;:10;:12::i;:::-;45851:28;;45890;45900:5;45907:2;45911:6;45890:9;:28::i;:::-;45936:4;45929:11;;;45755:193;;;;:::o;66233:142::-;66313:7;66340:27;:12;:18;66353:4;66340:18;;;;;;;;;;;:25;:27::i;:::-;66333:34;;66233:142;;;:::o;67108:62::-;67146:24;67108:62;:::o;61549:149::-;61633:18;61646:4;61633:12;:18::i;:::-;58737:16;58748:4;58737:10;:16::i;:::-;61664:26:::1;61676:4;61682:7;61664:11;:26::i;:::-;61549:149:::0;;;:::o;46011:151::-;46100:7;46127:11;:18;46139:5;46127:18;;;;;;;;;;;;;;;:27;46146:7;46127:27;;;;;;;;;;;;;;;;46120:34;;46011:151;;;;:::o;67177:62::-;67215:24;67177:62;:::o;63850:238::-;63934:22;63942:4;63948:7;63934;:22::i;:::-;63929:152;;64005:4;63973:6;:12;63980:4;63973:12;;;;;;;;;;;:20;;:29;63994:7;63973:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;64056:12;:10;:12::i;:::-;64029:40;;64047:7;64029:40;;64041:4;64029:40;;;;;;;;;;63929:152;63850:238;;:::o;12190:152::-;12260:4;12284:50;12289:3;:10;;12325:5;12309:23;;12301:32;;12284:4;:50::i;:::-;12277:57;;12190:152;;;;:::o;58845:204::-;58930:4;58969:32;58954:47;;;:11;:47;;;;:87;;;;59005:36;59029:11;59005:23;:36::i;:::-;58954:87;58947:94;;58845:204;;;:::o;39118:98::-;39171:7;39198:10;39191:17;;39118:98;:::o;52735:380::-;52888:1;52871:19;;:5;:19;;;;52863:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52969:1;52950:21;;:7;:21;;;;52942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53053:6;53023:11;:18;53035:5;53023:18;;;;;;;;;;;;;;;:27;53042:7;53023:27;;;;;;;;;;;;;;;:36;;;;53091:7;53075:32;;53084:5;53075:32;;;53100:6;53075:32;;;;;;:::i;:::-;;;;;;;;52735:380;;;:::o;53406:453::-;53541:24;53568:25;53578:5;53585:7;53568:9;:25::i;:::-;53541:52;;53628:17;53608:16;:37;53604:248;;53690:6;53670:16;:26;;53662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53774:51;53783:5;53790:7;53818:6;53799:16;:25;53774:8;:51::i;:::-;53604:248;53406:453;;;;:::o;49614:840::-;49761:1;49745:18;;:4;:18;;;;49737:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49838:1;49824:16;;:2;:16;;;;49816:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49893:38;49914:4;49920:2;49924:6;49893:20;:38::i;:::-;49944:19;49966:9;:15;49976:4;49966:15;;;;;;;;;;;;;;;;49944:37;;50015:6;50000:11;:21;;49992:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;50132:6;50118:11;:20;50100:9;:15;50110:4;50100:15;;;;;;;;;;;;;;;:38;;;;50335:6;50318:9;:13;50328:2;50318:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;50385:2;50370:26;;50379:4;50370:26;;;50389:6;50370:26;;;;;;:::i;:::-;;;;;;;;50409:37;50429:4;50435:2;50439:6;50409:19;:37::i;:::-;49614:840;;;;:::o;59592:105::-;59659:30;59670:4;59676:12;:10;:12::i;:::-;59659:10;:30::i;:::-;59592:105;:::o;66468:169::-;66556:31;66573:4;66579:7;66556:16;:31::i;:::-;66598;66621:7;66598:12;:18;66611:4;66598:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;66468:169;;:::o;66731:174::-;66820:32;66838:4;66844:7;66820:17;:32::i;:::-;66863:34;66889:7;66863:12;:18;66876:4;66863:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;66731:174;;:::o;41860:120::-;40869:16;:14;:16::i;:::-;41929:5:::1;41919:7;;:15;;;;;;;;;;;;;;;;;;41950:22;41959:12;:10;:12::i;:::-;41950:22;;;;;;:::i;:::-;;;;;;;;41860:120::o:0;50741:548::-;50844:1;50825:21;;:7;:21;;;;50817:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50895:49;50924:1;50928:7;50937:6;50895:20;:49::i;:::-;50973:6;50957:12;;:22;;;;;;;:::i;:::-;;;;;;;;51150:6;51128:9;:18;51138:7;51128:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;51204:7;51183:37;;51200:1;51183:37;;;51213:6;51183:37;;;;;;:::i;:::-;;;;;;;;51233:48;51261:1;51265:7;51274:6;51233:19;:48::i;:::-;50741:548;;:::o;41601:118::-;40610:19;:17;:19::i;:::-;41671:4:::1;41661:7;;:14;;;;;;;;;;;;;;;;;;41691:20;41698:12;:10;:12::i;:::-;41691:20;;;;;;:::i;:::-;;;;;;;;41601:118::o:0;13486:158::-;13560:7;13611:22;13615:3;:10;;13627:5;13611:3;:22::i;:::-;13603:31;;13580:56;;13486:158;;;;:::o;13015:117::-;13078:7;13105:19;13113:3;:10;;13105:7;:19::i;:::-;13098:26;;13015:117;;;:::o;5921:414::-;5984:4;6006:21;6016:3;6021:5;6006:9;:21::i;:::-;6001:327;;6044:3;:11;;6061:5;6044:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6227:3;:11;;:18;;;;6205:3;:12;;:19;6218:5;6205:19;;;;;;;;;;;:40;;;;6267:4;6260:11;;;;6001:327;6311:5;6304:12;;5921:414;;;;;:::o;18765:157::-;18850:4;18889:25;18874:40;;;:11;:40;;;;18867:47;;18765:157;;;:::o;69014:217::-;69179:44;69206:4;69212:2;69216:6;69179:26;:44::i;:::-;69014:217;;;:::o;55188:124::-;;;;:::o;59987:492::-;60076:22;60084:4;60090:7;60076;:22::i;:::-;60071:401;;60264:28;60284:7;60264:19;:28::i;:::-;60365:38;60393:4;60385:13;;60400:2;60365:19;:38::i;:::-;60169:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60115:345;;;;;;;;;;;:::i;:::-;;;;;;;;60071:401;59987:492;;:::o;64268:239::-;64352:22;64360:4;64366:7;64352;:22::i;:::-;64348:152;;;64423:5;64391:6;:12;64398:4;64391:12;;;;;;;;;;;:20;;:29;64412:7;64391:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;64475:12;:10;:12::i;:::-;64448:40;;64466:7;64448:40;;64460:4;64448:40;;;;;;;;;;64348:152;64268:239;;:::o;12518:158::-;12591:4;12615:53;12623:3;:10;;12659:5;12643:23;;12635:32;;12615:7;:53::i;:::-;12608:60;;12518:158;;;;:::o;41349:108::-;41416:8;:6;:8::i;:::-;41408:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;41349:108::o;41164:::-;41235:8;:6;:8::i;:::-;41234:9;41226:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;41164:108::o;8695:120::-;8762:7;8789:3;:11;;8801:5;8789:18;;;;;;;;;;;;;;;;;;;;;;;;8782:25;;8695:120;;;;:::o;8232:109::-;8288:7;8315:3;:11;;:18;;;;8308:25;;8232:109;;;:::o;8017:129::-;8090:4;8137:1;8114:3;:12;;:19;8127:5;8114:19;;;;;;;;;;;;:24;;8107:31;;8017:129;;;;:::o;55989:272::-;56132:44;56159:4;56165:2;56169:6;56132:26;:44::i;:::-;56198:8;:6;:8::i;:::-;56197:9;56189:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55989:272;;;:::o;33970:151::-;34028:13;34061:52;34089:4;34073:22;;32125:2;34061:52;;:11;:52::i;:::-;34054:59;;33970:151;;;:::o;33366:447::-;33441:13;33467:19;33512:1;33503:6;33499:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;33489:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33467:47;;33525:15;:6;33532:1;33525:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;33551;:6;33558:1;33551:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;33582:9;33607:1;33598:6;33594:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;33582:26;;33577:131;33614:1;33610;:5;33577:131;;;33649:8;33666:3;33658:5;:11;33649:21;;;;;;;;;;;;;;;;;;33637:6;33644:1;33637:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;33695:1;33685:11;;;;;33617:3;;;;:::i;:::-;;;33577:131;;;;33735:1;33726:5;:10;33718:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;33798:6;33784:21;;;33366:447;;;;:::o;6511:1420::-;6577:4;6695:18;6716:3;:12;;:19;6729:5;6716:19;;;;;;;;;;;;6695:40;;6766:1;6752:10;:15;6748:1176;;7127:21;7164:1;7151:10;:14;;;;:::i;:::-;7127:38;;7180:17;7221:1;7200:3;:11;;:18;;;;:22;;;;:::i;:::-;7180:42;;7256:13;7243:9;:26;7239:405;;7290:17;7310:3;:11;;7322:9;7310:22;;;;;;;;;;;;;;;;;;;;;;;;7290:42;;7464:9;7435:3;:11;;7447:13;7435:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;7575:10;7549:3;:12;;:23;7562:9;7549:23;;;;;;;;;;;:36;;;;7239:405;;7725:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7820:3;:12;;:19;7833:5;7820:19;;;;;;;;;;;7813:26;;;7863:4;7856:11;;;;;;;6748:1176;7907:5;7900:12;;;6511:1420;;;;;:::o;54459:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;644:6;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;921:6;929;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;1343:6;1351;1359;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;1892:6;1900;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;2296:6;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;2573:6;2581;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;2986:6;2994;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;3389:6;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:118::-;3684:24;3702:5;3684:24;:::i;:::-;3679:3;3672:37;3662:53;;:::o;3721:109::-;3802:21;3817:5;3802:21;:::i;:::-;3797:3;3790:34;3780:50;;:::o;3836:118::-;3923:24;3941:5;3923:24;:::i;:::-;3918:3;3911:37;3901:53;;:::o;3960:364::-;4048:3;4076:39;4109:5;4076:39;:::i;:::-;4131:71;4195:6;4190:3;4131:71;:::i;:::-;4124:78;;4211:52;4256:6;4251:3;4244:4;4237:5;4233:16;4211:52;:::i;:::-;4288:29;4310:6;4288:29;:::i;:::-;4283:3;4279:39;4272:46;;4052:272;;;;;:::o;4330:377::-;4436:3;4464:39;4497:5;4464:39;:::i;:::-;4519:89;4601:6;4596:3;4519:89;:::i;:::-;4512:96;;4617:52;4662:6;4657:3;4650:4;4643:5;4639:16;4617:52;:::i;:::-;4694:6;4689:3;4685:16;4678:23;;4440:267;;;;;:::o;4713:366::-;4855:3;4876:67;4940:2;4935:3;4876:67;:::i;:::-;4869:74;;4952:93;5041:3;4952:93;:::i;:::-;5070:2;5065:3;5061:12;5054:19;;4859:220;;;:::o;5085:366::-;5227:3;5248:67;5312:2;5307:3;5248:67;:::i;:::-;5241:74;;5324:93;5413:3;5324:93;:::i;:::-;5442:2;5437:3;5433:12;5426:19;;5231:220;;;:::o;5457:366::-;5599:3;5620:67;5684:2;5679:3;5620:67;:::i;:::-;5613:74;;5696:93;5785:3;5696:93;:::i;:::-;5814:2;5809:3;5805:12;5798:19;;5603:220;;;:::o;5829:366::-;5971:3;5992:67;6056:2;6051:3;5992:67;:::i;:::-;5985:74;;6068:93;6157:3;6068:93;:::i;:::-;6186:2;6181:3;6177:12;6170:19;;5975:220;;;:::o;6201:366::-;6343:3;6364:67;6428:2;6423:3;6364:67;:::i;:::-;6357:74;;6440:93;6529:3;6440:93;:::i;:::-;6558:2;6553:3;6549:12;6542:19;;6347:220;;;:::o;6573:366::-;6715:3;6736:67;6800:2;6795:3;6736:67;:::i;:::-;6729:74;;6812:93;6901:3;6812:93;:::i;:::-;6930:2;6925:3;6921:12;6914:19;;6719:220;;;:::o;6945:366::-;7087:3;7108:67;7172:2;7167:3;7108:67;:::i;:::-;7101:74;;7184:93;7273:3;7184:93;:::i;:::-;7302:2;7297:3;7293:12;7286:19;;7091:220;;;:::o;7317:366::-;7459:3;7480:67;7544:2;7539:3;7480:67;:::i;:::-;7473:74;;7556:93;7645:3;7556:93;:::i;:::-;7674:2;7669:3;7665:12;7658:19;;7463:220;;;:::o;7689:366::-;7831:3;7852:67;7916:2;7911:3;7852:67;:::i;:::-;7845:74;;7928:93;8017:3;7928:93;:::i;:::-;8046:2;8041:3;8037:12;8030:19;;7835:220;;;:::o;8061:366::-;8203:3;8224:67;8288:2;8283:3;8224:67;:::i;:::-;8217:74;;8300:93;8389:3;8300:93;:::i;:::-;8418:2;8413:3;8409:12;8402:19;;8207:220;;;:::o;8433:366::-;8575:3;8596:67;8660:2;8655:3;8596:67;:::i;:::-;8589:74;;8672:93;8761:3;8672:93;:::i;:::-;8790:2;8785:3;8781:12;8774:19;;8579:220;;;:::o;8805:366::-;8947:3;8968:67;9032:2;9027:3;8968:67;:::i;:::-;8961:74;;9044:93;9133:3;9044:93;:::i;:::-;9162:2;9157:3;9153:12;9146:19;;8951:220;;;:::o;9177:402::-;9337:3;9358:85;9440:2;9435:3;9358:85;:::i;:::-;9351:92;;9452:93;9541:3;9452:93;:::i;:::-;9570:2;9565:3;9561:12;9554:19;;9341:238;;;:::o;9585:366::-;9727:3;9748:67;9812:2;9807:3;9748:67;:::i;:::-;9741:74;;9824:93;9913:3;9824:93;:::i;:::-;9942:2;9937:3;9933:12;9926:19;;9731:220;;;:::o;9957:402::-;10117:3;10138:85;10220:2;10215:3;10138:85;:::i;:::-;10131:92;;10232:93;10321:3;10232:93;:::i;:::-;10350:2;10345:3;10341:12;10334:19;;10121:238;;;:::o;10365:366::-;10507:3;10528:67;10592:2;10587:3;10528:67;:::i;:::-;10521:74;;10604:93;10693:3;10604:93;:::i;:::-;10722:2;10717:3;10713:12;10706:19;;10511:220;;;:::o;10737:366::-;10879:3;10900:67;10964:2;10959:3;10900:67;:::i;:::-;10893:74;;10976:93;11065:3;10976:93;:::i;:::-;11094:2;11089:3;11085:12;11078:19;;10883:220;;;:::o;11109:366::-;11251:3;11272:67;11336:2;11331:3;11272:67;:::i;:::-;11265:74;;11348:93;11437:3;11348:93;:::i;:::-;11466:2;11461:3;11457:12;11450:19;;11255:220;;;:::o;11481:118::-;11568:24;11586:5;11568:24;:::i;:::-;11563:3;11556:37;11546:53;;:::o;11605:112::-;11688:22;11704:5;11688:22;:::i;:::-;11683:3;11676:35;11666:51;;:::o;11723:967::-;12105:3;12127:148;12271:3;12127:148;:::i;:::-;12120:155;;12292:95;12383:3;12374:6;12292:95;:::i;:::-;12285:102;;12404:148;12548:3;12404:148;:::i;:::-;12397:155;;12569:95;12660:3;12651:6;12569:95;:::i;:::-;12562:102;;12681:3;12674:10;;12109:581;;;;;:::o;12696:222::-;12789:4;12827:2;12816:9;12812:18;12804:26;;12840:71;12908:1;12897:9;12893:17;12884:6;12840:71;:::i;:::-;12794:124;;;;:::o;12924:210::-;13011:4;13049:2;13038:9;13034:18;13026:26;;13062:65;13124:1;13113:9;13109:17;13100:6;13062:65;:::i;:::-;13016:118;;;;:::o;13140:222::-;13233:4;13271:2;13260:9;13256:18;13248:26;;13284:71;13352:1;13341:9;13337:17;13328:6;13284:71;:::i;:::-;13238:124;;;;:::o;13368:313::-;13481:4;13519:2;13508:9;13504:18;13496:26;;13568:9;13562:4;13558:20;13554:1;13543:9;13539:17;13532:47;13596:78;13669:4;13660:6;13596:78;:::i;:::-;13588:86;;13486:195;;;;:::o;13687:419::-;13853:4;13891:2;13880:9;13876:18;13868:26;;13940:9;13934:4;13930:20;13926:1;13915:9;13911:17;13904:47;13968:131;14094:4;13968:131;:::i;:::-;13960:139;;13858:248;;;:::o;14112:419::-;14278:4;14316:2;14305:9;14301:18;14293:26;;14365:9;14359:4;14355:20;14351:1;14340:9;14336:17;14329:47;14393:131;14519:4;14393:131;:::i;:::-;14385:139;;14283:248;;;:::o;14537:419::-;14703:4;14741:2;14730:9;14726:18;14718:26;;14790:9;14784:4;14780:20;14776:1;14765:9;14761:17;14754:47;14818:131;14944:4;14818:131;:::i;:::-;14810:139;;14708:248;;;:::o;14962:419::-;15128:4;15166:2;15155:9;15151:18;15143:26;;15215:9;15209:4;15205:20;15201:1;15190:9;15186:17;15179:47;15243:131;15369:4;15243:131;:::i;:::-;15235:139;;15133:248;;;:::o;15387:419::-;15553:4;15591:2;15580:9;15576:18;15568:26;;15640:9;15634:4;15630:20;15626:1;15615:9;15611:17;15604:47;15668:131;15794:4;15668:131;:::i;:::-;15660:139;;15558:248;;;:::o;15812:419::-;15978:4;16016:2;16005:9;16001:18;15993:26;;16065:9;16059:4;16055:20;16051:1;16040:9;16036:17;16029:47;16093:131;16219:4;16093:131;:::i;:::-;16085:139;;15983:248;;;:::o;16237:419::-;16403:4;16441:2;16430:9;16426:18;16418:26;;16490:9;16484:4;16480:20;16476:1;16465:9;16461:17;16454:47;16518:131;16644:4;16518:131;:::i;:::-;16510:139;;16408:248;;;:::o;16662:419::-;16828:4;16866:2;16855:9;16851:18;16843:26;;16915:9;16909:4;16905:20;16901:1;16890:9;16886:17;16879:47;16943:131;17069:4;16943:131;:::i;:::-;16935:139;;16833:248;;;:::o;17087:419::-;17253:4;17291:2;17280:9;17276:18;17268:26;;17340:9;17334:4;17330:20;17326:1;17315:9;17311:17;17304:47;17368:131;17494:4;17368:131;:::i;:::-;17360:139;;17258:248;;;:::o;17512:419::-;17678:4;17716:2;17705:9;17701:18;17693:26;;17765:9;17759:4;17755:20;17751:1;17740:9;17736:17;17729:47;17793:131;17919:4;17793:131;:::i;:::-;17785:139;;17683:248;;;:::o;17937:419::-;18103:4;18141:2;18130:9;18126:18;18118:26;;18190:9;18184:4;18180:20;18176:1;18165:9;18161:17;18154:47;18218:131;18344:4;18218:131;:::i;:::-;18210:139;;18108:248;;;:::o;18362:419::-;18528:4;18566:2;18555:9;18551:18;18543:26;;18615:9;18609:4;18605:20;18601:1;18590:9;18586:17;18579:47;18643:131;18769:4;18643:131;:::i;:::-;18635:139;;18533:248;;;:::o;18787:419::-;18953:4;18991:2;18980:9;18976:18;18968:26;;19040:9;19034:4;19030:20;19026:1;19015:9;19011:17;19004:47;19068:131;19194:4;19068:131;:::i;:::-;19060:139;;18958:248;;;:::o;19212:419::-;19378:4;19416:2;19405:9;19401:18;19393:26;;19465:9;19459:4;19455:20;19451:1;19440:9;19436:17;19429:47;19493:131;19619:4;19493:131;:::i;:::-;19485:139;;19383:248;;;:::o;19637:419::-;19803:4;19841:2;19830:9;19826:18;19818:26;;19890:9;19884:4;19880:20;19876:1;19865:9;19861:17;19854:47;19918:131;20044:4;19918:131;:::i;:::-;19910:139;;19808:248;;;:::o;20062:419::-;20228:4;20266:2;20255:9;20251:18;20243:26;;20315:9;20309:4;20305:20;20301:1;20290:9;20286:17;20279:47;20343:131;20469:4;20343:131;:::i;:::-;20335:139;;20233:248;;;:::o;20487:222::-;20580:4;20618:2;20607:9;20603:18;20595:26;;20631:71;20699:1;20688:9;20684:17;20675:6;20631:71;:::i;:::-;20585:124;;;;:::o;20715:214::-;20804:4;20842:2;20831:9;20827:18;20819:26;;20855:67;20919:1;20908:9;20904:17;20895:6;20855:67;:::i;:::-;20809:120;;;;:::o;20935:99::-;20987:6;21021:5;21015:12;21005:22;;20994:40;;;:::o;21040:169::-;21124:11;21158:6;21153:3;21146:19;21198:4;21193:3;21189:14;21174:29;;21136:73;;;;:::o;21215:148::-;21317:11;21354:3;21339:18;;21329:34;;;;:::o;21369:305::-;21409:3;21428:20;21446:1;21428:20;:::i;:::-;21423:25;;21462:20;21480:1;21462:20;:::i;:::-;21457:25;;21616:1;21548:66;21544:74;21541:1;21538:81;21535:2;;;21622:18;;:::i;:::-;21535:2;21666:1;21663;21659:9;21652:16;;21413:261;;;;:::o;21680:348::-;21720:7;21743:20;21761:1;21743:20;:::i;:::-;21738:25;;21777:20;21795:1;21777:20;:::i;:::-;21772:25;;21965:1;21897:66;21893:74;21890:1;21887:81;21882:1;21875:9;21868:17;21864:105;21861:2;;;21972:18;;:::i;:::-;21861:2;22020:1;22017;22013:9;22002:20;;21728:300;;;;:::o;22034:191::-;22074:4;22094:20;22112:1;22094:20;:::i;:::-;22089:25;;22128:20;22146:1;22128:20;:::i;:::-;22123:25;;22167:1;22164;22161:8;22158:2;;;22172:18;;:::i;:::-;22158:2;22217:1;22214;22210:9;22202:17;;22079:146;;;;:::o;22231:96::-;22268:7;22297:24;22315:5;22297:24;:::i;:::-;22286:35;;22276:51;;;:::o;22333:90::-;22367:7;22410:5;22403:13;22396:21;22385:32;;22375:48;;;:::o;22429:77::-;22466:7;22495:5;22484:16;;22474:32;;;:::o;22512:149::-;22548:7;22588:66;22581:5;22577:78;22566:89;;22556:105;;;:::o;22667:126::-;22704:7;22744:42;22737:5;22733:54;22722:65;;22712:81;;;:::o;22799:77::-;22836:7;22865:5;22854:16;;22844:32;;;:::o;22882:86::-;22917:7;22957:4;22950:5;22946:16;22935:27;;22925:43;;;:::o;22974:307::-;23042:1;23052:113;23066:6;23063:1;23060:13;23052:113;;;23151:1;23146:3;23142:11;23136:18;23132:1;23127:3;23123:11;23116:39;23088:2;23085:1;23081:10;23076:15;;23052:113;;;23183:6;23180:1;23177:13;23174:2;;;23263:1;23254:6;23249:3;23245:16;23238:27;23174:2;23023:258;;;;:::o;23287:171::-;23326:3;23349:24;23367:5;23349:24;:::i;:::-;23340:33;;23395:4;23388:5;23385:15;23382:2;;;23403:18;;:::i;:::-;23382:2;23450:1;23443:5;23439:13;23432:20;;23330:128;;;:::o;23464:320::-;23508:6;23545:1;23539:4;23535:12;23525:22;;23592:1;23586:4;23582:12;23613:18;23603:2;;23669:4;23661:6;23657:17;23647:27;;23603:2;23731;23723:6;23720:14;23700:18;23697:38;23694:2;;;23750:18;;:::i;:::-;23694:2;23515:269;;;;:::o;23790:180::-;23838:77;23835:1;23828:88;23935:4;23932:1;23925:15;23959:4;23956:1;23949:15;23976:180;24024:77;24021:1;24014:88;24121:4;24118:1;24111:15;24145:4;24142:1;24135:15;24162:102;24203:6;24254:2;24250:7;24245:2;24238:5;24234:14;24230:28;24220:38;;24210:54;;;:::o;24270:182::-;24410:34;24406:1;24398:6;24394:14;24387:58;24376:76;:::o;24458:222::-;24598:34;24594:1;24586:6;24582:14;24575:58;24667:5;24662:2;24654:6;24650:15;24643:30;24564:116;:::o;24686:170::-;24826:22;24822:1;24814:6;24810:14;24803:46;24792:64;:::o;24862:221::-;25002:34;24998:1;24990:6;24986:14;24979:58;25071:4;25066:2;25058:6;25054:15;25047:29;24968:115;:::o;25089:179::-;25229:31;25225:1;25217:6;25213:14;25206:55;25195:73;:::o;25274:225::-;25414:34;25410:1;25402:6;25398:14;25391:58;25483:8;25478:2;25470:6;25466:15;25459:33;25380:119;:::o;25505:227::-;25645:34;25641:1;25633:6;25629:14;25622:58;25714:10;25709:2;25701:6;25697:15;25690:35;25611:121;:::o;25738:166::-;25878:18;25874:1;25866:6;25862:14;25855:42;25844:60;:::o;25910:230::-;26050:34;26046:1;26038:6;26034:14;26027:58;26119:13;26114:2;26106:6;26102:15;26095:38;26016:124;:::o;26146:228::-;26286:34;26282:1;26274:6;26270:14;26263:58;26355:11;26350:2;26342:6;26338:15;26331:36;26252:122;:::o;26380:224::-;26520:34;26516:1;26508:6;26504:14;26497:58;26589:7;26584:2;26576:6;26572:15;26565:32;26486:118;:::o;26610:223::-;26750:34;26746:1;26738:6;26734:14;26727:58;26819:6;26814:2;26806:6;26802:15;26795:31;26716:117;:::o;26839:173::-;26979:25;26975:1;26967:6;26963:14;26956:49;26945:67;:::o;27018:224::-;27158:34;27154:1;27146:6;27142:14;27135:58;27227:7;27222:2;27214:6;27210:15;27203:32;27124:118;:::o;27248:167::-;27388:19;27384:1;27376:6;27372:14;27365:43;27354:61;:::o;27421:234::-;27561:34;27557:1;27549:6;27545:14;27538:58;27630:17;27625:2;27617:6;27613:15;27606:42;27527:128;:::o;27661:181::-;27801:33;27797:1;27789:6;27785:14;27778:57;27767:75;:::o;27848:229::-;27988:34;27984:1;27976:6;27972:14;27965:58;28057:12;28052:2;28044:6;28040:15;28033:37;27954:123;:::o;28083:122::-;28156:24;28174:5;28156:24;:::i;:::-;28149:5;28146:35;28136:2;;28195:1;28192;28185:12;28136:2;28126:79;:::o;28211:122::-;28284:24;28302:5;28284:24;:::i;:::-;28277:5;28274:35;28264:2;;28323:1;28320;28313:12;28264:2;28254:79;:::o;28339:120::-;28411:23;28428:5;28411:23;:::i;:::-;28404:5;28401:34;28391:2;;28449:1;28446;28439:12;28391:2;28381:78;:::o;28465:122::-;28538:24;28556:5;28538:24;:::i;:::-;28531:5;28528:35;28518:2;;28577:1;28574;28567:12;28518:2;28508:79;:::o

Swarm Source

ipfs://9cfc4ba5e7a41f29d3d1ca84f5cdf48b39fd150347a78430bd87fb8ddd439cbf
Loading