POL Price: $0.301611 (-1.10%)
Gas: 30 GWei
 

Overview

Max Total Supply

3,959,350,859.335017895727972818 HON

Holders

1,357

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
HoneyWasp

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 19: HoneyWasp.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./Ownable.sol";
import "./Signature.sol";
import "./ERC20PresetMinterPauser.sol";

contract HoneyWasp is Signature, Ownable, ERC20PresetMinterPauser {
    
    mapping (address => uint) public claimByAddress;

    constructor() ERC20PresetMinterPauser("Honey Wasp", "HON") { 
        _mint(_msgSender(), 100000*10**18);

    }

    // input the getEthSignedHash results and the signature hash results
    // the output of this function will be the account number that signed the original message
    function claim(uint _amount, uint _nonce, bytes memory _signature) public returns (address) {
        address signer = verifySignature(_amount,  _nonce,  _signature);        
        require(signer == owner(), "Signer is not owner");
        uint amountWei = _amount * 1e18;
        _mint(_msgSender(), amountWei);
        claimByAddress[_msgSender()] += amountWei; 

        return signer;
    }
}    

File 1 of 19: AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _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]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    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 {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, 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 2 of 19: AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "./EnumerableSet.sol"; 

/**
 * @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(AccessControl, IAccessControl) {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

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

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        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 3 of 19: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 19: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

    /**
     * @dev Returns the number of values 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));
    }

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

        assembly {
            result := store
        }

        return result;
    }
}

File 5 of 19: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.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 6 of 19: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 7 of 19: ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Context.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");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 8 of 19: ERC20Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Pausable.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 9 of 19: ERC20PresetMinterPauser.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./ERC20Pausable.sol";
import "./AccessControlEnumerable.sol";
import "./Context.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 ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    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) ERC20(name, symbol) {
        _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()), "ERC20PresetMinterPauser: 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()), "ERC20PresetMinterPauser: 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()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

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

File 11 of 19: IAccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 12 of 19: IAccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControl.sol"; 

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

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

File 13 of 19: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 14 of 19: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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 15 of 19: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.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 16 of 19: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 17 of 19: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.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 18 of 19: Signature.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

contract Signature {
    
    mapping (uint => bool) usedNonces;

    constructor() { }

    // use this function to get the hash of any string
    function getHash(uint amount, uint nonce) public view returns (bytes32) {
        return keccak256(abi.encodePacked(msg.sender, amount, nonce, this));
    }
    
    // take the keccak256 hashed message from the getHash function above and input into this function
    // this function prefixes the hash above with \x19Ethereum signed message:\n32 + hash
    // and produces a new hash signature
    function getEthSignedHash(bytes32 _messageHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash));
    }
    
    function splitSignature(bytes memory sig) internal pure returns (bytes32 r, bytes32 s, uint8 v) {
        require(sig.length == 65, "invalid signature length");
        assembly {
            /*
            First 32 bytes stores the length of the signature

            add(sig, 32) = pointer of sig + 32
            effectively, skips first 32 bytes of signature

            mload(p) loads next 32 bytes starting at the memory address p into memory
            */

            // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
            // second 32 bytes
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }
    }

    // input the getEthSignedHash results and the signature hash results
    // the output of this function will be the account number that signed the original message
    function verifySignature(uint _argument, uint _nonce, bytes memory _signature) public returns (address) {
        require(!usedNonces[_nonce], "Nonce has already been used");
        usedNonces[_nonce] = true;

        bytes32 messageHash = getHash(_argument, _nonce);
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        bytes32 ethSignedMessageHash = getEthSignedHash(messageHash);
        address signer = ecrecover(ethSignedMessageHash, v, r, s);
        
        return signer;
    }

}    

