ETH Price: $3,340.61 (-1.06%)

Token

Avocados (AVOCADOS)
 

Overview

Max Total Supply

3,324,324,324,357 AVOCADOS

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Balancer: Vault
Balance
0.000001746652324019 AVOCADOS

Value
$0.00
0xba12222222228d8ba445958a75a0704d566bf2c8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Avocados

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-24
*/

// SPDX-License-Identifier: MIT

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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/Math.sol

// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

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

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = sqrt(a);
            return
                result +
                (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log2(value);
            return
                result +
                (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log10(value);
            return
                result +
                (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log256(value);
            return
                result +
                (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/AccessControl.sol

// OpenZeppelin Contracts (last updated v4.7.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionCallWithValue(
                target,
                data,
                0,
                "Address: low-level call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage)
        private
        pure
    {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.7.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/ERC20Burnable.sol

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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC20PresetMinterRebaser.sol

pragma solidity ^0.8.0;

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

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

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(
                    token.approve.selector,
                    spender,
                    newAllowance
                )
            );
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(
            nonceAfter == nonceBefore + 1,
            "SafeERC20: permit did not succeed"
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: contracts/avocados.sol

pragma solidity ^0.8.0;

// Storage for a avocados token
contract avocados {
    using SafeMath for uint256;

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

    /**
     * @notice Governor for this contract
     */
    address public gov;

    /**
     * @notice Pending governance for this contract
     */
    address public pendingGov;

    /**
     * @notice Approved rebaser for this contract
     */
    address public rebaser;

    /**
     * @notice Approved migrator for this contract
     */
    address public migrator;

    /**
     * @notice Incentivizer address of YAM protocol
     */
    address public incentivizer;

    /**
     * @notice Total supply of YAMs
     */
    uint256 public totalSupply;

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

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

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

    mapping(address => uint256) internal _yamBalances;

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

    uint256 public initSupply;

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

    mapping(address => uint256) public nonces;

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

// File: contracts/IAVOCADOS.sol

pragma solidity ^0.8.0;

abstract contract IAVOCADOS {
    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(
        uint256 epoch,
        uint256 prevavocadossScalingFactor,
        uint256 newavocadossScalingFactor
    );

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

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

// File: contracts/avocados.sol

pragma solidity ^0.8.0;

contract Avocados is ERC20PresetMinterRebaser, Ownable, IAVOCADOS {
    using SafeMath for uint256;

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

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

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

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

    mapping(address => uint256) internal _avocadosBalances;

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

    uint256 public initSupply;

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

    mapping(address => uint256) public nonces;

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

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

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

    constructor() ERC20PresetMinterRebaser("Avocados", "AVOCADOS") {
        avocadossScalingFactor = BASE;
        initSupply = _fragmentToavocados(INIT_SUPPLY);
        _totalSupply = INIT_SUPPLY;
        _avocadosBalances[owner()] = initSupply;

        emit Transfer(address(0), msg.sender, INIT_SUPPLY);
    }

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

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

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

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

        _mint(to, amount);
        return true;
    }

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

        // get underlying value
        uint256 avocadosValue = _fragmentToavocados(amount);

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

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

        // add balance
        _avocadosBalances[to] = _avocadosBalances[to].add(avocadosValue);

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

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

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

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

        // get underlying value
        uint256 avocadosValue = _fragmentToavocados(amount);

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

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

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

        _mintUnderlying(to, amount);
        return true;
    }

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

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

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

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

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

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

    /**
     * @dev Transfer underlying balance to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transferUnderlying(address to, uint256 value)
        public
        validRecipient(to)
        returns (bool)
    {
        // sub from balance of sender
        _avocadosBalances[msg.sender] = _avocadosBalances[msg.sender].sub(value);

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

    /* - ERC20 functionality - */

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        override
        validRecipient(to)
        returns (bool)
    {
        // underlying balance is stored in avocadoss, so divide by current scaling factor

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

        // get amount in underlying
        uint256 avocadosValue = _fragmentToavocados(value);

        // sub from balance of sender
        _avocadosBalances[msg.sender] = _avocadosBalances[msg.sender].sub(avocadosValue);

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

        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override validRecipient(to) returns (bool) {
        // decrease allowance
        _allowedFragments[from][msg.sender] = _allowedFragments[from][
            msg.sender
        ].sub(value);

        // get value in avocadoss
        uint256 avocadosValue = _fragmentToavocados(value);

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

        return true;
    }

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

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

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

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

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

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

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

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

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

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

        // no change
        if (indexDelta == 0) {
            emit Rebase(epoch, avocadossScalingFactor, avocadossScalingFactor);
            return _totalSupply;
        }

        // for events
        uint256 prevavocadossScalingFactor = avocadossScalingFactor;

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

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

        emit Rebase(epoch, prevavocadossScalingFactor, avocadossScalingFactor);
        return _totalSupply;
    }

    function avocadosToFragment(uint256 avocados) public view returns (uint256) {
        return _avocadosToFragment(avocados);
    }

    function fragmentToavocados(uint256 value) public view returns (uint256) {
        return _fragmentToavocados(value);
    }

    function _avocadosToFragment(uint256 avocados) internal view returns (uint256) {
        return avocados.mul(avocadossScalingFactor).div(internalDecimals);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevavocadossScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newavocadossScalingFactor","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"avocados","type":"uint256"}],"name":"avocadosToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"avocadossScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fragmentToavocados","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526c29f578a185b69b2a8a54f40000600e553480156200002257600080fd5b506040518060400160405280600881526020016741766f6361646f7360c01b8152506040518060400160405280600881526020016741564f4341444f5360c01b815250818181600590805190602001906200007f92919062000425565b5080516200009590600690602084019062000425565b50620000b0915060009050620000aa620001d2565b620001d6565b620000df7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000aa620001d2565b6200010e7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b75620000aa620001d2565b506200012590506200011f620001d2565b620001e6565b670de0b6b3a7640000600855600e546200013f9062000238565b600b819055600e54600f5560096000620001586200027f565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600e54604051620001c49190620004cb565b60405180910390a36200055e565b3390565b620001e282826200028e565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620002796008546200026569d3c21bcecceda100000085620002d160201b620011871790919060201c565b620002e660201b620011931790919060201c565b92915050565b6007546001600160a01b031690565b620002a58282620002f460201b6200119f1760201c565b6000828152600160209081526040909120620002cc918390620012246200037e821b17901c565b505050565b6000620002df8284620004f5565b9392505050565b6000620002df8284620004d4565b62000300828262000395565b620001e2576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200033a620001d2565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620002df836001600160a01b038416620003be565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000620003cc83836200040d565b620004045750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000279565b50600062000279565b60009081526001919091016020526040902054151590565b828054620004339062000521565b90600052602060002090601f016020900481019282620004575760008555620004a2565b82601f106200047257805160ff1916838001178555620004a2565b82800160010185558215620004a2579182015b82811115620004a257825182559160200191906001019062000485565b50620004b0929150620004b4565b5090565b5b80821115620004b05760008155600101620004b5565b90815260200190565b600082620004f057634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200051c57634e487b7160e01b81526011600452602481fd5b500290565b6002810460018216806200053657607f821691505b602082108114156200055857634e487b7160e01b600052602260045260246000fd5b50919050565b612869806200056e6000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c806379cc67901161015c578063a217fddf116100ce578063d539139311610087578063d539139314610510578063d547741f14610518578063dd62ed3e1461052b578063ec342ad01461053e578063f05a8d3e14610546578063f2fde38b146105595761027f565b8063a217fddf146104a9578063a457c2d7146104b1578063a9059cbb146104c4578063ca15c873146104d7578063cea9d26f146104ea578063d505accf146104fd5761027f565b80638da5cb5b116101205780638da5cb5b1461044b5780639010d07c14610460578063917505f41461047357806391d148541461048657806395d89b411461049957806397d63f93146104a15761027f565b806379cc6790146103f75780637af548c11461040a5780637ecebe001461041d57806383eb70e514610430578063855ca2ea146104385761027f565b8063313ce567116101f55780633af9e669116101b95780633af9e6691461039b57806340c10f19146103ae57806342966c68146103c157806364dd48f5146103d457806370a08231146103dc578063715018a6146103ef5761027f565b8063313ce56714610345578063336d26921461035a5780633644e5151461036d57806336568abe1461037557806339509351146103885761027f565b806318160ddd1161024757806318160ddd146102f257806320606b70146102fa57806323b872dd14610302578063248a9ca3146103155780632f2ff15d1461032857806330adf81f1461033d5761027f565b806301ffc9a71461028457806303e18c75146102ad57806306fdde03146102c2578063095ea7b3146102d757806311d3e6c4146102ea575b600080fd5b610297610292366004612091565b61056c565b6040516102a491906121ca565b60405180910390f35b6102b5610599565b6040516102a491906121d5565b6102ca61059f565b6040516102a49190612230565b6102976102e5366004611ff1565b610631565b6102b561068a565b6102b5610699565b6102b561069f565b610297610310366004611f45565b6106c3565b6102b5610323366004612036565b6107f6565b61033b61033636600461204e565b61080b565b005b6102b561082c565b61034d610850565b6040516102a491906126ba565b610297610368366004611ff1565b610855565b6102b561091b565b61033b61038336600461204e565b610921565b610297610396366004611ff1565b610970565b6102b56103a9366004611ef9565b6109e4565b6102976103bc366004611ff1565b6109ff565b61033b6103cf366004612036565b610a5c565b6102b5610a68565b6102b56103ea366004611ef9565b610a76565b61033b610a98565b61033b610405366004611ff1565b610aac565b6102b56104183660046120b9565b610ac8565b6102b561042b366004611ef9565b610c33565b6102b5610c45565b6102b5610446366004612036565b610c69565b610453610c74565b6040516102a4919061219d565b61045361046e366004612070565b610c83565b610297610481366004611ff1565b610c9b565b61029761049436600461204e565b610cef565b6102ca610d18565b6102b5610d27565b6102b5610d2d565b6102976104bf366004611ff1565b610d32565b6102976104d2366004611ff1565b610dfa565b6102b56104e5366004612036565b610eca565b6102976104f8366004611f45565b610ee1565b61033b61050b366004611f80565b610f00565b6102b56110ce565b61033b61052636600461204e565b6110f2565b6102b5610539366004611f13565b61110e565b6102b5611139565b6102b5610554366004612036565b611145565b61033b610567366004611ef9565b611150565b60006001600160e01b03198216635a05180f60e01b1480610591575061059182611239565b90505b919050565b60085481565b6060600580546105ae90612779565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90612779565b80156106275780601f106105fc57610100808354040283529160200191610627565b820191906000526020600020905b81548152906001019060200180831161060a57829003601f168201915b5050505050905090565b336000818152600a602090815260408083206001600160a01b03871680855292528083208590555191929091600080516020612814833981519152906106789086906121d5565b60405180910390a35060015b92915050565b600061069461125e565b905090565b600f5490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000826001600160a01b0381166106d957600080fd5b6001600160a01b0381163014156106ef57600080fd5b6001600160a01b0385166000908152600a6020908152604080832033845290915290205461071d9084611270565b6001600160a01b0386166000908152600a6020908152604080832033845290915281209190915561074d8461127c565b6001600160a01b0387166000908152600960205260409020549091506107739082611270565b6001600160a01b0380881660009081526009602052604080822093909355908716815220546107a2908261129a565b6001600160a01b0380871660008181526009602052604090819020939093559151908816906000805160206127f4833981519152906107e29088906121d5565b60405180910390a350600195945050505050565b60009081526020819052604090206001015490565b610814826107f6565b61081d816112a6565b61082783836112b7565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601290565b6000826001600160a01b03811661086b57600080fd5b6001600160a01b03811630141561088157600080fd5b3360009081526009602052604090205461089b9084611270565b33600090815260096020526040808220929092556001600160a01b038616815220546108c7908461129a565b6001600160a01b038516600081815260096020526040902091909155336000805160206127f48339815191526108fc866112d9565b60405161090991906121d5565b60405180910390a35060019392505050565b600c5481565b6109296112fe565b6001600160a01b0316816001600160a01b0316146109625760405162461bcd60e51b815260040161095990612655565b60405180910390fd5b61096c8282611302565b5050565b336000908152600a602090815260408083206001600160a01b038616845290915281205461099e908361129a565b336000818152600a602090815260408083206001600160a01b038916808552925291829020849055905190926000805160206128148339815191529161067891906121d5565b6001600160a01b031660009081526009602052604090205490565b6000610a2d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66104946112fe565b610a495760405162461bcd60e51b815260040161095990612399565b610a538383611324565b50600192915050565b610a6581611433565b50565b69d3c21bcecceda100000081565b6001600160a01b038116600090815260096020526040812054610591906112d9565b610aa06114f6565b610aaa6000611535565b565b610abe82610ab86112fe565b83611587565b61096c82826115d1565b6000610af67f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b756104946112fe565b610b125760405162461bcd60e51b815260040161095990612445565b82610b5f577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c084600854600854604051610b4e939291906126a4565b60405180910390a150600f54610c2c565b60085482610b9757610b8f670de0b6b3a7640000610b89610b808288611270565b60085490611187565b90611193565b600855610bdb565b6000610bb2670de0b6b3a7640000610b89610b80828961129a565b9050610bbc61125e565b811015610bcd576008819055610bd9565b610bd561125e565b6008555b505b610be6600b546112d9565b600f556008546040517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c091610c1e91889185916126a4565b60405180910390a15050600f545b9392505050565b600d6020526000908152604090205481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b60006105918261127c565b6007546001600160a01b031690565b6000828152600160205260408120610c2c9083611696565b6000610cc97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66104946112fe565b610ce55760405162461bcd60e51b815260040161095990612399565b610a5383836116a2565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546105ae90612779565b600b5481565b600081565b336000908152600a602090815260408083206001600160a01b0386168452909152812054808310610d8657336000908152600a602090815260408083206001600160a01b0388168452909152812055610db5565b610d908184611270565b336000908152600a602090815260408083206001600160a01b03891684529091529020555b336000818152600a602090815260408083206001600160a01b0389168085529252918290205491519092916000805160206128148339815191529161090991906121d5565b6000826001600160a01b038116610e1057600080fd5b6001600160a01b038116301415610e2657600080fd5b6000610e318461127c565b33600090815260096020526040902054909150610e4e9082611270565b33600090815260096020526040808220929092556001600160a01b03871681522054610e7a908261129a565b6001600160a01b0386166000818152600960205260409081902092909255905133906000805160206127f483398151915290610eb79088906121d5565b60405180910390a3506001949350505050565b6000818152600160205260408120610591906117a4565b6000610eeb6114f6565b610ef68484846117af565b5060019392505050565b83421115610f205760405162461bcd60e51b815260040161095990612475565b600c546001600160a01b0388166000908152600d6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b919087610f73836127b4565b919050558a604051602001610f8d969594939291906121de565b60405160208183030381529060405280519060200120604051602001610fb492919061210d565b60408051601f19818403018152919052805160209091012090506001600160a01b038816610ff45760405162461bcd60e51b8152600401610959906125e7565b600181858585604051600081526020016040526040516110179493929190612212565b6020604051602081039080840390855afa158015611039573d6000803e3d6000fd5b505050602060405103516001600160a01b0316886001600160a01b0316146110735760405162461bcd60e51b8152600401610959906123c8565b6001600160a01b038089166000818152600a60209081526040808320948c16808452949091529081902089905551600080516020612814833981519152906110bc908a906121d5565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110fb826107f6565b611104816112a6565b6108278383611302565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b670de0b6b3a764000081565b6000610591826112d9565b6111586114f6565b6001600160a01b03811661117e5760405162461bcd60e51b8152600401610959906122da565b610a6581611535565b6000610c2c8284612700565b6000610c2c82846126e0565b6111a98282610cef565b61096c576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111e06112fe565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610c2c836001600160a01b038416611805565b60006001600160e01b03198216637965db0b60e01b148061059157506105918261184f565b6000600b5460001961069491906126e0565b6000610c2c828461271f565b60085460009061059190610b898469d3c21bcecceda1000000611187565b6000610c2c82846126c8565b610a65816112b26112fe565b611868565b6112c1828261119f565b60008281526001602052604090206108279082611224565b600061059169d3c21bcecceda1000000610b896008548561118790919063ffffffff16565b3390565b61130c82826118c1565b60008281526001602052604090206108279082611944565b600f54611331908261129a565b600f55600061133f8261127c565b600b5490915061134f908261129a565b600b5561135a61125e565b600854111561137b5760405162461bcd60e51b81526004016109599061261e565b6001600160a01b03831660009081526009602052604090205461139e908261129a565b6001600160a01b0384166000908152600960205260409081902091909155517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885906113ec90859085906121b1565b60405180910390a1826001600160a01b031660006001600160a01b03166000805160206127f48339815191528460405161142691906121d5565b60405180910390a3505050565b600f546114409082611270565b600f55600061144e8261127c565b600b5490915061145e9082611270565b600b553360009081526009602052604090205461147b9082611270565b33600081815260096020526040908190209290925590517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5916114bf9185906121b1565b60405180910390a160405160009033906000805160206127f4833981519152906114ea9086906121d5565b60405180910390a35050565b6114fe6112fe565b6001600160a01b031661150f610c74565b6001600160a01b031614610aaa5760405162461bcd60e51b8152600401610959906124ac565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611593848461110e565b905060001981146115cb57818110156115be5760405162461bcd60e51b815260040161095990612362565b6115cb8484848403611959565b50505050565b6001600160a01b0382166115f75760405162461bcd60e51b8152600401610959906124e1565b61160382600083610827565b6001600160a01b0382166000908152600260205260409020548181101561163c5760405162461bcd60e51b815260040161095990612298565b6001600160a01b0383166000818152600260205260408082208585039055600480548690039055519091906000805160206127f4833981519152906116829086906121d5565b60405180910390a361082783600084610827565b6000610c2c83836119ee565b600b546116af908261129a565b600b5560006116bd826112d9565b600f549091506116cd908261129a565b600f556116d861125e565b60085411156116f95760405162461bcd60e51b81526004016109599061261e565b6001600160a01b03831660009081526009602052604090205461171c908361129a565b6001600160a01b0384166000908152600960205260409081902091909155517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859061176a90859084906121b1565b60405180910390a1826001600160a01b031660006001600160a01b03166000805160206127f48339815191528360405161142691906121d5565b600061059182611a26565b6108278363a9059cbb60e01b84846040516024016117ce9291906121b1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611a2a565b60006118118383611ab9565b61184757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610684565b506000610684565b6001600160e01b031981166301ffc9a760e01b14919050565b6118728282610cef565b61096c5761187f81611ad1565b61188a836020611ae3565b60405160200161189b929190612128565b60408051601f198184030181529082905262461bcd60e51b825261095991600401612230565b6118cb8282610cef565b1561096c576000828152602081815260408083206001600160a01b03851684529091529020805460ff191690556119006112fe565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000610c2c836001600160a01b038416611c95565b6001600160a01b03831661197f5760405162461bcd60e51b815260040161095990612522565b6001600160a01b0382166119a55760405162461bcd60e51b815260040161095990612320565b6001600160a01b038084166000818152600360209081526040808320948716808452949091529081902084905551600080516020612814833981519152906114269085906121d5565b6000826000018281548110611a1357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b5490565b6000611a7f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611db29092919063ffffffff16565b8051909150156108275780806020019051810190611a9d919061201a565b6108275760405162461bcd60e51b81526004016109599061259d565b60009081526001919091016020526040902054151590565b60606105916001600160a01b03831660145b60606000611af2836002612700565b611afd9060026126c8565b67ffffffffffffffff811115611b2357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b4d576020820181803683370190505b509050600360fc1b81600081518110611b7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611bb357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611bd7846002612700565b611be29060016126c8565b90505b6001811115611c76576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611c2457634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611c4857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611c6f81612762565b9050611be5565b508315610c2c5760405162461bcd60e51b815260040161095990612263565b60008181526001830160205260408120548015611da8576000611cb960018361271f565b8554909150600090611ccd9060019061271f565b9050818114611d4e576000866000018281548110611cfb57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611d2c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611d6d57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610684565b6000915050610684565b6060611dc18484600085611dc9565b949350505050565b606082471015611deb5760405162461bcd60e51b8152600401610959906123ff565b600080866001600160a01b03168587604051611e0791906120f1565b60006040518083038185875af1925050503d8060008114611e44576040519150601f19603f3d011682016040523d82523d6000602084013e611e49565b606091505b5091509150611e5a87838387611e65565b979650505050505050565b60608315611e9f578251611e9857611e7c85611ea9565b611e985760405162461bcd60e51b815260040161095990612566565b5081611dc1565b611dc18383611eb8565b6001600160a01b03163b151590565b815115611ec85781518083602001fd5b8060405162461bcd60e51b81526004016109599190612230565b80356001600160a01b038116811461059457600080fd5b600060208284031215611f0a578081fd5b610c2c82611ee2565b60008060408385031215611f25578081fd5b611f2e83611ee2565b9150611f3c60208401611ee2565b90509250929050565b600080600060608486031215611f59578081fd5b611f6284611ee2565b9250611f7060208501611ee2565b9150604084013590509250925092565b600080600080600080600060e0888a031215611f9a578283fd5b611fa388611ee2565b9650611fb160208901611ee2565b95506040880135945060608801359350608088013560ff81168114611fd4578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215612003578182fd5b61200c83611ee2565b946020939093013593505050565b60006020828403121561202b578081fd5b8151610c2c816127e5565b600060208284031215612047578081fd5b5035919050565b60008060408385031215612060578182fd5b82359150611f3c60208401611ee2565b60008060408385031215612082578182fd5b50508035926020909101359150565b6000602082840312156120a2578081fd5b81356001600160e01b031981168114610c2c578182fd5b6000806000606084860312156120cd578283fd5b833592506020840135915060408401356120e6816127e5565b809150509250925092565b60008251612103818460208701612736565b9190910192915050565b61190160f01b81526002810192909252602282015260420190565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351612160816017850160208801612736565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612191816028840160208801612736565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252825180602084015261224f816040850160208701612736565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601590820152744d7573742068617665206d696e74657220726f6c6560581b604082015260600190565b60208082526017908201527f61766f6361646f732f696e76616c69642d7065726d6974000000000000000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601690820152754d7573742068617665207265626173657220726f6c6560501b604082015260600190565b60208082526017908201527f61766f6361646f732f7065726d69742d65787069726564000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601a908201527f61766f6361646f732f696e76616c69642d616464726573732d30000000000000604082015260600190565b6020808252601a908201527f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156126db576126db6127cf565b500190565b6000826126fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561271a5761271a6127cf565b500290565b600082821015612731576127316127cf565b500390565b60005b83811015612751578181015183820152602001612739565b838111156115cb5750506000910152565b600081612771576127716127cf565b506000190190565b60028104600182168061278d57607f821691505b602082108114156127ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c8576127c86127cf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b8015158114610a6557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a26469706673582212204206b8d930f3a4088d4eb5abd9994b6e046ce0fd3b49c45910125122939f943464736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061027f5760003560e01c806379cc67901161015c578063a217fddf116100ce578063d539139311610087578063d539139314610510578063d547741f14610518578063dd62ed3e1461052b578063ec342ad01461053e578063f05a8d3e14610546578063f2fde38b146105595761027f565b8063a217fddf146104a9578063a457c2d7146104b1578063a9059cbb146104c4578063ca15c873146104d7578063cea9d26f146104ea578063d505accf146104fd5761027f565b80638da5cb5b116101205780638da5cb5b1461044b5780639010d07c14610460578063917505f41461047357806391d148541461048657806395d89b411461049957806397d63f93146104a15761027f565b806379cc6790146103f75780637af548c11461040a5780637ecebe001461041d57806383eb70e514610430578063855ca2ea146104385761027f565b8063313ce567116101f55780633af9e669116101b95780633af9e6691461039b57806340c10f19146103ae57806342966c68146103c157806364dd48f5146103d457806370a08231146103dc578063715018a6146103ef5761027f565b8063313ce56714610345578063336d26921461035a5780633644e5151461036d57806336568abe1461037557806339509351146103885761027f565b806318160ddd1161024757806318160ddd146102f257806320606b70146102fa57806323b872dd14610302578063248a9ca3146103155780632f2ff15d1461032857806330adf81f1461033d5761027f565b806301ffc9a71461028457806303e18c75146102ad57806306fdde03146102c2578063095ea7b3146102d757806311d3e6c4146102ea575b600080fd5b610297610292366004612091565b61056c565b6040516102a491906121ca565b60405180910390f35b6102b5610599565b6040516102a491906121d5565b6102ca61059f565b6040516102a49190612230565b6102976102e5366004611ff1565b610631565b6102b561068a565b6102b5610699565b6102b561069f565b610297610310366004611f45565b6106c3565b6102b5610323366004612036565b6107f6565b61033b61033636600461204e565b61080b565b005b6102b561082c565b61034d610850565b6040516102a491906126ba565b610297610368366004611ff1565b610855565b6102b561091b565b61033b61038336600461204e565b610921565b610297610396366004611ff1565b610970565b6102b56103a9366004611ef9565b6109e4565b6102976103bc366004611ff1565b6109ff565b61033b6103cf366004612036565b610a5c565b6102b5610a68565b6102b56103ea366004611ef9565b610a76565b61033b610a98565b61033b610405366004611ff1565b610aac565b6102b56104183660046120b9565b610ac8565b6102b561042b366004611ef9565b610c33565b6102b5610c45565b6102b5610446366004612036565b610c69565b610453610c74565b6040516102a4919061219d565b61045361046e366004612070565b610c83565b610297610481366004611ff1565b610c9b565b61029761049436600461204e565b610cef565b6102ca610d18565b6102b5610d27565b6102b5610d2d565b6102976104bf366004611ff1565b610d32565b6102976104d2366004611ff1565b610dfa565b6102b56104e5366004612036565b610eca565b6102976104f8366004611f45565b610ee1565b61033b61050b366004611f80565b610f00565b6102b56110ce565b61033b61052636600461204e565b6110f2565b6102b5610539366004611f13565b61110e565b6102b5611139565b6102b5610554366004612036565b611145565b61033b610567366004611ef9565b611150565b60006001600160e01b03198216635a05180f60e01b1480610591575061059182611239565b90505b919050565b60085481565b6060600580546105ae90612779565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90612779565b80156106275780601f106105fc57610100808354040283529160200191610627565b820191906000526020600020905b81548152906001019060200180831161060a57829003601f168201915b5050505050905090565b336000818152600a602090815260408083206001600160a01b03871680855292528083208590555191929091600080516020612814833981519152906106789086906121d5565b60405180910390a35060015b92915050565b600061069461125e565b905090565b600f5490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000826001600160a01b0381166106d957600080fd5b6001600160a01b0381163014156106ef57600080fd5b6001600160a01b0385166000908152600a6020908152604080832033845290915290205461071d9084611270565b6001600160a01b0386166000908152600a6020908152604080832033845290915281209190915561074d8461127c565b6001600160a01b0387166000908152600960205260409020549091506107739082611270565b6001600160a01b0380881660009081526009602052604080822093909355908716815220546107a2908261129a565b6001600160a01b0380871660008181526009602052604090819020939093559151908816906000805160206127f4833981519152906107e29088906121d5565b60405180910390a350600195945050505050565b60009081526020819052604090206001015490565b610814826107f6565b61081d816112a6565b61082783836112b7565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601290565b6000826001600160a01b03811661086b57600080fd5b6001600160a01b03811630141561088157600080fd5b3360009081526009602052604090205461089b9084611270565b33600090815260096020526040808220929092556001600160a01b038616815220546108c7908461129a565b6001600160a01b038516600081815260096020526040902091909155336000805160206127f48339815191526108fc866112d9565b60405161090991906121d5565b60405180910390a35060019392505050565b600c5481565b6109296112fe565b6001600160a01b0316816001600160a01b0316146109625760405162461bcd60e51b815260040161095990612655565b60405180910390fd5b61096c8282611302565b5050565b336000908152600a602090815260408083206001600160a01b038616845290915281205461099e908361129a565b336000818152600a602090815260408083206001600160a01b038916808552925291829020849055905190926000805160206128148339815191529161067891906121d5565b6001600160a01b031660009081526009602052604090205490565b6000610a2d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66104946112fe565b610a495760405162461bcd60e51b815260040161095990612399565b610a538383611324565b50600192915050565b610a6581611433565b50565b69d3c21bcecceda100000081565b6001600160a01b038116600090815260096020526040812054610591906112d9565b610aa06114f6565b610aaa6000611535565b565b610abe82610ab86112fe565b83611587565b61096c82826115d1565b6000610af67f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b756104946112fe565b610b125760405162461bcd60e51b815260040161095990612445565b82610b5f577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c084600854600854604051610b4e939291906126a4565b60405180910390a150600f54610c2c565b60085482610b9757610b8f670de0b6b3a7640000610b89610b808288611270565b60085490611187565b90611193565b600855610bdb565b6000610bb2670de0b6b3a7640000610b89610b80828961129a565b9050610bbc61125e565b811015610bcd576008819055610bd9565b610bd561125e565b6008555b505b610be6600b546112d9565b600f556008546040517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c091610c1e91889185916126a4565b60405180910390a15050600f545b9392505050565b600d6020526000908152604090205481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b60006105918261127c565b6007546001600160a01b031690565b6000828152600160205260408120610c2c9083611696565b6000610cc97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66104946112fe565b610ce55760405162461bcd60e51b815260040161095990612399565b610a5383836116a2565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546105ae90612779565b600b5481565b600081565b336000908152600a602090815260408083206001600160a01b0386168452909152812054808310610d8657336000908152600a602090815260408083206001600160a01b0388168452909152812055610db5565b610d908184611270565b336000908152600a602090815260408083206001600160a01b03891684529091529020555b336000818152600a602090815260408083206001600160a01b0389168085529252918290205491519092916000805160206128148339815191529161090991906121d5565b6000826001600160a01b038116610e1057600080fd5b6001600160a01b038116301415610e2657600080fd5b6000610e318461127c565b33600090815260096020526040902054909150610e4e9082611270565b33600090815260096020526040808220929092556001600160a01b03871681522054610e7a908261129a565b6001600160a01b0386166000818152600960205260409081902092909255905133906000805160206127f483398151915290610eb79088906121d5565b60405180910390a3506001949350505050565b6000818152600160205260408120610591906117a4565b6000610eeb6114f6565b610ef68484846117af565b5060019392505050565b83421115610f205760405162461bcd60e51b815260040161095990612475565b600c546001600160a01b0388166000908152600d6020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b919087610f73836127b4565b919050558a604051602001610f8d969594939291906121de565b60405160208183030381529060405280519060200120604051602001610fb492919061210d565b60408051601f19818403018152919052805160209091012090506001600160a01b038816610ff45760405162461bcd60e51b8152600401610959906125e7565b600181858585604051600081526020016040526040516110179493929190612212565b6020604051602081039080840390855afa158015611039573d6000803e3d6000fd5b505050602060405103516001600160a01b0316886001600160a01b0316146110735760405162461bcd60e51b8152600401610959906123c8565b6001600160a01b038089166000818152600a60209081526040808320948c16808452949091529081902089905551600080516020612814833981519152906110bc908a906121d5565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110fb826107f6565b611104816112a6565b6108278383611302565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b670de0b6b3a764000081565b6000610591826112d9565b6111586114f6565b6001600160a01b03811661117e5760405162461bcd60e51b8152600401610959906122da565b610a6581611535565b6000610c2c8284612700565b6000610c2c82846126e0565b6111a98282610cef565b61096c576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111e06112fe565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610c2c836001600160a01b038416611805565b60006001600160e01b03198216637965db0b60e01b148061059157506105918261184f565b6000600b5460001961069491906126e0565b6000610c2c828461271f565b60085460009061059190610b898469d3c21bcecceda1000000611187565b6000610c2c82846126c8565b610a65816112b26112fe565b611868565b6112c1828261119f565b60008281526001602052604090206108279082611224565b600061059169d3c21bcecceda1000000610b896008548561118790919063ffffffff16565b3390565b61130c82826118c1565b60008281526001602052604090206108279082611944565b600f54611331908261129a565b600f55600061133f8261127c565b600b5490915061134f908261129a565b600b5561135a61125e565b600854111561137b5760405162461bcd60e51b81526004016109599061261e565b6001600160a01b03831660009081526009602052604090205461139e908261129a565b6001600160a01b0384166000908152600960205260409081902091909155517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885906113ec90859085906121b1565b60405180910390a1826001600160a01b031660006001600160a01b03166000805160206127f48339815191528460405161142691906121d5565b60405180910390a3505050565b600f546114409082611270565b600f55600061144e8261127c565b600b5490915061145e9082611270565b600b553360009081526009602052604090205461147b9082611270565b33600081815260096020526040908190209290925590517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5916114bf9185906121b1565b60405180910390a160405160009033906000805160206127f4833981519152906114ea9086906121d5565b60405180910390a35050565b6114fe6112fe565b6001600160a01b031661150f610c74565b6001600160a01b031614610aaa5760405162461bcd60e51b8152600401610959906124ac565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611593848461110e565b905060001981146115cb57818110156115be5760405162461bcd60e51b815260040161095990612362565b6115cb8484848403611959565b50505050565b6001600160a01b0382166115f75760405162461bcd60e51b8152600401610959906124e1565b61160382600083610827565b6001600160a01b0382166000908152600260205260409020548181101561163c5760405162461bcd60e51b815260040161095990612298565b6001600160a01b0383166000818152600260205260408082208585039055600480548690039055519091906000805160206127f4833981519152906116829086906121d5565b60405180910390a361082783600084610827565b6000610c2c83836119ee565b600b546116af908261129a565b600b5560006116bd826112d9565b600f549091506116cd908261129a565b600f556116d861125e565b60085411156116f95760405162461bcd60e51b81526004016109599061261e565b6001600160a01b03831660009081526009602052604090205461171c908361129a565b6001600160a01b0384166000908152600960205260409081902091909155517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859061176a90859084906121b1565b60405180910390a1826001600160a01b031660006001600160a01b03166000805160206127f48339815191528360405161142691906121d5565b600061059182611a26565b6108278363a9059cbb60e01b84846040516024016117ce9291906121b1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611a2a565b60006118118383611ab9565b61184757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610684565b506000610684565b6001600160e01b031981166301ffc9a760e01b14919050565b6118728282610cef565b61096c5761187f81611ad1565b61188a836020611ae3565b60405160200161189b929190612128565b60408051601f198184030181529082905262461bcd60e51b825261095991600401612230565b6118cb8282610cef565b1561096c576000828152602081815260408083206001600160a01b03851684529091529020805460ff191690556119006112fe565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000610c2c836001600160a01b038416611c95565b6001600160a01b03831661197f5760405162461bcd60e51b815260040161095990612522565b6001600160a01b0382166119a55760405162461bcd60e51b815260040161095990612320565b6001600160a01b038084166000818152600360209081526040808320948716808452949091529081902084905551600080516020612814833981519152906114269085906121d5565b6000826000018281548110611a1357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b5490565b6000611a7f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611db29092919063ffffffff16565b8051909150156108275780806020019051810190611a9d919061201a565b6108275760405162461bcd60e51b81526004016109599061259d565b60009081526001919091016020526040902054151590565b60606105916001600160a01b03831660145b60606000611af2836002612700565b611afd9060026126c8565b67ffffffffffffffff811115611b2357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b4d576020820181803683370190505b509050600360fc1b81600081518110611b7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611bb357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611bd7846002612700565b611be29060016126c8565b90505b6001811115611c76576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611c2457634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611c4857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611c6f81612762565b9050611be5565b508315610c2c5760405162461bcd60e51b815260040161095990612263565b60008181526001830160205260408120548015611da8576000611cb960018361271f565b8554909150600090611ccd9060019061271f565b9050818114611d4e576000866000018281548110611cfb57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611d2c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611d6d57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610684565b6000915050610684565b6060611dc18484600085611dc9565b949350505050565b606082471015611deb5760405162461bcd60e51b8152600401610959906123ff565b600080866001600160a01b03168587604051611e0791906120f1565b60006040518083038185875af1925050503d8060008114611e44576040519150601f19603f3d011682016040523d82523d6000602084013e611e49565b606091505b5091509150611e5a87838387611e65565b979650505050505050565b60608315611e9f578251611e9857611e7c85611ea9565b611e985760405162461bcd60e51b815260040161095990612566565b5081611dc1565b611dc18383611eb8565b6001600160a01b03163b151590565b815115611ec85781518083602001fd5b8060405162461bcd60e51b81526004016109599190612230565b80356001600160a01b038116811461059457600080fd5b600060208284031215611f0a578081fd5b610c2c82611ee2565b60008060408385031215611f25578081fd5b611f2e83611ee2565b9150611f3c60208401611ee2565b90509250929050565b600080600060608486031215611f59578081fd5b611f6284611ee2565b9250611f7060208501611ee2565b9150604084013590509250925092565b600080600080600080600060e0888a031215611f9a578283fd5b611fa388611ee2565b9650611fb160208901611ee2565b95506040880135945060608801359350608088013560ff81168114611fd4578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215612003578182fd5b61200c83611ee2565b946020939093013593505050565b60006020828403121561202b578081fd5b8151610c2c816127e5565b600060208284031215612047578081fd5b5035919050565b60008060408385031215612060578182fd5b82359150611f3c60208401611ee2565b60008060408385031215612082578182fd5b50508035926020909101359150565b6000602082840312156120a2578081fd5b81356001600160e01b031981168114610c2c578182fd5b6000806000606084860312156120cd578283fd5b833592506020840135915060408401356120e6816127e5565b809150509250925092565b60008251612103818460208701612736565b9190910192915050565b61190160f01b81526002810192909252602282015260420190565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351612160816017850160208801612736565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612191816028840160208801612736565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252825180602084015261224f816040850160208701612736565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601590820152744d7573742068617665206d696e74657220726f6c6560581b604082015260600190565b60208082526017908201527f61766f6361646f732f696e76616c69642d7065726d6974000000000000000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601690820152754d7573742068617665207265626173657220726f6c6560501b604082015260600190565b60208082526017908201527f61766f6361646f732f7065726d69742d65787069726564000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601a908201527f61766f6361646f732f696e76616c69642d616464726573732d30000000000000604082015260600190565b6020808252601a908201527f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156126db576126db6127cf565b500190565b6000826126fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561271a5761271a6127cf565b500290565b600082821015612731576127316127cf565b500390565b60005b83811015612751578181015183820152602001612739565b838111156115cb5750506000910152565b600081612771576127716127cf565b506000190190565b60028104600182168061278d57607f821691505b602082108114156127ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c8576127c86127cf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b8015158114610a6557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a26469706673582212204206b8d930f3a4088d4eb5abd9994b6e046ce0fd3b49c45910125122939f943464736f6c63430008010033

Deployed Bytecode Sourcemap

97902:15084:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46078:290;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98461:37;;;:::i;:::-;;;;;;;:::i;69681:100::-;;;:::i;:::-;;;;;;;:::i;107758:251::-;;;;;;:::i;:::-;;:::i;100043:105::-;;;:::i;99861:100::-;;;:::i;99070:155::-;;;:::i;105400:650::-;;;;;;:::i;:::-;;:::i;41396:181::-;;;;;;:::i;:::-;;:::i;41887:188::-;;;;;;:::i;:::-;;:::i;:::-;;98792:117;;;:::i;70643:93::-;;;:::i;:::-;;;;;;;:::i;103610:456::-;;;;;;:::i;:::-;;:::i;98916:31::-;;;:::i;43113:287::-;;;;;;:::i;:::-;;:::i;108382:422::-;;;;;;:::i;:::-;;:::i;106497:120::-;;;;;;:::i;:::-;;:::i;100596:205::-;;;;;;:::i;:::-;;:::i;101659:78::-;;;;;;:::i;:::-;;:::i;98215:49::-;;;:::i;106171:140::-;;;;;;:::i;:::-;;:::i;50094:103::-;;;:::i;82278:164::-;;;;;;:::i;:::-;;:::i;110734:1366::-;;;;;;:::i;:::-;;:::i;98956:41::-;;;;;;:::i;:::-;;:::i;82704:64::-;;;:::i;112247:125::-;;;;;;:::i;:::-;;:::i;49446:87::-;;;:::i;:::-;;;;;;;:::i;46967:203::-;;;;;;:::i;:::-;;:::i;102419:223::-;;;;;;:::i;:::-;;:::i;39819:197::-;;;;;;:::i;:::-;;:::i;69900:104::-;;;:::i;98653:25::-;;;:::i;38848:49::-;;;:::i;109066:612::-;;;;;;:::i;:::-;;:::i;104329:809::-;;;;;;:::i;:::-;;:::i;47344:192::-;;;;;;:::i;:::-;;:::i;112738:245::-;;;;;;:::i;:::-;;:::i;109723:1003::-;;;;;;:::i;:::-;;:::i;82635:62::-;;;:::i;42368:190::-;;;;;;:::i;:::-;;:::i;106924:192::-;;;;;;:::i;:::-;;:::i;98333:37::-;;;:::i;112108:131::-;;;;;;:::i;:::-;;:::i;50352:238::-;;;;;;:::i;:::-;;:::i;46078:290::-;46208:4;-1:-1:-1;;;;;;46250:57:0;;-1:-1:-1;;;46250:57:0;;:110;;;46324:36;46348:11;46324:23;:36::i;:::-;46230:130;;46078:290;;;;:::o;98461:37::-;;;;:::o;69681:100::-;69735:13;69768:5;69761:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69681:100;:::o;107758:251::-;107899:10;107859:4;107881:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;107881:38:0;;;;;;;;;;:46;;;107943:36;107859:4;;107881:38;;-1:-1:-1;;;;;;;;;;;107943:36:0;;;107922:5;;107943:36;:::i;:::-;;;;;;;;-1:-1:-1;107997:4:0;107758:251;;;;;:::o;100043:105::-;100094:7;100121:19;:17;:19::i;:::-;100114:26;;100043:105;:::o;99861:100::-;99941:12;;99861:100;:::o;99070:155::-;99121:104;99070:155;:::o;105400:650::-;105541:4;105528:2;-1:-1:-1;;;;;99385:18:0;;99377:27;;;;;;-1:-1:-1;;;;;99423:19:0;;99437:4;99423:19;;99415:28;;;;;;-1:-1:-1;;;;;105627:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;105665:10:::1;105627:59:::0;;;;;;;;:70:::1;::::0;105691:5;105627:63:::1;:70::i;:::-;-1:-1:-1::0;;;;;105589:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;;;105613:10:::1;105589:35:::0;;;;;;;:108;;;;105769:26:::1;105789:5:::0;105769:19:::1;:26::i;:::-;-1:-1:-1::0;;;;;105860:23:0;::::1;;::::0;;;:17:::1;:23;::::0;;;;;105745:50;;-1:-1:-1;105860:42:0::1;::::0;105745:50;105860:27:::1;:42::i;:::-;-1:-1:-1::0;;;;;105834:23:0;;::::1;;::::0;;;:17:::1;:23;::::0;;;;;:68;;;;105937:21;;::::1;::::0;;;;:40:::1;::::0;105963:13;105937:25:::1;:40::i;:::-;-1:-1:-1::0;;;;;105913:21:0;;::::1;;::::0;;;:17:::1;:21;::::0;;;;;;:64;;;;105993:25;;;;::::1;::::0;-1:-1:-1;;;;;;;;;;;105993:25:0;::::1;::::0;106012:5;;105993:25:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;106038:4:0::1;::::0;105400:650;-1:-1:-1;;;;;105400:650:0:o;41396:181::-;41515:7;41547:12;;;;;;;;;;:22;;;;41396:181::o;41887:188::-;42006:18;42019:4;42006:12;:18::i;:::-;39339:16;39350:4;39339:10;:16::i;:::-;42042:25:::1;42053:4;42059:7;42042:10;:25::i;:::-;41887:188:::0;;;:::o;98792:117::-;98843:66;98792:117;:::o;70643:93::-;70726:2;70643:93;:::o;103610:456::-;103727:4;103705:2;-1:-1:-1;;;;;99385:18:0;;99377:27;;;;;;-1:-1:-1;;;;;99423:19:0;;99437:4;99423:19;;99415:28;;;;;;103838:10:::1;103820:29;::::0;;;:17:::1;:29;::::0;;;;;:40:::1;::::0;103854:5;103820:33:::1;:40::i;:::-;103806:10;103788:29;::::0;;;:17:::1;:29;::::0;;;;;:72;;;;-1:-1:-1;;;;;103936:21:0;::::1;::::0;;;;:32:::1;::::0;103962:5;103936:25:::1;:32::i;:::-;-1:-1:-1::0;;;;;103912:21:0;::::1;;::::0;;;:17:::1;:21;::::0;;;;:56;;;;103993:10:::1;-1:-1:-1::0;;;;;;;;;;;104009:26:0::1;104029:5:::0;104009:19:::1;:26::i;:::-;103984:52;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;104054:4:0::1;::::0;103610:456;-1:-1:-1;;;103610:456:0:o;98916:31::-;;;;:::o;43113:287::-;43266:12;:10;:12::i;:::-;-1:-1:-1;;;;;43255:23:0;:7;-1:-1:-1;;;;;43255:23:0;;43233:120;;;;-1:-1:-1;;;43233:120:0;;;;;;;:::i;:::-;;;;;;;;;43366:26;43378:4;43384:7;43366:11;:26::i;:::-;43113:287;;:::o;108382:422::-;108579:10;108498:4;108561:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;108561:62:0;;;;;;;;;;:78;;108628:10;108561:66;:78::i;:::-;108538:10;108520:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;108520:38:0;;;;;;;;;;;:119;;;108655;;108520:38;;-1:-1:-1;;;;;;;;;;;108655:119:0;;;108520;108655;:::i;106497:120::-;-1:-1:-1;;;;;106587:22:0;106560:7;106587:22;;;:17;:22;;;;;;;106497:120::o;100596:205::-;100656:4;100681:34;82673:24;100702:12;:10;:12::i;100681:34::-;100673:68;;;;-1:-1:-1;;;100673:68:0;;;;;;;:::i;:::-;100754:17;100760:2;100764:6;100754:5;:17::i;:::-;-1:-1:-1;100789:4:0;100596:205;;;;:::o;101659:78::-;101716:13;101722:6;101716:5;:13::i;:::-;101659:78;:::o;98215:49::-;98258:6;98215:49;:::o;106171:140::-;-1:-1:-1;;;;;106280:22:0;;106233:7;106280:22;;;:17;:22;;;;;;106260:43;;:19;:43::i;50094:103::-;49332:13;:11;:13::i;:::-;50159:30:::1;50186:1;50159:18;:30::i;:::-;50094:103::o:0;82278:164::-;82355:46;82371:7;82380:12;:10;:12::i;:::-;82394:6;82355:15;:46::i;:::-;82412:22;82418:7;82427:6;82412:5;:22::i;110734:1366::-;110850:7;110878:35;82743:25;110900:12;:10;:12::i;110878:35::-;110870:70;;;;-1:-1:-1;;;110870:70:0;;;;;;;:::i;:::-;110979:15;110975:148;;111016:61;111023:5;111030:22;;111054;;111016:61;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;111099:12:0;;111092:19;;110975:148;111195:22;;111235:8;111230:648;;111342:94;98364:6;111342:66;111387:20;98364:6;111396:10;111387:8;:20::i;:::-;111342:22;;;:44;:66::i;:::-;:88;;:94::i;:::-;111317:22;:119;111230:648;;;111526:24;111553:94;98364:6;111553:66;111598:20;98364:6;111607:10;111598:8;:20::i;111553:94::-;111526:121;;111685:19;:17;:19::i;:::-;111666:16;:38;111662:205;;;111725:22;:41;;;111662:205;;;111832:19;:17;:19::i;:::-;111807:22;:44;111662:205;111230:648;;111948:31;111968:10;;111948:19;:31::i;:::-;111933:12;:46;112039:22;;111997:65;;;;;;112004:5;;112011:26;;111997:65;:::i;:::-;;;;;;;;-1:-1:-1;;112080:12:0;;110734:1366;;;;;;:::o;98956:41::-;;;;;;;;;;;;;:::o;82704:64::-;82743:25;82704:64;:::o;112247:125::-;112311:7;112338:26;112358:5;112338:19;:26::i;49446:87::-;49519:6;;-1:-1:-1;;;;;49519:6:0;49446:87;:::o;46967:203::-;47102:7;47134:18;;;:12;:18;;;;;:28;;47156:5;47134:21;:28::i;102419:223::-;102487:4;102512:34;82673:24;102533:12;:10;:12::i;102512:34::-;102504:68;;;;-1:-1:-1;;;102504:68:0;;;;;;;:::i;:::-;102585:27;102601:2;102605:6;102585:15;:27::i;39819:197::-;39950:4;39979:12;;;;;;;;;;;-1:-1:-1;;;;;39979:29:0;;;;;;;;;;;;;;;39819:197::o;69900:104::-;69956:13;69989:7;69982:14;;;;;:::i;98653:25::-;;;;:::o;38848:49::-;38893:4;38848:49;:::o;109066:612::-;109246:10;109187:4;109228:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109228:38:0;;;;;;;;;;109281:27;;;109277:237;;109343:10;109366:1;109325:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109325:38:0;;;;;;;;;:42;109277:237;;;109441:61;:8;109472:15;109441:12;:61::i;:::-;109418:10;109400:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109400:38:0;;;;;;;;;:102;109277:237;109552:10;109599:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;109529:119:0;;109599:38;;;;;;;;;;109529:119;;;;109552:10;-1:-1:-1;;;;;;;;;;;109529:119:0;;;109599:38;109529:119;:::i;104329:809::-;104454:4;104432:2;-1:-1:-1;;;;;99385:18:0;;99377:27;;;;;;-1:-1:-1;;;;;99423:19:0;;99437:4;99423:19;;99415:28;;;;;;104761:21:::1;104785:26;104805:5;104785:19;:26::i;:::-;104913:10;104895:29;::::0;;;:17:::1;:29;::::0;;;;;104761:50;;-1:-1:-1;104895:48:0::1;::::0;104761:50;104895:33:::1;:48::i;:::-;104881:10;104863:29;::::0;;;:17:::1;:29;::::0;;;;;:80;;;;-1:-1:-1;;;;;105019:21:0;::::1;::::0;;;;:40:::1;::::0;105045:13;105019:25:::1;:40::i;:::-;-1:-1:-1::0;;;;;104995:21:0;::::1;;::::0;;;:17:::1;:21;::::0;;;;;;:64;;;;105075:31;;105084:10:::1;::::0;-1:-1:-1;;;;;;;;;;;105075:31:0;::::1;::::0;105100:5;;105075:31:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;105126:4:0::1;::::0;104329:809;-1:-1:-1;;;;104329:809:0:o;47344:192::-;47469:7;47501:18;;;:12;:18;;;;;:27;;:25;:27::i;112738:245::-;112863:4;49332:13;:11;:13::i;:::-;112904:49:::1;112934:5;112942:2;112946:6;112904:22;:49::i;:::-;-1:-1:-1::0;112971:4:0::1;112738:245:::0;;;;;:::o;109723:1003::-;109950:8;109931:15;:27;;109923:63;;;;-1:-1:-1;;;109923:63:0;;;;;;;:::i;:::-;110104:16;;-1:-1:-1;;;;;110348:13:0;;109999:14;110348:13;;;:6;:13;;;;;:15;;109999:14;;110104:16;98843:66;;110250:5;;110282:7;;110316:5;;110348:15;109999:14;110348:15;;;:::i;:::-;;;;;110390:8;110171:250;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;110139:301;;;;;;110040:415;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;110040:415:0;;;;;;;;;110016:450;;110040:415;110016:450;;;;;-1:-1:-1;;;;;;110487:19:0;;110479:58;;;;-1:-1:-1;;;110479:58:0;;;;;;;:::i;:::-;110565:26;110575:6;110583:1;110586;110589;110565:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;110556:35:0;:5;-1:-1:-1;;;;;110556:35:0;;110548:71;;;;-1:-1:-1;;;110548:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;110630:24:0;;;;;;;:17;:24;;;;;;;;:33;;;;;;;;;;;;;;:41;;;110687:31;-1:-1:-1;;;;;;;;;;;110687:31:0;;;110666:5;;110687:31;:::i;:::-;;;;;;;;109723:1003;;;;;;;;:::o;82635:62::-;82673:24;82635:62;:::o;42368:190::-;42488:18;42501:4;42488:12;:18::i;:::-;39339:16;39350:4;39339:10;:16::i;:::-;42524:26:::1;42536:4;42542:7;42524:11;:26::i;106924:192::-:0;-1:-1:-1;;;;;107074:25:0;;;107042:7;107074:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;106924:192::o;98333:37::-;98364:6;98333:37;:::o;112108:131::-;112175:7;112202:29;112222:8;112202:19;:29::i;50352:238::-;49332:13;:11;:13::i;:::-;-1:-1:-1;;;;;50455:22:0;::::1;50433:110;;;;-1:-1:-1::0;;;50433:110:0::1;;;;;;;:::i;:::-;50554:28;50573:8;50554:18;:28::i;91911:98::-:0;91969:7;91996:5;92000:1;91996;:5;:::i;92310:98::-;92368:7;92395:5;92399:1;92395;:5;:::i;44779:238::-;44863:22;44871:4;44877:7;44863;:22::i;:::-;44858:152;;44902:6;:12;;;;;;;;;;;-1:-1:-1;;;;;44902:29:0;;;;;;;;;:36;;-1:-1:-1;;44902:36:0;44934:4;44902:36;;;44985:12;:10;:12::i;:::-;-1:-1:-1;;;;;44958:40:0;44976:7;-1:-1:-1;;;;;44958:40:0;44970:4;44958:40;;;;;;;;;;44779:238;;:::o;8571:175::-;8659:4;8688:50;8693:3;-1:-1:-1;;;;;8713:23:0;;8688:4;:50::i;39447:280::-;39577:4;-1:-1:-1;;;;;;39619:47:0;;-1:-1:-1;;;39619:47:0;;:100;;;39683:36;39707:11;39683:23;:36::i;100156:323::-;100208:7;100461:10;;-1:-1:-1;;100439:32:0;;;;:::i;91554:98::-;91612:7;91639:5;91643:1;91639;:5;:::i;112551:157::-;112677:22;;112618:7;;112645:55;;:27;:5;98258:6;112645:9;:27::i;91173:98::-;91231:7;91258:5;91262:1;91258;:5;:::i;40320:105::-;40387:30;40398:4;40404:12;:10;:12::i;:::-;40387:10;:30::i;47629:201::-;47749:31;47766:4;47772:7;47749:16;:31::i;:::-;47791:18;;;;:12;:18;;;;;:31;;47814:7;47791:22;:31::i;112380:163::-;112450:7;112477:58;98258:6;112477:36;112490:22;;112477:8;:12;;:36;;;;:::i;36613:98::-;36693:10;36613:98;:::o;47924:206::-;48045:32;48063:4;48069:7;48045:17;:32::i;:::-;48088:18;;;;:12;:18;;;;;:34;;48114:7;48088:25;:34::i;100809:720::-;100929:12;;:24;;100946:6;100929:16;:24::i;:::-;100914:12;:39;100999:21;101023:27;101043:6;101023:19;:27::i;:::-;101108:10;;100999:51;;-1:-1:-1;101108:29:0;;100999:51;101108:14;:29::i;:::-;101095:10;:42;101265:19;:17;:19::i;:::-;101239:22;;:45;;101217:121;;;;-1:-1:-1;;;101217:121:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;101399:21:0;;;;;;:17;:21;;;;;;:40;;101425:13;101399:25;:40::i;:::-;-1:-1:-1;;;;;101375:21:0;;;;;;:17;:21;;;;;;;:64;;;;101457:16;;;;;101393:2;;101466:6;;101457:16;:::i;:::-;;;;;;;;101510:2;-1:-1:-1;;;;;101489:32:0;101506:1;-1:-1:-1;;;;;101489:32:0;-1:-1:-1;;;;;;;;;;;101514:6:0;101489:32;;;;;;:::i;:::-;;;;;;;;100809:720;;;:::o;101745:533::-;101844:12;;:24;;101861:6;101844:16;:24::i;:::-;101829:12;:39;101914:21;101938:27;101958:6;101938:19;:27::i;:::-;102023:10;;101914:51;;-1:-1:-1;102023:29:0;;101914:51;102023:14;:29::i;:::-;102010:10;:42;102144:10;102126:29;;;;:17;:29;;;;;;:48;;102160:13;102126:33;:48::i;:::-;102112:10;102094:29;;;;:17;:29;;;;;;;:80;;;;102190:24;;;;;;102207:6;;102190:24;:::i;:::-;;;;;;;;102230:40;;102259:1;;102239:10;;-1:-1:-1;;;;;;;;;;;102230:40:0;;;102263:6;;102230:40;:::i;:::-;;;;;;;;101745:533;;:::o;49611:132::-;49686:12;:10;:12::i;:::-;-1:-1:-1;;;;;49675:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;49675:23:0;;49667:68;;;;-1:-1:-1;;;49667:68:0;;;;;;;:::i;50750:191::-;50843:6;;;-1:-1:-1;;;;;50860:17:0;;;-1:-1:-1;;;;;;50860:17:0;;;;;;;50893:40;;50843:6;;;50860:17;50843:6;;50893:40;;50824:16;;50893:40;50750:191;;:::o;79276:502::-;79411:24;79438:25;79448:5;79455:7;79438:9;:25::i;:::-;79411:52;;-1:-1:-1;;79478:16:0;:37;79474:297;;79578:6;79558:16;:26;;79532:117;;;;-1:-1:-1;;;79532:117:0;;;;;;;:::i;:::-;79693:51;79702:5;79709:7;79737:6;79718:16;:25;79693:8;:51::i;:::-;79276:502;;;;:::o;77492:675::-;-1:-1:-1;;;;;77576:21:0;;77568:67;;;;-1:-1:-1;;;77568:67:0;;;;;;;:::i;:::-;77648:49;77669:7;77686:1;77690:6;77648:20;:49::i;:::-;-1:-1:-1;;;;;77735:18:0;;77710:22;77735:18;;;:9;:18;;;;;;77772:24;;;;77764:71;;;;-1:-1:-1;;;77764:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;77871:18:0;;;;;;:9;:18;;;;;;77892:23;;;77871:44;;78010:12;:22;;;;;;;78061:37;77871:18;;;-1:-1:-1;;;;;;;;;;;78061:37:0;;;77909:6;;78061:37;:::i;:::-;;;;;;;;78111:48;78131:7;78148:1;78152:6;78111:19;:48::i;9945:190::-;10046:7;10102:22;10106:3;10118:5;10102:3;:22::i;102650:722::-;102768:10;;:22;;102783:6;102768:14;:22::i;:::-;102755:10;:35;102834:20;102857:27;102877:6;102857:19;:27::i;:::-;102945:12;;102834:50;;-1:-1:-1;102945:30:0;;102834:50;102945:16;:30::i;:::-;102930:12;:45;103103:19;:17;:19::i;:::-;103077:22;;:45;;103055:121;;;;-1:-1:-1;;;103055:121:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;103237:21:0;;;;;;:17;:21;;;;;;:33;;103263:6;103237:25;:33::i;:::-;-1:-1:-1;;;;;103213:21:0;;;;;;:17;:21;;;;;;;:57;;;;103288:22;;;;;103231:2;;103297:12;;103288:22;:::i;:::-;;;;;;;;103347:2;-1:-1:-1;;;;;103326:38:0;103343:1;-1:-1:-1;;;;;103326:38:0;-1:-1:-1;;;;;;;;;;;103351:12:0;103326:38;;;;;;:::i;9474:117::-;9537:7;9564:19;9572:3;9564:7;:19::i;83779:248::-;83896:123;83930:5;83973:23;;;83998:2;84002:5;83950:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;83950:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;83950:58:0;-1:-1:-1;;;;;;83950:58:0;;;;;;;;;;83896:19;:123::i;2096:414::-;2159:4;2181:21;2191:3;2196:5;2181:9;:21::i;:::-;2176:327;;-1:-1:-1;2219:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2402:18;;2380:19;;;:12;;;:19;;;;;;:40;;;;2435:11;;2176:327;-1:-1:-1;2486:5:0;2479:12;;15507:207;-1:-1:-1;;;;;;15666:40:0;;-1:-1:-1;;;15666:40:0;15507:207;;;:::o;40715:492::-;40804:22;40812:4;40818:7;40804;:22::i;:::-;40799:401;;40992:28;41012:7;40992:19;:28::i;:::-;41093:38;41121:4;41128:2;41093:19;:38::i;:::-;40897:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;40897:257:0;;;;;;;;;;-1:-1:-1;;;40843:345:0;;;;;;;:::i;45197:239::-;45281:22;45289:4;45295:7;45281;:22::i;:::-;45277:152;;;45352:5;45320:12;;;;;;;;;;;-1:-1:-1;;;;;45320:29:0;;;;;;;;;:37;;-1:-1:-1;;45320:37:0;;;45404:12;:10;:12::i;:::-;-1:-1:-1;;;;;45377:40:0;45395:7;-1:-1:-1;;;;;45377:40:0;45389:4;45377:40;;;;;;;;;;45197:239;;:::o;8922:181::-;9013:4;9042:53;9050:3;-1:-1:-1;;;;;9070:23:0;;9042:7;:53::i;78605:380::-;-1:-1:-1;;;;;78741:19:0;;78733:68;;;;-1:-1:-1;;;78733:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;78820:21:0;;78812:68;;;;-1:-1:-1;;;78812:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;78893:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;78945:32;-1:-1:-1;;;;;;;;;;;78945:32:0;;;78923:6;;78945:32;:::i;4902:152::-;4996:7;5028:3;:11;;5040:5;5028:18;;;;;;-1:-1:-1;;;5028:18:0;;;;;;;;;;;;;;;;;5021:25;;4902:152;;;;:::o;4439:109::-;4522:18;;4439:109::o;87277:802::-;87701:23;87727:106;87769:4;87727:106;;;;;;;;;;;;;;;;;87735:5;-1:-1:-1;;;;;87727:27:0;;;:106;;;;;:::i;:::-;87848:17;;87701:132;;-1:-1:-1;87848:21:0;87844:228;;87963:10;87952:30;;;;;;;;;;;;:::i;:::-;87926:134;;;;-1:-1:-1;;;87926:134:0;;;;;;;:::i;4192:161::-;4292:4;4321:19;;;:12;;;;;:19;;;;;;:24;;;4192:161::o;31158:151::-;31216:13;31249:52;-1:-1:-1;;;;;31261:22:0;;29281:2;30522:479;30624:13;30655:19;30687:10;30691:6;30687:1;:10;:::i;:::-;:14;;30700:1;30687:14;:::i;:::-;30677:25;;;;;;-1:-1:-1;;;30677:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30677:25:0;;30655:47;;-1:-1:-1;;;30713:6:0;30720:1;30713:9;;;;;;-1:-1:-1;;;30713:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;30713:15:0;;;;;;;;;-1:-1:-1;;;30739:6:0;30746:1;30739:9;;;;;;-1:-1:-1;;;30739:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;30739:15:0;;;;;;;;-1:-1:-1;30770:9:0;30782:10;30786:6;30782:1;:10;:::i;:::-;:14;;30795:1;30782:14;:::i;:::-;30770:26;;30765:131;30802:1;30798;:5;30765:131;;;-1:-1:-1;;;30846:5:0;30854:3;30846:11;30837:21;;;;;-1:-1:-1;;;30837:21:0;;;;;;;;;;;;30825:6;30832:1;30825:9;;;;;;-1:-1:-1;;;30825:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;30825:33:0;;;;;;;;-1:-1:-1;30883:1:0;30873:11;;;;;30805:3;;;:::i;:::-;;;30765:131;;;-1:-1:-1;30914:10:0;;30906:55;;;;-1:-1:-1;;;30906:55:0;;;;;;;:::i;2686:1420::-;2752:4;2891:19;;;:12;;;:19;;;;;;2927:15;;2923:1176;;3302:21;3326:14;3339:1;3326:10;:14;:::i;:::-;3375:18;;3302:38;;-1:-1:-1;3355:17:0;;3375:22;;3396:1;;3375:22;:::i;:::-;3355:42;;3431:13;3418:9;:26;3414:405;;3465:17;3485:3;:11;;3497:9;3485:22;;;;;;-1:-1:-1;;;3485:22:0;;;;;;;;;;;;;;;;;3465:42;;3639:9;3610:3;:11;;3622:13;3610:26;;;;;;-1:-1:-1;;;3610:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;3724:23;;;:12;;;:23;;;;;:36;;;3414:405;3900:17;;:3;;:17;;;-1:-1:-1;;;3900:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;3995:3;:12;;:19;4008:5;3995:19;;;;;;;;;;;3988:26;;;4038:4;4031:11;;;;;;;2923:1176;4082:5;4075:12;;;;;55182:229;55319:12;55351:52;55373:6;55381:4;55387:1;55390:12;55351:21;:52::i;:::-;55344:59;55182:229;-1:-1:-1;;;;55182:229:0:o;56398:612::-;56568:12;56640:5;56615:21;:30;;56593:118;;;;-1:-1:-1;;;56593:118:0;;;;;;;:::i;:::-;56723:12;56737:23;56764:6;-1:-1:-1;;;;;56764:11:0;56783:5;56804:4;56764:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56722:97;;;;56850:152;56895:6;56920:7;56946:10;56975:12;56850:26;:152::i;:::-;56830:172;56398:612;-1:-1:-1;;;;;;;56398:612:0:o;59533:644::-;59718:12;59747:7;59743:427;;;59775:17;;59771:290;;59993:18;60004:6;59993:10;:18::i;:::-;59985:60;;;;-1:-1:-1;;;59985:60:0;;;;;;;:::i;:::-;-1:-1:-1;60082:10:0;60075:17;;59743:427;60125:33;60133:10;60145:12;60125:7;:33::i;52232:326::-;-1:-1:-1;;;;;52527:19:0;;:23;;;52232:326::o;60719:575::-;60903:17;;:21;60899:388;;61135:10;61129:17;61192:15;61179:10;61175:2;61171:19;61164:44;61087:136;61262:12;61255:20;;-1:-1:-1;;;61255:20:0;;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:717::-;;;;;;;;1235:3;1223:9;1214:7;1210:23;1206:33;1203:2;;;1257:6;1249;1242:22;1203:2;1285:31;1306:9;1285:31;:::i;:::-;1275:41;;1335:40;1371:2;1360:9;1356:18;1335:40;:::i;:::-;1325:50;;1422:2;1411:9;1407:18;1394:32;1384:42;;1473:2;1462:9;1458:18;1445:32;1435:42;;1527:3;1516:9;1512:19;1499:33;1572:4;1565:5;1561:16;1554:5;1551:27;1541:2;;1597:6;1589;1582:22;1541:2;1193:547;;;;-1:-1:-1;1193:547:1;;;;1625:5;1677:3;1662:19;;1649:33;;-1:-1:-1;1729:3:1;1714:19;;;1701:33;;1193:547;-1:-1:-1;;1193:547:1:o;1745:266::-;;;1874:2;1862:9;1853:7;1849:23;1845:32;1842:2;;;1895:6;1887;1880:22;1842:2;1923:31;1944:9;1923:31;:::i;:::-;1913:41;2001:2;1986:18;;;;1973:32;;-1:-1:-1;;;1832:179:1:o;2016:257::-;;2136:2;2124:9;2115:7;2111:23;2107:32;2104:2;;;2157:6;2149;2142:22;2104:2;2194:9;2188:16;2213:30;2237:5;2213:30;:::i;2278:190::-;;2390:2;2378:9;2369:7;2365:23;2361:32;2358:2;;;2411:6;2403;2396:22;2358:2;-1:-1:-1;2439:23:1;;2348:120;-1:-1:-1;2348:120:1:o;2473:266::-;;;2602:2;2590:9;2581:7;2577:23;2573:32;2570:2;;;2623:6;2615;2608:22;2570:2;2664:9;2651:23;2641:33;;2693:40;2729:2;2718:9;2714:18;2693:40;:::i;2744:258::-;;;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2894:6;2886;2879:22;2841:2;-1:-1:-1;;2922:23:1;;;2992:2;2977:18;;;2964:32;;-1:-1:-1;2831:171:1:o;3007:306::-;;3118:2;3106:9;3097:7;3093:23;3089:32;3086:2;;;3139:6;3131;3124:22;3086:2;3170:23;;-1:-1:-1;;;;;;3222:32:1;;3212:43;;3202:2;;3274:6;3266;3259:22;3513:389;;;;3656:2;3644:9;3635:7;3631:23;3627:32;3624:2;;;3677:6;3669;3662:22;3624:2;3718:9;3705:23;3695:33;;3775:2;3764:9;3760:18;3747:32;3737:42;;3829:2;3818:9;3814:18;3801:32;3842:30;3866:5;3842:30;:::i;:::-;3891:5;3881:15;;;3614:288;;;;;:::o;3907:274::-;;4074:6;4068:13;4090:53;4136:6;4131:3;4124:4;4116:6;4112:17;4090:53;:::i;:::-;4159:16;;;;;4044:137;-1:-1:-1;;4044:137:1:o;4186:392::-;-1:-1:-1;;;4444:27:1;;4496:1;4487:11;;4480:27;;;;4532:2;4523:12;;4516:28;4569:2;4560:12;;4434:144::o;4583:786::-;;4994:25;4989:3;4982:38;5049:6;5043:13;5065:62;5120:6;5115:2;5110:3;5106:12;5099:4;5091:6;5087:17;5065:62;:::i;:::-;-1:-1:-1;;;5186:2:1;5146:16;;;5178:11;;;5171:40;5236:13;;5258:63;5236:13;5307:2;5299:11;;5292:4;5280:17;;5258:63;:::i;:::-;5341:17;5360:2;5337:26;;4972:397;-1:-1:-1;;;;4972:397:1:o;5374:203::-;-1:-1:-1;;;;;5538:32:1;;;;5520:51;;5508:2;5493:18;;5475:102::o;5582:274::-;-1:-1:-1;;;;;5774:32:1;;;;5756:51;;5838:2;5823:18;;5816:34;5744:2;5729:18;;5711:145::o;5861:187::-;6026:14;;6019:22;6001:41;;5989:2;5974:18;;5956:92::o;6053:177::-;6199:25;;;6187:2;6172:18;;6154:76::o;6235:591::-;6522:25;;;-1:-1:-1;;;;;6621:15:1;;;6616:2;6601:18;;6594:43;6673:15;;;;6668:2;6653:18;;6646:43;6720:2;6705:18;;6698:34;6763:3;6748:19;;6741:35;;;;6574:3;6792:19;;6785:35;6509:3;6494:19;;6476:350::o;6831:398::-;7058:25;;;7131:4;7119:17;;;;7114:2;7099:18;;7092:45;7168:2;7153:18;;7146:34;7211:2;7196:18;;7189:34;7045:3;7030:19;;7012:217::o;7234:383::-;;7383:2;7372:9;7365:21;7415:6;7409:13;7458:6;7453:2;7442:9;7438:18;7431:34;7474:66;7533:6;7528:2;7517:9;7513:18;7508:2;7500:6;7496:15;7474:66;:::i;:::-;7601:2;7580:15;-1:-1:-1;;7576:29:1;7561:45;;;;7608:2;7557:54;;7355:262;-1:-1:-1;;7355:262:1:o;7622:356::-;7824:2;7806:21;;;7843:18;;;7836:30;7902:34;7897:2;7882:18;;7875:62;7969:2;7954:18;;7796:182::o;7983:398::-;8185:2;8167:21;;;8224:2;8204:18;;;8197:30;8263:34;8258:2;8243:18;;8236:62;-1:-1:-1;;;8329:2:1;8314:18;;8307:32;8371:3;8356:19;;8157:224::o;8386:402::-;8588:2;8570:21;;;8627:2;8607:18;;;8600:30;8666:34;8661:2;8646:18;;8639:62;-1:-1:-1;;;8732:2:1;8717:18;;8710:36;8778:3;8763:19;;8560:228::o;8793:398::-;8995:2;8977:21;;;9034:2;9014:18;;;9007:30;9073:34;9068:2;9053:18;;9046:62;-1:-1:-1;;;9139:2:1;9124:18;;9117:32;9181:3;9166:19;;8967:224::o;9196:353::-;9398:2;9380:21;;;9437:2;9417:18;;;9410:30;9476:31;9471:2;9456:18;;9449:59;9540:2;9525:18;;9370:179::o;9554:345::-;9756:2;9738:21;;;9795:2;9775:18;;;9768:30;-1:-1:-1;;;9829:2:1;9814:18;;9807:51;9890:2;9875:18;;9728:171::o;9904:347::-;10106:2;10088:21;;;10145:2;10125:18;;;10118:30;10184:25;10179:2;10164:18;;10157:53;10242:2;10227:18;;10078:173::o;10256:402::-;10458:2;10440:21;;;10497:2;10477:18;;;10470:30;10536:34;10531:2;10516:18;;10509:62;-1:-1:-1;;;10602:2:1;10587:18;;10580:36;10648:3;10633:19;;10430:228::o;10663:346::-;10865:2;10847:21;;;10904:2;10884:18;;;10877:30;-1:-1:-1;;;10938:2:1;10923:18;;10916:52;11000:2;10985:18;;10837:172::o;11014:347::-;11216:2;11198:21;;;11255:2;11235:18;;;11228:30;11294:25;11289:2;11274:18;;11267:53;11352:2;11337:18;;11188:173::o;11366:356::-;11568:2;11550:21;;;11587:18;;;11580:30;11646:34;11641:2;11626:18;;11619:62;11713:2;11698:18;;11540:182::o;11727:397::-;11929:2;11911:21;;;11968:2;11948:18;;;11941:30;12007:34;12002:2;11987:18;;11980:62;-1:-1:-1;;;12073:2:1;12058:18;;12051:31;12114:3;12099:19;;11901:223::o;12129:400::-;12331:2;12313:21;;;12370:2;12350:18;;;12343:30;12409:34;12404:2;12389:18;;12382:62;-1:-1:-1;;;12475:2:1;12460:18;;12453:34;12519:3;12504:19;;12303:226::o;12534:353::-;12736:2;12718:21;;;12775:2;12755:18;;;12748:30;12814:31;12809:2;12794:18;;12787:59;12878:2;12863:18;;12708:179::o;12892:406::-;13094:2;13076:21;;;13133:2;13113:18;;;13106:30;13172:34;13167:2;13152:18;;13145:62;-1:-1:-1;;;13238:2:1;13223:18;;13216:40;13288:3;13273:19;;13066:232::o;13303:350::-;13505:2;13487:21;;;13544:2;13524:18;;;13517:30;13583:28;13578:2;13563:18;;13556:56;13644:2;13629:18;;13477:176::o;13658:350::-;13860:2;13842:21;;;13899:2;13879:18;;;13872:30;13938:28;13933:2;13918:18;;13911:56;13999:2;13984:18;;13832:176::o;14013:411::-;14215:2;14197:21;;;14254:2;14234:18;;;14227:30;14293:34;14288:2;14273:18;;14266:62;-1:-1:-1;;;14359:2:1;14344:18;;14337:45;14414:3;14399:19;;14187:237::o;14611:319::-;14813:25;;;14869:2;14854:18;;14847:34;;;;14912:2;14897:18;;14890:34;14801:2;14786:18;;14768:162::o;14935:184::-;15107:4;15095:17;;;;15077:36;;15065:2;15050:18;;15032:87::o;15124:128::-;;15195:1;15191:6;15188:1;15185:13;15182:2;;;15201:18;;:::i;:::-;-1:-1:-1;15237:9:1;;15172:80::o;15257:217::-;;15323:1;15313:2;;-1:-1:-1;;;15348:31:1;;15402:4;15399:1;15392:15;15430:4;15355:1;15420:15;15313:2;-1:-1:-1;15459:9:1;;15303:171::o;15479:168::-;;15585:1;15581;15577:6;15573:14;15570:1;15567:21;15562:1;15555:9;15548:17;15544:45;15541:2;;;15592:18;;:::i;:::-;-1:-1:-1;15632:9:1;;15531:116::o;15652:125::-;;15720:1;15717;15714:8;15711:2;;;15725:18;;:::i;:::-;-1:-1:-1;15762:9:1;;15701:76::o;15782:258::-;15854:1;15864:113;15878:6;15875:1;15872:13;15864:113;;;15954:11;;;15948:18;15935:11;;;15928:39;15900:2;15893:10;15864:113;;;15995:6;15992:1;15989:13;15986:2;;;-1:-1:-1;;16030:1:1;16012:16;;16005:27;15835:205::o;16045:136::-;;16112:5;16102:2;;16121:18;;:::i;:::-;-1:-1:-1;;;16157:18:1;;16092:89::o;16186:380::-;16271:1;16261:12;;16318:1;16308:12;;;16329:2;;16383:4;16375:6;16371:17;16361:27;;16329:2;16436;16428:6;16425:14;16405:18;16402:38;16399:2;;;16482:10;16477:3;16473:20;16470:1;16463:31;16517:4;16514:1;16507:15;16545:4;16542:1;16535:15;16399:2;;16241:325;;;:::o;16571:135::-;;-1:-1:-1;;16631:17:1;;16628:2;;;16651:18;;:::i;:::-;-1:-1:-1;16698:1:1;16687:13;;16618:88::o;16711:127::-;16772:10;16767:3;16763:20;16760:1;16753:31;16803:4;16800:1;16793:15;16827:4;16824:1;16817:15;16843:120;16931:5;16924:13;16917:21;16910:5;16907:32;16897:2;;16953:1;16950;16943:12

Swarm Source

ipfs://4206b8d930f3a4088d4eb5abd9994b6e046ce0fd3b49c45910125122939f9434
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.