CRO Price: $0.08 (+1.43%)

Token

CyborgSwap (CBO)

Overview

Max Total Supply

94,259,683.552096232179918927 CBO

Holders

1,553

Market

Price

$0.12 @ 1.517157 CRO

Onchain Market Cap

$11,394,393.33

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,346.966422307847100902 CBO

Value
$1,009.01 ( ~12,663.7055 CRO) [0.0089%]
0x634a5dc4cda63ea8d0699d9387cdcfffc6408b84
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CyborgSwap is a DEX on BNBChain. StableCoin Farming. NFT Staking, Drops & Incubator.

Contract Source Code Verified (Exact Match)

Contract Name:
CyborgSwapToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-03-03
*/

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/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 no longer needed starting with Solidity 0.8. 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 substraction 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/structs/EnumerableSet.sol



/**
 * @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.
 */
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;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            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) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // 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);
    }

    // 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))));
    }


    // 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 on 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));
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/introspection/IERC165.sol



/**
 * @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://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/introspection/ERC165.sol



/**
 * @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://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/Strings.sol



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/Context.sol



/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/access/AccessControl.sol




/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @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 override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @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]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " 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 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.
     */
    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.
     */
    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 granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    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.
     *
     * [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}.
     * ====
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/access/AccessControlEnumerable.sol




/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @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 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 override returns (uint256) {
        return _roleMembers[role].length();
    }

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

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

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

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

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/cryptography/ECDSA.sol


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/cryptography/draft-EIP712.sol



/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;
    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
        return keccak256(
            abi.encode(
                typeHash,
                name,
                version,
                block.chainid,
                address(this)
            )
        );
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/extensions/draft-IERC20Permit.sol