File 19 of 19: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claim","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimByAddress","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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"getHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_argument","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"verifySignature","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f486f6e65792057617370000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f484f4e00000000000000000000000000000000000000000000000000000000008152508181620000a062000094620001c860201b60201c565b620001d060201b60201c565b8160079080519060200190620000b89291906200074e565b508060089080519060200190620000d19291906200074e565b5050506000600960006101000a81548160ff021916908315150217905550620001136000801b62000107620001c860201b60201c565b6200029660201b60201c565b620001547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a662000148620001c860201b60201c565b6200029660201b60201c565b620001957f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62000189620001c860201b60201c565b6200029660201b60201c565b5050620001c2620001ab620001c860201b60201c565b69152d02c7e14af6800000620002de60201b60201c565b62000a42565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ad82826200045860201b620014621760201c565b620002d981600360008581526020019081526020016000206200046e60201b620014701790919060201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000348906200085d565b60405180910390fd5b6200036560008383620004a660201b60201c565b8060066000828254620003799190620008cf565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003d19190620008cf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004389190620008a1565b60405180910390a36200045460008383620004c360201b60201c565b5050565b6200046a8282620004c860201b60201c565b5050565b60006200049e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620005ba60201b60201c565b905092915050565b620004be8383836200063460201b620014a01760201c565b505050565b505050565b620004da8282620006a460201b60201c565b620005b65760016002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200055b620001c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620005ce83836200070f60201b60201c565b620006295782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200062e565b600090505b92915050565b6200064c8383836200073260201b620014f81760201c565b6200065c6200073760201b60201c565b156200069f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000696906200087f565b60405180910390fd5b505050565b60006002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000600960009054906101000a900460ff16905090565b8280546200075c9062000936565b90600052602060002090601f016020900481019282620007805760008555620007cc565b82601f106200079b57805160ff1916838001178555620007cc565b82800160010185558215620007cc579182015b82811115620007cb578251825591602001919060010190620007ae565b5b509050620007db9190620007df565b5090565b5b80821115620007fa576000816000905550600101620007e0565b5090565b60006200080d601f83620008be565b91506200081a82620009ca565b602082019050919050565b600062000834602a83620008be565b91506200084182620009f3565b604082019050919050565b62000857816200092c565b82525050565b600060208201905081810360008301526200087881620007fe565b9050919050565b600060208201905081810360008301526200089a8162000825565b9050919050565b6000602082019050620008b860008301846200084c565b92915050565b600082825260208201905092915050565b6000620008dc826200092c565b9150620008e9836200092c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200092157620009206200096c565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200094f57607f821691505b602082108114156200096657620009656200099b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6140da8062000a526000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a457c2d7116100ad578063d547741f1161007c578063d547741f14610650578063d652846d1461066c578063dd62ed3e1461069c578063e63ab1e9146106cc578063f2fde38b146106ea57610211565b8063a457c2d7146105a2578063a9059cbb146105d2578063ca15c87314610602578063d53913931461063257610211565b80638da5cb5b116100f45780638da5cb5b146104e85780639010d07c1461050657806391d148541461053657806395d89b4114610566578063a217fddf1461058457610211565b806370a0823114610488578063715018a6146104b857806379cc6790146104c25780638456cb59146104de57610211565b8063313ce567116101a857806340c10f191161017757806340c10f19146103d257806342966c68146103ee5780635c975abb1461040a5780635eddd157146104285780635fa2d69a1461045857610211565b8063313ce5671461035e57806336568abe1461037c57806339509351146103985780633f4ba83a146103c857610211565b80631b855044116101e45780631b855044146102b257806323b872dd146102e2578063248a9ca3146103125780632f2ff15d1461034257610211565b806301ffc9a71461021657806306fdde0314610246578063095ea7b31461026457806318160ddd14610294575b600080fd5b610230600480360381019061022b9190612b80565b610706565b60405161023d9190613200565b60405180910390f35b61024e610780565b60405161025b919061327b565b60405180910390f35b61027e60048036038101906102799190612aa3565b610812565b60405161028b9190613200565b60405180910390f35b61029c610830565b6040516102a9919061359d565b60405180910390f35b6102cc60048036038101906102c79190612bd2565b61083a565b6040516102d9919061321b565b60405180910390f35b6102fc60048036038101906102f79190612a54565b610871565b6040516103099190613200565b60405180910390f35b61032c60048036038101906103279190612adf565b610969565b604051610339919061321b565b60405180910390f35b61035c60048036038101906103579190612b08565b610989565b005b6103666109bd565b60405161037391906135b8565b60405180910390f35b61039660048036038101906103919190612b08565b6109c6565b005b6103b260048036038101906103ad9190612aa3565b6109fa565b6040516103bf9190613200565b60405180910390f35b6103d0610aa6565b005b6103ec60048036038101906103e79190612aa3565b610b20565b005b61040860048036038101906104039190612ba9565b610b9e565b005b610412610bb2565b60405161041f9190613200565b60405180910390f35b610442600480360381019061043d9190612c0e565b610bc9565b60405161044f91906131e5565b60405180910390f35b610472600480360381019061046d9190612c0e565b610ce0565b60405161047f91906131e5565b60405180910390f35b6104a2600480360381019061049d91906129ef565b610dff565b6040516104af919061359d565b60405180910390f35b6104c0610e48565b005b6104dc60048036038101906104d79190612aa3565b610ed0565b005b6104e6610f4b565b005b6104f0610fc5565b6040516104fd91906131e5565b60405180910390f35b610520600480360381019061051b9190612b44565b610fef565b60405161052d91906131e5565b60405180910390f35b610550600480360381019061054b9190612b08565b61101e565b60405161055d9190613200565b60405180910390f35b61056e611089565b60405161057b919061327b565b60405180910390f35b61058c61111b565b604051610599919061321b565b60405180910390f35b6105bc60048036038101906105b79190612aa3565b611122565b6040516105c99190613200565b60405180910390f35b6105ec60048036038101906105e79190612aa3565b61120d565b6040516105f99190613200565b60405180910390f35b61061c60048036038101906106179190612adf565b61122b565b604051610629919061359d565b60405180910390f35b61063a61124f565b604051610647919061321b565b60405180910390f35b61066a60048036038101906106659190612b08565b611273565b005b610686600480360381019061068191906129ef565b6112a7565b604051610693919061359d565b60405180910390f35b6106b660048036038101906106b19190612a18565b6112bf565b6040516106c3919061359d565b60405180910390f35b6106d4611346565b6040516106e1919061321b565b60405180910390f35b61070460048036038101906106ff91906129ef565b61136a565b005b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107795750610778826114fd565b5b9050919050565b60606007805461078f9061384f565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb9061384f565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600061082661081f611577565b848461157f565b6001905092915050565b6000600654905090565b6000338383306040516020016108539493929190613137565b60405160208183030381529060405280519060200120905092915050565b600061087e84848461174a565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108c9611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610940906133bd565b60405180910390fd5b61095d85610955611577565b85840361157f565b60019150509392505050565b600060026000838152602001908152602001600020600101549050919050565b61099382826119ce565b6109b8816003600085815260200190815260200160002061147090919063ffffffff16565b505050565b60006012905090565b6109d082826119f7565b6109f58160036000858152602001908152602001600020611a7a90919063ffffffff16565b505050565b6000610a9c610a07611577565b848460056000610a15611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a979190613650565b61157f565b6001905092915050565b610ad77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ad2611577565b61101e565b610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061331d565b60405180910390fd5b610b1e611aaa565b565b610b517f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b4c611577565b61101e565b610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906133fd565b60405180910390fd5b610b9a8282611b4c565b5050565b610baf610ba9611577565b82611cad565b50565b6000600960009054906101000a900460ff16905090565b600080610bd7858585610ce0565b9050610be1610fc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c459061343d565b60405180910390fd5b6000670de0b6b3a764000086610c6491906136a6565b9050610c77610c71611577565b82611b4c565b80600a6000610c84611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ccd9190613650565b9250508190555081925050509392505050565b600080600084815260200190815260200160002060009054906101000a900460ff1615610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906134fd565b60405180910390fd5b600160008085815260200190815260200160002060006101000a81548160ff0219169083151502179055506000610d79858561083a565b90506000806000610d8986611e86565b9250925092506000610d9a85611eee565b9050600060018284878760405160008152602001604052604051610dc19493929190613236565b6020604051602081039080840390855afa158015610de3573d6000803e3d6000fd5b5050506020604051035190508096505050505050509392505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e50611577565b73ffffffffffffffffffffffffffffffffffffffff16610e6e610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906133dd565b60405180910390fd5b610ece6000611f1e565b565b6000610ee383610ede611577565b6112bf565b905081811015610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f9061341d565b60405180910390fd5b610f3c83610f34611577565b84840361157f565b610f468383611cad565b505050565b610f7c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f77611577565b61101e565b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906134bd565b60405180910390fd5b610fc3611fe4565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611016826003600086815260200190815260200160002061208790919063ffffffff16565b905092915050565b60006002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600880546110989061384f565b80601f01602080910402602001604051908101604052809291908181526020018280546110c49061384f565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b6000801b81565b60008060056000611131611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e59061351d565b60405180910390fd5b6112026111f9611577565b8585840361157f565b600191505092915050565b600061122161121a611577565b848461174a565b6001905092915050565b6000611248600360008481526020019081526020016000206120a1565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61127d82826120b6565b6112a28160036000858152602001908152602001600020611a7a90919063ffffffff16565b505050565b600a6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b611372611577565b73ffffffffffffffffffffffffffffffffffffffff16611390610fc5565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906133dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061333d565b60405180910390fd5b61145f81611f1e565b50565b61146c82826120df565b5050565b6000611498836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121c0565b905092915050565b6114ab8383836114f8565b6114b3610bb2565b156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea9061357d565b60405180910390fd5b505050565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611570575061156f82612230565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e69061349d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061335d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161173d919061359d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b19061347d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906132bd565b60405180910390fd5b61183583838361229a565b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b39061337d565b60405180910390fd5b818103600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119519190613650565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b5919061359d565b60405180910390a36119c88484846122aa565b50505050565b6119d782610969565b6119e8816119e3611577565b6122af565b6119f283836120df565b505050565b6119ff611577565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a639061353d565b60405180910390fd5b611a76828261234c565b5050565b6000611aa2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61242e565b905092915050565b611ab2610bb2565b611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae8906132dd565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b35611577565b604051611b4291906131e5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb39061355d565b60405180910390fd5b611bc86000838361229a565b8060066000828254611bda9190613650565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c309190613650565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c95919061359d565b60405180910390a3611ca9600083836122aa565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061345d565b60405180910390fd5b611d298260008361229a565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da7906132fd565b60405180910390fd5b818103600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160066000828254611e089190613700565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e6d919061359d565b60405180910390a3611e81836000846122aa565b505050565b60008060006041845114611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec6906134dd565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b600081604051602001611f019190613185565b604051602081830303815290604052805190602001209050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fec610bb2565b1561202c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120239061339d565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612070611577565b60405161207d91906131e5565b60405180910390a1565b600061209683600001836125b4565b60001c905092915050565b60006120af82600001612605565b9050919050565b6120bf82610969565b6120d0816120cb611577565b6122af565b6120da838361234c565b505050565b6120e9828261101e565b6121bc5760016002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612161611577565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006121cc8383612616565b61222557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061222a565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122a58383836114a0565b505050565b505050565b6122b9828261101e565b612348576122de8173ffffffffffffffffffffffffffffffffffffffff166014612639565b6122ec8360001c6020612639565b6040516020016122fd9291906131ab565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f919061327b565b60405180910390fd5b5050565b612356828261101e565b1561242a5760006002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506123cf611577565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146125a85760006001826124609190613700565b90506000600186600001805490506124789190613700565b90508181146125335760008660000182815481106124bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612509577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061256d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506125ae565b60009150505b92915050565b60008260000182815481106125f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60606000600283600261264c91906136a6565b6126569190613650565b67ffffffffffffffff811115612695577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126c75781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612725577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106127af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026127ef91906136a6565b6127f99190613650565b90505b60018111156128e5577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061289e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806128de90613825565b90506127fc565b5060008414612929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129209061329d565b60405180910390fd5b8091505092915050565b6000612946612941846135f8565b6135d3565b90508281526020810184848401111561295e57600080fd5b6129698482856137e3565b509392505050565b60008135905061298081614048565b92915050565b6000813590506129958161405f565b92915050565b6000813590506129aa81614076565b92915050565b600082601f8301126129c157600080fd5b81356129d1848260208601612933565b91505092915050565b6000813590506129e98161408d565b92915050565b600060208284031215612a0157600080fd5b6000612a0f84828501612971565b91505092915050565b60008060408385031215612a2b57600080fd5b6000612a3985828601612971565b9250506020612a4a85828601612971565b9150509250929050565b600080600060608486031215612a6957600080fd5b6000612a7786828701612971565b9350506020612a8886828701612971565b9250506040612a99868287016129da565b9150509250925092565b60008060408385031215612ab657600080fd5b6000612ac485828601612971565b9250506020612ad5858286016129da565b9150509250929050565b600060208284031215612af157600080fd5b6000612aff84828501612986565b91505092915050565b60008060408385031215612b1b57600080fd5b6000612b2985828601612986565b9250506020612b3a85828601612971565b9150509250929050565b60008060408385031215612b5757600080fd5b6000612b6585828601612986565b9250506020612b76858286016129da565b9150509250929050565b600060208284031215612b9257600080fd5b6000612ba08482850161299b565b91505092915050565b600060208284031215612bbb57600080fd5b6000612bc9848285016129da565b91505092915050565b60008060408385031215612be557600080fd5b6000612bf3858286016129da565b9250506020612c04858286016129da565b9150509250929050565b600080600060608486031215612c2357600080fd5b6000612c31868287016129da565b9350506020612c42868287016129da565b925050604084013567ffffffffffffffff811115612c5f57600080fd5b612c6b868287016129b0565b9150509250925092565b612c7e81613734565b82525050565b612c95612c9082613734565b6138b2565b82525050565b612ca481613746565b82525050565b612cb381613752565b82525050565b612cca612cc582613752565b6138c4565b82525050565b612ce1612cdc826137bf565b6138b2565b82525050565b6000612cf282613629565b612cfc8185613634565b9350612d0c8185602086016137f2565b612d1581613977565b840191505092915050565b6000612d2b82613629565b612d358185613645565b9350612d458185602086016137f2565b80840191505092915050565b6000612d5e602083613634565b9150612d6982613995565b602082019050919050565b6000612d81602383613634565b9150612d8c826139be565b604082019050919050565b6000612da4601483613634565b9150612daf82613a0d565b602082019050919050565b6000612dc7602283613634565b9150612dd282613a36565b604082019050919050565b6000612dea603983613634565b9150612df582613a85565b604082019050919050565b6000612e0d601c83613645565b9150612e1882613ad4565b601c82019050919050565b6000612e30602683613634565b9150612e3b82613afd565b604082019050919050565b6000612e53602283613634565b9150612e5e82613b4c565b604082019050919050565b6000612e76602683613634565b9150612e8182613b9b565b604082019050919050565b6000612e99601083613634565b9150612ea482613bea565b602082019050919050565b6000612ebc602883613634565b9150612ec782613c13565b604082019050919050565b6000612edf602083613634565b9150612eea82613c62565b602082019050919050565b6000612f02603683613634565b9150612f0d82613c8b565b604082019050919050565b6000612f25602483613634565b9150612f3082613cda565b604082019050919050565b6000612f48601383613634565b9150612f5382613d29565b602082019050919050565b6000612f6b602183613634565b9150612f7682613d52565b604082019050919050565b6000612f8e602583613634565b9150612f9982613da1565b604082019050919050565b6000612fb1602483613634565b9150612fbc82613df0565b604082019050919050565b6000612fd4603783613634565b9150612fdf82613e3f565b604082019050919050565b6000612ff7601783613645565b915061300282613e8e565b601782019050919050565b600061301a601883613634565b915061302582613eb7565b602082019050919050565b600061303d601b83613634565b915061304882613ee0565b602082019050919050565b6000613060602583613634565b915061306b82613f09565b604082019050919050565b6000613083601183613645565b915061308e82613f58565b601182019050919050565b60006130a6602f83613634565b91506130b182613f81565b604082019050919050565b60006130c9601f83613634565b91506130d482613fd0565b602082019050919050565b60006130ec602a83613634565b91506130f782613ff9565b604082019050919050565b61310b816137a8565b82525050565b61312261311d826137a8565b6138e0565b82525050565b613131816137b2565b82525050565b60006131438287612c84565b6014820191506131538286613111565b6020820191506131638285613111565b6020820191506131738284612cd0565b60148201915081905095945050505050565b600061319082612e00565b915061319c8284612cb9565b60208201915081905092915050565b60006131b682612fea565b91506131c28285612d20565b91506131cd82613076565b91506131d98284612d20565b91508190509392505050565b60006020820190506131fa6000830184612c75565b92915050565b60006020820190506132156000830184612c9b565b92915050565b60006020820190506132306000830184612caa565b92915050565b600060808201905061324b6000830187612caa565b6132586020830186613128565b6132656040830185612caa565b6132726060830184612caa565b95945050505050565b600060208201905081810360008301526132958184612ce7565b905092915050565b600060208201905081810360008301526132b681612d51565b9050919050565b600060208201905081810360008301526132d681612d74565b9050919050565b600060208201905081810360008301526132f681612d97565b9050919050565b6000602082019050818103600083015261331681612dba565b9050919050565b6000602082019050818103600083015261333681612ddd565b9050919050565b6000602082019050818103600083015261335681612e23565b9050919050565b6000602082019050818103600083015261337681612e46565b9050919050565b6000602082019050818103600083015261339681612e69565b9050919050565b600060208201905081810360008301526133b681612e8c565b9050919050565b600060208201905081810360008301526133d681612eaf565b9050919050565b600060208201905081810360008301526133f681612ed2565b9050919050565b6000602082019050818103600083015261341681612ef5565b9050919050565b6000602082019050818103600083015261343681612f18565b9050919050565b6000602082019050818103600083015261345681612f3b565b9050919050565b6000602082019050818103600083015261347681612f5e565b9050919050565b6000602082019050818103600083015261349681612f81565b9050919050565b600060208201905081810360008301526134b681612fa4565b9050919050565b600060208201905081810360008301526134d681612fc7565b9050919050565b600060208201905081810360008301526134f68161300d565b9050919050565b6000602082019050818103600083015261351681613030565b9050919050565b6000602082019050818103600083015261353681613053565b9050919050565b6000602082019050818103600083015261355681613099565b9050919050565b60006020820190508181036000830152613576816130bc565b9050919050565b60006020820190508181036000830152613596816130df565b9050919050565b60006020820190506135b26000830184613102565b92915050565b60006020820190506135cd6000830184613128565b92915050565b60006135dd6135ee565b90506135e98282613881565b919050565b6000604051905090565b600067ffffffffffffffff82111561361357613612613948565b5b61361c82613977565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061365b826137a8565b9150613666836137a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369b5761369a6138ea565b5b828201905092915050565b60006136b1826137a8565b91506136bc836137a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f5576136f46138ea565b5b828202905092915050565b600061370b826137a8565b9150613716836137a8565b925082821015613729576137286138ea565b5b828203905092915050565b600061373f82613788565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006137ca826137d1565b9050919050565b60006137dc82613788565b9050919050565b82818337600083830152505050565b60005b838110156138105780820151818401526020810190506137f5565b8381111561381f576000848401525b50505050565b6000613830826137a8565b91506000821415613844576138436138ea565b5b600182039050919050565b6000600282049050600182168061386757607f821691505b6020821081141561387b5761387a613919565b5b50919050565b61388a82613977565b810181811067ffffffffffffffff821117156138a9576138a8613948565b5b80604052505050565b60006138bd826138ce565b9050919050565b6000819050919050565b60006138d982613988565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f5369676e6572206973206e6f74206f776e657200000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f4e6f6e63652068617320616c7265616479206265656e20757365640000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61405181613734565b811461405c57600080fd5b50565b61406881613752565b811461407357600080fd5b50565b61407f8161375c565b811461408a57600080fd5b50565b614096816137a8565b81146140a157600080fd5b5056fea2646970667358221220ad1873f6777313f9994336883b8e85a917f2c26bfd7c161d4fbdb432e0cd481564736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a457c2d7116100ad578063d547741f1161007c578063d547741f14610650578063d652846d1461066c578063dd62ed3e1461069c578063e63ab1e9146106cc578063f2fde38b146106ea57610211565b8063a457c2d7146105a2578063a9059cbb146105d2578063ca15c87314610602578063d53913931461063257610211565b80638da5cb5b116100f45780638da5cb5b146104e85780639010d07c1461050657806391d148541461053657806395d89b4114610566578063a217fddf1461058457610211565b806370a0823114610488578063715018a6146104b857806379cc6790146104c25780638456cb59146104de57610211565b8063313ce567116101a857806340c10f191161017757806340c10f19146103d257806342966c68146103ee5780635c975abb1461040a5780635eddd157146104285780635fa2d69a1461045857610211565b8063313ce5671461035e57806336568abe1461037c57806339509351146103985780633f4ba83a146103c857610211565b80631b855044116101e45780631b855044146102b257806323b872dd146102e2578063248a9ca3146103125780632f2ff15d1461034257610211565b806301ffc9a71461021657806306fdde0314610246578063095ea7b31461026457806318160ddd14610294575b600080fd5b610230600480360381019061022b9190612b80565b610706565b60405161023d9190613200565b60405180910390f35b61024e610780565b60405161025b919061327b565b60405180910390f35b61027e60048036038101906102799190612aa3565b610812565b60405161028b9190613200565b60405180910390f35b61029c610830565b6040516102a9919061359d565b60405180910390f35b6102cc60048036038101906102c79190612bd2565b61083a565b6040516102d9919061321b565b60405180910390f35b6102fc60048036038101906102f79190612a54565b610871565b6040516103099190613200565b60405180910390f35b61032c60048036038101906103279190612adf565b610969565b604051610339919061321b565b60405180910390f35b61035c60048036038101906103579190612b08565b610989565b005b6103666109bd565b60405161037391906135b8565b60405180910390f35b61039660048036038101906103919190612b08565b6109c6565b005b6103b260048036038101906103ad9190612aa3565b6109fa565b6040516103bf9190613200565b60405180910390f35b6103d0610aa6565b005b6103ec60048036038101906103e79190612aa3565b610b20565b005b61040860048036038101906104039190612ba9565b610b9e565b005b610412610bb2565b60405161041f9190613200565b60405180910390f35b610442600480360381019061043d9190612c0e565b610bc9565b60405161044f91906131e5565b60405180910390f35b610472600480360381019061046d9190612c0e565b610ce0565b60405161047f91906131e5565b60405180910390f35b6104a2600480360381019061049d91906129ef565b610dff565b6040516104af919061359d565b60405180910390f35b6104c0610e48565b005b6104dc60048036038101906104d79190612aa3565b610ed0565b005b6104e6610f4b565b005b6104f0610fc5565b6040516104fd91906131e5565b60405180910390f35b610520600480360381019061051b9190612b44565b610fef565b60405161052d91906131e5565b60405180910390f35b610550600480360381019061054b9190612b08565b61101e565b60405161055d9190613200565b60405180910390f35b61056e611089565b60405161057b919061327b565b60405180910390f35b61058c61111b565b604051610599919061321b565b60405180910390f35b6105bc60048036038101906105b79190612aa3565b611122565b6040516105c99190613200565b60405180910390f35b6105ec60048036038101906105e79190612aa3565b61120d565b6040516105f99190613200565b60405180910390f35b61061c60048036038101906106179190612adf565b61122b565b604051610629919061359d565b60405180910390f35b61063a61124f565b604051610647919061321b565b60405180910390f35b61066a60048036038101906106659190612b08565b611273565b005b610686600480360381019061068191906129ef565b6112a7565b604051610693919061359d565b60405180910390f35b6106b660048036038101906106b19190612a18565b6112bf565b6040516106c3919061359d565b60405180910390f35b6106d4611346565b6040516106e1919061321b565b60405180910390f35b61070460048036038101906106ff91906129ef565b61136a565b005b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107795750610778826114fd565b5b9050919050565b60606007805461078f9061384f565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb9061384f565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600061082661081f611577565b848461157f565b6001905092915050565b6000600654905090565b6000338383306040516020016108539493929190613137565b60405160208183030381529060405280519060200120905092915050565b600061087e84848461174a565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108c9611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610940906133bd565b60405180910390fd5b61095d85610955611577565b85840361157f565b60019150509392505050565b600060026000838152602001908152602001600020600101549050919050565b61099382826119ce565b6109b8816003600085815260200190815260200160002061147090919063ffffffff16565b505050565b60006012905090565b6109d082826119f7565b6109f58160036000858152602001908152602001600020611a7a90919063ffffffff16565b505050565b6000610a9c610a07611577565b848460056000610a15611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a979190613650565b61157f565b6001905092915050565b610ad77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610ad2611577565b61101e565b610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061331d565b60405180910390fd5b610b1e611aaa565b565b610b517f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b4c611577565b61101e565b610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906133fd565b60405180910390fd5b610b9a8282611b4c565b5050565b610baf610ba9611577565b82611cad565b50565b6000600960009054906101000a900460ff16905090565b600080610bd7858585610ce0565b9050610be1610fc5565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c459061343d565b60405180910390fd5b6000670de0b6b3a764000086610c6491906136a6565b9050610c77610c71611577565b82611b4c565b80600a6000610c84611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ccd9190613650565b9250508190555081925050509392505050565b600080600084815260200190815260200160002060009054906101000a900460ff1615610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906134fd565b60405180910390fd5b600160008085815260200190815260200160002060006101000a81548160ff0219169083151502179055506000610d79858561083a565b90506000806000610d8986611e86565b9250925092506000610d9a85611eee565b9050600060018284878760405160008152602001604052604051610dc19493929190613236565b6020604051602081039080840390855afa158015610de3573d6000803e3d6000fd5b5050506020604051035190508096505050505050509392505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e50611577565b73ffffffffffffffffffffffffffffffffffffffff16610e6e610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906133dd565b60405180910390fd5b610ece6000611f1e565b565b6000610ee383610ede611577565b6112bf565b905081811015610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f9061341d565b60405180910390fd5b610f3c83610f34611577565b84840361157f565b610f468383611cad565b505050565b610f7c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f77611577565b61101e565b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906134bd565b60405180910390fd5b610fc3611fe4565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611016826003600086815260200190815260200160002061208790919063ffffffff16565b905092915050565b60006002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600880546110989061384f565b80601f01602080910402602001604051908101604052809291908181526020018280546110c49061384f565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b6000801b81565b60008060056000611131611577565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e59061351d565b60405180910390fd5b6112026111f9611577565b8585840361157f565b600191505092915050565b600061122161121a611577565b848461174a565b6001905092915050565b6000611248600360008481526020019081526020016000206120a1565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61127d82826120b6565b6112a28160036000858152602001908152602001600020611a7a90919063ffffffff16565b505050565b600a6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b611372611577565b73ffffffffffffffffffffffffffffffffffffffff16611390610fc5565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906133dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061333d565b60405180910390fd5b61145f81611f1e565b50565b61146c82826120df565b5050565b6000611498836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121c0565b905092915050565b6114ab8383836114f8565b6114b3610bb2565b156114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea9061357d565b60405180910390fd5b505050565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611570575061156f82612230565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e69061349d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061335d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161173d919061359d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b19061347d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906132bd565b60405180910390fd5b61183583838361229a565b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b39061337d565b60405180910390fd5b818103600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119519190613650565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b5919061359d565b60405180910390a36119c88484846122aa565b50505050565b6119d782610969565b6119e8816119e3611577565b6122af565b6119f283836120df565b505050565b6119ff611577565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a639061353d565b60405180910390fd5b611a76828261234c565b5050565b6000611aa2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61242e565b905092915050565b611ab2610bb2565b611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae8906132dd565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b35611577565b604051611b4291906131e5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb39061355d565b60405180910390fd5b611bc86000838361229a565b8060066000828254611bda9190613650565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c309190613650565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c95919061359d565b60405180910390a3611ca9600083836122aa565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061345d565b60405180910390fd5b611d298260008361229a565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da7906132fd565b60405180910390fd5b818103600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160066000828254611e089190613700565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e6d919061359d565b60405180910390a3611e81836000846122aa565b505050565b60008060006041845114611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec6906134dd565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b600081604051602001611f019190613185565b604051602081830303815290604052805190602001209050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fec610bb2565b1561202c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120239061339d565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612070611577565b60405161207d91906131e5565b60405180910390a1565b600061209683600001836125b4565b60001c905092915050565b60006120af82600001612605565b9050919050565b6120bf82610969565b6120d0816120cb611577565b6122af565b6120da838361234c565b505050565b6120e9828261101e565b6121bc5760016002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612161611577565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006121cc8383612616565b61222557826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061222a565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122a58383836114a0565b505050565b505050565b6122b9828261101e565b612348576122de8173ffffffffffffffffffffffffffffffffffffffff166014612639565b6122ec8360001c6020612639565b6040516020016122fd9291906131ab565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f919061327b565b60405180910390fd5b5050565b612356828261101e565b1561242a5760006002600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506123cf611577565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146125a85760006001826124609190613700565b90506000600186600001805490506124789190613700565b90508181146125335760008660000182815481106124bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612509577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061256d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506125ae565b60009150505b92915050565b60008260000182815481106125f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60606000600283600261264c91906136a6565b6126569190613650565b67ffffffffffffffff811115612695577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126c75781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612725577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106127af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026127ef91906136a6565b6127f99190613650565b90505b60018111156128e5577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061289e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806128de90613825565b90506127fc565b5060008414612929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129209061329d565b60405180910390fd5b8091505092915050565b6000612946612941846135f8565b6135d3565b90508281526020810184848401111561295e57600080fd5b6129698482856137e3565b509392505050565b60008135905061298081614048565b92915050565b6000813590506129958161405f565b92915050565b6000813590506129aa81614076565b92915050565b600082601f8301126129c157600080fd5b81356129d1848260208601612933565b91505092915050565b6000813590506129e98161408d565b92915050565b600060208284031215612a0157600080fd5b6000612a0f84828501612971565b91505092915050565b60008060408385031215612a2b57600080fd5b6000612a3985828601612971565b9250506020612a4a85828601612971565b9150509250929050565b600080600060608486031215612a6957600080fd5b6000612a7786828701612971565b9350506020612a8886828701612971565b9250506040612a99868287016129da565b9150509250925092565b60008060408385031215612ab657600080fd5b6000612ac485828601612971565b9250506020612ad5858286016129da565b9150509250929050565b600060208284031215612af157600080fd5b6000612aff84828501612986565b91505092915050565b60008060408385031215612b1b57600080fd5b6000612b2985828601612986565b9250506020612b3a85828601612971565b9150509250929050565b60008060408385031215612b5757600080fd5b6000612b6585828601612986565b9250506020612b76858286016129da565b9150509250929050565b600060208284031215612b9257600080fd5b6000612ba08482850161299b565b91505092915050565b600060208284031215612bbb57600080fd5b6000612bc9848285016129da565b91505092915050565b60008060408385031215612be557600080fd5b6000612bf3858286016129da565b9250506020612c04858286016129da565b9150509250929050565b600080600060608486031215612c2357600080fd5b6000612c31868287016129da565b9350506020612c42868287016129da565b925050604084013567ffffffffffffffff811115612c5f57600080fd5b612c6b868287016129b0565b9150509250925092565b612c7e81613734565b82525050565b612c95612c9082613734565b6138b2565b82525050565b612ca481613746565b82525050565b612cb381613752565b82525050565b612cca612cc582613752565b6138c4565b82525050565b612ce1612cdc826137bf565b6138b2565b82525050565b6000612cf282613629565b612cfc8185613634565b9350612d0c8185602086016137f2565b612d1581613977565b840191505092915050565b6000612d2b82613629565b612d358185613645565b9350612d458185602086016137f2565b80840191505092915050565b6000612d5e602083613634565b9150612d6982613995565b602082019050919050565b6000612d81602383613634565b9150612d8c826139be565b604082019050919050565b6000612da4601483613634565b9150612daf82613a0d565b602082019050919050565b6000612dc7602283613634565b9150612dd282613a36565b604082019050919050565b6000612dea603983613634565b9150612df582613a85565b604082019050919050565b6000612e0d601c83613645565b9150612e1882613ad4565b601c82019050919050565b6000612e30602683613634565b9150612e3b82613afd565b604082019050919050565b6000612e53602283613634565b9150612e5e82613b4c565b604082019050919050565b6000612e76602683613634565b9150612e8182613b9b565b604082019050919050565b6000612e99601083613634565b9150612ea482613bea565b602082019050919050565b6000612ebc602883613634565b9150612ec782613c13565b604082019050919050565b6000612edf602083613634565b9150612eea82613c62565b602082019050919050565b6000612f02603683613634565b9150612f0d82613c8b565b604082019050919050565b6000612f25602483613634565b9150612f3082613cda565b604082019050919050565b6000612f48601383613634565b9150612f5382613d29565b602082019050919050565b6000612f6b602183613634565b9150612f7682613d52565b604082019050919050565b6000612f8e602583613634565b9150612f9982613da1565b604082019050919050565b6000612fb1602483613634565b9150612fbc82613df0565b604082019050919050565b6000612fd4603783613634565b9150612fdf82613e3f565b604082019050919050565b6000612ff7601783613645565b915061300282613e8e565b601782019050919050565b600061301a601883613634565b915061302582613eb7565b602082019050919050565b600061303d601b83613634565b915061304882613ee0565b602082019050919050565b6000613060602583613634565b915061306b82613f09565b604082019050919050565b6000613083601183613645565b915061308e82613f58565b601182019050919050565b60006130a6602f83613634565b91506130b182613f81565b604082019050919050565b60006130c9601f83613634565b91506130d482613fd0565b602082019050919050565b60006130ec602a83613634565b91506130f782613ff9565b604082019050919050565b61310b816137a8565b82525050565b61312261311d826137a8565b6138e0565b82525050565b613131816137b2565b82525050565b60006131438287612c84565b6014820191506131538286613111565b6020820191506131638285613111565b6020820191506131738284612cd0565b60148201915081905095945050505050565b600061319082612e00565b915061319c8284612cb9565b60208201915081905092915050565b60006131b682612fea565b91506131c28285612d20565b91506131cd82613076565b91506131d98284612d20565b91508190509392505050565b60006020820190506131fa6000830184612c75565b92915050565b60006020820190506132156000830184612c9b565b92915050565b60006020820190506132306000830184612caa565b92915050565b600060808201905061324b6000830187612caa565b6132586020830186613128565b6132656040830185612caa565b6132726060830184612caa565b95945050505050565b600060208201905081810360008301526132958184612ce7565b905092915050565b600060208201905081810360008301526132b681612d51565b9050919050565b600060208201905081810360008301526132d681612d74565b9050919050565b600060208201905081810360008301526132f681612d97565b9050919050565b6000602082019050818103600083015261331681612dba565b9050919050565b6000602082019050818103600083015261333681612ddd565b9050919050565b6000602082019050818103600083015261335681612e23565b9050919050565b6000602082019050818103600083015261337681612e46565b9050919050565b6000602082019050818103600083015261339681612e69565b9050919050565b600060208201905081810360008301526133b681612e8c565b9050919050565b600060208201905081810360008301526133d681612eaf565b9050919050565b600060208201905081810360008301526133f681612ed2565b9050919050565b6000602082019050818103600083015261341681612ef5565b9050919050565b6000602082019050818103600083015261343681612f18565b9050919050565b6000602082019050818103600083015261345681612f3b565b9050919050565b6000602082019050818103600083015261347681612f5e565b9050919050565b6000602082019050818103600083015261349681612f81565b9050919050565b600060208201905081810360008301526134b681612fa4565b9050919050565b600060208201905081810360008301526134d681612fc7565b9050919050565b600060208201905081810360008301526134f68161300d565b9050919050565b6000602082019050818103600083015261351681613030565b9050919050565b6000602082019050818103600083015261353681613053565b9050919050565b6000602082019050818103600083015261355681613099565b9050919050565b60006020820190508181036000830152613576816130bc565b9050919050565b60006020820190508181036000830152613596816130df565b9050919050565b60006020820190506135b26000830184613102565b92915050565b60006020820190506135cd6000830184613128565b92915050565b60006135dd6135ee565b90506135e98282613881565b919050565b6000604051905090565b600067ffffffffffffffff82111561361357613612613948565b5b61361c82613977565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061365b826137a8565b9150613666836137a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369b5761369a6138ea565b5b828201905092915050565b60006136b1826137a8565b91506136bc836137a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f5576136f46138ea565b5b828202905092915050565b600061370b826137a8565b9150613716836137a8565b925082821015613729576137286138ea565b5b828203905092915050565b600061373f82613788565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006137ca826137d1565b9050919050565b60006137dc82613788565b9050919050565b82818337600083830152505050565b60005b838110156138105780820151818401526020810190506137f5565b8381111561381f576000848401525b50505050565b6000613830826137a8565b91506000821415613844576138436138ea565b5b600182039050919050565b6000600282049050600182168061386757607f821691505b6020821081141561387b5761387a613919565b5b50919050565b61388a82613977565b810181811067ffffffffffffffff821117156138a9576138a8613948565b5b80604052505050565b60006138bd826138ce565b9050919050565b6000819050919050565b60006138d982613988565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f5369676e6572206973206e6f74206f776e657200000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f4e6f6e63652068617320616c7265616479206265656e20757365640000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61405181613734565b811461405c57600080fd5b50565b61406881613752565b811461407357600080fd5b50565b61407f8161375c565b811461408a57600080fd5b50565b614096816137a8565b81146140a157600080fd5b5056fea2646970667358221220ad1873f6777313f9994336883b8e85a917f2c26bfd7c161d4fbdb432e0cd481564736f6c63430008040033

