FTM Price: $0.771133 (-3.29%)
Gas: 2.5 GWei
 

Overview

Max Total Supply

30,935.847334412762239105 PSP

Holders

91

Total Transfers

-

Market

Price

$0.00 @ 0.000000 FTM

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:
PSP_ERC20

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-01-23
*/

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


// OpenZeppelin Contracts v4.4.0 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
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: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

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

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/draft-EIP712.sol


// OpenZeppelin Contracts v4.4.0 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;


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

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol)

pragma solidity ^0.8.0;





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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _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 revoked `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}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


// OpenZeppelin Contracts v4.4.0 (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;




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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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: @openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;






/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

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

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

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

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

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

        bytes32 hash = _hashTypedDataV4(structHash);

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

        _approve(owner, spender, value);
    }

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;


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

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

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

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

// File: contracts/PSP_ERC20.sol

pragma solidity ^0.8.2;




contract PSP_ERC20 is ERC20Capped, ERC20Permit, AccessControlEnumerable {
    struct Supply {
        uint256 cap;
        uint256 total;
    }

    event MinterCapUpdated(address indexed minter, uint256 cap);

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

    mapping(address => Supply) public minterSupply;

    constructor() ERC20("ParaSwap", "PSP") ERC20Capped(2_000_000_000e18) ERC20Permit("ParaSwap") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

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

    function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) returns (bool) {
        Supply storage s = minterSupply[msg.sender];
        s.total += amount;
        require(s.total <= s.cap, "minter cap exceeded");
        _mint(to, amount);
        return true;
    }

    function burn(address from, uint256 amount) external onlyRole(MINTER_ROLE) returns (bool) {
        Supply storage s = minterSupply[msg.sender];
        s.total -= amount;
        _burn(from, amount);
        return true;
    }

    function getOwner() external view returns (address) {
        return getRoleMember(DEFAULT_ADMIN_ROLE, 0);
    }

    function getMinterCap(address minter) external view returns (uint256) {
        return minterSupply[minter].cap;
    }

    function setMinterCap(address minter, uint256 cap) external onlyRole(DEFAULT_ADMIN_ROLE) {
        minterSupply[minter].cap = cap;
        emit MinterCapUpdated(minter, cap);
    }
}

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":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"MinterCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getMinterCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterSupply","outputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"setMinterCap","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"}]

6101806040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610160523480156200003757600080fd5b5060405180604001604052806008815260200167050617261537761760c41b81525080604051806040016040528060018152602001603160f81b8152506b06765c793fa10079d000000060405180604001604052806008815260200167050617261537761760c41b8152506040518060400160405280600381526020016205053560ec1b8152508160039080519060200190620000d69291906200035c565b508051620000ec9060049060208401906200035c565b50505060008111620001445760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015260640160405180910390fd5b60805281516020808401919091208251918301919091206101008290526101208190524660c0527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620001dc8184846040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b60a0523060e0526101405250620001fc9350600092503391505062000202565b6200043f565b6200021982826200024560201b62000d5a1760201c565b60008281526007602090815260409091206200024091839062000e4e620002ea821b17901c565b505050565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620002e65760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002a53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000301836001600160a01b0384166200030a565b90505b92915050565b6000818152600183016020526040812054620003535750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000304565b50600062000304565b8280546200036a9062000402565b90600052602060002090601f0160209004810192826200038e5760008555620003d9565b82601f10620003a957805160ff1916838001178555620003d9565b82800160010185558215620003d9579182015b82811115620003d9578251825591602001919060010190620003bc565b50620003e7929150620003eb565b5090565b5b80821115620003e75760008155600101620003ec565b600181811c908216806200041757607f821691505b602082108114156200043957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516101405161016051612751620004ac6000396000610be3015260006114fa01526000611549015260006115240152600061147d015260006114a7015260006114d10152600081816102a80152611bfd01526127516000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063893d20e81161010f578063a9059cbb116100a2578063d505accf11610071578063d505accf146104bd578063d5391393146104d0578063d547741f146104f7578063dd62ed3e1461050a57600080fd5b8063a9059cbb1461044e578063c8e1b4ce14610461578063ca15c87314610474578063cd3c7e1f1461048757600080fd5b806395d89b41116100de57806395d89b41146104185780639dc29fac14610420578063a217fddf14610433578063a457c2d71461043b57600080fd5b8063893d20e8146103565780639010d07c1461038357806391d148541461039657806395609212146103dc57600080fd5b8063313ce56711610187578063395093511161015657806339509351146102e757806340c10f19146102fa57806370a082311461030d5780637ecebe001461034357600080fd5b8063313ce56714610297578063355274ea146102a65780633644e515146102cc57806336568abe146102d457600080fd5b806318160ddd116101c357806318160ddd1461023a57806323b872dd1461024c578063248a9ca31461025f5780632f2ff15d1461028257600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063095ea7b314610227575b600080fd5b6101fd6101f8366004612253565b610550565b60405190151581526020015b60405180910390f35b61021a6105ac565b60405161020991906122c1565b6101fd61023536600461233b565b61063e565b6002545b604051908152602001610209565b6101fd61025a366004612365565b610654565b61023e61026d3660046123a1565b60009081526006602052604090206001015490565b6102956102903660046123ba565b61073f565b005b60405160128152602001610209565b7f000000000000000000000000000000000000000000000000000000000000000061023e565b61023e61076a565b6102956102e23660046123ba565b610779565b6101fd6102f536600461233b565b61082c565b6101fd61030836600461233b565b610875565b61023e61031b3660046123e6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61023e6103513660046123e6565b610944565b61035e61096f565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b61035e610391366004612401565b610977565b6101fd6103a43660046123ba565b600091825260066020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b6104036103ea3660046123e6565b6008602052600090815260409020805460019091015482565b60408051928352602083019190915201610209565b61021a610996565b6101fd61042e36600461233b565b6109a5565b61023e600081565b6101fd61044936600461233b565b610a06565b6101fd61045c36600461233b565b610ade565b61029561046f36600461233b565b610aeb565b61023e6104823660046123a1565b610b5e565b61023e6104953660046123e6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b6102956104cb366004612423565b610b75565b61023e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102956105053660046123ba565b610d34565b61023e610518366004612496565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f0000000000000000000000000000000000000000000000000000000014806105a657506105a682610e70565b92915050565b6060600380546105bb906124c0565b80601f01602080910402602001604051908101604052809291908181526020018280546105e7906124c0565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b600061064b338484610f07565b50600192915050565b60006106618484846110ba565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107348533858403610f07565b506001949350505050565b60008281526006602052604090206001015461075b813361136f565b6107658383611441565b505050565b6000610774611463565b905090565b73ffffffffffffffffffffffffffffffffffffffff8116331461081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c660000000000000000000000000000000000606482015260840161071e565b6108288282611597565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161064b91859061087090869061253d565b610f07565b60007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a2813361136f565b336000908152600860205260408120600181018054919286926108c690849061253d565b909155505080546001820154111561093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f6d696e7465722063617020657863656564656400000000000000000000000000604482015260640161071e565b61073485856115b9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408120546105a6565b600061077481805b600082815260076020526040812061098f90836115c3565b9392505050565b6060600480546105bb906124c0565b60007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109d2813361136f565b336000908152600860205260408120600181018054919286926109f6908490612555565b90915550610734905085856115cf565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161071e565b610ad43385858403610f07565b5060019392505050565b600061064b3384846110ba565b6000610af7813361136f565b73ffffffffffffffffffffffffffffffffffffffff831660008181526008602052604090819020849055517f9917e077a26c11e709ef1e3646df334b6146e2b10a05501633864b047c53432c90610b519085815260200190565b60405180910390a2505050565b60008181526007602052604081206105a6906117bc565b83421115610bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161071e565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610c0e8c6117c6565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610c76826117fb565b90506000610c8682878787611864565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161071e565b610d288a8a8a610f07565b50505050505050505050565b600082815260066020526040902060010154610d50813361136f565b6107658383611597565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661082857600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610df03390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061098f8373ffffffffffffffffffffffffffffffffffffffff841661188c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806105a657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105a6565b73ffffffffffffffffffffffffffffffffffffffff8316610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff821661104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8216611200576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156112b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906112fa90849061253d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161136091815260200190565b60405180910390a35b50505050565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610828576113c78173ffffffffffffffffffffffffffffffffffffffff1660146118db565b6113d28360206118db565b6040516020016113e392919061256c565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a000000000000000000000000000000000000000000000000000000000825261071e916004016122c1565b61144b8282610d5a565b60008281526007602052604090206107659082610e4e565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161480156114c957507f000000000000000000000000000000000000000000000000000000000000000046145b156114f357507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6115a18282611b1e565b60008281526007602052604090206107659082611bd9565b6108288282611bfb565b600061098f8383611ca2565b73ffffffffffffffffffffffffffffffffffffffff8216611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290611764908490612555565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006105a6825490565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090208054600181018255905b50919050565b60006105a6611808611463565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061187587878787611ccc565b9150915061188281611de4565b5095945050505050565b60008181526001830160205260408120546118d3575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105a6565b5060006105a6565b606060006118ea8360026125ed565b6118f590600261253d565b67ffffffffffffffff81111561190d5761190d61262a565b6040519080825280601f01601f191660200182016040528015611937576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061196e5761196e612659565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119d1576119d1612659565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611a0d8460026125ed565b611a1890600161253d565b90505b6001811115611ab5577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611a5957611a59612659565b1a60f81b828281518110611a6f57611a6f612659565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611aae81612688565b9050611a1b565b50831561098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161071e565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561082857600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061098f8373ffffffffffffffffffffffffffffffffffffffff8416612040565b7f000000000000000000000000000000000000000000000000000000000000000081611c2660025490565b611c30919061253d565b1115611c98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015260640161071e565b6108288282612133565b6000826000018281548110611cb957611cb9612659565b9060005260206000200154905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d035750600090506003611ddb565b8460ff16601b14158015611d1b57508460ff16601c14155b15611d2c5750600090506004611ddb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611d80573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611dd457600060019250925050611ddb565b9150600090505b94509492505050565b6000816004811115611df857611df86126bd565b1415611e015750565b6001816004811115611e1557611e156126bd565b1415611e7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161071e565b6002816004811115611e9157611e916126bd565b1415611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161071e565b6003816004811115611f0d57611f0d6126bd565b1415611f9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b6004816004811115611faf57611faf6126bd565b141561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b50565b60008181526001830160205260408120548015612129576000612064600183612555565b855490915060009061207890600190612555565b90508181146120dd57600086600001828154811061209857612098612659565b90600052602060002001549050808760000184815481106120bb576120bb612659565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806120ee576120ee6126ec565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105a6565b60009150506105a6565b73ffffffffffffffffffffffffffffffffffffffff82166121b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161071e565b80600260008282546121c2919061253d565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906121fc90849061253d565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006020828403121561226557600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461098f57600080fd5b60005b838110156122b0578181015183820152602001612298565b838111156113695750506000910152565b60208152600082518060208401526122e0816040850160208701612295565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461233657600080fd5b919050565b6000806040838503121561234e57600080fd5b61235783612312565b946020939093013593505050565b60008060006060848603121561237a57600080fd5b61238384612312565b925061239160208501612312565b9150604084013590509250925092565b6000602082840312156123b357600080fd5b5035919050565b600080604083850312156123cd57600080fd5b823591506123dd60208401612312565b90509250929050565b6000602082840312156123f857600080fd5b61098f82612312565b6000806040838503121561241457600080fd5b50508035926020909101359150565b600080600080600080600060e0888a03121561243e57600080fd5b61244788612312565b965061245560208901612312565b95506040880135945060608801359350608088013560ff8116811461247957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156124a957600080fd5b6124b283612312565b91506123dd60208401612312565b600181811c908216806124d457607f821691505b602082108114156117f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156125505761255061250e565b500190565b6000828210156125675761256761250e565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125a4816017850160208801612295565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516125e1816028840160208801612295565b01602801949350505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126255761262561250e565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000816126975761269761250e565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d6255efa640147373de25f7b332ffca14cd86477a026e29eb6107071491288dd64736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063893d20e81161010f578063a9059cbb116100a2578063d505accf11610071578063d505accf146104bd578063d5391393146104d0578063d547741f146104f7578063dd62ed3e1461050a57600080fd5b8063a9059cbb1461044e578063c8e1b4ce14610461578063ca15c87314610474578063cd3c7e1f1461048757600080fd5b806395d89b41116100de57806395d89b41146104185780639dc29fac14610420578063a217fddf14610433578063a457c2d71461043b57600080fd5b8063893d20e8146103565780639010d07c1461038357806391d148541461039657806395609212146103dc57600080fd5b8063313ce56711610187578063395093511161015657806339509351146102e757806340c10f19146102fa57806370a082311461030d5780637ecebe001461034357600080fd5b8063313ce56714610297578063355274ea146102a65780633644e515146102cc57806336568abe146102d457600080fd5b806318160ddd116101c357806318160ddd1461023a57806323b872dd1461024c578063248a9ca31461025f5780632f2ff15d1461028257600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063095ea7b314610227575b600080fd5b6101fd6101f8366004612253565b610550565b60405190151581526020015b60405180910390f35b61021a6105ac565b60405161020991906122c1565b6101fd61023536600461233b565b61063e565b6002545b604051908152602001610209565b6101fd61025a366004612365565b610654565b61023e61026d3660046123a1565b60009081526006602052604090206001015490565b6102956102903660046123ba565b61073f565b005b60405160128152602001610209565b7f000000000000000000000000000000000000000006765c793fa10079d000000061023e565b61023e61076a565b6102956102e23660046123ba565b610779565b6101fd6102f536600461233b565b61082c565b6101fd61030836600461233b565b610875565b61023e61031b3660046123e6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61023e6103513660046123e6565b610944565b61035e61096f565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610209565b61035e610391366004612401565b610977565b6101fd6103a43660046123ba565b600091825260066020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b6104036103ea3660046123e6565b6008602052600090815260409020805460019091015482565b60408051928352602083019190915201610209565b61021a610996565b6101fd61042e36600461233b565b6109a5565b61023e600081565b6101fd61044936600461233b565b610a06565b6101fd61045c36600461233b565b610ade565b61029561046f36600461233b565b610aeb565b61023e6104823660046123a1565b610b5e565b61023e6104953660046123e6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b6102956104cb366004612423565b610b75565b61023e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102956105053660046123ba565b610d34565b61023e610518366004612496565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f0000000000000000000000000000000000000000000000000000000014806105a657506105a682610e70565b92915050565b6060600380546105bb906124c0565b80601f01602080910402602001604051908101604052809291908181526020018280546105e7906124c0565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b600061064b338484610f07565b50600192915050565b60006106618484846110ba565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107348533858403610f07565b506001949350505050565b60008281526006602052604090206001015461075b813361136f565b6107658383611441565b505050565b6000610774611463565b905090565b73ffffffffffffffffffffffffffffffffffffffff8116331461081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c660000000000000000000000000000000000606482015260840161071e565b6108288282611597565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161064b91859061087090869061253d565b610f07565b60007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a2813361136f565b336000908152600860205260408120600181018054919286926108c690849061253d565b909155505080546001820154111561093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f6d696e7465722063617020657863656564656400000000000000000000000000604482015260640161071e565b61073485856115b9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408120546105a6565b600061077481805b600082815260076020526040812061098f90836115c3565b9392505050565b6060600480546105bb906124c0565b60007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109d2813361136f565b336000908152600860205260408120600181018054919286926109f6908490612555565b90915550610734905085856115cf565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610ac7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161071e565b610ad43385858403610f07565b5060019392505050565b600061064b3384846110ba565b6000610af7813361136f565b73ffffffffffffffffffffffffffffffffffffffff831660008181526008602052604090819020849055517f9917e077a26c11e709ef1e3646df334b6146e2b10a05501633864b047c53432c90610b519085815260200190565b60405180910390a2505050565b60008181526007602052604081206105a6906117bc565b83421115610bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161071e565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610c0e8c6117c6565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610c76826117fb565b90506000610c8682878787611864565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161071e565b610d288a8a8a610f07565b50505050505050505050565b600082815260066020526040902060010154610d50813361136f565b6107658383611597565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661082857600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610df03390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061098f8373ffffffffffffffffffffffffffffffffffffffff841661188c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806105a657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105a6565b73ffffffffffffffffffffffffffffffffffffffff8316610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff821661104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8216611200576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156112b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906112fa90849061253d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161136091815260200190565b60405180910390a35b50505050565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16610828576113c78173ffffffffffffffffffffffffffffffffffffffff1660146118db565b6113d28360206118db565b6040516020016113e392919061256c565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a000000000000000000000000000000000000000000000000000000000825261071e916004016122c1565b61144b8282610d5a565b60008281526007602052604090206107659082610e4e565b60003073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000cafe001067cdef266afb7eb5a286dcfd277f3de5161480156114c957507f00000000000000000000000000000000000000000000000000000000000000fa46145b156114f357507f3029ed82be8036d2c7ef892e7096f832a2d702ba6863b10850620c01763cac8990565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f45d0de8279d2c79a4ff25ff77d9c378cc9f3e61924fc1bee6074998c9207461a828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6115a18282611b1e565b60008281526007602052604090206107659082611bd9565b6108288282611bfb565b600061098f8383611ca2565b73ffffffffffffffffffffffffffffffffffffffff8216611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290611764908490612555565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006105a6825490565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090208054600181018255905b50919050565b60006105a6611808611463565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061187587878787611ccc565b9150915061188281611de4565b5095945050505050565b60008181526001830160205260408120546118d3575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105a6565b5060006105a6565b606060006118ea8360026125ed565b6118f590600261253d565b67ffffffffffffffff81111561190d5761190d61262a565b6040519080825280601f01601f191660200182016040528015611937576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061196e5761196e612659565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119d1576119d1612659565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611a0d8460026125ed565b611a1890600161253d565b90505b6001811115611ab5577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611a5957611a59612659565b1a60f81b828281518110611a6f57611a6f612659565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611aae81612688565b9050611a1b565b50831561098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161071e565b600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561082857600082815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061098f8373ffffffffffffffffffffffffffffffffffffffff8416612040565b7f000000000000000000000000000000000000000006765c793fa10079d000000081611c2660025490565b611c30919061253d565b1115611c98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015260640161071e565b6108288282612133565b6000826000018281548110611cb957611cb9612659565b9060005260206000200154905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d035750600090506003611ddb565b8460ff16601b14158015611d1b57508460ff16601c14155b15611d2c5750600090506004611ddb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611d80573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611dd457600060019250925050611ddb565b9150600090505b94509492505050565b6000816004811115611df857611df86126bd565b1415611e015750565b6001816004811115611e1557611e156126bd565b1415611e7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161071e565b6002816004811115611e9157611e916126bd565b1415611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161071e565b6003816004811115611f0d57611f0d6126bd565b1415611f9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b6004816004811115611faf57611faf6126bd565b141561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b50565b60008181526001830160205260408120548015612129576000612064600183612555565b855490915060009061207890600190612555565b90508181146120dd57600086600001828154811061209857612098612659565b90600052602060002001549050808760000184815481106120bb576120bb612659565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806120ee576120ee6126ec565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105a6565b60009150506105a6565b73ffffffffffffffffffffffffffffffffffffffff82166121b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161071e565b80600260008282546121c2919061253d565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906121fc90849061253d565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006020828403121561226557600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461098f57600080fd5b60005b838110156122b0578181015183820152602001612298565b838111156113695750506000910152565b60208152600082518060208401526122e0816040850160208701612295565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461233657600080fd5b919050565b6000806040838503121561234e57600080fd5b61235783612312565b946020939093013593505050565b60008060006060848603121561237a57600080fd5b61238384612312565b925061239160208501612312565b9150604084013590509250925092565b6000602082840312156123b357600080fd5b5035919050565b600080604083850312156123cd57600080fd5b823591506123dd60208401612312565b90509250929050565b6000602082840312156123f857600080fd5b61098f82612312565b6000806040838503121561241457600080fd5b50508035926020909101359150565b600080600080600080600060e0888a03121561243e57600080fd5b61244788612312565b965061245560208901612312565b95506040880135945060608801359350608088013560ff8116811461247957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156124a957600080fd5b6124b283612312565b91506123dd60208401612312565b600181811c908216806124d457607f821691505b602082108114156117f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156125505761255061250e565b500190565b6000828210156125675761256761250e565b500390565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516125a4816017850160208801612295565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516125e1816028840160208801612295565b01602801949350505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126255761262561250e565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000816126975761269761250e565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d6255efa640147373de25f7b332ffca14cd86477a026e29eb6107071491288dd64736f6c634300080b0033

Deployed Bytecode Sourcemap

69508:1631:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47979:214;;;;;;:::i;:::-;;:::i;:::-;;;516:14:1;;509:22;491:41;;479:2;464:18;47979:214:0;;;;;;;;55544:100;;;:::i;:::-;;;;;;;:::i;57711:169::-;;;;;;:::i;:::-;;:::i;56664:108::-;56752:12;;56664:108;;;1859:25:1;;;1847:2;1832:18;56664:108:0;1713:177:1;58362:492:0;;;;;;:::i;:::-;;:::i;43865:123::-;;;;;;:::i;:::-;43931:7;43958:12;;;:6;:12;;;;;:22;;;;43865:123;44250:147;;;;;;:::i;:::-;;:::i;:::-;;56506:93;;;56589:2;2996:36:1;;2984:2;2969:18;56506:93:0;2854:184:1;69084:83:0;69155:4;69084:83;;67937:115;;;:::i;45298:218::-;;;;;;:::i;:::-;;:::i;59263:215::-;;;;;;:::i;:::-;;:::i;70168:287::-;;;;;;:::i;:::-;;:::i;56835:127::-;;;;;;:::i;:::-;56936:18;;56909:7;56936:18;;;;;;;;;;;;56835:127;67679:128;;;;;;:::i;:::-;;:::i;70703:114::-;;;:::i;:::-;;;3410:42:1;3398:55;;;3380:74;;3368:2;3353:18;70703:114:0;3234:226:1;48792:145:0;;;;;;:::i;:::-;;:::i;42750:139::-;;;;;;:::i;:::-;42828:4;42852:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;;;;42750:139;69802:46;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;3892:25:1;;;3948:2;3933:18;;3926:34;;;;3865:18;69802:46:0;3718:248:1;55763:104:0;;;:::i;70463:232::-;;;;;;:::i;:::-;;:::i;41841:49::-;;41886:4;41841:49;;59981:413;;;;;;:::i;:::-;;:::i;57175:175::-;;;;;;:::i;:::-;;:::i;70953:183::-;;;;;;:::i;:::-;;:::i;49111:134::-;;;;;;:::i;:::-;;:::i;70825:120::-;;;;;;:::i;:::-;70913:20;;70886:7;70913:20;;;:12;:20;;;;;:24;;70825:120;66968:645;;;;;;:::i;:::-;;:::i;69731:62::-;;69769:24;69731:62;;44642:149;;;;;;:::i;:::-;;:::i;57413:151::-;;;;;;:::i;:::-;57529:18;;;;57502:7;57529:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;57413:151;47979:214;48064:4;48088:57;;;48103:42;48088:57;;:97;;;48149:36;48173:11;48149:23;:36::i;:::-;48081:104;47979:214;-1:-1:-1;;47979:214:0:o;55544:100::-;55598:13;55631:5;55624:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55544:100;:::o;57711:169::-;57794:4;57811:39;39744:10;57834:7;57843:6;57811:8;:39::i;:::-;-1:-1:-1;57868:4:0;57711:169;;;;:::o;58362:492::-;58502:4;58519:36;58529:6;58537:9;58548:6;58519:9;:36::i;:::-;58595:19;;;58568:24;58595:19;;;:11;:19;;;;;;;;39744:10;58595:33;;;;;;;;58647:26;;;;58639:79;;;;;;;5578:2:1;58639:79:0;;;5560:21:1;5617:2;5597:18;;;5590:30;5656:34;5636:18;;;5629:62;5727:10;5707:18;;;5700:38;5755:19;;58639:79:0;;;;;;;;;58754:57;58763:6;39744:10;58804:6;58785:16;:25;58754:8;:57::i;:::-;-1:-1:-1;58842:4:0;;58362:492;-1:-1:-1;;;;58362:492:0:o;44250:147::-;43931:7;43958:12;;;:6;:12;;;;;:22;;;42332:30;42343:4;39744:10;42332;:30::i;:::-;44364:25:::1;44375:4;44381:7;44364:10;:25::i;:::-;44250:147:::0;;;:::o;67937:115::-;67997:7;68024:20;:18;:20::i;:::-;68017:27;;67937:115;:::o;45298:218::-;45394:23;;;39744:10;45394:23;45386:83;;;;;;;5987:2:1;45386:83:0;;;5969:21:1;6026:2;6006:18;;;5999:30;6065:34;6045:18;;;6038:62;6136:17;6116:18;;;6109:45;6171:19;;45386:83:0;5785:411:1;45386:83:0;45482:26;45494:4;45500:7;45482:11;:26::i;:::-;45298:218;;:::o;59263:215::-;39744:10;59351:4;59400:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;59351:4;;59368:80;;59391:7;;59400:47;;59437:10;;59400:47;:::i;:::-;59368:8;:80::i;70168:287::-;70250:4;69769:24;42332:30;69769:24;39744:10;42332;:30::i;:::-;70299:10:::1;70267:16;70286:24:::0;;;:12:::1;:24;::::0;;;;70321:7:::1;::::0;::::1;:17:::0;;70286:24;;70332:6;;70321:17:::1;::::0;70332:6;;70321:17:::1;:::i;:::-;::::0;;;-1:-1:-1;;70368:5:0;;70357:7:::1;::::0;::::1;::::0;:16:::1;;70349:48;;;::::0;::::1;::::0;;6725:2:1;70349:48:0::1;::::0;::::1;6707:21:1::0;6764:2;6744:18;;;6737:30;6803:21;6783:18;;;6776:49;6842:18;;70349:48:0::1;6523:343:1::0;70349:48:0::1;70408:17;70414:2;70418:6;70408:5;:17::i;67679:128::-:0;67775:14;;;67748:7;67775:14;;;:7;:14;;;;;19798;67775:24;19706:114;70703;70746:7;70773:36;70746:7;;48792:145;48874:7;48901:18;;;:12;:18;;;;;:28;;48923:5;48901:21;:28::i;:::-;48894:35;48792:145;-1:-1:-1;;;48792:145:0:o;55763:104::-;55819:13;55852:7;55845:14;;;;;:::i;70463:232::-;70547:4;69769:24;42332:30;69769:24;39744:10;42332;:30::i;:::-;70596:10:::1;70564:16;70583:24:::0;;;:12:::1;:24;::::0;;;;70618:7:::1;::::0;::::1;:17:::0;;70583:24;;70629:6;;70618:17:::1;::::0;70629:6;;70618:17:::1;:::i;:::-;::::0;;;-1:-1:-1;70646:19:0::1;::::0;-1:-1:-1;70652:4:0;70658:6;70646:5:::1;:19::i;59981:413::-:0;39744:10;60074:4;60118:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;60171:35;;;;60163:85;;;;;;;7203:2:1;60163:85:0;;;7185:21:1;7242:2;7222:18;;;7215:30;7281:34;7261:18;;;7254:62;7352:7;7332:18;;;7325:35;7377:19;;60163:85:0;7001:401:1;60163:85:0;60284:67;39744:10;60307:7;60335:15;60316:16;:34;60284:8;:67::i;:::-;-1:-1:-1;60382:4:0;;59981:413;-1:-1:-1;;;59981:413:0:o;57175:175::-;57261:4;57278:42;39744:10;57302:9;57313:6;57278:9;:42::i;70953:183::-;41886:4;42332:30;41886:4;39744:10;42332;:30::i;:::-;71053:20:::1;::::0;::::1;;::::0;;;:12:::1;:20;::::0;;;;;;:30;;;71099:29;::::1;::::0;::::1;::::0;71080:3;1859:25:1;;1847:2;1832:18;;1713:177;71099:29:0::1;;;;;;;;70953:183:::0;;;:::o;49111:134::-;49183:7;49210:18;;;:12;:18;;;;;:27;;:25;:27::i;66968:645::-;67212:8;67193:15;:27;;67185:69;;;;;;;7609:2:1;67185:69:0;;;7591:21:1;7648:2;7628:18;;;7621:30;7687:31;7667:18;;;7660:59;7736:18;;67185:69:0;7407:353:1;67185:69:0;67267:18;67309:16;67327:5;67334:7;67343:5;67350:16;67360:5;67350:9;:16::i;:::-;67298:79;;;;;;8052:25:1;;;;8096:42;8174:15;;;8154:18;;;8147:43;8226:15;;;;8206:18;;;8199:43;8258:18;;;8251:34;8301:19;;;8294:35;8345:19;;;8338:35;;;8024:19;;67298:79:0;;;;;;;;;;;;67288:90;;;;;;67267:111;;67391:12;67406:28;67423:10;67406:16;:28::i;:::-;67391:43;;67447:14;67464:28;67478:4;67484:1;67487;67490;67464:13;:28::i;:::-;67447:45;;67521:5;67511:15;;:6;:15;;;67503:58;;;;;;;8586:2:1;67503:58:0;;;8568:21:1;8625:2;8605:18;;;8598:30;8664:32;8644:18;;;8637:60;8714:18;;67503:58:0;8384:354:1;67503:58:0;67574:31;67583:5;67590:7;67599:5;67574:8;:31::i;:::-;67174:439;;;66968:645;;;;;;;:::o;44642:149::-;43931:7;43958:12;;;:6;:12;;;;;:22;;;42332:30;42343:4;39744:10;42332;:30::i;:::-;44757:26:::1;44769:4;44775:7;44757:11;:26::i;46799:238::-:0;42828:4;42852:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;46878:152;;46922:12;;;;:6;:12;;;;;;;;:29;;;;;;;;;;:36;;;;46954:4;46922:36;;;47005:12;39744:10;;39664:98;47005:12;46978:40;;46996:7;46978:40;;46990:4;46978:40;;;;;;;;;;46799:238;;:::o;7872:152::-;7942:4;7966:50;7971:3;7991:23;;;7966:4;:50::i;42454:204::-;42539:4;42563:47;;;42578:32;42563:47;;:87;;-1:-1:-1;14483:25:0;14468:40;;;;42614:36;14359:157;63665:380;63801:19;;;63793:68;;;;;;;8945:2:1;63793:68:0;;;8927:21:1;8984:2;8964:18;;;8957:30;9023:34;9003:18;;;8996:62;9094:6;9074:18;;;9067:34;9118:19;;63793:68:0;8743:400:1;63793:68:0;63880:21;;;63872:68;;;;;;;9350:2:1;63872:68:0;;;9332:21:1;9389:2;9369:18;;;9362:30;9428:34;9408:18;;;9401:62;9499:4;9479:18;;;9472:32;9521:19;;63872:68:0;9148:398:1;63872:68:0;63953:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;64005:32;;1859:25:1;;;64005:32:0;;1832:18:1;64005:32:0;;;;;;;63665:380;;;:::o;60884:733::-;61024:20;;;61016:70;;;;;;;9753:2:1;61016:70:0;;;9735:21:1;9792:2;9772:18;;;9765:30;9831:34;9811:18;;;9804:62;9902:7;9882:18;;;9875:35;9927:19;;61016:70:0;9551:401:1;61016:70:0;61105:23;;;61097:71;;;;;;;10159:2:1;61097:71:0;;;10141:21:1;10198:2;10178:18;;;10171:30;10237:34;10217:18;;;10210:62;10308:5;10288:18;;;10281:33;10331:19;;61097:71:0;9957:399:1;61097:71:0;61265:17;;;61241:21;61265:17;;;;;;;;;;;61301:23;;;;61293:74;;;;;;;10563:2:1;61293:74:0;;;10545:21:1;10602:2;10582:18;;;10575:30;10641:34;10621:18;;;10614:62;10712:8;10692:18;;;10685:36;10738:19;;61293:74:0;10361:402:1;61293:74:0;61403:17;;;;:9;:17;;;;;;;;;;;61423:22;;;61403:42;;61467:20;;;;;;;;:30;;61439:6;;61403:9;61467:30;;61439:6;;61467:30;:::i;:::-;;;;;;;;61532:9;61515:35;;61524:6;61515:35;;;61543:6;61515:35;;;;1859:25:1;;1847:2;1832:18;;1713:177;61515:35:0;;;;;;;;61563:46;61005:612;60884:733;;;:::o;43179:497::-;42828:4;42852:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;43255:414;;43448:41;43476:7;43448:41;;43486:2;43448:19;:41::i;:::-;43562:38;43590:4;43597:2;43562:19;:38::i;:::-;43353:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;43299:358;;;;;;;;:::i;49338:169::-;49426:31;49443:4;49449:7;49426:16;:31::i;:::-;49468:18;;;;:12;:18;;;;;:31;;49491:7;49468:22;:31::i;35219:314::-;35272:7;35304:4;35296:29;35313:12;35296:29;;:66;;;;;35346:16;35329:13;:33;35296:66;35292:234;;;-1:-1:-1;35386:24:0;;35219:314::o;35292:234::-;-1:-1:-1;35722:73:0;;;35472:10;35722:73;;;;13796:25:1;;;;35484:12:0;13837:18:1;;;13830:34;35498:15:0;13880:18:1;;;13873:34;35766:13:0;13923:18:1;;;13916:34;35789:4:0;13966:19:1;;;;13959:84;;;;35722:73:0;;;;;;;;;;13768:19:1;;;;35722:73:0;;;35712:84;;;;;;67937:115::o;49601:174::-;49690:32;49708:4;49714:7;49690:17;:32::i;:::-;49733:18;;;;:12;:18;;;;;:34;;49759:7;49733:25;:34::i;70019:141::-;70124:28;70136:7;70145:6;70124:11;:28::i;9168:158::-;9242:7;9293:22;9297:3;9309:5;9293:3;:22::i;62636:591::-;62720:21;;;62712:67;;;;;;;11761:2:1;62712:67:0;;;11743:21:1;11800:2;11780:18;;;11773:30;11839:34;11819:18;;;11812:62;11910:3;11890:18;;;11883:31;11931:19;;62712:67:0;11559:397:1;62712:67:0;62879:18;;;62854:22;62879:18;;;;;;;;;;;62916:24;;;;62908:71;;;;;;;12163:2:1;62908:71:0;;;12145:21:1;12202:2;12182:18;;;12175:30;12241:34;12221:18;;;12214:62;12312:4;12292:18;;;12285:32;12334:19;;62908:71:0;11961:398:1;62908:71:0;63015:18;;;:9;:18;;;;;;;;;;63036:23;;;63015:44;;63081:12;:22;;63053:6;;63015:9;63081:22;;63053:6;;63081:22;:::i;:::-;;;;-1:-1:-1;;63121:37:0;;1859:25:1;;;63147:1:0;;63121:37;;;;;;1847:2:1;1832:18;63121:37:0;;;;;;;44250:147;;;:::o;8697:117::-;8760:7;8787:19;8795:3;4181:18;;4098:109;68190:207;68311:14;;;68250:15;68311:14;;;:7;:14;;;;;19798;;19935:1;19917:19;;;;19798:14;68372:17;68267:130;68190:207;;;:::o;36446:167::-;36523:7;36550:55;36572:20;:18;:20::i;:::-;36594:10;31916:57;;14678:66:1;31916:57:0;;;14666:79:1;14761:11;;;14754:27;;;14797:12;;;14790:28;;;31879:7:0;;14834:12:1;;31916:57:0;;;;;;;;;;;;31906:68;;;;;;31899:75;;31786:196;;;;;30095:279;30223:7;30244:17;30263:18;30285:25;30296:4;30302:1;30305;30308;30285:10;:25::i;:::-;30243:67;;;;30321:18;30333:5;30321:11;:18::i;:::-;-1:-1:-1;30357:9:0;30095:279;-1:-1:-1;;;;;30095:279:0:o;1787:414::-;1850:4;3980:19;;;:12;;;:19;;;;;;1867:327;;-1:-1:-1;1910:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2093:18;;2071:19;;;:12;;;:19;;;;;;:40;;;;2126:11;;1867:327;-1:-1:-1;2177:5:0;2170:12;;21965:451;22040:13;22066:19;22098:10;22102:6;22098:1;:10;:::i;:::-;:14;;22111:1;22098:14;:::i;:::-;22088:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22088:25:0;;22066:47;;22124:15;:6;22131:1;22124:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;22150;:6;22157:1;22150:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;22181:9:0;22193:10;22197:6;22193:1;:10;:::i;:::-;:14;;22206:1;22193:14;:::i;:::-;22181:26;;22176:135;22213:1;22209;:5;22176:135;;;22248:12;22261:5;22269:3;22261:11;22248:25;;;;;;;:::i;:::-;;;;22236:6;22243:1;22236:9;;;;;;;;:::i;:::-;;;;:37;;;;;;;;;;-1:-1:-1;22298:1:0;22288:11;;;;;22216:3;;;:::i;:::-;;;22176:135;;;-1:-1:-1;22329:10:0;;22321:55;;;;;;;13378:2:1;22321:55:0;;;13360:21:1;;;13397:18;;;13390:30;13456:34;13436:18;;;13429:62;13508:18;;22321:55:0;13176:356:1;47169:239:0;42828:4;42852:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;47249:152;;;47324:5;47292:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;:37;;;;;;47349:40;39744:10;;47292:12;;47349:40;;47324:5;47349:40;47169:239;;:::o;8200:158::-;8273:4;8297:53;8305:3;8325:23;;;8297:7;:53::i;69225:207::-;69155:4;69340:6;69318:19;56752:12;;;56664:108;69318:19;:28;;;;:::i;:::-;:37;;69310:75;;;;;;;14256:2:1;69310:75:0;;;14238:21:1;14295:2;14275:18;;;14268:30;14334:27;14314:18;;;14307:55;14379:18;;69310:75:0;14054:349:1;69310:75:0;69396:28;69408:7;69417:6;69396:11;:28::i;4561:120::-;4628:7;4655:3;:11;;4667:5;4655:18;;;;;;;;:::i;:::-;;;;;;;;;4648:25;;4561:120;;;;:::o;28324:1632::-;28455:7;;29389:66;29376:79;;29372:163;;;-1:-1:-1;29488:1:0;;-1:-1:-1;29492:30:0;29472:51;;29372:163;29549:1;:7;;29554:2;29549:7;;:18;;;;;29560:1;:7;;29565:2;29560:7;;29549:18;29545:102;;;-1:-1:-1;29600:1:0;;-1:-1:-1;29604:30:0;29584:51;;29545:102;29761:24;;;29744:14;29761:24;;;;;;;;;15084:25:1;;;15157:4;15145:17;;15125:18;;;15118:45;;;;15179:18;;;15172:34;;;15222:18;;;15215:34;;;29761:24:0;;15056:19:1;;29761:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29761:24:0;;;;;;-1:-1:-1;;29800:20:0;;;29796:103;;29853:1;29857:29;29837:50;;;;;;;29796:103;29919:6;-1:-1:-1;29927:20:0;;-1:-1:-1;28324:1632:0;;;;;;;;:::o;22986:643::-;23064:20;23055:5;:29;;;;;;;;:::i;:::-;;23051:571;;;22986:643;:::o;23051:571::-;23162:29;23153:5;:38;;;;;;;;:::i;:::-;;23149:473;;;23208:34;;;;;15651:2:1;23208:34:0;;;15633:21:1;15690:2;15670:18;;;15663:30;15729:26;15709:18;;;15702:54;15773:18;;23208:34:0;15449:348:1;23149:473:0;23273:35;23264:5;:44;;;;;;;;:::i;:::-;;23260:362;;;23325:41;;;;;16004:2:1;23325:41:0;;;15986:21:1;16043:2;16023:18;;;16016:30;16082:33;16062:18;;;16055:61;16133:18;;23325:41:0;15802:355:1;23260:362:0;23397:30;23388:5;:39;;;;;;;;:::i;:::-;;23384:238;;;23444:44;;;;;16364:2:1;23444:44:0;;;16346:21:1;16403:2;16383:18;;;16376:30;16442:34;16422:18;;;16415:62;16513:4;16493:18;;;16486:32;16535:19;;23444:44:0;16162:398:1;23384:238:0;23519:30;23510:5;:39;;;;;;;;:::i;:::-;;23506:116;;;23566:44;;;;;16767:2:1;23566:44:0;;;16749:21:1;16806:2;16786:18;;;16779:30;16845:34;16825:18;;;16818:62;16916:4;16896:18;;;16889:32;16938:19;;23566:44:0;16565:398:1;23506:116:0;22986:643;:::o;2377:1420::-;2443:4;2582:19;;;:12;;;:19;;;;;;2618:15;;2614:1176;;2993:21;3017:14;3030:1;3017:10;:14;:::i;:::-;3066:18;;2993:38;;-1:-1:-1;3046:17:0;;3066:22;;3087:1;;3066:22;:::i;:::-;3046:42;;3122:13;3109:9;:26;3105:405;;3156:17;3176:3;:11;;3188:9;3176:22;;;;;;;;:::i;:::-;;;;;;;;;3156:42;;3330:9;3301:3;:11;;3313:13;3301:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3415:23;;;:12;;;:23;;;;;:36;;;3105:405;3591:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3686:3;:12;;:19;3699:5;3686:19;;;;;;;;;;;3679:26;;;3729:4;3722:11;;;;;;;2614:1176;3773:5;3766:12;;;;;61904:399;61988:21;;;61980:65;;;;;;;17359:2:1;61980:65:0;;;17341:21:1;17398:2;17378:18;;;17371:30;17437:33;17417:18;;;17410:61;17488:18;;61980:65:0;17157:355:1;61980:65:0;62136:6;62120:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;62153:18:0;;;:9;:18;;;;;;;;;;:28;;62175:6;;62153:9;:28;;62175:6;;62153:28;:::i;:::-;;;;-1:-1:-1;;62197:37:0;;1859:25:1;;;62197:37:0;;;;62214:1;;62197:37;;1847:2:1;1832:18;62197:37:0;;;;;;;45298:218;;:::o;14:332:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;180:9;167:23;230:66;223:5;219:78;212:5;209:89;199:117;;312:1;309;302:12;543:258;615:1;625:113;639:6;636:1;633:13;625:113;;;715:11;;;709:18;696:11;;;689:39;661:2;654:10;625:113;;;756:6;753:1;750:13;747:48;;;-1:-1:-1;;791:1:1;773:16;;766:27;543:258::o;806:442::-;955:2;944:9;937:21;918:4;987:6;981:13;1030:6;1025:2;1014:9;1010:18;1003:34;1046:66;1105:6;1100:2;1089:9;1085:18;1080:2;1072:6;1068:15;1046:66;:::i;:::-;1164:2;1152:15;1169:66;1148:88;1133:104;;;;1239:2;1129:113;;806:442;-1:-1:-1;;806:442:1:o;1253:196::-;1321:20;;1381:42;1370:54;;1360:65;;1350:93;;1439:1;1436;1429:12;1350:93;1253:196;;;:::o;1454:254::-;1522:6;1530;1583:2;1571:9;1562:7;1558:23;1554:32;1551:52;;;1599:1;1596;1589:12;1551:52;1622:29;1641:9;1622:29;:::i;:::-;1612:39;1698:2;1683:18;;;;1670:32;;-1:-1:-1;;;1454:254:1:o;1895:328::-;1972:6;1980;1988;2041:2;2029:9;2020:7;2016:23;2012:32;2009:52;;;2057:1;2054;2047:12;2009:52;2080:29;2099:9;2080:29;:::i;:::-;2070:39;;2128:38;2162:2;2151:9;2147:18;2128:38;:::i;:::-;2118:48;;2213:2;2202:9;2198:18;2185:32;2175:42;;1895:328;;;;;:::o;2228:180::-;2287:6;2340:2;2328:9;2319:7;2315:23;2311:32;2308:52;;;2356:1;2353;2346:12;2308:52;-1:-1:-1;2379:23:1;;2228:180;-1:-1:-1;2228:180:1:o;2595:254::-;2663:6;2671;2724:2;2712:9;2703:7;2699:23;2695:32;2692:52;;;2740:1;2737;2730:12;2692:52;2776:9;2763:23;2753:33;;2805:38;2839:2;2828:9;2824:18;2805:38;:::i;:::-;2795:48;;2595:254;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3465:248::-;3533:6;3541;3594:2;3582:9;3573:7;3569:23;3565:32;3562:52;;;3610:1;3607;3600:12;3562:52;-1:-1:-1;;3633:23:1;;;3703:2;3688:18;;;3675:32;;-1:-1:-1;3465:248:1:o;3971:693::-;4082:6;4090;4098;4106;4114;4122;4130;4183:3;4171:9;4162:7;4158:23;4154:33;4151:53;;;4200:1;4197;4190:12;4151:53;4223:29;4242:9;4223:29;:::i;:::-;4213:39;;4271:38;4305:2;4294:9;4290:18;4271:38;:::i;:::-;4261:48;;4356:2;4345:9;4341:18;4328:32;4318:42;;4407:2;4396:9;4392:18;4379:32;4369:42;;4461:3;4450:9;4446:19;4433:33;4506:4;4499:5;4495:16;4488:5;4485:27;4475:55;;4526:1;4523;4516:12;4475:55;3971:693;;;;-1:-1:-1;3971:693:1;;;;4549:5;4601:3;4586:19;;4573:33;;-1:-1:-1;4653:3:1;4638:19;;;4625:33;;3971:693;-1:-1:-1;;3971:693:1:o;4669:260::-;4737:6;4745;4798:2;4786:9;4777:7;4773:23;4769:32;4766:52;;;4814:1;4811;4804:12;4766:52;4837:29;4856:9;4837:29;:::i;:::-;4827:39;;4885:38;4919:2;4908:9;4904:18;4885:38;:::i;4934:437::-;5013:1;5009:12;;;;5056;;;5077:61;;5131:4;5123:6;5119:17;5109:27;;5077:61;5184:2;5176:6;5173:14;5153:18;5150:38;5147:218;;;5221:77;5218:1;5211:88;5322:4;5319:1;5312:15;5350:4;5347:1;5340:15;6201:184;6253:77;6250:1;6243:88;6350:4;6347:1;6340:15;6374:4;6371:1;6364:15;6390:128;6430:3;6461:1;6457:6;6454:1;6451:13;6448:39;;;6467:18;;:::i;:::-;-1:-1:-1;6503:9:1;;6390:128::o;6871:125::-;6911:4;6939:1;6936;6933:8;6930:34;;;6944:18;;:::i;:::-;-1:-1:-1;6981:9:1;;6871:125::o;10768:786::-;11179:25;11174:3;11167:38;11149:3;11234:6;11228:13;11250:62;11305:6;11300:2;11295:3;11291:12;11284:4;11276:6;11272:17;11250:62;:::i;:::-;11376:19;11371:2;11331:16;;;11363:11;;;11356:40;11421:13;;11443:63;11421:13;11492:2;11484:11;;11477:4;11465:17;;11443:63;:::i;:::-;11526:17;11545:2;11522:26;;10768:786;-1:-1:-1;;;;10768:786:1:o;12364:228::-;12404:7;12530:1;12462:66;12458:74;12455:1;12452:81;12447:1;12440:9;12433:17;12429:105;12426:131;;;12537:18;;:::i;:::-;-1:-1:-1;12577:9:1;;12364:228::o;12597:184::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12786:184;12838:77;12835:1;12828:88;12935:4;12932:1;12925:15;12959:4;12956:1;12949:15;12975:196;13014:3;13042:5;13032:39;;13051:18;;:::i;:::-;-1:-1:-1;13098:66:1;13087:78;;12975:196::o;15260:184::-;15312:77;15309:1;15302:88;15409:4;15406:1;15399:15;15433:4;15430:1;15423:15;16968:184;17020:77;17017:1;17010:88;17117:4;17114:1;17107:15;17141:4;17138:1;17131:15

Swarm Source

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