/**
 * @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://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/IERC20.sol



/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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);
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/extensions/IERC20Metadata.sol




/**
 * @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://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/ERC20.sol





/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 defaut 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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;
        _balances[account] += amount;
        emit Transfer(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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 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 to 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 { }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/extensions/draft-ERC20Permit.sol








/**
 * @dev Implementation 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.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping (address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {
    }

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
        // solhint-disable-next-line not-rely-on-time
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(
            abi.encode(
                _PERMIT_TYPEHASH,
                owner,
                spender,
                value,
                _useNonce(owner),
                deadline
            )
        );

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/Counters.sol



/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/math/Math.sol



/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @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, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/utils/Arrays.sol




/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
   /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/extensions/ERC20Snapshot.sol






/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */
abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping (address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _currentSnapshotId.current();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns(uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }


    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
      super._beforeTokenTransfer(from, to, amount);

      if (from == address(0)) {
        // mint
        _updateAccountSnapshot(to);
        _updateTotalSupplySnapshot();
      } else if (to == address(0)) {
        // burn
        _updateAccountSnapshot(from);
        _updateTotalSupplySnapshot();
      } else {
        // transfer
        _updateAccountSnapshot(from);
        _updateAccountSnapshot(to);
      }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots)
        private view returns (bool, uint256)
    {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        // solhint-disable-next-line max-line-length
        require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _currentSnapshotId.current();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/security/Pausable.sol




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

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

    bool private _paused;

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

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

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

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

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

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

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/extensions/ERC20Pausable.sol




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

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

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/extensions/ERC20Capped.sol



/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 immutable private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/release-v4.1/contracts/token/ERC20/extensions/ERC20Burnable.sol




/**
 * @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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

// File: contracts/CBOTestToken.sol




/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract CyborgSwapToken is Context, AccessControlEnumerable, ERC20Burnable, ERC20Capped, ERC20Pausable, ERC20Snapshot, ERC20Permit {
    using SafeMath for uint256;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol, uint256 cap) ERC20(name, symbol) ERC20Capped(cap) ERC20Permit(name) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

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

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

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

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

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

    function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) {
        ERC20Capped._mint(account, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140908152503480156200003a57600080fd5b50604051620050fa380380620050fa83398181016040528101906200006091906200067e565b82806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508386868160059080519060200190620000b392919062000539565b508060069080519060200190620000cc92919062000539565b5050506000811162000115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010c90620007cf565b60405180910390fd5b8060808181525050506000600760006101000a81548160ff02191690831515021790555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660c08181525050620001a28184846200026760201b60201c565b60a08181525050806101208181525050505050505050620001dc6000801b620001d0620002a360201b60201c565b620002ab60201b60201c565b6200021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a662000211620002a360201b60201c565b620002ab60201b60201c565b6200025e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62000252620002a360201b60201c565b620002ab60201b60201c565b50505062000a11565b600083838346306040516020016200028495949392919062000772565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b620002c28282620002f360201b6200128f1760201c565b620002ee81600160008581526020019081526020016000206200030960201b6200129d1790919060201c565b505050565b6200030582826200034160201b60201c565b5050565b600062000339836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200043260201b60201c565b905092915050565b620003538282620004ac60201b60201c565b6200042e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003d3620002a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200044683836200051660201b60201c565b620004a1578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620004a6565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200054790620008df565b90600052602060002090601f0160209004810192826200056b5760008555620005b7565b82601f106200058657805160ff1916838001178555620005b7565b82800160010185558215620005b7579182015b82811115620005b657825182559160200191906001019062000599565b5b509050620005c69190620005ca565b5090565b5b80821115620005e5576000816000905550600101620005cb565b5090565b600062000600620005fa846200081a565b620007f1565b9050828152602081018484840111156200061f576200061e620009ae565b5b6200062c848285620008a9565b509392505050565b600082601f8301126200064c576200064b620009a9565b5b81516200065e848260208601620005e9565b91505092915050565b6000815190506200067881620009f7565b92915050565b6000806000606084860312156200069a5762000699620009b8565b5b600084015167ffffffffffffffff811115620006bb57620006ba620009b3565b5b620006c98682870162000634565b935050602084015167ffffffffffffffff811115620006ed57620006ec620009b3565b5b620006fb8682870162000634565b92505060406200070e8682870162000667565b9150509250925092565b620007238162000861565b82525050565b620007348162000875565b82525050565b60006200074960158362000850565b91506200075682620009ce565b602082019050919050565b6200076c816200089f565b82525050565b600060a08201905062000789600083018862000729565b62000798602083018762000729565b620007a7604083018662000729565b620007b6606083018562000761565b620007c5608083018462000718565b9695505050505050565b60006020820190508181036000830152620007ea816200073a565b9050919050565b6000620007fd62000810565b90506200080b828262000915565b919050565b6000604051905090565b600067ffffffffffffffff8211156200083857620008376200097a565b5b6200084382620009bd565b9050602081019050919050565b600082825260208201905092915050565b60006200086e826200087f565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620008c9578082015181840152602081019050620008ac565b83811115620008d9576000848401525b50505050565b60006002820490506001821680620008f857607f821691505b602082108114156200090f576200090e6200094b565b5b50919050565b6200092082620009bd565b810181811067ffffffffffffffff821117156200094257620009416200097a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b62000a02816200089f565b811462000a0e57600080fd5b50565b60805160a05160c05160e05161010051610120516101405161468e62000a6c60003960006110910152600061181c0152600061185e0152600061183d015260006117c9015260006117f101526000610974015261468e6000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a217fddf116100ad578063d505accf1161007c578063d505accf1461063b578063d539139314610657578063d547741f14610675578063dd62ed3e14610691578063e63ab1e9146106c157610206565b8063a217fddf1461058d578063a457c2d7146105ab578063a9059cbb146105db578063ca15c8731461060b57610206565b80639010d07c116100e95780639010d07c146104df57806391d148541461050f57806395d89b411461053f578063981b24d01461055d57610206565b806370a082311461045957806379cc6790146104895780637ecebe00146104a55780638456cb59146104d557610206565b8063355274ea1161019d5780633f4ba83a1161016c5780633f4ba83a146103c957806340c10f19146103d357806342966c68146103ef5780634ee2cd7e1461040b5780635c975abb1461043b57610206565b8063355274ea146103415780633644e5151461035f57806336568abe1461037d578063395093511461039957610206565b806323b872dd116101d957806323b872dd146102a7578063248a9ca3146102d75780632f2ff15d14610307578063313ce5671461032357610206565b806301ffc9a71461020b57806306fdde031461023b578063095ea7b31461025957806318160ddd14610289575b600080fd5b61022560048036038101906102209190612f8b565b6106df565b604051610232919061357a565b60405180910390f35b610243610759565b60405161025091906136a9565b60405180910390f35b610273600480360381019061026e9190612e9e565b6107eb565b604051610280919061357a565b60405180910390f35b610291610809565b60405161029e9190613a4b565b60405180910390f35b6102c160048036038101906102bc9190612da9565b610813565b6040516102ce919061357a565b60405180910390f35b6102f160048036038101906102ec9190612ede565b610914565b6040516102fe9190613595565b60405180910390f35b610321600480360381019061031c9190612f0b565b610933565b005b61032b610967565b6040516103389190613a66565b60405180910390f35b610349610970565b6040516103569190613a4b565b60405180910390f35b610367610998565b6040516103749190613595565b60405180910390f35b61039760048036038101906103929190612f0b565b6109a7565b005b6103b360048036038101906103ae9190612e9e565b6109db565b6040516103c0919061357a565b60405180910390f35b6103d1610a87565b005b6103ed60048036038101906103e89190612e9e565b610b01565b005b61040960048036038101906104049190612fb8565b610b7f565b005b61042560048036038101906104209190612e9e565b610b93565b6040516104329190613a4b565b60405180910390f35b610443610c03565b604051610450919061357a565b60405180910390f35b610473600480360381019061046e9190612d3c565b610c1a565b6040516104809190613a4b565b60405180910390f35b6104a3600480360381019061049e9190612e9e565b610c63565b005b6104bf60048036038101906104ba9190612d3c565b610ce7565b6040516104cc9190613a4b565b60405180910390f35b6104dd610d37565b005b6104f960048036038101906104f49190612f4b565b610db1565b604051610506919061355f565b60405180910390f35b61052960048036038101906105249190612f0b565b610de0565b604051610536919061357a565b60405180910390f35b610547610e4a565b60405161055491906136a9565b60405180910390f35b61057760048036038101906105729190612fb8565b610edc565b6040516105849190613a4b565b60405180910390f35b610595610f0d565b6040516105a29190613595565b60405180910390f35b6105c560048036038101906105c09190612e9e565b610f14565b6040516105d2919061357a565b60405180910390f35b6105f560048036038101906105f09190612e9e565b611008565b604051610602919061357a565b60405180910390f35b61062560048036038101906106209190612ede565b611026565b6040516106329190613a4b565b60405180910390f35b61065560048036038101906106509190612dfc565b61104a565b005b61065f61118c565b60405161066c9190613595565b60405180910390f35b61068f600480360381019061068a9190612f0b565b6111b0565b005b6106ab60048036038101906106a69190612d69565b6111e4565b6040516106b89190613a4b565b60405180910390f35b6106c961126b565b6040516106d69190613595565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107525750610751826112cd565b5b9050919050565b60606005805461076890613ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461079490613ca5565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107ff6107f8611347565b848461134f565b6001905092915050565b6000600454905090565b600061082084848461151a565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061086b611347565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906138cb565b60405180910390fd5b610908856108f7611347565b85846109039190613b89565b61134f565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61093d828261179c565b610962816001600085815260200190815260200160002061129d90919063ffffffff16565b505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006109a26117c5565b905090565b6109b18282611888565b6109d6816001600085815260200190815260200160002061190b90919063ffffffff16565b505050565b6000610a7d6109e8611347565b8484600360006109f6611347565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a789190613aa8565b61134f565b6001905092915050565b610ab87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ab3611347565b610de0565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee906139eb565b60405180910390fd5b610aff61193b565b565b610b327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b2d611347565b610de0565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061382b565b60405180910390fd5b610b7b82826119dd565b5050565b610b90610b8a611347565b826119eb565b50565b6000806000610be084600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611bc1565b9150915081610bf757610bf285610c1a565b610bf9565b805b9250505092915050565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c7683610c71611347565b6111e4565b905081811015610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906138eb565b60405180910390fd5b610cd883610cc7611347565b8484610cd39190613b89565b61134f565b610ce283836119eb565b505050565b6000610d30600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611cb9565b9050919050565b610d687f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d63611347565b610de0565b610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e906137cb565b60405180910390fd5b610daf611cc7565b565b6000610dd88260016000868152602001908152602001600020611d6a90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610e5990613ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8590613ca5565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b5050505050905090565b6000806000610eec846009611bc1565b9150915081610f0257610efd610809565b610f04565b805b92505050919050565b6000801b81565b60008060036000610f23611347565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906139ab565b60405180910390fd5b610ffd610feb611347565b858584610ff89190613b89565b61134f565b600191505092915050565b600061101c611015611347565b848461151a565b6001905092915050565b600061104360016000848152602001908152602001600020611d84565b9050919050565b8342111561108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906137eb565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008888886110bc8c611d99565b896040516020016110d2969594939291906135b0565b60405160208183030381529060405280519060200120905060006110f582611df7565b9050600061110582878787611e11565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c906138ab565b60405180910390fd5b6111808a8a8a61134f565b50505050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6111ba8282611f9c565b6111df816001600085815260200190815260200160002061190b90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6112998282611fc5565b5050565b60006112c5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6120a5565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611340575061133f82612115565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b69061396b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906137ab565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161150d9190613a4b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819061392b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f19061374b565b60405180910390fd5b61160583838361217f565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116839061380b565b60405180910390fd5b81816116989190613b89565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461172a9190613aa8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161178e9190613a4b565b60405180910390a350505050565b6117a582610914565b6117b6816117b1611347565b61219a565b6117c08383611fc5565b505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415611817577f00000000000000000000000000000000000000000000000000000000000000009050611885565b6118827f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612237565b90505b90565b611890611347565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906139cb565b60405180910390fd5b6119078282612271565b5050565b6000611933836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612352565b905092915050565b611943610c03565b611982576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119799061376b565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119c6611347565b6040516119d3919061355f565b60405180910390a1565b6119e7828261245e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529061390b565b60405180910390fd5b611a678260008361217f565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae59061378b565b60405180910390fd5b8181611afa9190613b89565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611b4f9190613b89565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bb49190613a4b565b60405180910390a3505050565b60008060008411611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe9061398b565b60405180910390fd5b611c11600b611cb9565b841115611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a906136eb565b60405180910390fd5b6000611c6b85856000016124c890919063ffffffff16565b90508360000180549050811415611c89576000809250925050611cb2565b6001846001018281548110611ca157611ca0613dce565b5b906000526020600020015492509250505b9250929050565b600081600001549050919050565b611ccf610c03565b15611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d069061386b565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d53611347565b604051611d60919061355f565b60405180910390a1565b6000611d7983600001836125a2565b60001c905092915050565b6000611d9282600001612616565b9050919050565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611de681611cb9565b9150611df181612627565b50919050565b6000611e0a611e046117c5565b8361263d565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e709061384b565b60405180910390fd5b601b8460ff161480611e8e5750601c8460ff16145b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec49061388b565b60405180910390fd5b600060018686868660405160008152602001604052604051611ef29493929190613664565b6020604051602081039080840390855afa158015611f14573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f87906136cb565b60405180910390fd5b80915050949350505050565b611fa582610914565b611fb681611fb1611347565b61219a565b611fc08383612271565b505050565b611fcf8282610de0565b6120a157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612046611347565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006120b18383612670565b61210a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061210f565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61218a838383612693565b6121958383836126eb565b505050565b6121a48282610de0565b612233576121c98173ffffffffffffffffffffffffffffffffffffffff1660146127a5565b6121d78360001c60206127a5565b6040516020016121e8929190613525565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a91906136a9565b60405180910390fd5b5050565b60008383834630604051602001612252959493929190613611565b6040516020818303038152906040528051906020012090509392505050565b61227b8282610de0565b1561234e57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122f3611347565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146124525760006001826123849190613b89565b905060006001866000018054905061239c9190613b89565b905060008660000182815481106123b6576123b5613dce565b5b90600052602060002001549050808760000184815481106123da576123d9613dce565b5b906000526020600020018190555083876001016000838152602001908152602001600020819055508660000180548061241657612415613d9f565b5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612458565b60009150505b92915050565b612466610970565b8161246f610809565b6124799190613aa8565b11156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b19061394b565b60405180910390fd5b6124c482826129e1565b5050565b600080838054905014156124df576000905061259c565b600080848054905090505b808210156125435760006124fe8383612b36565b90508486828154811061251457612513613dce565b5b9060005260206000200154111561252d5780915061253d565b60018161253a9190613aa8565b92505b506124ea565b60008211801561257b5750838560018461255d9190613b89565b8154811061256e5761256d613dce565b5b9060005260206000200154145b156125965760018261258d9190613b89565b9250505061259c565b81925050505b92915050565b6000818360000180549050116125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e49061370b565b60405180910390fd5b82600001828154811061260357612602613dce565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6001816000016000828254019250508190555050565b600082826040516020016126529291906134ee565b60405160208183030381529060405280519060200120905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b61269e838383612b9d565b6126a6610c03565b156126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90613a2b565b60405180910390fd5b505050565b6126f6838383612693565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127415761273482612ba2565b61273c612bf5565b6127a0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561278c5761277f83612ba2565b612787612bf5565b61279f565b61279583612ba2565b61279e82612ba2565b5b5b505050565b6060600060028360026127b89190613b2f565b6127c29190613aa8565b67ffffffffffffffff8111156127db576127da613dfd565b5b6040519080825280601f01601f19166020018201604052801561280d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061284557612844613dce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106128a9576128a8613dce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026128e99190613b2f565b6128f39190613aa8565b90505b6001811115612993577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061293557612934613dce565b5b1a60f81b82828151811061294c5761294b613dce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061298c90613c7b565b90506128f6565b50600084146129d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ce9061372b565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890613a0b565b60405180910390fd5b612a5d6000838361217f565b8060046000828254612a6f9190613aa8565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac59190613aa8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b2a9190613a4b565b60405180910390a35050565b600060028083612b469190613ce1565b600285612b539190613ce1565b612b5d9190613aa8565b612b679190613afe565b600283612b749190613afe565b600285612b819190613afe565b612b8b9190613aa8565b612b959190613aa8565b905092915050565b505050565b612bf2600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bed83610c1a565b612c09565b50565b612c076009612c02610809565b612c09565b565b6000612c15600b611cb9565b905080612c2484600001612c86565b1015612c815782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415612c9d5760009050612cce565b8160018380549050612caf9190613b89565b81548110612cc057612cbf613dce565b5b906000526020600020015490505b919050565b600081359050612ce2816145e5565b92915050565b600081359050612cf7816145fc565b92915050565b600081359050612d0c81614613565b92915050565b600081359050612d218161462a565b92915050565b600081359050612d3681614641565b92915050565b600060208284031215612d5257612d51613e2c565b5b6000612d6084828501612cd3565b91505092915050565b60008060408385031215612d8057612d7f613e2c565b5b6000612d8e85828601612cd3565b9250506020612d9f85828601612cd3565b9150509250929050565b600080600060608486031215612dc257612dc1613e2c565b5b6000612dd086828701612cd3565b9350506020612de186828701612cd3565b9250506040612df286828701612d12565b9150509250925092565b600080600080600080600060e0888a031215612e1b57612e1a613e2c565b5b6000612e298a828b01612cd3565b9750506020612e3a8a828b01612cd3565b9650506040612e4b8a828b01612d12565b9550506060612e5c8a828b01612d12565b9450506080612e6d8a828b01612d27565b93505060a0612e7e8a828b01612ce8565b92505060c0612e8f8a828b01612ce8565b91505092959891949750929550565b60008060408385031215612eb557612eb4613e2c565b5b6000612ec385828601612cd3565b9250506020612ed485828601612d12565b9150509250929050565b600060208284031215612ef457612ef3613e2c565b5b6000612f0284828501612ce8565b91505092915050565b60008060408385031215612f2257612f21613e2c565b5b6000612f3085828601612ce8565b9250506020612f4185828601612cd3565b9150509250929050565b60008060408385031215612f6257612f61613e2c565b5b6000612f7085828601612ce8565b9250506020612f8185828601612d12565b9150509250929050565b600060208284031215612fa157612fa0613e2c565b5b6000612faf84828501612cfd565b91505092915050565b600060208284031215612fce57612fcd613e2c565b5b6000612fdc84828501612d12565b91505092915050565b612fee81613bbd565b82525050565b612ffd81613bcf565b82525050565b61300c81613bdb565b82525050565b61302361301e82613bdb565b613cd7565b82525050565b600061303482613a81565b61303e8185613a8c565b935061304e818560208601613c48565b61305781613e31565b840191505092915050565b600061306d82613a81565b6130778185613a9d565b9350613087818560208601613c48565b80840191505092915050565b60006130a0601883613a8c565b91506130ab82613e42565b602082019050919050565b60006130c3601d83613a8c565b91506130ce82613e6b565b602082019050919050565b60006130e6602283613a8c565b91506130f182613e94565b604082019050919050565b6000613109602083613a8c565b915061311482613ee3565b602082019050919050565b600061312c602383613a8c565b915061313782613f0c565b604082019050919050565b600061314f601483613a8c565b915061315a82613f5b565b602082019050919050565b6000613172602283613a8c565b915061317d82613f84565b604082019050919050565b6000613195602283613a8c565b91506131a082613fd3565b604082019050919050565b60006131b8602383613a8c565b91506131c382614022565b604082019050919050565b60006131db600283613a9d565b91506131e682614071565b600282019050919050565b60006131fe601d83613a8c565b91506132098261409a565b602082019050919050565b6000613221602683613a8c565b915061322c826140c3565b604082019050919050565b6000613244602283613a8c565b915061324f82614112565b604082019050919050565b6000613267602283613a8c565b915061327282614161565b604082019050919050565b600061328a601083613a8c565b9150613295826141b0565b602082019050919050565b60006132ad602283613a8c565b91506132b8826141d9565b604082019050919050565b60006132d0601e83613a8c565b91506132db82614228565b602082019050919050565b60006132f3602883613a8c565b91506132fe82614251565b604082019050919050565b6000613316602483613a8c565b9150613321826142a0565b604082019050919050565b6000613339602183613a8c565b9150613344826142ef565b604082019050919050565b600061335c602583613a8c565b91506133678261433e565b604082019050919050565b600061337f601983613a8c565b915061338a8261438d565b602082019050919050565b60006133a2602483613a8c565b91506133ad826143b6565b604082019050919050565b60006133c5601683613a8c565b91506133d082614405565b602082019050919050565b60006133e8601783613a9d565b91506133f38261442e565b601782019050919050565b600061340b602583613a8c565b915061341682614457565b604082019050919050565b600061342e601183613a9d565b9150613439826144a6565b601182019050919050565b6000613451602f83613a8c565b915061345c826144cf565b604082019050919050565b6000613474602583613a8c565b915061347f8261451e565b604082019050919050565b6000613497601f83613a8c565b91506134a28261456d565b602082019050919050565b60006134ba602a83613a8c565b91506134c582614596565b604082019050919050565b6134d981613c31565b82525050565b6134e881613c3b565b82525050565b60006134f9826131ce565b91506135058285613012565b6020820191506135158284613012565b6020820191508190509392505050565b6000613530826133db565b915061353c8285613062565b915061354782613421565b91506135538284613062565b91508190509392505050565b60006020820190506135746000830184612fe5565b92915050565b600060208201905061358f6000830184612ff4565b92915050565b60006020820190506135aa6000830184613003565b92915050565b600060c0820190506135c56000830189613003565b6135d26020830188612fe5565b6135df6040830187612fe5565b6135ec60608301866134d0565b6135f960808301856134d0565b61360660a08301846134d0565b979650505050505050565b600060a0820190506136266000830188613003565b6136336020830187613003565b6136406040830186613003565b61364d60608301856134d0565b61365a6080830184612fe5565b9695505050505050565b60006080820190506136796000830187613003565b61368660208301866134df565b6136936040830185613003565b6136a06060830184613003565b95945050505050565b600060208201905081810360008301526136c38184613029565b905092915050565b600060208201905081810360008301526136e481613093565b9050919050565b60006020820190508181036000830152613704816130b6565b9050919050565b60006020820190508181036000830152613724816130d9565b9050919050565b60006020820190508181036000830152613744816130fc565b9050919050565b600060208201905081810360008301526137648161311f565b9050919050565b6000602082019050818103600083015261378481613142565b9050919050565b600060208201905081810360008301526137a481613165565b9050919050565b600060208201905081810360008301526137c481613188565b9050919050565b600060208201905081810360008301526137e4816131ab565b9050919050565b60006020820190508181036000830152613804816131f1565b9050919050565b6000602082019050818103600083015261382481613214565b9050919050565b6000602082019050818103600083015261384481613237565b9050919050565b600060208201905081810360008301526138648161325a565b9050919050565b600060208201905081810360008301526138848161327d565b9050919050565b600060208201905081810360008301526138a4816132a0565b9050919050565b600060208201905081810360008301526138c4816132c3565b9050919050565b600060208201905081810360008301526138e4816132e6565b9050919050565b6000602082019050818103600083015261390481613309565b9050919050565b600060208201905081810360008301526139248161332c565b9050919050565b600060208201905081810360008301526139448161334f565b9050919050565b6000602082019050818103600083015261396481613372565b9050919050565b6000602082019050818103600083015261398481613395565b9050919050565b600060208201905081810360008301526139a4816133b8565b9050919050565b600060208201905081810360008301526139c4816133fe565b9050919050565b600060208201905081810360008301526139e481613444565b9050919050565b60006020820190508181036000830152613a0481613467565b9050919050565b60006020820190508181036000830152613a248161348a565b9050919050565b60006020820190508181036000830152613a44816134ad565b9050919050565b6000602082019050613a6060008301846134d0565b92915050565b6000602082019050613a7b60008301846134df565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613ab382613c31565b9150613abe83613c31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613af357613af2613d12565b5b828201905092915050565b6000613b0982613c31565b9150613b1483613c31565b925082613b2457613b23613d41565b5b828204905092915050565b6000613b3a82613c31565b9150613b4583613c31565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b7e57613b7d613d12565b5b828202905092915050565b6000613b9482613c31565b9150613b9f83613c31565b925082821015613bb257613bb1613d12565b5b828203905092915050565b6000613bc882613c11565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613c66578082015181840152602081019050613c4b565b83811115613c75576000848401525b50505050565b6000613c8682613c31565b91506000821415613c9a57613c99613d12565b5b600182039050919050565b60006002820490506001821680613cbd57607f821691505b60208210811415613cd157613cd0613d70565b5b50919050565b6000819050919050565b6000613cec82613c31565b9150613cf783613c31565b925082613d0757613d06613d41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f43424f3a206d75737420686176652070617573657220726f6c6520746f20706160008201527f7573650000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43424f3a206d7573742068617665206d696e74657220726f6c6520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f43424f3a206d75737420686176652070617573657220726f6c6520746f20756e60008201527f7061757365000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6145ee81613bbd565b81146145f957600080fd5b50565b61460581613bdb565b811461461057600080fd5b50565b61461c81613be5565b811461462757600080fd5b50565b61463381613c31565b811461463e57600080fd5b50565b61464a81613c3b565b811461465557600080fd5b5056fea26469706673582212201cc5ad21dc4515eb8d951ef181e56766dd3fc7c37ba5db2f54f3f6bfc5b3cd1c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000a4379626f72675377617000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343424f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a217fddf116100ad578063d505accf1161007c578063d505accf1461063b578063d539139314610657578063d547741f14610675578063dd62ed3e14610691578063e63ab1e9146106c157610206565b8063a217fddf1461058d578063a457c2d7146105ab578063a9059cbb146105db578063ca15c8731461060b57610206565b80639010d07c116100e95780639010d07c146104df57806391d148541461050f57806395d89b411461053f578063981b24d01461055d57610206565b806370a082311461045957806379cc6790146104895780637ecebe00146104a55780638456cb59146104d557610206565b8063355274ea1161019d5780633f4ba83a1161016c5780633f4ba83a146103c957806340c10f19146103d357806342966c68146103ef5780634ee2cd7e1461040b5780635c975abb1461043b57610206565b8063355274ea146103415780633644e5151461035f57806336568abe1461037d578063395093511461039957610206565b806323b872dd116101d957806323b872dd146102a7578063248a9ca3146102d75780632f2ff15d14610307578063313ce5671461032357610206565b806301ffc9a71461020b57806306fdde031461023b578063095ea7b31461025957806318160ddd14610289575b600080fd5b61022560048036038101906102209190612f8b565b6106df565b604051610232919061357a565b60405180910390f35b610243610759565b60405161025091906136a9565b60405180910390f35b610273600480360381019061026e9190612e9e565b6107eb565b604051610280919061357a565b60405180910390f35b610291610809565b60405161029e9190613a4b565b60405180910390f35b6102c160048036038101906102bc9190612da9565b610813565b6040516102ce919061357a565b60405180910390f35b6102f160048036038101906102ec9190612ede565b610914565b6040516102fe9190613595565b60405180910390f35b610321600480360381019061031c9190612f0b565b610933565b005b61032b610967565b6040516103389190613a66565b60405180910390f35b610349610970565b6040516103569190613a4b565b60405180910390f35b610367610998565b6040516103749190613595565b60405180910390f35b61039760048036038101906103929190612f0b565b6109a7565b005b6103b360048036038101906103ae9190612e9e565b6109db565b6040516103c0919061357a565b60405180910390f35b6103d1610a87565b005b6103ed60048036038101906103e89190612e9e565b610b01565b005b61040960048036038101906104049190612fb8565b610b7f565b005b61042560048036038101906104209190612e9e565b610b93565b6040516104329190613a4b565b60405180910390f35b610443610c03565b604051610450919061357a565b60405180910390f35b610473600480360381019061046e9190612d3c565b610c1a565b6040516104809190613a4b565b60405180910390f35b6104a3600480360381019061049e9190612e9e565b610c63565b005b6104bf60048036038101906104ba9190612d3c565b610ce7565b6040516104cc9190613a4b565b60405180910390f35b6104dd610d37565b005b6104f960048036038101906104f49190612f4b565b610db1565b604051610506919061355f565b60405180910390f35b61052960048036038101906105249190612f0b565b610de0565b604051610536919061357a565b60405180910390f35b610547610e4a565b60405161055491906136a9565b60405180910390f35b61057760048036038101906105729190612fb8565b610edc565b6040516105849190613a4b565b60405180910390f35b610595610f0d565b6040516105a29190613595565b60405180910390f35b6105c560048036038101906105c09190612e9e565b610f14565b6040516105d2919061357a565b60405180910390f35b6105f560048036038101906105f09190612e9e565b611008565b604051610602919061357a565b60405180910390f35b61062560048036038101906106209190612ede565b611026565b6040516106329190613a4b565b60405180910390f35b61065560048036038101906106509190612dfc565b61104a565b005b61065f61118c565b60405161066c9190613595565b60405180910390f35b61068f600480360381019061068a9190612f0b565b6111b0565b005b6106ab60048036038101906106a69190612d69565b6111e4565b6040516106b89190613a4b565b60405180910390f35b6106c961126b565b6040516106d69190613595565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107525750610751826112cd565b5b9050919050565b60606005805461076890613ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461079490613ca5565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107ff6107f8611347565b848461134f565b6001905092915050565b6000600454905090565b600061082084848461151a565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061086b611347565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906138cb565b60405180910390fd5b610908856108f7611347565b85846109039190613b89565b61134f565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b61093d828261179c565b610962816001600085815260200190815260200160002061129d90919063ffffffff16565b505050565b60006012905090565b60007f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000905090565b60006109a26117c5565b905090565b6109b18282611888565b6109d6816001600085815260200190815260200160002061190b90919063ffffffff16565b505050565b6000610a7d6109e8611347565b8484600360006109f6611347565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a789190613aa8565b61134f565b6001905092915050565b610ab87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ab3611347565b610de0565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee906139eb565b60405180910390fd5b610aff61193b565b565b610b327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b2d611347565b610de0565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061382b565b60405180910390fd5b610b7b82826119dd565b5050565b610b90610b8a611347565b826119eb565b50565b6000806000610be084600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611bc1565b9150915081610bf757610bf285610c1a565b610bf9565b805b9250505092915050565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c7683610c71611347565b6111e4565b905081811015610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906138eb565b60405180910390fd5b610cd883610cc7611347565b8484610cd39190613b89565b61134f565b610ce283836119eb565b505050565b6000610d30600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611cb9565b9050919050565b610d687f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d63611347565b610de0565b610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e906137cb565b60405180910390fd5b610daf611cc7565b565b6000610dd88260016000868152602001908152602001600020611d6a90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610e5990613ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8590613ca5565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b5050505050905090565b6000806000610eec846009611bc1565b9150915081610f0257610efd610809565b610f04565b805b92505050919050565b6000801b81565b60008060036000610f23611347565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd7906139ab565b60405180910390fd5b610ffd610feb611347565b858584610ff89190613b89565b61134f565b600191505092915050565b600061101c611015611347565b848461151a565b6001905092915050565b600061104360016000848152602001908152602001600020611d84565b9050919050565b8342111561108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906137eb565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886110bc8c611d99565b896040516020016110d2969594939291906135b0565b60405160208183030381529060405280519060200120905060006110f582611df7565b9050600061110582878787611e11565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c906138ab565b60405180910390fd5b6111808a8a8a61134f565b50505050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6111ba8282611f9c565b6111df816001600085815260200190815260200160002061190b90919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6112998282611fc5565b5050565b60006112c5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6120a5565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611340575061133f82612115565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b69061396b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906137ab565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161150d9190613a4b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819061392b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f19061374b565b60405180910390fd5b61160583838361217f565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116839061380b565b60405180910390fd5b81816116989190613b89565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461172a9190613aa8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161178e9190613a4b565b60405180910390a350505050565b6117a582610914565b6117b6816117b1611347565b61219a565b6117c08383611fc5565b505050565b60007f0000000000000000000000000000000000000000000000000000000000000019461415611817577f0a9058c2dd00b036d6a3809e48a3d3e6912fa51a3c0963791de0389678f9a6b79050611885565b6118827f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f32f2231bb7344a9bdc00b97977afcdfed98179f6cc4c9cc546648bee0d823ba97fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6612237565b90505b90565b611890611347565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906139cb565b60405180910390fd5b6119078282612271565b5050565b6000611933836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612352565b905092915050565b611943610c03565b611982576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119799061376b565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119c6611347565b6040516119d3919061355f565b60405180910390a1565b6119e7828261245e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a529061390b565b60405180910390fd5b611a678260008361217f565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae59061378b565b60405180910390fd5b8181611afa9190613b89565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611b4f9190613b89565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bb49190613a4b565b60405180910390a3505050565b60008060008411611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe9061398b565b60405180910390fd5b611c11600b611cb9565b841115611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a906136eb565b60405180910390fd5b6000611c6b85856000016124c890919063ffffffff16565b90508360000180549050811415611c89576000809250925050611cb2565b6001846001018281548110611ca157611ca0613dce565b5b906000526020600020015492509250505b9250929050565b600081600001549050919050565b611ccf610c03565b15611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d069061386b565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d53611347565b604051611d60919061355f565b60405180910390a1565b6000611d7983600001836125a2565b60001c905092915050565b6000611d9282600001612616565b9050919050565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611de681611cb9565b9150611df181612627565b50919050565b6000611e0a611e046117c5565b8361263d565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e709061384b565b60405180910390fd5b601b8460ff161480611e8e5750601c8460ff16145b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec49061388b565b60405180910390fd5b600060018686868660405160008152602001604052604051611ef29493929190613664565b6020604051602081039080840390855afa158015611f14573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f87906136cb565b60405180910390fd5b80915050949350505050565b611fa582610914565b611fb681611fb1611347565b61219a565b611fc08383612271565b505050565b611fcf8282610de0565b6120a157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612046611347565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006120b18383612670565b61210a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061210f565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61218a838383612693565b6121958383836126eb565b505050565b6121a48282610de0565b612233576121c98173ffffffffffffffffffffffffffffffffffffffff1660146127a5565b6121d78360001c60206127a5565b6040516020016121e8929190613525565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a91906136a9565b60405180910390fd5b5050565b60008383834630604051602001612252959493929190613611565b6040516020818303038152906040528051906020012090509392505050565b61227b8282610de0565b1561234e57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122f3611347565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146124525760006001826123849190613b89565b905060006001866000018054905061239c9190613b89565b905060008660000182815481106123b6576123b5613dce565b5b90600052602060002001549050808760000184815481106123da576123d9613dce565b5b906000526020600020018190555083876001016000838152602001908152602001600020819055508660000180548061241657612415613d9f565b5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612458565b60009150505b92915050565b612466610970565b8161246f610809565b6124799190613aa8565b11156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b19061394b565b60405180910390fd5b6124c482826129e1565b5050565b600080838054905014156124df576000905061259c565b600080848054905090505b808210156125435760006124fe8383612b36565b90508486828154811061251457612513613dce565b5b9060005260206000200154111561252d5780915061253d565b60018161253a9190613aa8565b92505b506124ea565b60008211801561257b5750838560018461255d9190613b89565b8154811061256e5761256d613dce565b5b9060005260206000200154145b156125965760018261258d9190613b89565b9250505061259c565b81925050505b92915050565b6000818360000180549050116125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e49061370b565b60405180910390fd5b82600001828154811061260357612602613dce565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6001816000016000828254019250508190555050565b600082826040516020016126529291906134ee565b60405160208183030381529060405280519060200120905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b61269e838383612b9d565b6126a6610c03565b156126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90613a2b565b60405180910390fd5b505050565b6126f6838383612693565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127415761273482612ba2565b61273c612bf5565b6127a0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561278c5761277f83612ba2565b612787612bf5565b61279f565b61279583612ba2565b61279e82612ba2565b5b5b505050565b6060600060028360026127b89190613b2f565b6127c29190613aa8565b67ffffffffffffffff8111156127db576127da613dfd565b5b6040519080825280601f01601f19166020018201604052801561280d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061284557612844613dce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106128a9576128a8613dce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026128e99190613b2f565b6128f39190613aa8565b90505b6001811115612993577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061293557612934613dce565b5b1a60f81b82828151811061294c5761294b613dce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061298c90613c7b565b90506128f6565b50600084146129d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ce9061372b565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890613a0b565b60405180910390fd5b612a5d6000838361217f565b8060046000828254612a6f9190613aa8565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac59190613aa8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b2a9190613a4b565b60405180910390a35050565b600060028083612b469190613ce1565b600285612b539190613ce1565b612b5d9190613aa8565b612b679190613afe565b600283612b749190613afe565b600285612b819190613afe565b612b8b9190613aa8565b612b959190613aa8565b905092915050565b505050565b612bf2600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612bed83610c1a565b612c09565b50565b612c076009612c02610809565b612c09565b565b6000612c15600b611cb9565b905080612c2484600001612c86565b1015612c815782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415612c9d5760009050612cce565b8160018380549050612caf9190613b89565b81548110612cc057612cbf613dce565b5b906000526020600020015490505b919050565b600081359050612ce2816145e5565b92915050565b600081359050612cf7816145fc565b92915050565b600081359050612d0c81614613565b92915050565b600081359050612d218161462a565b92915050565b600081359050612d3681614641565b92915050565b600060208284031215612d5257612d51613e2c565b5b6000612d6084828501612cd3565b91505092915050565b60008060408385031215612d8057612d7f613e2c565b5b6000612d8e85828601612cd3565b9250506020612d9f85828601612cd3565b9150509250929050565b600080600060608486031215612dc257612dc1613e2c565b5b6000612dd086828701612cd3565b9350506020612de186828701612cd3565b9250506040612df286828701612d12565b9150509250925092565b600080600080600080600060e0888a031215612e1b57612e1a613e2c565b5b6000612e298a828b01612cd3565b9750506020612e3a8a828b01612cd3565b9650506040612e4b8a828b01612d12565b9550506060612e5c8a828b01612d12565b9450506080612e6d8a828b01612d27565b93505060a0612e7e8a828b01612ce8565b92505060c0612e8f8a828b01612ce8565b91505092959891949750929550565b60008060408385031215612eb557612eb4613e2c565b5b6000612ec385828601612cd3565b9250506020612ed485828601612d12565b9150509250929050565b600060208284031215612ef457612ef3613e2c565b5b6000612f0284828501612ce8565b91505092915050565b60008060408385031215612f2257612f21613e2c565b5b6000612f3085828601612ce8565b9250506020612f4185828601612cd3565b9150509250929050565b60008060408385031215612f6257612f61613e2c565b5b6000612f7085828601612ce8565b9250506020612f8185828601612d12565b9150509250929050565b600060208284031215612fa157612fa0613e2c565b5b6000612faf84828501612cfd565b91505092915050565b600060208284031215612fce57612fcd613e2c565b5b6000612fdc84828501612d12565b91505092915050565b612fee81613bbd565b82525050565b612ffd81613bcf565b82525050565b61300c81613bdb565b82525050565b61302361301e82613bdb565b613cd7565b82525050565b600061303482613a81565b61303e8185613a8c565b935061304e818560208601613c48565b61305781613e31565b840191505092915050565b600061306d82613a81565b6130778185613a9d565b9350613087818560208601613c48565b80840191505092915050565b60006130a0601883613a8c565b91506130ab82613e42565b602082019050919050565b60006130c3601d83613a8c565b91506130ce82613e6b565b602082019050919050565b60006130e6602283613a8c565b91506130f182613e94565b604082019050919050565b6000613109602083613a8c565b915061311482613ee3565b602082019050919050565b600061312c602383613a8c565b915061313782613f0c565b604082019050919050565b600061314f601483613a8c565b915061315a82613f5b565b602082019050919050565b6000613172602283613a8c565b915061317d82613f84565b604082019050919050565b6000613195602283613a8c565b91506131a082613fd3565b604082019050919050565b60006131b8602383613a8c565b91506131c382614022565b604082019050919050565b60006131db600283613a9d565b91506131e682614071565b600282019050919050565b60006131fe601d83613a8c565b91506132098261409a565b602082019050919050565b6000613221602683613a8c565b915061322c826140c3565b604082019050919050565b6000613244602283613a8c565b915061324f82614112565b604082019050919050565b6000613267602283613a8c565b915061327282614161565b604082019050919050565b600061328a601083613a8c565b9150613295826141b0565b602082019050919050565b60006132ad602283613a8c565b91506132b8826141d9565b604082019050919050565b60006132d0601e83613a8c565b91506132db82614228565b602082019050919050565b60006132f3602883613a8c565b91506132fe82614251565b604082019050919050565b6000613316602483613a8c565b9150613321826142a0565b604082019050919050565b6000613339602183613a8c565b9150613344826142ef565b604082019050919050565b600061335c602583613a8c565b91506133678261433e565b604082019050919050565b600061337f601983613a8c565b915061338a8261438d565b602082019050919050565b60006133a2602483613a8c565b91506133ad826143b6565b604082019050919050565b60006133c5601683613a8c565b91506133d082614405565b602082019050919050565b60006133e8601783613a9d565b91506133f38261442e565b601782019050919050565b600061340b602583613a8c565b915061341682614457565b604082019050919050565b600061342e601183613a9d565b9150613439826144a6565b601182019050919050565b6000613451602f83613a8c565b915061345c826144cf565b604082019050919050565b6000613474602583613a8c565b915061347f8261451e565b604082019050919050565b6000613497601f83613a8c565b91506134a28261456d565b602082019050919050565b60006134ba602a83613a8c565b91506134c582614596565b604082019050919050565b6134d981613c31565b82525050565b6134e881613c3b565b82525050565b60006134f9826131ce565b91506135058285613012565b6020820191506135158284613012565b6020820191508190509392505050565b6000613530826133db565b915061353c8285613062565b915061354782613421565b91506135538284613062565b91508190509392505050565b60006020820190506135746000830184612fe5565b92915050565b600060208201905061358f6000830184612ff4565b92915050565b60006020820190506135aa6000830184613003565b92915050565b600060c0820190506135c56000830189613003565b6135d26020830188612fe5565b6135df6040830187612fe5565b6135ec60608301866134d0565b6135f960808301856134d0565b61360660a08301846134d0565b979650505050505050565b600060a0820190506136266000830188613003565b6136336020830187613003565b6136406040830186613003565b61364d60608301856134d0565b61365a6080830184612fe5565b9695505050505050565b60006080820190506136796000830187613003565b61368660208301866134df565b6136936040830185613003565b6136a06060830184613003565b95945050505050565b600060208201905081810360008301526136c38184613029565b905092915050565b600060208201905081810360008301526136e481613093565b9050919050565b60006020820190508181036000830152613704816130b6565b9050919050565b60006020820190508181036000830152613724816130d9565b9050919050565b60006020820190508181036000830152613744816130fc565b9050919050565b600060208201905081810360008301526137648161311f565b9050919050565b6000602082019050818103600083015261378481613142565b9050919050565b600060208201905081810360008301526137a481613165565b9050919050565b600060208201905081810360008301526137c481613188565b9050919050565b600060208201905081810360008301526137e4816131ab565b9050919050565b60006020820190508181036000830152613804816131f1565b9050919050565b6000602082019050818103600083015261382481613214565b9050919050565b6000602082019050818103600083015261384481613237565b9050919050565b600060208201905081810360008301526138648161325a565b9050919050565b600060208201905081810360008301526138848161327d565b9050919050565b600060208201905081810360008301526138a4816132a0565b9050919050565b600060208201905081810360008301526138c4816132c3565b9050919050565b600060208201905081810360008301526138e4816132e6565b9050919050565b6000602082019050818103600083015261390481613309565b9050919050565b600060208201905081810360008301526139248161332c565b9050919050565b600060208201905081810360008301526139448161334f565b9050919050565b6000602082019050818103600083015261396481613372565b9050919050565b6000602082019050818103600083015261398481613395565b9050919050565b600060208201905081810360008301526139a4816133b8565b9050919050565b600060208201905081810360008301526139c4816133fe565b9050919050565b600060208201905081810360008301526139e481613444565b9050919050565b60006020820190508181036000830152613a0481613467565b9050919050565b60006020820190508181036000830152613a248161348a565b9050919050565b60006020820190508181036000830152613a44816134ad565b9050919050565b6000602082019050613a6060008301846134d0565b92915050565b6000602082019050613a7b60008301846134df565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613ab382613c31565b9150613abe83613c31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613af357613af2613d12565b5b828201905092915050565b6000613b0982613c31565b9150613b1483613c31565b925082613b2457613b23613d41565b5b828204905092915050565b6000613b3a82613c31565b9150613b4583613c31565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b7e57613b7d613d12565b5b828202905092915050565b6000613b9482613c31565b9150613b9f83613c31565b925082821015613bb257613bb1613d12565b5b828203905092915050565b6000613bc882613c11565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613c66578082015181840152602081019050613c4b565b83811115613c75576000848401525b50505050565b6000613c8682613c31565b91506000821415613c9a57613c99613d12565b5b600182039050919050565b60006002820490506001821680613cbd57607f821691505b60208210811415613cd157613cd0613d70565b5b50919050565b6000819050919050565b6000613cec82613c31565b9150613cf783613c31565b925082613d0757613d06613d41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f43424f3a206d75737420686176652070617573657220726f6c6520746f20706160008201527f7573650000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43424f3a206d7573742068617665206d696e74657220726f6c6520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f43424f3a206d75737420686176652070617573657220726f6c6520746f20756e60008201527f7061757365000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6145ee81613bbd565b81146145f957600080fd5b50565b61460581613bdb565b811461461057600080fd5b50565b61461c81613be5565b811461462757600080fd5b50565b61463381613c31565b811461463e57600080fd5b50565b61464a81613c3b565b811461465557600080fd5b5056fea26469706673582212201cc5ad21dc4515eb8d951ef181e56766dd3fc7c37ba5db2f54f3f6bfc5b3cd1c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000a4379626f72675377617000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343424f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CyborgSwap
Arg [1] : symbol (string): CBO
Arg [2] : cap (uint256): 100000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4379626f72675377617000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 43424f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

81369:2342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31391:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51512:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53679:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52632:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54330:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27388:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32762:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52474:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79108:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62800:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33285:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55161:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83118:158;;;:::i;:::-;;82349:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79994:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71387:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76398:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52803:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80404:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62542:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82748:152;;;:::i;:::-;;32217:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26386:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51731:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71757:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24351:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55879:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53143:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32536:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61705:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81543:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33020:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53381:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81612:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31391:227;31476:4;31515:42;31500:57;;;:11;:57;;;;:110;;;;31574:36;31598:11;31574:23;:36::i;:::-;31500:110;31493:117;;31391:227;;;:::o;51512:100::-;51566:13;51599:5;51592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51512:100;:::o;53679:169::-;53762:4;53779:39;53788:12;:10;:12::i;:::-;53802:7;53811:6;53779:8;:39::i;:::-;53836:4;53829:11;;53679:169;;;;:::o;52632:108::-;52693:7;52720:12;;52713:19;;52632:108;:::o;54330:422::-;54436:4;54453:36;54463:6;54471:9;54482:6;54453:9;:36::i;:::-;54502:24;54529:11;:19;54541:6;54529:19;;;;;;;;;;;;;;;:33;54549:12;:10;:12::i;:::-;54529:33;;;;;;;;;;;;;;;;54502:60;;54601:6;54581:16;:26;;54573:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;54663:57;54672:6;54680:12;:10;:12::i;:::-;54713:6;54694:16;:25;;;;:::i;:::-;54663:8;:57::i;:::-;54740:4;54733:11;;;54330:422;;;;;:::o;27388:123::-;27454:7;27481:6;:12;27488:4;27481:12;;;;;;;;;;;:22;;;27474:29;;27388:123;;;:::o;32762:165::-;32847:30;32863:4;32869:7;32847:15;:30::i;:::-;32888:31;32911:7;32888:12;:18;32901:4;32888:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;32762:165;;:::o;52474:93::-;52532:5;52557:2;52550:9;;52474:93;:::o;79108:83::-;79152:7;79179:4;79172:11;;79108:83;:::o;62800:115::-;62860:7;62887:20;:18;:20::i;:::-;62880:27;;62800:115;:::o;33285:174::-;33373:33;33392:4;33398:7;33373:18;:33::i;:::-;33417:34;33443:7;33417:12;:18;33430:4;33417:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;33285:174;;:::o;55161:215::-;55249:4;55266:80;55275:12;:10;:12::i;:::-;55289:7;55335:10;55298:11;:25;55310:12;:10;:12::i;:::-;55298:25;;;;;;;;;;;;;;;:34;55324:7;55298:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;55266:8;:80::i;:::-;55364:4;55357:11;;55161:215;;;;:::o;83118:158::-;83171:34;81650:24;83192:12;:10;:12::i;:::-;83171:7;:34::i;:::-;83163:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;83258:10;:8;:10::i;:::-;83118:158::o;82349:185::-;82425:34;81581:24;82446:12;:10;:12::i;:::-;82425:7;:34::i;:::-;82417:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;82509:17;82515:2;82519:6;82509:5;:17::i;:::-;82349:185;;:::o;79994:91::-;80050:27;80056:12;:10;:12::i;:::-;80070:6;80050:5;:27::i;:::-;79994:91;:::o;71387:266::-;71474:7;71495:16;71513:13;71530:55;71539:10;71551:24;:33;71576:7;71551:33;;;;;;;;;;;;;;;71530:8;:55::i;:::-;71494:91;;;;71605:11;:40;;71627:18;71637:7;71627:9;:18::i;:::-;71605:40;;;71619:5;71605:40;71598:47;;;;71387:266;;;;:::o;76398:86::-;76445:4;76469:7;;;;;;;;;;;76462:14;;76398:86;:::o;52803:127::-;52877:7;52904:9;:18;52914:7;52904:18;;;;;;;;;;;;;;;;52897:25;;52803:127;;;:::o;80404:332::-;80481:24;80508:32;80518:7;80527:12;:10;:12::i;:::-;80508:9;:32::i;:::-;80481:59;;80579:6;80559:16;:26;;80551:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;80637:58;80646:7;80655:12;:10;:12::i;:::-;80688:6;80669:16;:25;;;;:::i;:::-;80637:8;:58::i;:::-;80706:22;80712:7;80721:6;80706:5;:22::i;:::-;80470:266;80404:332;;:::o;62542:128::-;62611:7;62638:24;:7;:14;62646:5;62638:14;;;;;;;;;;;;;;;:22;:24::i;:::-;62631:31;;62542:128;;;:::o;82748:152::-;82799:34;81650:24;82820:12;:10;:12::i;:::-;82799:7;:34::i;:::-;82791:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;82884:8;:6;:8::i;:::-;82748:152::o;32217:145::-;32299:7;32326:28;32348:5;32326:12;:18;32339:4;32326:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;32319:35;;32217:145;;;;:::o;26386:139::-;26464:4;26488:6;:12;26495:4;26488:12;;;;;;;;;;;:20;;:29;26509:7;26488:29;;;;;;;;;;;;;;;;;;;;;;;;;26481:36;;26386:139;;;;:::o;51731:104::-;51787:13;51820:7;51813:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51731:104;:::o;71757:233::-;71828:7;71849:16;71867:13;71884:43;71893:10;71905:21;71884:8;:43::i;:::-;71848:79;;;;71947:11;:35;;71969:13;:11;:13::i;:::-;71947:35;;;71961:5;71947:35;71940:42;;;;71757:233;;;:::o;24351:49::-;24396:4;24351:49;;;:::o;55879:377::-;55972:4;55989:24;56016:11;:25;56028:12;:10;:12::i;:::-;56016:25;;;;;;;;;;;;;;;:34;56042:7;56016:34;;;;;;;;;;;;;;;;55989:61;;56089:15;56069:16;:35;;56061:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56157:67;56166:12;:10;:12::i;:::-;56180:7;56208:15;56189:16;:34;;;;:::i;:::-;56157:8;:67::i;:::-;56244:4;56237:11;;;55879:377;;;;:::o;53143:175::-;53229:4;53246:42;53256:12;:10;:12::i;:::-;53270:9;53281:6;53246:9;:42::i;:::-;53306:4;53299:11;;53143:175;;;;:::o;32536:134::-;32608:7;32635:27;:12;:18;32648:4;32635:18;;;;;;;;;;;:25;:27::i;:::-;32628:34;;32536:134;;;:::o;61705:771::-;61934:8;61915:15;:27;;61907:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;61989:18;62063:16;62098:5;62122:7;62148:5;62172:16;62182:5;62172:9;:16::i;:::-;62207:8;62034:196;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62010:231;;;;;;61989:252;;62254:12;62269:28;62286:10;62269:16;:28::i;:::-;62254:43;;62310:14;62327:28;62341:4;62347:1;62350;62353;62327:13;:28::i;:::-;62310:45;;62384:5;62374:15;;:6;:15;;;62366:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;62437:31;62446:5;62453:7;62462:5;62437:8;:31::i;:::-;61841:635;;;61705:771;;;;;;;:::o;81543:62::-;81581:24;81543:62;:::o;33020:170::-;33106:31;33123:4;33129:7;33106:16;:31::i;:::-;33148:34;33174:7;33148:12;:18;33161:4;33148:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;33020:170;;:::o;53381:151::-;53470:7;53497:11;:18;53509:5;53497:18;;;;;;;;;;;;;;;:27;53516:7;53497:27;;;;;;;;;;;;;;;;53490:34;;53381:151;;;;:::o;81612:62::-;81650:24;81612:62;:::o;29622:112::-;29701:25;29712:4;29718:7;29701:10;:25::i;:::-;29622:112;;:::o;13858:152::-;13928:4;13952:50;13957:3;:10;;13993:5;13977:23;;13969:32;;13952:4;:50::i;:::-;13945:57;;13858:152;;;;:::o;26077:217::-;26162:4;26201:32;26186:47;;;:11;:47;;;;:100;;;;26250:36;26274:11;26250:23;:36::i;:::-;26186:100;26179:107;;26077:217;;;:::o;21581:98::-;21634:7;21661:10;21654:17;;21581:98;:::o;59235:346::-;59354:1;59337:19;;:5;:19;;;;59329:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59435:1;59416:21;;:7;:21;;;;59408:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59519:6;59489:11;:18;59501:5;59489:18;;;;;;;;;;;;;;;:27;59508:7;59489:27;;;;;;;;;;;;;;;:36;;;;59557:7;59541:32;;59550:5;59541:32;;;59566:6;59541:32;;;;;;:::i;:::-;;;;;;;;59235:346;;;:::o;56746:604::-;56870:1;56852:20;;:6;:20;;;;56844:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56954:1;56933:23;;:9;:23;;;;56925:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;57009:47;57030:6;57038:9;57049:6;57009:20;:47::i;:::-;57069:21;57093:9;:17;57103:6;57093:17;;;;;;;;;;;;;;;;57069:41;;57146:6;57129:13;:23;;57121:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;57242:6;57226:13;:22;;;;:::i;:::-;57206:9;:17;57216:6;57206:17;;;;;;;;;;;;;;;:42;;;;57283:6;57259:9;:20;57269:9;57259:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;57324:9;57307:35;;57316:6;57307:35;;;57335:6;57307:35;;;;;;:::i;:::-;;;;;;;;56833:517;56746:604;;;:::o;27773:147::-;27856:18;27869:4;27856:12;:18::i;:::-;25955:30;25966:4;25972:12;:10;:12::i;:::-;25955:10;:30::i;:::-;27887:25:::1;27898:4;27904:7;27887:10;:25::i;:::-;27773:147:::0;;;:::o;42164:281::-;42217:7;42258:16;42241:13;:33;42237:201;;;42298:24;42291:31;;;;42237:201;42362:64;42384:10;42396:12;42410:15;42362:21;:64::i;:::-;42355:71;;42164:281;;:::o;28821:218::-;28928:12;:10;:12::i;:::-;28917:23;;:7;:23;;;28909:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;29005:26;29017:4;29023:7;29005:11;:26::i;:::-;28821:218;;:::o;14186:158::-;14259:4;14283:53;14291:3;:10;;14327:5;14311:23;;14303:32;;14283:7;:53::i;:::-;14276:60;;14186:158;;;;:::o;77457:120::-;77001:8;:6;:8::i;:::-;76993:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;77526:5:::1;77516:7;;:15;;;;;;;;;;;;;;;;;;77547:22;77556:12;:10;:12::i;:::-;77547:22;;;;;;:::i;:::-;;;;;;;;77457:120::o:0;83561:147::-;83666:34;83684:7;83693:6;83666:17;:34::i;:::-;83561:147;;:::o;58303:494::-;58406:1;58387:21;;:7;:21;;;;58379:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;58459:49;58480:7;58497:1;58501:6;58459:20;:49::i;:::-;58521:22;58546:9;:18;58556:7;58546:18;;;;;;;;;;;;;;;;58521:43;;58601:6;58583:14;:24;;58575:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;58695:6;58678:14;:23;;;;:::i;:::-;58657:9;:18;58667:7;58657:18;;;;;;;;;;;;;;;:44;;;;58728:6;58712:12;;:22;;;;;;;:::i;:::-;;;;;;;;58778:1;58752:37;;58761:7;58752:37;;;58782:6;58752:37;;;;;;:::i;:::-;;;;;;;;58368:429;58303:494;;:::o;72759:1692::-;72857:4;72863:7;72909:1;72896:10;:14;72888:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;73024:28;:18;:26;:28::i;:::-;73010:10;:42;;73002:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;74225:13;74241:40;74270:10;74241:9;:13;;:28;;:40;;;;:::i;:::-;74225:56;;74307:9;:13;;:20;;;;74298:5;:29;74294:150;;;74352:5;74359:1;74344:17;;;;;;;74294:150;74402:4;74408:9;:16;;74425:5;74408:23;;;;;;;;:::i;:::-;;;;;;;;;;74394:38;;;;;72759:1692;;;;;;:::o;64126:114::-;64191:7;64218;:14;;;64211:21;;64126:114;;;:::o;77198:118::-;76724:8;:6;:8::i;:::-;76723:9;76715:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;77268:4:::1;77258:7;;:14;;;;;;;;;;;;;;;;;;77288:20;77295:12;:10;:12::i;:::-;77288:20;;;;;;:::i;:::-;;;;;;;;77198:118::o:0;15144:158::-;15218:7;15269:22;15273:3;:10;;15285:5;15269:3;:22::i;:::-;15261:31;;15238:56;;15144:158;;;;:::o;14683:117::-;14746:7;14773:19;14781:3;:10;;14773:7;:19::i;:::-;14766:26;;14683:117;;;:::o;63053:207::-;63113:15;63141:30;63174:7;:14;63182:5;63174:14;;;;;;;;;;;;;;;63141:47;;63209:15;:5;:13;:15::i;:::-;63199:25;;63235:17;:5;:15;:17::i;:::-;63130:130;63053:207;;;:::o;43432:167::-;43509:7;43536:55;43558:20;:18;:20::i;:::-;43580:10;43536:21;:55::i;:::-;43529:62;;43432:167;;;:::o;36522:1432::-;36607:7;37532:66;37526:1;37518:10;;:80;;37510:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;37661:2;37656:1;:7;;;:18;;;;37672:2;37667:1;:7;;;37656:18;37648:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37811:14;37828:24;37838:4;37844:1;37847;37850;37828:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37811:41;;37889:1;37871:20;;:6;:20;;;;37863:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37940:6;37933:13;;;36522:1432;;;;;;:::o;28165:149::-;28249:18;28262:4;28249:12;:18::i;:::-;25955:30;25966:4;25972:12;:10;:12::i;:::-;25955:10;:30::i;:::-;28280:26:::1;28292:4;28298:7;28280:11;:26::i;:::-;28165:149:::0;;;:::o;30069:229::-;30144:22;30152:4;30158:7;30144;:22::i;:::-;30139:152;;30215:4;30183:6;:12;30190:4;30183:12;;;;;;;;;;;:20;;:29;30204:7;30183:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30266:12;:10;:12::i;:::-;30239:40;;30257:7;30239:40;;30251:4;30239:40;;;;;;;;;;30139:152;30069:229;;:::o;8913:414::-;8976:4;8998:21;9008:3;9013:5;8998:9;:21::i;:::-;8993:327;;9036:3;:11;;9053:5;9036:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9219:3;:11;;:18;;;;9197:3;:12;;:19;9210:5;9197:19;;;;;;;;;;;:40;;;;9259:4;9252:11;;;;8993:327;9303:5;9296:12;;8913:414;;;;;:::o;18645:157::-;18730:4;18769:25;18754:40;;;:11;:40;;;;18747:47;;18645:157;;;:::o;83284:269::-;83430:52;83465:4;83471:2;83475:6;83430:34;:52::i;:::-;83493;83528:4;83534:2;83538:6;83493:34;:52::i;:::-;83284:269;;;:::o;26815:384::-;26895:22;26903:4;26909:7;26895;:22::i;:::-;26891:301;;27027:41;27055:7;27027:41;;27065:2;27027:19;:41::i;:::-;27125:38;27153:4;27145:13;;27160:2;27125:19;:38::i;:::-;26948:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26934:246;;;;;;;;;;;:::i;:::-;;;;;;;;26891:301;26815:384;;:::o;42453:337::-;42555:7;42635:8;42662:4;42685:7;42711:13;42751:4;42606:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42582:200;;;;;;42575:207;;42453:337;;;;;:::o;30306:230::-;30381:22;30389:4;30395:7;30381;:22::i;:::-;30377:152;;;30452:5;30420:6;:12;30427:4;30420:12;;;;;;;;;;;:20;;:29;30441:7;30420:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30504:12;:10;:12::i;:::-;30477:40;;30495:7;30477:40;;30489:4;30477:40;;;;;;;;;;30377:152;30306:230;;:::o;9503:1553::-;9569:4;9687:18;9708:3;:12;;:19;9721:5;9708:19;;;;;;;;;;;;9687:40;;9758:1;9744:10;:15;9740:1309;;10106:21;10143:1;10130:10;:14;;;;:::i;:::-;10106:38;;10159:17;10200:1;10179:3;:11;;:18;;;;:22;;;;:::i;:::-;10159:42;;10446:17;10466:3;:11;;10478:9;10466:22;;;;;;;;:::i;:::-;;;;;;;;;;10446:42;;10612:9;10583:3;:11;;10595:13;10583:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;10715:10;10689:3;:12;;:23;10702:9;10689:23;;;;;;;;;;;:36;;;;10850:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10945:3;:12;;:19;10958:5;10945:19;;;;;;;;;;;10938:26;;;10988:4;10981:11;;;;;;;;9740:1309;11032:5;11025:12;;;9503:1553;;;;;:::o;79249:207::-;79374:5;:3;:5::i;:::-;79364:6;79342:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;79334:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;79420:28;79432:7;79441:6;79420:11;:28::i;:::-;79249:207;;:::o;66163:918::-;66252:7;66292:1;66276:5;:12;;;;:17;66272:58;;;66317:1;66310:8;;;;66272:58;66342:11;66368:12;66383:5;:12;;;;66368:27;;66408:424;66421:4;66415:3;:10;66408:424;;;66442:11;66456:23;66469:3;66474:4;66456:12;:23::i;:::-;66442:37;;66713:7;66700:5;66706:3;66700:10;;;;;;;;:::i;:::-;;;;;;;;;;:20;66696:125;;;66748:3;66741:10;;66696:125;;;66804:1;66798:3;:7;;;;:::i;:::-;66792:13;;66696:125;66427:405;66408:424;;;66958:1;66952:3;:7;:36;;;;;66981:7;66963:5;66975:1;66969:3;:7;;;;:::i;:::-;66963:14;;;;;;;;:::i;:::-;;;;;;;;;;:25;66952:36;66948:126;;;67018:1;67012:3;:7;;;;:::i;:::-;67005:14;;;;;;66948:126;67059:3;67052:10;;;;66163:918;;;;;:::o;11810:204::-;11877:7;11926:5;11905:3;:11;;:18;;;;:26;11897:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11988:3;:11;;12000:5;11988:18;;;;;;;;:::i;:::-;;;;;;;;;;11981:25;;11810:204;;;;:::o;11357:109::-;11413:7;11440:3;:11;;:18;;;;11433:25;;11357:109;;;:::o;64248:127::-;64355:1;64337:7;:14;;;:19;;;;;;;;;;;64248:127;:::o;38873:196::-;38966:7;39032:15;39049:10;39003:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38993:68;;;;;;38986:75;;38873:196;;;;:::o;11142:129::-;11215:4;11262:1;11239:3;:12;;:19;11252:5;11239:19;;;;;;;;;;;;:24;;11232:31;;11142:129;;;;:::o;78217:238::-;78326:44;78353:4;78359:2;78363:6;78326:26;:44::i;:::-;78392:8;:6;:8::i;:::-;78391:9;78383:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;78217:238;;;:::o;72209:542::-;72316:44;72343:4;72349:2;72353:6;72316:26;:44::i;:::-;72391:1;72375:18;;:4;:18;;;72371:373;;;72423:26;72446:2;72423:22;:26::i;:::-;72460:28;:26;:28::i;:::-;72371:373;;;72522:1;72508:16;;:2;:16;;;72504:240;;;72554:28;72577:4;72554:22;:28::i;:::-;72593;:26;:28::i;:::-;72504:240;;;72669:28;72692:4;72669:22;:28::i;:::-;72708:26;72731:2;72708:22;:26::i;:::-;72504:240;72371:373;72209:542;;;:::o;20459:447::-;20534:13;20560:19;20605:1;20596:6;20592:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20582:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20560:47;;20618:15;:6;20625:1;20618:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20644;:6;20651:1;20644:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20675:9;20700:1;20691:6;20687:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20675:26;;20670:131;20707:1;20703;:5;20670:131;;;20742:8;20759:3;20751:5;:11;20742:21;;;;;;;:::i;:::-;;;;;20730:6;20737:1;20730:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;20788:1;20778:11;;;;;20710:3;;;;:::i;:::-;;;20670:131;;;;20828:1;20819:5;:10;20811:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20891:6;20877:21;;;20459:447;;;;:::o;57632:338::-;57735:1;57716:21;;:7;:21;;;;57708:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57786:49;57815:1;57819:7;57828:6;57786:20;:49::i;:::-;57864:6;57848:12;;:22;;;;;;;:::i;:::-;;;;;;;;57903:6;57881:9;:18;57891:7;57881:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;57946:7;57925:37;;57942:1;57925:37;;;57955:6;57925:37;;;;;;:::i;:::-;;;;;;;;57632:338;;:::o;65326:193::-;65388:7;65509:1;65504;65500;:5;;;;:::i;:::-;65496:1;65492;:5;;;;:::i;:::-;:13;;;;:::i;:::-;65491:19;;;;:::i;:::-;65485:1;65481;:5;;;;:::i;:::-;65475:1;65471;:5;;;;:::i;:::-;65470:17;;;;:::i;:::-;:41;;;;:::i;:::-;65463:48;;65326:193;;;;:::o;60184:92::-;;;;:::o;74459:146::-;74527:70;74543:24;:33;74568:7;74543:33;;;;;;;;;;;;;;;74578:18;74588:7;74578:9;:18::i;:::-;74527:15;:70::i;:::-;74459:146;:::o;74613:118::-;74670:53;74686:21;74709:13;:11;:13::i;:::-;74670:15;:53::i;:::-;74613:118::o;74739:315::-;74834:17;74854:28;:18;:26;:28::i;:::-;74834:48;;74930:9;74897:30;74913:9;:13;;74897:15;:30::i;:::-;:42;74893:154;;;74956:9;:13;;74975:9;74956:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000:9;:16;;75022:12;75000:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74893:154;74823:231;74739:315;;:::o;75062:212::-;75132:7;75170:1;75156:3;:10;;;;:15;75152:115;;;75195:1;75188:8;;;;75152:115;75236:3;75253:1;75240:3;:10;;;;:14;;;;:::i;:::-;75236:19;;;;;;;;:::i;:::-;;;;;;;;;;75229:26;;75062:212;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:135::-;629:5;667:6;654:20;645:29;;683:31;708:5;683:31;:::i;:::-;585:135;;;;:::o;726:329::-;785:6;834:2;822:9;813:7;809:23;805:32;802:119;;;840:79;;:::i;:::-;802:119;960:1;985:53;1030:7;1021:6;1010:9;1006:22;985:53;:::i;:::-;975:63;;931:117;726:329;;;;:::o;1061:474::-;1129:6;1137;1186:2;1174:9;1165:7;1161:23;1157:32;1154:119;;;1192:79;;:::i;:::-;1154:119;1312:1;1337:53;1382:7;1373:6;1362:9;1358:22;1337:53;:::i;:::-;1327:63;;1283:117;1439:2;1465:53;1510:7;1501:6;1490:9;1486:22;1465:53;:::i;:::-;1455:63;;1410:118;1061:474;;;;;:::o;1541:619::-;1618:6;1626;1634;1683:2;1671:9;1662:7;1658:23;1654:32;1651:119;;;1689:79;;:::i;:::-;1651:119;1809:1;1834:53;1879:7;1870:6;1859:9;1855:22;1834:53;:::i;:::-;1824:63;;1780:117;1936:2;1962:53;2007:7;1998:6;1987:9;1983:22;1962:53;:::i;:::-;1952:63;;1907:118;2064:2;2090:53;2135:7;2126:6;2115:9;2111:22;2090:53;:::i;:::-;2080:63;;2035:118;1541:619;;;;;:::o;2166:1199::-;2277:6;2285;2293;2301;2309;2317;2325;2374:3;2362:9;2353:7;2349:23;2345:33;2342:120;;;2381:79;;:::i;:::-;2342:120;2501:1;2526:53;2571:7;2562:6;2551:9;2547:22;2526:53;:::i;:::-;2516:63;;2472:117;2628:2;2654:53;2699:7;2690:6;2679:9;2675:22;2654:53;:::i;:::-;2644:63;;2599:118;2756:2;2782:53;2827:7;2818:6;2807:9;2803:22;2782:53;:::i;:::-;2772:63;;2727:118;2884:2;2910:53;2955:7;2946:6;2935:9;2931:22;2910:53;:::i;:::-;2900:63;;2855:118;3012:3;3039:51;3082:7;3073:6;3062:9;3058:22;3039:51;:::i;:::-;3029:61;;2983:117;3139:3;3166:53;3211:7;3202:6;3191:9;3187:22;3166:53;:::i;:::-;3156:63;;3110:119;3268:3;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3239:119;2166:1199;;;;;;;;;;:::o;3371:474::-;3439:6;3447;3496:2;3484:9;3475:7;3471:23;3467:32;3464:119;;;3502:79;;:::i;:::-;3464:119;3622:1;3647:53;3692:7;3683:6;3672:9;3668:22;3647:53;:::i;:::-;3637:63;;3593:117;3749:2;3775:53;3820:7;3811:6;3800:9;3796:22;3775:53;:::i;:::-;3765:63;;3720:118;3371:474;;;;;:::o;3851:329::-;3910:6;3959:2;3947:9;3938:7;3934:23;3930:32;3927:119;;;3965:79;;:::i;:::-;3927:119;4085:1;4110:53;4155:7;4146:6;4135:9;4131:22;4110:53;:::i;:::-;4100:63;;4056:117;3851:329;;;;:::o;4186:474::-;4254:6;4262;4311:2;4299:9;4290:7;4286:23;4282:32;4279:119;;;4317:79;;:::i;:::-;4279:119;4437:1;4462:53;4507:7;4498:6;4487:9;4483:22;4462:53;:::i;:::-;4452:63;;4408:117;4564:2;4590:53;4635:7;4626:6;4615:9;4611:22;4590:53;:::i;:::-;4580:63;;4535:118;4186:474;;;;;:::o;4666:::-;4734:6;4742;4791:2;4779:9;4770:7;4766:23;4762:32;4759:119;;;4797:79;;:::i;:::-;4759:119;4917:1;4942:53;4987:7;4978:6;4967:9;4963:22;4942:53;:::i;:::-;4932:63;;4888:117;5044:2;5070:53;5115:7;5106:6;5095:9;5091:22;5070:53;:::i;:::-;5060:63;;5015:118;4666:474;;;;;:::o;5146:327::-;5204:6;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:52;5448:7;5439:6;5428:9;5424:22;5404:52;:::i;:::-;5394:62;;5350:116;5146:327;;;;:::o;5479:329::-;5538:6;5587:2;5575:9;5566:7;5562:23;5558:32;5555:119;;;5593:79;;:::i;:::-;5555:119;5713:1;5738:53;5783:7;5774:6;5763:9;5759:22;5738:53;:::i;:::-;5728:63;;5684:117;5479:329;;;;:::o;5814:118::-;5901:24;5919:5;5901:24;:::i;:::-;5896:3;5889:37;5814:118;;:::o;5938:109::-;6019:21;6034:5;6019:21;:::i;:::-;6014:3;6007:34;5938:109;;:::o;6053:118::-;6140:24;6158:5;6140:24;:::i;:::-;6135:3;6128:37;6053:118;;:::o;6177:157::-;6282:45;6302:24;6320:5;6302:24;:::i;:::-;6282:45;:::i;:::-;6277:3;6270:58;6177:157;;:::o;6340:364::-;6428:3;6456:39;6489:5;6456:39;:::i;:::-;6511:71;6575:6;6570:3;6511:71;:::i;:::-;6504:78;;6591:52;6636:6;6631:3;6624:4;6617:5;6613:16;6591:52;:::i;:::-;6668:29;6690:6;6668:29;:::i;:::-;6663:3;6659:39;6652:46;;6432:272;6340:364;;;;:::o;6710:377::-;6816:3;6844:39;6877:5;6844:39;:::i;:::-;6899:89;6981:6;6976:3;6899:89;:::i;:::-;6892:96;;6997:52;7042:6;7037:3;7030:4;7023:5;7019:16;6997:52;:::i;:::-;7074:6;7069:3;7065:16;7058:23;;6820:267;6710:377;;;;:::o;7093:366::-;7235:3;7256:67;7320:2;7315:3;7256:67;:::i;:::-;7249:74;;7332:93;7421:3;7332:93;:::i;:::-;7450:2;7445:3;7441:12;7434:19;;7093:366;;;:::o;7465:::-;7607:3;7628:67;7692:2;7687:3;7628:67;:::i;:::-;7621:74;;7704:93;7793:3;7704:93;:::i;:::-;7822:2;7817:3;7813:12;7806:19;;7465:366;;;:::o;7837:::-;7979:3;8000:67;8064:2;8059:3;8000:67;:::i;:::-;7993:74;;8076:93;8165:3;8076:93;:::i;:::-;8194:2;8189:3;8185:12;8178:19;;7837:366;;;:::o;8209:::-;8351:3;8372:67;8436:2;8431:3;8372:67;:::i;:::-;8365:74;;8448:93;8537:3;8448:93;:::i;:::-;8566:2;8561:3;8557:12;8550:19;;8209:366;;;:::o;8581:::-;8723:3;8744:67;8808:2;8803:3;8744:67;:::i;:::-;8737:74;;8820:93;8909:3;8820:93;:::i;:::-;8938:2;8933:3;8929:12;8922:19;;8581:366;;;:::o;8953:::-;9095:3;9116:67;9180:2;9175:3;9116:67;:::i;:::-;9109:74;;9192:93;9281:3;9192:93;:::i;:::-;9310:2;9305:3;9301:12;9294:19;;8953:366;;;:::o;9325:::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9325:366;;;:::o;9697:::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9697:366;;;:::o;10069:::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10069:366;;;:::o;10441:400::-;10601:3;10622:84;10704:1;10699:3;10622:84;:::i;:::-;10615:91;;10715:93;10804:3;10715:93;:::i;:::-;10833:1;10828:3;10824:11;10817:18;;10441:400;;;:::o;10847:366::-;10989:3;11010:67;11074:2;11069:3;11010:67;:::i;:::-;11003:74;;11086:93;11175:3;11086:93;:::i;:::-;11204:2;11199:3;11195:12;11188:19;;10847:366;;;:::o;11219:::-;11361:3;11382:67;11446:2;11441:3;11382:67;:::i;:::-;11375:74;;11458:93;11547:3;11458:93;:::i;:::-;11576:2;11571:3;11567:12;11560:19;;11219:366;;;:::o;11591:::-;11733:3;11754:67;11818:2;11813:3;11754:67;:::i;:::-;11747:74;;11830:93;11919:3;11830:93;:::i;:::-;11948:2;11943:3;11939:12;11932:19;;11591:366;;;:::o;11963:::-;12105:3;12126:67;12190:2;12185:3;12126:67;:::i;:::-;12119:74;;12202:93;12291:3;12202:93;:::i;:::-;12320:2;12315:3;12311:12;12304:19;;11963:366;;;:::o;12335:::-;12477:3;12498:67;12562:2;12557:3;12498:67;:::i;:::-;12491:74;;12574:93;12663:3;12574:93;:::i;:::-;12692:2;12687:3;12683:12;12676:19;;12335:366;;;:::o;12707:::-;12849:3;12870:67;12934:2;12929:3;12870:67;:::i;:::-;12863:74;;12946:93;13035:3;12946:93;:::i;:::-;13064:2;13059:3;13055:12;13048:19;;12707:366;;;:::o;13079:::-;13221:3;13242:67;13306:2;13301:3;13242:67;:::i;:::-;13235:74;;13318:93;13407:3;13318:93;:::i;:::-;13436:2;13431:3;13427:12;13420:19;;13079:366;;;:::o;13451:::-;13593:3;13614:67;13678:2;13673:3;13614:67;:::i;:::-;13607:74;;13690:93;13779:3;13690:93;:::i;:::-;13808:2;13803:3;13799:12;13792:19;;13451:366;;;:::o;13823:::-;13965:3;13986:67;14050:2;14045:3;13986:67;:::i;:::-;13979:74;;14062:93;14151:3;14062:93;:::i;:::-;14180:2;14175:3;14171:12;14164:19;;13823:366;;;:::o;14195:::-;14337:3;14358:67;14422:2;14417:3;14358:67;:::i;:::-;14351:74;;14434:93;14523:3;14434:93;:::i;:::-;14552:2;14547:3;14543:12;14536:19;;14195:366;;;:::o;14567:::-;14709:3;14730:67;14794:2;14789:3;14730:67;:::i;:::-;14723:74;;14806:93;14895:3;14806:93;:::i;:::-;14924:2;14919:3;14915:12;14908:19;;14567:366;;;:::o;14939:::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:::-;15453:3;15474:67;15538:2;15533:3;15474:67;:::i;:::-;15467:74;;15550:93;15639:3;15550:93;:::i;:::-;15668:2;15663:3;15659:12;15652:19;;15311:366;;;:::o;15683:::-;15825:3;15846:67;15910:2;15905:3;15846:67;:::i;:::-;15839:74;;15922:93;16011:3;15922:93;:::i;:::-;16040:2;16035:3;16031:12;16024:19;;15683:366;;;:::o;16055:402::-;16215:3;16236:85;16318:2;16313:3;16236:85;:::i;:::-;16229:92;;16330:93;16419:3;16330:93;:::i;:::-;16448:2;16443:3;16439:12;16432:19;;16055:402;;;:::o;16463:366::-;16605:3;16626:67;16690:2;16685:3;16626:67;:::i;:::-;16619:74;;16702:93;16791:3;16702:93;:::i;:::-;16820:2;16815:3;16811:12;16804:19;;16463:366;;;:::o;16835:402::-;16995:3;17016:85;17098:2;17093:3;17016:85;:::i;:::-;17009:92;;17110:93;17199:3;17110:93;:::i;:::-;17228:2;17223:3;17219:12;17212:19;;16835:402;;;:::o;17243:366::-;17385:3;17406:67;17470:2;17465:3;17406:67;:::i;:::-;17399:74;;17482:93;17571:3;17482:93;:::i;:::-;17600:2;17595:3;17591:12;17584:19;;17243:366;;;:::o;17615:::-;17757:3;17778:67;17842:2;17837:3;17778:67;:::i;:::-;17771:74;;17854:93;17943:3;17854:93;:::i;:::-;17972:2;17967:3;17963:12;17956:19;;17615:366;;;:::o;17987:::-;18129:3;18150:67;18214:2;18209:3;18150:67;:::i;:::-;18143:74;;18226:93;18315:3;18226:93;:::i;:::-;18344:2;18339:3;18335:12;18328:19;;17987:366;;;:::o;18359:::-;18501:3;18522:67;18586:2;18581:3;18522:67;:::i;:::-;18515:74;;18598:93;18687:3;18598:93;:::i;:::-;18716:2;18711:3;18707:12;18700:19;;18359:366;;;:::o;18731:118::-;18818:24;18836:5;18818:24;:::i;:::-;18813:3;18806:37;18731:118;;:::o;18855:112::-;18938:22;18954:5;18938:22;:::i;:::-;18933:3;18926:35;18855:112;;:::o;18973:663::-;19214:3;19236:148;19380:3;19236:148;:::i;:::-;19229:155;;19394:75;19465:3;19456:6;19394:75;:::i;:::-;19494:2;19489:3;19485:12;19478:19;;19507:75;19578:3;19569:6;19507:75;:::i;:::-;19607:2;19602:3;19598:12;19591:19;;19627:3;19620:10;;18973:663;;;;;:::o;19642:967::-;20024:3;20046:148;20190:3;20046:148;:::i;:::-;20039:155;;20211:95;20302:3;20293:6;20211:95;:::i;:::-;20204:102;;20323:148;20467:3;20323:148;:::i;:::-;20316:155;;20488:95;20579:3;20570:6;20488:95;:::i;:::-;20481:102;;20600:3;20593:10;;19642:967;;;;;:::o;20615:222::-;20708:4;20746:2;20735:9;20731:18;20723:26;;20759:71;20827:1;20816:9;20812:17;20803:6;20759:71;:::i;:::-;20615:222;;;;:::o;20843:210::-;20930:4;20968:2;20957:9;20953:18;20945:26;;20981:65;21043:1;21032:9;21028:17;21019:6;20981:65;:::i;:::-;20843:210;;;;:::o;21059:222::-;21152:4;21190:2;21179:9;21175:18;21167:26;;21203:71;21271:1;21260:9;21256:17;21247:6;21203:71;:::i;:::-;21059:222;;;;:::o;21287:775::-;21520:4;21558:3;21547:9;21543:19;21535:27;;21572:71;21640:1;21629:9;21625:17;21616:6;21572:71;:::i;:::-;21653:72;21721:2;21710:9;21706:18;21697:6;21653:72;:::i;:::-;21735;21803:2;21792:9;21788:18;21779:6;21735:72;:::i;:::-;21817;21885:2;21874:9;21870:18;21861:6;21817:72;:::i;:::-;21899:73;21967:3;21956:9;21952:19;21943:6;21899:73;:::i;:::-;21982;22050:3;22039:9;22035:19;22026:6;21982:73;:::i;:::-;21287:775;;;;;;;;;:::o;22068:664::-;22273:4;22311:3;22300:9;22296:19;22288:27;;22325:71;22393:1;22382:9;22378:17;22369:6;22325:71;:::i;:::-;22406:72;22474:2;22463:9;22459:18;22450:6;22406:72;:::i;:::-;22488;22556:2;22545:9;22541:18;22532:6;22488:72;:::i;:::-;22570;22638:2;22627:9;22623:18;22614:6;22570:72;:::i;:::-;22652:73;22720:3;22709:9;22705:19;22696:6;22652:73;:::i;:::-;22068:664;;;;;;;;:::o;22738:545::-;22911:4;22949:3;22938:9;22934:19;22926:27;;22963:71;23031:1;23020:9;23016:17;23007:6;22963:71;:::i;:::-;23044:68;23108:2;23097:9;23093:18;23084:6;23044:68;:::i;:::-;23122:72;23190:2;23179:9;23175:18;23166:6;23122:72;:::i;:::-;23204;23272:2;23261:9;23257:18;23248:6;23204:72;:::i;:::-;22738:545;;;;;;;:::o;23289:313::-;23402:4;23440:2;23429:9;23425:18;23417:26;;23489:9;23483:4;23479:20;23475:1;23464:9;23460:17;23453:47;23517:78;23590:4;23581:6;23517:78;:::i;:::-;23509:86;;23289:313;;;;:::o;23608:419::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:131;24015:4;23889:131;:::i;:::-;23881:139;;23608:419;;;:::o;24033:::-;24199:4;24237:2;24226:9;24222:18;24214:26;;24286:9;24280:4;24276:20;24272:1;24261:9;24257:17;24250:47;24314:131;24440:4;24314:131;:::i;:::-;24306:139;;24033:419;;;:::o;24458:::-;24624:4;24662:2;24651:9;24647:18;24639:26;;24711:9;24705:4;24701:20;24697:1;24686:9;24682:17;24675:47;24739:131;24865:4;24739:131;:::i;:::-;24731:139;;24458:419;;;:::o;24883:::-;25049:4;25087:2;25076:9;25072:18;25064:26;;25136:9;25130:4;25126:20;25122:1;25111:9;25107:17;25100:47;25164:131;25290:4;25164:131;:::i;:::-;25156:139;;24883:419;;;:::o;25308:::-;25474:4;25512:2;25501:9;25497:18;25489:26;;25561:9;25555:4;25551:20;25547:1;25536:9;25532:17;25525:47;25589:131;25715:4;25589:131;:::i;:::-;25581:139;;25308:419;;;:::o;25733:::-;25899:4;25937:2;25926:9;25922:18;25914:26;;25986:9;25980:4;25976:20;25972:1;25961:9;25957:17;25950:47;26014:131;26140:4;26014:131;:::i;:::-;26006:139;;25733:419;;;:::o;26158:::-;26324:4;26362:2;26351:9;26347:18;26339:26;;26411:9;26405:4;26401:20;26397:1;26386:9;26382:17;26375:47;26439:131;26565:4;26439:131;:::i;:::-;26431:139;;26158:419;;;:::o;26583:::-;26749:4;26787:2;26776:9;26772:18;26764:26;;26836:9;26830:4;26826:20;26822:1;26811:9;26807:17;26800:47;26864:131;26990:4;26864:131;:::i;:::-;26856:139;;26583:419;;;:::o;27008:::-;27174:4;27212:2;27201:9;27197:18;27189:26;;27261:9;27255:4;27251:20;27247:1;27236:9;27232:17;27225:47;27289:131;27415:4;27289:131;:::i;:::-;27281:139;;27008:419;;;:::o;27433:::-;27599:4;27637:2;27626:9;27622:18;27614:26;;27686:9;27680:4;27676:20;27672:1;27661:9;27657:17;27650:47;27714:131;27840:4;27714:131;:::i;:::-;27706:139;;27433:419;;;:::o;27858:::-;28024:4;28062:2;28051:9;28047:18;28039:26;;28111:9;28105:4;28101:20;28097:1;28086:9;28082:17;28075:47;28139:131;28265:4;28139:131;:::i;:::-;28131:139;;27858:419;;;:::o;28283:::-;28449:4;28487:2;28476:9;28472:18;28464:26;;28536:9;28530:4;28526:20;28522:1;28511:9;28507:17;28500:47;28564:131;28690:4;28564:131;:::i;:::-;28556:139;;28283:419;;;:::o;28708:::-;28874:4;28912:2;28901:9;28897:18;28889:26;;28961:9;28955:4;28951:20;28947:1;28936:9;28932:17;28925:47;28989:131;29115:4;28989:131;:::i;:::-;28981:139;;28708:419;;;:::o;29133:::-;29299:4;29337:2;29326:9;29322:18;29314:26;;29386:9;29380:4;29376:20;29372:1;29361:9;29357:17;29350:47;29414:131;29540:4;29414:131;:::i;:::-;29406:139;;29133:419;;;:::o;29558:::-;29724:4;29762:2;29751:9;29747:18;29739:26;;29811:9;29805:4;29801:20;29797:1;29786:9;29782:17;29775:47;29839:131;29965:4;29839:131;:::i;:::-;29831:139;;29558:419;;;:::o;29983:::-;30149:4;30187:2;30176:9;30172:18;30164:26;;30236:9;30230:4;30226:20;30222:1;30211:9;30207:17;30200:47;30264:131;30390:4;30264:131;:::i;:::-;30256:139;;29983:419;;;:::o;30408:::-;30574:4;30612:2;30601:9;30597:18;30589:26;;30661:9;30655:4;30651:20;30647:1;30636:9;30632:17;30625:47;30689:131;30815:4;30689:131;:::i;:::-;30681:139;;30408:419;;;:::o;30833:::-;30999:4;31037:2;31026:9;31022:18;31014:26;;31086:9;31080:4;31076:20;31072:1;31061:9;31057:17;31050:47;31114:131;31240:4;31114:131;:::i;:::-;31106:139;;30833:419;;;:::o;31258:::-;31424:4;31462:2;31451:9;31447:18;31439:26;;31511:9;31505:4;31501:20;31497:1;31486:9;31482:17;31475:47;31539:131;31665:4;31539:131;:::i;:::-;31531:139;;31258:419;;;:::o;31683:::-;31849:4;31887:2;31876:9;31872:18;31864:26;;31936:9;31930:4;31926:20;31922:1;31911:9;31907:17;31900:47;31964:131;32090:4;31964:131;:::i;:::-;31956:139;;31683:419;;;:::o;32108:::-;32274:4;32312:2;32301:9;32297:18;32289:26;;32361:9;32355:4;32351:20;32347:1;32336:9;32332:17;32325:47;32389:131;32515:4;32389:131;:::i;:::-;32381:139;;32108:419;;;:::o;32533:::-;32699:4;32737:2;32726:9;32722:18;32714:26;;32786:9;32780:4;32776:20;32772:1;32761:9;32757:17;32750:47;32814:131;32940:4;32814:131;:::i;:::-;32806:139;;32533:419;;;:::o;32958:::-;33124:4;33162:2;33151:9;33147:18;33139:26;;33211:9;33205:4;33201:20;33197:1;33186:9;33182:17;33175:47;33239:131;33365:4;33239:131;:::i;:::-;33231:139;;32958:419;;;:::o;33383:::-;33549:4;33587:2;33576:9;33572:18;33564:26;;33636:9;33630:4;33626:20;33622:1;33611:9;33607:17;33600:47;33664:131;33790:4;33664:131;:::i;:::-;33656:139;;33383:419;;;:::o;33808:::-;33974:4;34012:2;34001:9;33997:18;33989:26;;34061:9;34055:4;34051:20;34047:1;34036:9;34032:17;34025:47;34089:131;34215:4;34089:131;:::i;:::-;34081:139;;33808:419;;;:::o;34233:::-;34399:4;34437:2;34426:9;34422:18;34414:26;;34486:9;34480:4;34476:20;34472:1;34461:9;34457:17;34450:47;34514:131;34640:4;34514:131;:::i;:::-;34506:139;;34233:419;;;:::o;34658:::-;34824:4;34862:2;34851:9;34847:18;34839:26;;34911:9;34905:4;34901:20;34897:1;34886:9;34882:17;34875:47;34939:131;35065:4;34939:131;:::i;:::-;34931:139;;34658:419;;;:::o;35083:::-;35249:4;35287:2;35276:9;35272:18;35264:26;;35336:9;35330:4;35326:20;35322:1;35311:9;35307:17;35300:47;35364:131;35490:4;35364:131;:::i;:::-;35356:139;;35083:419;;;:::o;35508:222::-;35601:4;35639:2;35628:9;35624:18;35616:26;;35652:71;35720:1;35709:9;35705:17;35696:6;35652:71;:::i;:::-;35508:222;;;;:::o;35736:214::-;35825:4;35863:2;35852:9;35848:18;35840:26;;35876:67;35940:1;35929:9;35925:17;35916:6;35876:67;:::i;:::-;35736:214;;;;:::o;36037:99::-;36089:6;36123:5;36117:12;36107:22;;36037:99;;;:::o;36142:169::-;36226:11;36260:6;36255:3;36248:19;36300:4;36295:3;36291:14;36276:29;;36142:169;;;;:::o;36317:148::-;36419:11;36456:3;36441:18;;36317:148;;;;:::o;36471:305::-;36511:3;36530:20;36548:1;36530:20;:::i;:::-;36525:25;;36564:20;36582:1;36564:20;:::i;:::-;36559:25;;36718:1;36650:66;36646:74;36643:1;36640:81;36637:107;;;36724:18;;:::i;:::-;36637:107;36768:1;36765;36761:9;36754:16;;36471:305;;;;:::o;36782:185::-;36822:1;36839:20;36857:1;36839:20;:::i;:::-;36834:25;;36873:20;36891:1;36873:20;:::i;:::-;36868:25;;36912:1;36902:35;;36917:18;;:::i;:::-;36902:35;36959:1;36956;36952:9;36947:14;;36782:185;;;;:::o;36973:348::-;37013:7;37036:20;37054:1;37036:20;:::i;:::-;37031:25;;37070:20;37088:1;37070:20;:::i;:::-;37065:25;;37258:1;37190:66;37186:74;37183:1;37180:81;37175:1;37168:9;37161:17;37157:105;37154:131;;;37265:18;;:::i;:::-;37154:131;37313:1;37310;37306:9;37295:20;;36973:348;;;;:::o;37327:191::-;37367:4;37387:20;37405:1;37387:20;:::i;:::-;37382:25;;37421:20;37439:1;37421:20;:::i;:::-;37416:25;;37460:1;37457;37454:8;37451:34;;;37465:18;;:::i;:::-;37451:34;37510:1;37507;37503:9;37495:17;;37327:191;;;;:::o;37524:96::-;37561:7;37590:24;37608:5;37590:24;:::i;:::-;37579:35;;37524:96;;;:::o;37626:90::-;37660:7;37703:5;37696:13;37689:21;37678:32;;37626:90;;;:::o;37722:77::-;37759:7;37788:5;37777:16;;37722:77;;;:::o;37805:149::-;37841:7;37881:66;37874:5;37870:78;37859:89;;37805:149;;;:::o;37960:126::-;37997:7;38037:42;38030:5;38026:54;38015:65;;37960:126;;;:::o;38092:77::-;38129:7;38158:5;38147:16;;38092:77;;;:::o;38175:86::-;38210:7;38250:4;38243:5;38239:16;38228:27;;38175:86;;;:::o;38267:307::-;38335:1;38345:113;38359:6;38356:1;38353:13;38345:113;;;38444:1;38439:3;38435:11;38429:18;38425:1;38420:3;38416:11;38409:39;38381:2;38378:1;38374:10;38369:15;;38345:113;;;38476:6;38473:1;38470:13;38467:101;;;38556:1;38547:6;38542:3;38538:16;38531:27;38467:101;38316:258;38267:307;;;:::o;38580:171::-;38619:3;38642:24;38660:5;38642:24;:::i;:::-;38633:33;;38688:4;38681:5;38678:15;38675:41;;;38696:18;;:::i;:::-;38675:41;38743:1;38736:5;38732:13;38725:20;;38580:171;;;:::o;38757:320::-;38801:6;38838:1;38832:4;38828:12;38818:22;;38885:1;38879:4;38875:12;38906:18;38896:81;;38962:4;38954:6;38950:17;38940:27;;38896:81;39024:2;39016:6;39013:14;38993:18;38990:38;38987:84;;;39043:18;;:::i;:::-;38987:84;38808:269;38757:320;;;:::o;39083:79::-;39122:7;39151:5;39140:16;;39083:79;;;:::o;39168:176::-;39200:1;39217:20;39235:1;39217:20;:::i;:::-;39212:25;;39251:20;39269:1;39251:20;:::i;:::-;39246:25;;39290:1;39280:35;;39295:18;;:::i;:::-;39280:35;39336:1;39333;39329:9;39324:14;;39168:176;;;;:::o;39350:180::-;39398:77;39395:1;39388:88;39495:4;39492:1;39485:15;39519:4;39516:1;39509:15;39536:180;39584:77;39581:1;39574:88;39681:4;39678:1;39671:15;39705:4;39702:1;39695:15;39722:180;39770:77;39767:1;39760:88;39867:4;39864:1;39857:15;39891:4;39888:1;39881:15;39908:180;39956:77;39953:1;39946:88;40053:4;40050:1;40043:15;40077:4;40074:1;40067:15;40094:180;40142:77;40139:1;40132:88;40239:4;40236:1;40229:15;40263:4;40260:1;40253:15;40280:180;40328:77;40325:1;40318:88;40425:4;40422:1;40415:15;40449:4;40446:1;40439:15;40589:117;40698:1;40695;40688:12;40712:102;40753:6;40804:2;40800:7;40795:2;40788:5;40784:14;40780:28;40770:38;;40712:102;;;:::o;40820:174::-;40960:26;40956:1;40948:6;40944:14;40937:50;40820:174;:::o;41000:179::-;41140:31;41136:1;41128:6;41124:14;41117:55;41000:179;:::o;41185:221::-;41325:34;41321:1;41313:6;41309:14;41302:58;41394:4;41389:2;41381:6;41377:15;41370:29;41185:221;:::o;41412:182::-;41552:34;41548:1;41540:6;41536:14;41529:58;41412:182;:::o;41600:222::-;41740:34;41736:1;41728:6;41724:14;41717:58;41809:5;41804:2;41796:6;41792:15;41785:30;41600:222;:::o;41828:170::-;41968:22;41964:1;41956:6;41952:14;41945:46;41828:170;:::o;42004:221::-;42144:34;42140:1;42132:6;42128:14;42121:58;42213:4;42208:2;42200:6;42196:15;42189:29;42004:221;:::o;42231:::-;42371:34;42367:1;42359:6;42355:14;42348:58;42440:4;42435:2;42427:6;42423:15;42416:29;42231:221;:::o;42458:222::-;42598:34;42594:1;42586:6;42582:14;42575:58;42667:5;42662:2;42654:6;42650:15;42643:30;42458:222;:::o;42686:214::-;42826:66;42822:1;42814:6;42810:14;42803:90;42686:214;:::o;42906:179::-;43046:31;43042:1;43034:6;43030:14;43023:55;42906:179;:::o;43091:225::-;43231:34;43227:1;43219:6;43215:14;43208:58;43300:8;43295:2;43287:6;43283:15;43276:33;43091:225;:::o;43322:221::-;43462:34;43458:1;43450:6;43446:14;43439:58;43531:4;43526:2;43518:6;43514:15;43507:29;43322:221;:::o;43549:::-;43689:34;43685:1;43677:6;43673:14;43666:58;43758:4;43753:2;43745:6;43741:15;43734:29;43549:221;:::o;43776:166::-;43916:18;43912:1;43904:6;43900:14;43893:42;43776:166;:::o;43948:221::-;44088:34;44084:1;44076:6;44072:14;44065:58;44157:4;44152:2;44144:6;44140:15;44133:29;43948:221;:::o;44175:180::-;44315:32;44311:1;44303:6;44299:14;44292:56;44175:180;:::o;44361:227::-;44501:34;44497:1;44489:6;44485:14;44478:58;44570:10;44565:2;44557:6;44553:15;44546:35;44361:227;:::o;44594:223::-;44734:34;44730:1;44722:6;44718:14;44711:58;44803:6;44798:2;44790:6;44786:15;44779:31;44594:223;:::o;44823:220::-;44963:34;44959:1;44951:6;44947:14;44940:58;45032:3;45027:2;45019:6;45015:15;45008:28;44823:220;:::o;45049:224::-;45189:34;45185:1;45177:6;45173:14;45166:58;45258:7;45253:2;45245:6;45241:15;45234:32;45049:224;:::o;45279:175::-;45419:27;45415:1;45407:6;45403:14;45396:51;45279:175;:::o;45460:223::-;45600:34;45596:1;45588:6;45584:14;45577:58;45669:6;45664:2;45656:6;45652:15;45645:31;45460:223;:::o;45689:172::-;45829:24;45825:1;45817:6;45813:14;45806:48;45689:172;:::o;45867:173::-;46007:25;46003:1;45995:6;45991:14;45984:49;45867:173;:::o;46046:224::-;46186:34;46182:1;46174:6;46170:14;46163:58;46255:7;46250:2;46242:6;46238:15;46231:32;46046:224;:::o;46276:167::-;46416:19;46412:1;46404:6;46400:14;46393:43;46276:167;:::o;46449:234::-;46589:34;46585:1;46577:6;46573:14;46566:58;46658:17;46653:2;46645:6;46641:15;46634:42;46449:234;:::o;46689:224::-;46829:34;46825:1;46817:6;46813:14;46806:58;46898:7;46893:2;46885:6;46881:15;46874:32;46689:224;:::o;46919:181::-;47059:33;47055:1;47047:6;47043:14;47036:57;46919:181;:::o;47106:229::-;47246:34;47242:1;47234:6;47230:14;47223:58;47315:12;47310:2;47302:6;47298:15;47291:37;47106:229;:::o;47341:122::-;47414:24;47432:5;47414:24;:::i;:::-;47407:5;47404:35;47394:63;;47453:1;47450;47443:12;47394:63;47341:122;:::o;47469:::-;47542:24;47560:5;47542:24;:::i;:::-;47535:5;47532:35;47522:63;;47581:1;47578;47571:12;47522:63;47469:122;:::o;47597:120::-;47669:23;47686:5;47669:23;:::i;:::-;47662:5;47659:34;47649:62;;47707:1;47704;47697:12;47649:62;47597:120;:::o;47723:122::-;47796:24;47814:5;47796:24;:::i;:::-;47789:5;47786:35;47776:63;;47835:1;47832;47825:12;47776:63;47723:122;:::o;47851:118::-;47922:22;47938:5;47922:22;:::i;:::-;47915:5;47912:33;47902:61;;47959:1;47956;47949:12;47902:61;47851:118;:::o

Swarm Source

ipfs://1cc5ad21dc4515eb8d951ef181e56766dd3fc7c37ba5db2f54f3f6bfc5b3cd1c
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.