Deployed Bytecode Sourcemap

155:835:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535:212:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2123:100:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4290:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3243:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;215:158:17;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4941:492:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3882:121:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1862:193:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3085:93:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2431:202:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5842:215:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2391:175:7;;;:::i;:::-;;1610:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;473:89:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1034:84:16;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;583:404:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1761:523:17;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3414:127:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:15;;;:::i;:::-;;868:361:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2015:169:7;;;:::i;:::-;;999:87:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1332:143:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2799:137:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2342:104:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1917:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6560:413:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3754:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1643:132:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;877:62:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2143:198:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;234:47:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3992:151:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;945:62:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:15;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;535:212:1;620:4;658:42;643:57;;;:11;:57;;;;:97;;;;704:36;728:11;704:23;:36::i;:::-;643:97;636:104;;535:212;;;:::o;2123:100:4:-;2177:13;2210:5;2203:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2123:100;:::o;4290:169::-;4373:4;4390:39;4399:12;:10;:12::i;:::-;4413:7;4422:6;4390:8;:39::i;:::-;4447:4;4440:11;;4290:169;;;;:::o;3243:108::-;3304:7;3331:12;;3324:19;;3243:108;:::o;215:158:17:-;278:7;332:10;344:6;352:5;359:4;315:49;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;305:60;;;;;;298:67;;215:158;;;;:::o;4941:492:4:-;5081:4;5098:36;5108:6;5116:9;5127:6;5098:9;:36::i;:::-;5147:24;5174:11;:19;5186:6;5174:19;;;;;;;;;;;;;;;:33;5194:12;:10;:12::i;:::-;5174:33;;;;;;;;;;;;;;;;5147:60;;5246:6;5226:16;:26;;5218:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5333:57;5342:6;5350:12;:10;:12::i;:::-;5383:6;5364:16;:25;5333:8;:57::i;:::-;5421:4;5414:11;;;4941:492;;;;;:::o;3882:121:0:-;3948:7;3974:6;:12;3981:4;3974:12;;;;;;;;;;;:22;;;3967:29;;3882:121;;;:::o;1862:193:1:-;1977:30;1993:4;1999:7;1977:15;:30::i;:::-;2017:31;2040:7;2017:12;:18;2030:4;2017:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;1862:193;;:::o;3085:93:4:-;3143:5;3168:2;3161:9;;3085:93;:::o;2431:202:1:-;2549:33;2568:4;2574:7;2549:18;:33::i;:::-;2592:34;2618:7;2592:12;:18;2605:4;2592:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2431:202;;:::o;5842:215:4:-;5930:4;5947:80;5956:12;:10;:12::i;:::-;5970:7;6016:10;5979:11;:25;5991:12;:10;:12::i;:::-;5979:25;;;;;;;;;;;;;;;:34;6005:7;5979:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5947:8;:80::i;:::-;6045:4;6038:11;;5842:215;;;;:::o;2391:175:7:-;2443:34;983:24;2464:12;:10;:12::i;:::-;2443:7;:34::i;:::-;2435:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;2549:10;:8;:10::i;:::-;2391:175::o;1610:202::-;1685:34;915:24;1706:12;:10;:12::i;:::-;1685:7;:34::i;:::-;1677:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;1788:17;1794:2;1798:6;1788:5;:17::i;:::-;1610:202;;:::o;473:89:5:-;528:27;534:12;:10;:12::i;:::-;548:6;528:5;:27::i;:::-;473:89;:::o;1034:84:16:-;1081:4;1104:7;;;;;;;;;;;1097:14;;1034:84;:::o;583:404:9:-;666:7;686:14;703:46;719:7;729:6;738:10;703:15;:46::i;:::-;686:63;;786:7;:5;:7::i;:::-;776:17;;:6;:17;;;768:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;828:14;855:4;845:7;:14;;;;:::i;:::-;828:31;;870:30;876:12;:10;:12::i;:::-;890:9;870:5;:30::i;:::-;943:9;911:14;:28;926:12;:10;:12::i;:::-;911:28;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;973:6;966:13;;;;583:404;;;;;:::o;1761:523:17:-;1856:7;1885:10;:18;1896:6;1885:18;;;;;;;;;;;;;;;;;;;;;1884:19;1876:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1967:4;1946:10;:18;1957:6;1946:18;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1984:19;2006:26;2014:9;2025:6;2006:7;:26::i;:::-;1984:48;;2044:9;2055;2066:7;2077:26;2092:10;2077:14;:26::i;:::-;2043:60;;;;;;2114:28;2145:29;2162:11;2145:16;:29::i;:::-;2114:60;;2185:14;2202:40;2212:20;2234:1;2237;2240;2202:40;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185:57;;2270:6;2263:13;;;;;;;;1761:523;;;;;:::o;3414:127:4:-;3488:7;3515:9;:18;3525:7;3515:18;;;;;;;;;;;;;;;;3508:25;;3414:127;;;:::o;1650:94:15:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;868:361:5:-;944:24;971:32;981:7;990:12;:10;:12::i;:::-;971:9;:32::i;:::-;944:59;;1041:6;1021:16;:26;;1013:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1122:58;1131:7;1140:12;:10;:12::i;:::-;1173:6;1154:16;:25;1122:8;:58::i;:::-;1200:22;1206:7;1215:6;1200:5;:22::i;:::-;868:361;;;:::o;2015:169:7:-;2065:34;983:24;2086:12;:10;:12::i;:::-;2065:7;:34::i;:::-;2057:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;2169:8;:6;:8::i;:::-;2015:169::o;999:87:15:-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;1332:143:1:-;1414:7;1440:28;1462:5;1440:12;:18;1453:4;1440:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1433:35;;1332:143;;;;:::o;2799:137:0:-;2877:4;2900:6;:12;2907:4;2900:12;;;;;;;;;;;:20;;:29;2921:7;2900:29;;;;;;;;;;;;;;;;;;;;;;;;;2893:36;;2799:137;;;;:::o;2342:104:4:-;2398:13;2431:7;2424:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2342:104;:::o;1917:49:0:-;1962:4;1917:49;;;:::o;6560:413:4:-;6653:4;6670:24;6697:11;:25;6709:12;:10;:12::i;:::-;6697:25;;;;;;;;;;;;;;;:34;6723:7;6697:34;;;;;;;;;;;;;;;;6670:61;;6770:15;6750:16;:35;;6742:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6863:67;6872:12;:10;:12::i;:::-;6886:7;6914:15;6895:16;:34;6863:8;:67::i;:::-;6961:4;6954:11;;;6560:413;;;;:::o;3754:175::-;3840:4;3857:42;3867:12;:10;:12::i;:::-;3881:9;3892:6;3857:9;:42::i;:::-;3917:4;3910:11;;3754:175;;;;:::o;1643:132:1:-;1715:7;1741:27;:12;:18;1754:4;1741:18;;;;;;;;;;;:25;:27::i;:::-;1734:34;;1643:132;;;:::o;877:62:7:-;915:24;877:62;:::o;2143:198:1:-;2259:31;2276:4;2282:7;2259:16;:31::i;:::-;2300:34;2326:7;2300:12;:18;2313:4;2300:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2143:198;;:::o;234:47:9:-;;;;;;;;;;;;;;;;;:::o;3992:151:4:-;4081:7;4108:11;:18;4120:5;4108:18;;;;;;;;;;;;;;;:27;4127:7;4108:27;;;;;;;;;;;;;;;;4101:34;;3992:151;;;;:::o;945:62:7:-;983:24;945:62;:::o;1899:192:15:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;6049:110:0:-;6127:25;6138:4;6144:7;6127:10;:25::i;:::-;6049:110;;:::o;7545:150:8:-;7615:4;7638:50;7643:3;:10;;7679:5;7663:23;;7655:32;;7638:4;:50::i;:::-;7631:57;;7545:150;;;;:::o;572:264:6:-;710:44;737:4;743:2;747:6;710:26;:44::i;:::-;774:8;:6;:8::i;:::-;773:9;765:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;572:264;;;:::o;11224:125:4:-;;;;:::o;2510:202:0:-;2595:4;2633:32;2618:47;;;:11;:47;;;;:87;;;;2669:36;2693:11;2669:23;:36::i;:::-;2618:87;2611:94;;2510:202;;;:::o;602:98:2:-;655:7;682:10;675:17;;602:98;:::o;10244:380:4:-;10397:1;10380:19;;:5;:19;;;;10372:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10478:1;10459:21;;:7;:21;;;;10451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10562:6;10532:11;:18;10544:5;10532:18;;;;;;;;;;;;;;;:27;10551:7;10532:27;;;;;;;;;;;;;;;:36;;;;10600:7;10584:32;;10593:5;10584:32;;;10609:6;10584:32;;;;;;:::i;:::-;;;;;;;;10244:380;;;:::o;7463:733::-;7621:1;7603:20;;:6;:20;;;;7595:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7705:1;7684:23;;:9;:23;;;;7676:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7760:47;7781:6;7789:9;7800:6;7760:20;:47::i;:::-;7820:21;7844:9;:17;7854:6;7844:17;;;;;;;;;;;;;;;;7820:41;;7897:6;7880:13;:23;;7872:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;8018:6;8002:13;:22;7982:9;:17;7992:6;7982:17;;;;;;;;;;;;;;;:42;;;;8070:6;8046:9;:20;8056:9;8046:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8111:9;8094:35;;8103:6;8094:35;;;8122:6;8094:35;;;;;;:::i;:::-;;;;;;;;8142:46;8162:6;8170:9;8181:6;8142:19;:46::i;:::-;7463:733;;;;:::o;4253:145:0:-;4336:18;4349:4;4336:12;:18::i;:::-;2395:30;2406:4;2412:12;:10;:12::i;:::-;2395:10;:30::i;:::-;4366:25:::1;4377:4;4383:7;4366:10;:25::i;:::-;4253:145:::0;;;:::o;5270:214::-;5376:12;:10;:12::i;:::-;5365:23;;:7;:23;;;5357:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5451:26;5463:4;5469:7;5451:11;:26::i;:::-;5270:214;;:::o;7863:156:8:-;7936:4;7959:53;7967:3;:10;;8003:5;7987:23;;7979:32;;7959:7;:53::i;:::-;7952:60;;7863:156;;;;:::o;2046:117:16:-;1613:8;:6;:8::i;:::-;1605:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2114:5:::1;2104:7;;:15;;;;;;;;;;;;;;;;;;2134:22;2143:12;:10;:12::i;:::-;2134:22;;;;;;:::i;:::-;;;;;;;;2046:117::o:0;8483:399:4:-;8586:1;8567:21;;:7;:21;;;;8559:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8637:49;8666:1;8670:7;8679:6;8637:20;:49::i;:::-;8715:6;8699:12;;:22;;;;;;;:::i;:::-;;;;;;;;8754:6;8732:9;:18;8742:7;8732:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8797:7;8776:37;;8793:1;8776:37;;;8806:6;8776:37;;;;;;:::i;:::-;;;;;;;;8826:48;8854:1;8858:7;8867:6;8826:19;:48::i;:::-;8483:399;;:::o;9215:591::-;9318:1;9299:21;;:7;:21;;;;9291:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9371:49;9392:7;9409:1;9413:6;9371:20;:49::i;:::-;9433:22;9458:9;:18;9468:7;9458:18;;;;;;;;;;;;;;;;9433:43;;9513:6;9495:14;:24;;9487:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9632:6;9615:14;:23;9594:9;:18;9604:7;9594:18;;;;;;;;;;;;;;;:44;;;;9676:6;9660:12;;:22;;;;;;;:::i;:::-;;;;;;;;9726:1;9700:37;;9709:7;9700:37;;;9730:6;9700:37;;;;;;:::i;:::-;;;;;;;;9750:48;9770:7;9787:1;9791:6;9750:19;:48::i;:::-;9215:591;;;:::o;816:767:17:-;881:9;892;903:7;945:2;931:3;:10;:16;923:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1383:2;1378:3;1374:12;1368:19;1363:24;;1453:2;1448:3;1444:12;1438:19;1433:24;;1560:2;1555:3;1551:12;1545:19;1542:1;1537:28;1532:33;;996:580;;;;;:::o;621:183::-;692:7;782:12;729:66;;;;;;;;:::i;:::-;;;;;;;;;;;;;719:77;;;;;;712:84;;621:183;;;:::o;2099:173:15:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2099:173;;:::o;1799:115:16:-;1348:8;:6;:8::i;:::-;1347:9;1339:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1868:4:::1;1858:7;;:14;;;;;;;;;;;;;;;;;;1887:20;1894:12;:10;:12::i;:::-;1887:20;;;;;;:::i;:::-;;;;;;;;1799:115::o:0;8803:156:8:-;8877:7;8927:22;8931:3;:10;;8943:5;8927:3;:22::i;:::-;8919:31;;8896:56;;8803:156;;;;:::o;8346:115::-;8409:7;8435:19;8443:3;:10;;8435:7;:19::i;:::-;8428:26;;8346:115;;;:::o;4632:147:0:-;4716:18;4729:4;4716:12;:18::i;:::-;2395:30;2406:4;2412:12;:10;:12::i;:::-;2395:10;:30::i;:::-;4746:26:::1;4758:4;4764:7;4746:11;:26::i;:::-;4632:147:::0;;;:::o;6537:224::-;6611:22;6619:4;6625:7;6611;:22::i;:::-;6606:149;;6681:4;6649:6;:12;6656:4;6649:12;;;;;;;;;;;:20;;:29;6670:7;6649:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;6731:12;:10;:12::i;:::-;6704:40;;6722:7;6704:40;;6716:4;6704:40;;;;;;;;;;6606:149;6537:224;;:::o;1630:404:8:-;1693:4;1714:21;1724:3;1729:5;1714:9;:21::i;:::-;1709:319;;1751:3;:11;;1768:5;1751:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1931:3;:11;;:18;;;;1909:3;:12;;:19;1922:5;1909:19;;;;;;;;;;;:40;;;;1970:4;1963:11;;;;1709:319;2012:5;2005:12;;1630:404;;;;;:::o;764:155:3:-;849:4;887:25;872:40;;;:11;:40;;;;865:47;;764:155;;;:::o;2572:211:7:-;2732:44;2759:4;2765:2;2769:6;2732:26;:44::i;:::-;2572:211;;;:::o;11953:124:4:-;;;;:::o;3217:484:0:-;3297:22;3305:4;3311:7;3297;:22::i;:::-;3292:403;;3480:41;3508:7;3480:41;;3518:2;3480:19;:41::i;:::-;3592:38;3620:4;3612:13;;3627:2;3592:19;:38::i;:::-;3387:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3335:349;;;;;;;;;;;:::i;:::-;;;;;;;;3292:403;3217:484;;:::o;6767:225::-;6841:22;6849:4;6855:7;6841;:22::i;:::-;6837:149;;;6911:5;6879:6;:12;6886:4;6879:12;;;;;;;;;;;:20;;:29;6900:7;6879:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;6962:12;:10;:12::i;:::-;6935:40;;6953:7;6935:40;;6947:4;6935:40;;;;;;;;;;6837:149;6767:225;;:::o;2202:1388:8:-;2268:4;2384:18;2405:3;:12;;:19;2418:5;2405:19;;;;;;;;;;;;2384:40;;2453:1;2439:10;:15;2435:1149;;2808:21;2845:1;2832:10;:14;;;;:::i;:::-;2808:38;;2860:17;2901:1;2880:3;:11;;:18;;;;:22;;;;:::i;:::-;2860:42;;2934:13;2921:9;:26;2917:398;;2967:17;2987:3;:11;;2999:9;2987:22;;;;;;;;;;;;;;;;;;;;;;;;2967:42;;3138:9;3109:3;:11;;3121:13;3109:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3247:10;3221:3;:12;;:23;3234:9;3221:23;;;;;;;;;;;:36;;;;2917:398;;3393:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3485:3;:12;;:19;3498:5;3485:19;;;;;;;;;;;3478:26;;;3526:4;3519:11;;;;;;;2435:1149;3568:5;3561:12;;;2202:1388;;;;;:::o;4328:118::-;4395:7;4421:3;:11;;4433:5;4421:18;;;;;;;;;;;;;;;;;;;;;;;;4414:25;;4328:118;;;;:::o;3879:107::-;3935:7;3961:3;:11;;:18;;;;3954:25;;3879:107;;;:::o;3671:127::-;3744:4;3790:1;3767:3;:12;;:19;3780:5;3767:19;;;;;;;;;;;;:24;;3760:31;;3671:127;;;;:::o;1535:441:18:-;1610:13;1635:19;1680:1;1671:6;1667:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1657:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635:47;;1692:15;:6;1699:1;1692:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1717;:6;1724:1;1717:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1747:9;1772:1;1763:6;1759:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1747:26;;1742:132;1779:1;1775;:5;1742:132;;;1813:12;1834:3;1826:5;:11;1813:25;;;;;;;;;;;;;;;;;;1801:6;1808:1;1801:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;1862:1;1852:11;;;;;1782:3;;;;:::i;:::-;;;1742:132;;;;1900:1;1891:5;:10;1883:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1962:6;1948:21;;;1535:441;;;;:::o;7:343:19:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:139::-;547:5;585:6;572:20;563:29;;601:33;628:5;601:33;:::i;:::-;553:87;;;;:::o;646:137::-;691:5;729:6;716:20;707:29;;745:32;771:5;745:32;:::i;:::-;697:86;;;;:::o;802:271::-;857:5;906:3;899:4;891:6;887:17;883:27;873:2;;924:1;921;914:12;873:2;964:6;951:20;989:78;1063:3;1055:6;1048:4;1040:6;1036:17;989:78;:::i;:::-;980:87;;863:210;;;;;:::o;1079:139::-;1125:5;1163:6;1150:20;1141:29;;1179:33;1206:5;1179:33;:::i;:::-;1131:87;;;;:::o;1224:262::-;1283:6;1332:2;1320:9;1311:7;1307:23;1303:32;1300:2;;;1348:1;1345;1338:12;1300:2;1391:1;1416:53;1461:7;1452:6;1441:9;1437:22;1416:53;:::i;:::-;1406:63;;1362:117;1290:196;;;;:::o;1492:407::-;1560:6;1568;1617:2;1605:9;1596:7;1592:23;1588:32;1585:2;;;1633:1;1630;1623:12;1585:2;1676:1;1701:53;1746:7;1737:6;1726:9;1722:22;1701:53;:::i;:::-;1691:63;;1647:117;1803:2;1829:53;1874:7;1865:6;1854:9;1850:22;1829:53;:::i;:::-;1819:63;;1774:118;1575:324;;;;;:::o;1905:552::-;1982:6;1990;1998;2047:2;2035:9;2026:7;2022:23;2018:32;2015:2;;;2063:1;2060;2053:12;2015:2;2106:1;2131:53;2176:7;2167:6;2156:9;2152:22;2131:53;:::i;:::-;2121:63;;2077:117;2233:2;2259:53;2304:7;2295:6;2284:9;2280:22;2259:53;:::i;:::-;2249:63;;2204:118;2361:2;2387:53;2432:7;2423:6;2412:9;2408:22;2387:53;:::i;:::-;2377:63;;2332:118;2005:452;;;;;:::o;2463:407::-;2531:6;2539;2588:2;2576:9;2567:7;2563:23;2559:32;2556:2;;;2604:1;2601;2594:12;2556:2;2647:1;2672:53;2717:7;2708:6;2697:9;2693:22;2672:53;:::i;:::-;2662:63;;2618:117;2774:2;2800:53;2845:7;2836:6;2825:9;2821:22;2800:53;:::i;:::-;2790:63;;2745:118;2546:324;;;;;:::o;2876:262::-;2935:6;2984:2;2972:9;2963:7;2959:23;2955:32;2952:2;;;3000:1;2997;2990:12;2952:2;3043:1;3068:53;3113:7;3104:6;3093:9;3089:22;3068:53;:::i;:::-;3058:63;;3014:117;2942:196;;;;:::o;3144:407::-;3212:6;3220;3269:2;3257:9;3248:7;3244:23;3240:32;3237:2;;;3285:1;3282;3275:12;3237:2;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3227:324;;;;;:::o;3557:407::-;3625:6;3633;3682:2;3670:9;3661:7;3657:23;3653:32;3650:2;;;3698:1;3695;3688:12;3650:2;3741:1;3766:53;3811:7;3802:6;3791:9;3787:22;3766:53;:::i;:::-;3756:63;;3712:117;3868:2;3894:53;3939:7;3930:6;3919:9;3915:22;3894:53;:::i;:::-;3884:63;;3839:118;3640:324;;;;;:::o;3970:260::-;4028:6;4077:2;4065:9;4056:7;4052:23;4048:32;4045:2;;;4093:1;4090;4083:12;4045:2;4136:1;4161:52;4205:7;4196:6;4185:9;4181:22;4161:52;:::i;:::-;4151:62;;4107:116;4035:195;;;;:::o;4236:262::-;4295:6;4344:2;4332:9;4323:7;4319:23;4315:32;4312:2;;;4360:1;4357;4350:12;4312:2;4403:1;4428:53;4473:7;4464:6;4453:9;4449:22;4428:53;:::i;:::-;4418:63;;4374:117;4302:196;;;;:::o;4504:407::-;4572:6;4580;4629:2;4617:9;4608:7;4604:23;4600:32;4597:2;;;4645:1;4642;4635:12;4597:2;4688:1;4713:53;4758:7;4749:6;4738:9;4734:22;4713:53;:::i;:::-;4703:63;;4659:117;4815:2;4841:53;4886:7;4877:6;4866:9;4862:22;4841:53;:::i;:::-;4831:63;;4786:118;4587:324;;;;;:::o;4917:663::-;5003:6;5011;5019;5068:2;5056:9;5047:7;5043:23;5039:32;5036:2;;;5084:1;5081;5074:12;5036:2;5127:1;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5098:117;5254:2;5280:53;5325:7;5316:6;5305:9;5301:22;5280:53;:::i;:::-;5270:63;;5225:118;5410:2;5399:9;5395:18;5382:32;5441:18;5433:6;5430:30;5427:2;;;5473:1;5470;5463:12;5427:2;5501:62;5555:7;5546:6;5535:9;5531:22;5501:62;:::i;:::-;5491:72;;5353:220;5026:554;;;;;:::o;5586:118::-;5673:24;5691:5;5673:24;:::i;:::-;5668:3;5661:37;5651:53;;:::o;5710:157::-;5815:45;5835:24;5853:5;5835:24;:::i;:::-;5815:45;:::i;:::-;5810:3;5803:58;5793:74;;:::o;5873:109::-;5954:21;5969:5;5954:21;:::i;:::-;5949:3;5942:34;5932:50;;:::o;5988:118::-;6075:24;6093:5;6075:24;:::i;:::-;6070:3;6063:37;6053:53;;:::o;6112:157::-;6217:45;6237:24;6255:5;6237:24;:::i;:::-;6217:45;:::i;:::-;6212:3;6205:58;6195:74;;:::o;6275:206::-;6398:76;6418:55;6467:5;6418:55;:::i;:::-;6398:76;:::i;:::-;6393:3;6386:89;6376:105;;:::o;6487:364::-;6575:3;6603:39;6636:5;6603:39;:::i;:::-;6658:71;6722:6;6717:3;6658:71;:::i;:::-;6651:78;;6738:52;6783:6;6778:3;6771:4;6764:5;6760:16;6738:52;:::i;:::-;6815:29;6837:6;6815:29;:::i;:::-;6810:3;6806:39;6799:46;;6579:272;;;;;:::o;6857:377::-;6963:3;6991:39;7024:5;6991:39;:::i;:::-;7046:89;7128:6;7123:3;7046:89;:::i;:::-;7039:96;;7144:52;7189:6;7184:3;7177:4;7170:5;7166:16;7144:52;:::i;:::-;7221:6;7216:3;7212:16;7205:23;;6967:267;;;;;:::o;7240:366::-;7382:3;7403:67;7467:2;7462:3;7403:67;:::i;:::-;7396:74;;7479:93;7568:3;7479:93;:::i;:::-;7597:2;7592:3;7588:12;7581:19;;7386:220;;;:::o;7612:366::-;7754:3;7775:67;7839:2;7834:3;7775:67;:::i;:::-;7768:74;;7851:93;7940:3;7851:93;:::i;:::-;7969:2;7964:3;7960:12;7953:19;;7758:220;;;:::o;7984:366::-;8126:3;8147:67;8211:2;8206:3;8147:67;:::i;:::-;8140:74;;8223:93;8312:3;8223:93;:::i;:::-;8341:2;8336:3;8332:12;8325:19;;8130:220;;;:::o;8356:366::-;8498:3;8519:67;8583:2;8578:3;8519:67;:::i;:::-;8512:74;;8595:93;8684:3;8595:93;:::i;:::-;8713:2;8708:3;8704:12;8697:19;;8502:220;;;:::o;8728:366::-;8870:3;8891:67;8955:2;8950:3;8891:67;:::i;:::-;8884:74;;8967:93;9056:3;8967:93;:::i;:::-;9085:2;9080:3;9076:12;9069:19;;8874:220;;;:::o;9100:402::-;9260:3;9281:85;9363:2;9358:3;9281:85;:::i;:::-;9274:92;;9375:93;9464:3;9375:93;:::i;:::-;9493:2;9488:3;9484:12;9477:19;;9264:238;;;:::o;9508:366::-;9650:3;9671:67;9735:2;9730:3;9671:67;:::i;:::-;9664:74;;9747:93;9836:3;9747:93;:::i;:::-;9865:2;9860:3;9856:12;9849:19;;9654:220;;;:::o;9880:366::-;10022:3;10043:67;10107:2;10102:3;10043:67;:::i;:::-;10036:74;;10119:93;10208:3;10119:93;:::i;:::-;10237:2;10232:3;10228:12;10221:19;;10026:220;;;:::o;10252:366::-;10394:3;10415:67;10479:2;10474:3;10415:67;:::i;:::-;10408:74;;10491:93;10580:3;10491:93;:::i;:::-;10609:2;10604:3;10600:12;10593:19;;10398:220;;;:::o;10624:366::-;10766:3;10787:67;10851:2;10846:3;10787:67;:::i;:::-;10780:74;;10863:93;10952:3;10863:93;:::i;:::-;10981:2;10976:3;10972:12;10965:19;;10770:220;;;:::o;10996:366::-;11138:3;11159:67;11223:2;11218:3;11159:67;:::i;:::-;11152:74;;11235:93;11324:3;11235:93;:::i;:::-;11353:2;11348:3;11344:12;11337:19;;11142:220;;;:::o;11368:366::-;11510:3;11531:67;11595:2;11590:3;11531:67;:::i;:::-;11524:74;;11607:93;11696:3;11607:93;:::i;:::-;11725:2;11720:3;11716:12;11709:19;;11514:220;;;:::o;11740:366::-;11882:3;11903:67;11967:2;11962:3;11903:67;:::i;:::-;11896:74;;11979:93;12068:3;11979:93;:::i;:::-;12097:2;12092:3;12088:12;12081:19;;11886:220;;;:::o;12112:366::-;12254:3;12275:67;12339:2;12334:3;12275:67;:::i;:::-;12268:74;;12351:93;12440:3;12351:93;:::i;:::-;12469:2;12464:3;12460:12;12453:19;;12258:220;;;:::o;12484:366::-;12626:3;12647:67;12711:2;12706:3;12647:67;:::i;:::-;12640:74;;12723:93;12812:3;12723:93;:::i;:::-;12841:2;12836:3;12832:12;12825:19;;12630:220;;;:::o;12856:366::-;12998:3;13019:67;13083:2;13078:3;13019:67;:::i;:::-;13012:74;;13095:93;13184:3;13095:93;:::i;:::-;13213:2;13208:3;13204:12;13197:19;;13002:220;;;:::o;13228:366::-;13370:3;13391:67;13455:2;13450:3;13391:67;:::i;:::-;13384:74;;13467:93;13556:3;13467:93;:::i;:::-;13585:2;13580:3;13576:12;13569:19;;13374:220;;;:::o;13600:366::-;13742:3;13763:67;13827:2;13822:3;13763:67;:::i;:::-;13756:74;;13839:93;13928:3;13839:93;:::i;:::-;13957:2;13952:3;13948:12;13941:19;;13746:220;;;:::o;13972:366::-;14114:3;14135:67;14199:2;14194:3;14135:67;:::i;:::-;14128:74;;14211:93;14300:3;14211:93;:::i;:::-;14329:2;14324:3;14320:12;14313:19;;14118:220;;;:::o;14344:402::-;14504:3;14525:85;14607:2;14602:3;14525:85;:::i;:::-;14518:92;;14619:93;14708:3;14619:93;:::i;:::-;14737:2;14732:3;14728:12;14721:19;;14508:238;;;:::o;14752:366::-;14894:3;14915:67;14979:2;14974:3;14915:67;:::i;:::-;14908:74;;14991:93;15080:3;14991:93;:::i;:::-;15109:2;15104:3;15100:12;15093:19;;14898:220;;;:::o;15124:366::-;15266:3;15287:67;15351:2;15346:3;15287:67;:::i;:::-;15280:74;;15363:93;15452:3;15363:93;:::i;:::-;15481:2;15476:3;15472:12;15465:19;;15270:220;;;:::o;15496:366::-;15638:3;15659:67;15723:2;15718:3;15659:67;:::i;:::-;15652:74;;15735:93;15824:3;15735:93;:::i;:::-;15853:2;15848:3;15844:12;15837:19;;15642:220;;;:::o;15868:402::-;16028:3;16049:85;16131:2;16126:3;16049:85;:::i;:::-;16042:92;;16143:93;16232:3;16143:93;:::i;:::-;16261:2;16256:3;16252:12;16245:19;;16032:238;;;:::o;16276:366::-;16418:3;16439:67;16503:2;16498:3;16439:67;:::i;:::-;16432:74;;16515:93;16604:3;16515:93;:::i;:::-;16633:2;16628:3;16624:12;16617:19;;16422:220;;;:::o;16648:366::-;16790:3;16811:67;16875:2;16870:3;16811:67;:::i;:::-;16804:74;;16887:93;16976:3;16887:93;:::i;:::-;17005:2;17000:3;16996:12;16989:19;;16794:220;;;:::o;17020:366::-;17162:3;17183:67;17247:2;17242:3;17183:67;:::i;:::-;17176:74;;17259:93;17348:3;17259:93;:::i;:::-;17377:2;17372:3;17368:12;17361:19;;17166:220;;;:::o;17392:118::-;17479:24;17497:5;17479:24;:::i;:::-;17474:3;17467:37;17457:53;;:::o;17516:157::-;17621:45;17641:24;17659:5;17641:24;:::i;:::-;17621:45;:::i;:::-;17616:3;17609:58;17599:74;;:::o;17679:112::-;17762:22;17778:5;17762:22;:::i;:::-;17757:3;17750:35;17740:51;;:::o;17797:715::-;18011:3;18026:75;18097:3;18088:6;18026:75;:::i;:::-;18126:2;18121:3;18117:12;18110:19;;18139:75;18210:3;18201:6;18139:75;:::i;:::-;18239:2;18234:3;18230:12;18223:19;;18252:75;18323:3;18314:6;18252:75;:::i;:::-;18352:2;18347:3;18343:12;18336:19;;18365:93;18454:3;18445:6;18365:93;:::i;:::-;18483:2;18478:3;18474:12;18467:19;;18503:3;18496:10;;18015:497;;;;;;;:::o;18518:522::-;18731:3;18753:148;18897:3;18753:148;:::i;:::-;18746:155;;18911:75;18982:3;18973:6;18911:75;:::i;:::-;19011:2;19006:3;19002:12;18995:19;;19031:3;19024:10;;18735:305;;;;:::o;19046:967::-;19428:3;19450:148;19594:3;19450:148;:::i;:::-;19443:155;;19615:95;19706:3;19697:6;19615:95;:::i;:::-;19608:102;;19727:148;19871:3;19727:148;:::i;:::-;19720:155;;19892:95;19983:3;19974:6;19892:95;:::i;:::-;19885:102;;20004:3;19997:10;;19432:581;;;;;:::o;20019:222::-;20112:4;20150:2;20139:9;20135:18;20127:26;;20163:71;20231:1;20220:9;20216:17;20207:6;20163:71;:::i;:::-;20117:124;;;;:::o;20247:210::-;20334:4;20372:2;20361:9;20357:18;20349:26;;20385:65;20447:1;20436:9;20432:17;20423:6;20385:65;:::i;:::-;20339:118;;;;:::o;20463:222::-;20556:4;20594:2;20583:9;20579:18;20571:26;;20607:71;20675:1;20664:9;20660:17;20651:6;20607:71;:::i;:::-;20561:124;;;;:::o;20691:545::-;20864:4;20902:3;20891:9;20887:19;20879:27;;20916:71;20984:1;20973:9;20969:17;20960:6;20916:71;:::i;:::-;20997:68;21061:2;21050:9;21046:18;21037:6;20997:68;:::i;:::-;21075:72;21143:2;21132:9;21128:18;21119:6;21075:72;:::i;:::-;21157;21225:2;21214:9;21210:18;21201:6;21157:72;:::i;:::-;20869:367;;;;;;;:::o;21242:313::-;21355:4;21393:2;21382:9;21378:18;21370:26;;21442:9;21436:4;21432:20;21428:1;21417:9;21413:17;21406:47;21470:78;21543:4;21534:6;21470:78;:::i;:::-;21462:86;;21360:195;;;;:::o;21561:419::-;21727:4;21765:2;21754:9;21750:18;21742:26;;21814:9;21808:4;21804:20;21800:1;21789:9;21785:17;21778:47;21842:131;21968:4;21842:131;:::i;:::-;21834:139;;21732:248;;;:::o;21986:419::-;22152:4;22190:2;22179:9;22175:18;22167:26;;22239:9;22233:4;22229:20;22225:1;22214:9;22210:17;22203:47;22267:131;22393:4;22267:131;:::i;:::-;22259:139;;22157:248;;;:::o;22411:419::-;22577:4;22615:2;22604:9;22600:18;22592:26;;22664:9;22658:4;22654:20;22650:1;22639:9;22635:17;22628:47;22692:131;22818:4;22692:131;:::i;:::-;22684:139;;22582:248;;;:::o;22836:419::-;23002:4;23040:2;23029:9;23025:18;23017:26;;23089:9;23083:4;23079:20;23075:1;23064:9;23060:17;23053:47;23117:131;23243:4;23117:131;:::i;:::-;23109:139;;23007:248;;;:::o;23261:419::-;23427:4;23465:2;23454:9;23450:18;23442:26;;23514:9;23508:4;23504:20;23500:1;23489:9;23485:17;23478:47;23542:131;23668:4;23542:131;:::i;:::-;23534:139;;23432:248;;;:::o;23686:419::-;23852:4;23890:2;23879:9;23875:18;23867:26;;23939:9;23933:4;23929:20;23925:1;23914:9;23910:17;23903:47;23967:131;24093:4;23967:131;:::i;:::-;23959:139;;23857:248;;;:::o;24111:419::-;24277:4;24315:2;24304:9;24300:18;24292:26;;24364:9;24358:4;24354:20;24350:1;24339:9;24335:17;24328:47;24392:131;24518:4;24392:131;:::i;:::-;24384:139;;24282:248;;;:::o;24536:419::-;24702:4;24740:2;24729:9;24725:18;24717:26;;24789:9;24783:4;24779:20;24775:1;24764:9;24760:17;24753:47;24817:131;24943:4;24817:131;:::i;:::-;24809:139;;24707:248;;;:::o;24961:419::-;25127:4;25165:2;25154:9;25150:18;25142:26;;25214:9;25208:4;25204:20;25200:1;25189:9;25185:17;25178:47;25242:131;25368:4;25242:131;:::i;:::-;25234:139;;25132:248;;;:::o;25386:419::-;25552:4;25590:2;25579:9;25575:18;25567:26;;25639:9;25633:4;25629:20;25625:1;25614:9;25610:17;25603:47;25667:131;25793:4;25667:131;:::i;:::-;25659:139;;25557:248;;;:::o;25811:419::-;25977:4;26015:2;26004:9;26000:18;25992:26;;26064:9;26058:4;26054:20;26050:1;26039:9;26035:17;26028:47;26092:131;26218:4;26092:131;:::i;:::-;26084:139;;25982:248;;;:::o;26236:419::-;26402:4;26440:2;26429:9;26425:18;26417:26;;26489:9;26483:4;26479:20;26475:1;26464:9;26460:17;26453:47;26517:131;26643:4;26517:131;:::i;:::-;26509:139;;26407:248;;;:::o;26661:419::-;26827:4;26865:2;26854:9;26850:18;26842:26;;26914:9;26908:4;26904:20;26900:1;26889:9;26885:17;26878:47;26942:131;27068:4;26942:131;:::i;:::-;26934:139;;26832:248;;;:::o;27086:419::-;27252:4;27290:2;27279:9;27275:18;27267:26;;27339:9;27333:4;27329:20;27325:1;27314:9;27310:17;27303:47;27367:131;27493:4;27367:131;:::i;:::-;27359:139;;27257:248;;;:::o;27511:419::-;27677:4;27715:2;27704:9;27700:18;27692:26;;27764:9;27758:4;27754:20;27750:1;27739:9;27735:17;27728:47;27792:131;27918:4;27792:131;:::i;:::-;27784:139;;27682:248;;;:::o;27936:419::-;28102:4;28140:2;28129:9;28125:18;28117:26;;28189:9;28183:4;28179:20;28175:1;28164:9;28160:17;28153:47;28217:131;28343:4;28217:131;:::i;:::-;28209:139;;28107:248;;;:::o;28361:419::-;28527:4;28565:2;28554:9;28550:18;28542:26;;28614:9;28608:4;28604:20;28600:1;28589:9;28585:17;28578:47;28642:131;28768:4;28642:131;:::i;:::-;28634:139;;28532:248;;;:::o;28786:419::-;28952:4;28990:2;28979:9;28975:18;28967:26;;29039:9;29033:4;29029:20;29025:1;29014:9;29010:17;29003:47;29067:131;29193:4;29067:131;:::i;:::-;29059:139;;28957:248;;;:::o;29211:419::-;29377:4;29415:2;29404:9;29400:18;29392:26;;29464:9;29458:4;29454:20;29450:1;29439:9;29435:17;29428:47;29492:131;29618:4;29492:131;:::i;:::-;29484:139;;29382:248;;;:::o;29636:419::-;29802:4;29840:2;29829:9;29825:18;29817:26;;29889:9;29883:4;29879:20;29875:1;29864:9;29860:17;29853:47;29917:131;30043:4;29917:131;:::i;:::-;29909:139;;29807:248;;;:::o;30061:419::-;30227:4;30265:2;30254:9;30250:18;30242:26;;30314:9;30308:4;30304:20;30300:1;30289:9;30285:17;30278:47;30342:131;30468:4;30342:131;:::i;:::-;30334:139;;30232:248;;;:::o;30486:419::-;30652:4;30690:2;30679:9;30675:18;30667:26;;30739:9;30733:4;30729:20;30725:1;30714:9;30710:17;30703:47;30767:131;30893:4;30767:131;:::i;:::-;30759:139;;30657:248;;;:::o;30911:419::-;31077:4;31115:2;31104:9;31100:18;31092:26;;31164:9;31158:4;31154:20;31150:1;31139:9;31135:17;31128:47;31192:131;31318:4;31192:131;:::i;:::-;31184:139;;31082:248;;;:::o;31336:419::-;31502:4;31540:2;31529:9;31525:18;31517:26;;31589:9;31583:4;31579:20;31575:1;31564:9;31560:17;31553:47;31617:131;31743:4;31617:131;:::i;:::-;31609:139;;31507:248;;;:::o;31761:222::-;31854:4;31892:2;31881:9;31877:18;31869:26;;31905:71;31973:1;31962:9;31958:17;31949:6;31905:71;:::i;:::-;31859:124;;;;:::o;31989:214::-;32078:4;32116:2;32105:9;32101:18;32093:26;;32129:67;32193:1;32182:9;32178:17;32169:6;32129:67;:::i;:::-;32083:120;;;;:::o;32209:129::-;32243:6;32270:20;;:::i;:::-;32260:30;;32299:33;32327:4;32319:6;32299:33;:::i;:::-;32250:88;;;:::o;32344:75::-;32377:6;32410:2;32404:9;32394:19;;32384:35;:::o;32425:307::-;32486:4;32576:18;32568:6;32565:30;32562:2;;;32598:18;;:::i;:::-;32562:2;32636:29;32658:6;32636:29;:::i;:::-;32628:37;;32720:4;32714;32710:15;32702:23;;32491:241;;;:::o;32738:99::-;32790:6;32824:5;32818:12;32808:22;;32797:40;;;:::o;32843:169::-;32927:11;32961:6;32956:3;32949:19;33001:4;32996:3;32992:14;32977:29;;32939:73;;;;:::o;33018:148::-;33120:11;33157:3;33142:18;;33132:34;;;;:::o;33172:305::-;33212:3;33231:20;33249:1;33231:20;:::i;:::-;33226:25;;33265:20;33283:1;33265:20;:::i;:::-;33260:25;;33419:1;33351:66;33347:74;33344:1;33341:81;33338:2;;;33425:18;;:::i;:::-;33338:2;33469:1;33466;33462:9;33455:16;;33216:261;;;;:::o;33483:348::-;33523:7;33546:20;33564:1;33546:20;:::i;:::-;33541:25;;33580:20;33598:1;33580:20;:::i;:::-;33575:25;;33768:1;33700:66;33696:74;33693:1;33690:81;33685:1;33678:9;33671:17;33667:105;33664:2;;;33775:18;;:::i;:::-;33664:2;33823:1;33820;33816:9;33805:20;;33531:300;;;;:::o;33837:191::-;33877:4;33897:20;33915:1;33897:20;:::i;:::-;33892:25;;33931:20;33949:1;33931:20;:::i;:::-;33926:25;;33970:1;33967;33964:8;33961:2;;;33975:18;;:::i;:::-;33961:2;34020:1;34017;34013:9;34005:17;;33882:146;;;;:::o;34034:96::-;34071:7;34100:24;34118:5;34100:24;:::i;:::-;34089:35;;34079:51;;;:::o;34136:90::-;34170:7;34213:5;34206:13;34199:21;34188:32;;34178:48;;;:::o;34232:77::-;34269:7;34298:5;34287:16;;34277:32;;;:::o;34315:149::-;34351:7;34391:66;34384:5;34380:78;34369:89;;34359:105;;;:::o;34470:126::-;34507:7;34547:42;34540:5;34536:54;34525:65;;34515:81;;;:::o;34602:77::-;34639:7;34668:5;34657:16;;34647:32;;;:::o;34685:86::-;34720:7;34760:4;34753:5;34749:16;34738:27;;34728:43;;;:::o;34777:162::-;34845:9;34878:55;34927:5;34878:55;:::i;:::-;34865:68;;34855:84;;;:::o;34945:131::-;35013:9;35046:24;35064:5;35046:24;:::i;:::-;35033:37;;35023:53;;;:::o;35082:154::-;35166:6;35161:3;35156;35143:30;35228:1;35219:6;35214:3;35210:16;35203:27;35133:103;;;:::o;35242:307::-;35310:1;35320:113;35334:6;35331:1;35328:13;35320:113;;;35419:1;35414:3;35410:11;35404:18;35400:1;35395:3;35391:11;35384:39;35356:2;35353:1;35349:10;35344:15;;35320:113;;;35451:6;35448:1;35445:13;35442:2;;;35531:1;35522:6;35517:3;35513:16;35506:27;35442:2;35291:258;;;;:::o;35555:171::-;35594:3;35617:24;35635:5;35617:24;:::i;:::-;35608:33;;35663:4;35656:5;35653:15;35650:2;;;35671:18;;:::i;:::-;35650:2;35718:1;35711:5;35707:13;35700:20;;35598:128;;;:::o;35732:320::-;35776:6;35813:1;35807:4;35803:12;35793:22;;35860:1;35854:4;35850:12;35881:18;35871:2;;35937:4;35929:6;35925:17;35915:27;;35871:2;35999;35991:6;35988:14;35968:18;35965:38;35962:2;;;36018:18;;:::i;:::-;35962:2;35783:269;;;;:::o;36058:281::-;36141:27;36163:4;36141:27;:::i;:::-;36133:6;36129:40;36271:6;36259:10;36256:22;36235:18;36223:10;36220:34;36217:62;36214:2;;;36282:18;;:::i;:::-;36214:2;36322:10;36318:2;36311:22;36101:238;;;:::o;36345:100::-;36384:7;36413:26;36433:5;36413:26;:::i;:::-;36402:37;;36392:53;;;:::o;36451:79::-;36490:7;36519:5;36508:16;;36498:32;;;:::o;36536:94::-;36575:7;36604:20;36618:5;36604:20;:::i;:::-;36593:31;;36583:47;;;:::o;36636:79::-;36675:7;36704:5;36693:16;;36683:32;;;:::o;36721:180::-;36769:77;36766:1;36759:88;36866:4;36863:1;36856:15;36890:4;36887:1;36880:15;36907:180;36955:77;36952:1;36945:88;37052:4;37049:1;37042:15;37076:4;37073:1;37066:15;37093:180;37141:77;37138:1;37131:88;37238:4;37235:1;37228:15;37262:4;37259:1;37252:15;37279:102;37320:6;37371:2;37367:7;37362:2;37355:5;37351:14;37347:28;37337:38;;37327:54;;;:::o;37387:94::-;37420:8;37468:5;37464:2;37460:14;37439:35;;37429:52;;;:::o;37487:182::-;37627:34;37623:1;37615:6;37611:14;37604:58;37593:76;:::o;37675:222::-;37815:34;37811:1;37803:6;37799:14;37792:58;37884:5;37879:2;37871:6;37867:15;37860:30;37781:116;:::o;37903:170::-;38043:22;38039:1;38031:6;38027:14;38020:46;38009:64;:::o;38079:221::-;38219:34;38215:1;38207:6;38203:14;38196:58;38288:4;38283:2;38275:6;38271:15;38264:29;38185:115;:::o;38306:244::-;38446:34;38442:1;38434:6;38430:14;38423:58;38515:27;38510:2;38502:6;38498:15;38491:52;38412:138;:::o;38556:214::-;38696:66;38692:1;38684:6;38680:14;38673:90;38662:108;:::o;38776:225::-;38916:34;38912:1;38904:6;38900:14;38893:58;38985:8;38980:2;38972:6;38968:15;38961:33;38882:119;:::o;39007:221::-;39147:34;39143:1;39135:6;39131:14;39124:58;39216:4;39211:2;39203:6;39199:15;39192:29;39113:115;:::o;39234:225::-;39374:34;39370:1;39362:6;39358:14;39351:58;39443:8;39438:2;39430:6;39426:15;39419:33;39340:119;:::o;39465:166::-;39605:18;39601:1;39593:6;39589:14;39582:42;39571:60;:::o;39637:227::-;39777:34;39773:1;39765:6;39761:14;39754:58;39846:10;39841:2;39833:6;39829:15;39822:35;39743:121;:::o;39870:182::-;40010:34;40006:1;39998:6;39994:14;39987:58;39976:76;:::o;40058:241::-;40198:34;40194:1;40186:6;40182:14;40175:58;40267:24;40262:2;40254:6;40250:15;40243:49;40164:135;:::o;40305:223::-;40445:34;40441:1;40433:6;40429:14;40422:58;40514:6;40509:2;40501:6;40497:15;40490:31;40411:117;:::o;40534:169::-;40674:21;40670:1;40662:6;40658:14;40651:45;40640:63;:::o;40709:220::-;40849:34;40845:1;40837:6;40833:14;40826:58;40918:3;40913:2;40905:6;40901:15;40894:28;40815:114;:::o;40935:224::-;41075:34;41071:1;41063:6;41059:14;41052:58;41144:7;41139:2;41131:6;41127:15;41120:32;41041:118;:::o;41165:223::-;41305:34;41301:1;41293:6;41289:14;41282:58;41374:6;41369:2;41361:6;41357:15;41350:31;41271:117;:::o;41394:242::-;41534:34;41530:1;41522:6;41518:14;41511:58;41603:25;41598:2;41590:6;41586:15;41579:50;41500:136;:::o;41642:173::-;41782:25;41778:1;41770:6;41766:14;41759:49;41748:67;:::o;41821:174::-;41961:26;41957:1;41949:6;41945:14;41938:50;41927:68;:::o;42001:177::-;42141:29;42137:1;42129:6;42125:14;42118:53;42107:71;:::o;42184:224::-;42324:34;42320:1;42312:6;42308:14;42301:58;42393:7;42388:2;42380:6;42376:15;42369:32;42290:118;:::o;42414:167::-;42554:19;42550:1;42542:6;42538:14;42531:43;42520:61;:::o;42587:234::-;42727:34;42723:1;42715:6;42711:14;42704:58;42796:17;42791:2;42783:6;42779:15;42772:42;42693:128;:::o;42827:181::-;42967:33;42963:1;42955:6;42951:14;42944:57;42933:75;:::o;43014:229::-;43154:34;43150:1;43142:6;43138:14;43131:58;43223:12;43218:2;43210:6;43206:15;43199:37;43120:123;:::o;43249:122::-;43322:24;43340:5;43322:24;:::i;:::-;43315:5;43312:35;43302:2;;43361:1;43358;43351:12;43302:2;43292:79;:::o;43377:122::-;43450:24;43468:5;43450:24;:::i;:::-;43443:5;43440:35;43430:2;;43489:1;43486;43479:12;43430:2;43420:79;:::o;43505:120::-;43577:23;43594:5;43577:23;:::i;:::-;43570:5;43567:34;43557:2;;43615:1;43612;43605:12;43557:2;43547:78;:::o;43631:122::-;43704:24;43722:5;43704:24;:::i;:::-;43697:5;43694:35;43684:2;;43743:1;43740;43733:12;43684:2;43674:79;:::o

Swarm Source

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