ETH Price: $2,635.29 (+6.77%)

Token

ZEEBU (ZBU)
 

Overview

Max Total Supply

2,675,785,350 ZBU

Holders

14 (0.00%)

Total Transfers

-

Market

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
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZEEBU

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-22
*/

// SPDX-License-Identifier: MIT
// File: openzeppelin-contracts-master/contracts/utils/structs/EnumerableSet.sol


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

pragma solidity ^0.8.10;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

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

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
     * 0 before setting it to a non-zero value.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

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

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

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

/**
 * @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.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

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

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

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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

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

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

/**
 * @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:
 *
 * ```solidity
 * 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}:
 *
 * ```solidity
 * 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. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

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

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

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    bool private _paused;

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

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


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract unpausable.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

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

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

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

// by dks
interface IERC20Receiver {
    function onERC20Receive(address from, uint256 amount, address msgSender) external returns (bool);
}

/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 *
 * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
 */
contract ZEEBU is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    address payable immutable public adminAddress;

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

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

        adminAddress = payable(_msgSender());
    }

    // by dks
    function _afterTokenTransfer(address from, address to, uint256 amount) internal override {
        if (to.code.length > 0) {
            // token recipient is a contract, notify them
            try IERC20Receiver(to).onERC20Receive(from, amount,msg.sender) returns (bool success) {
                if(!success)
                {
                    revert("recipient not accepted payment");    
                }
            } catch {
                revert("IERC20Receiver interface not implemented");
            }
        }
    }

    // Function to receive Ether. msg.data must be empty
    receive() external payable {
                   
    }

    // Fallback function is called when msg.data is not empty
    fallback() external payable {
             
    }    

    function flush() public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have admin role to flush");
        
        (bool success, ) = adminAddress.call{value: address(this).balance}("");
        require(success, "Address: unable to send value, recipient may have reverted");        
    }

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

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

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

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

Contract Security Audit

Contract ABI

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

60a06040523480156200001157600080fd5b50604051620021b3380380620021b38339810160408190526200003491620002fb565b81816005620000448382620003f3565b506006620000538282620003f3565b50506007805460ff19169055506200006d600033620000d1565b620000997f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000d1565b620000c57f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000d1565b505033608052620004bf565b620000dd8282620000e1565b5050565b620000f882826200012460201b62000c001760201c565b60008281526001602090815260409091206200011f91839062000c84620001c4821b17901c565b505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620000dd576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001803390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620001db836001600160a01b038416620001e4565b90505b92915050565b60008181526001830160205260408120546200022d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001de565b506000620001de565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025e57600080fd5b81516001600160401b03808211156200027b576200027b62000236565b604051601f8301601f19908116603f01168101908282118183101715620002a657620002a662000236565b81604052838152602092508683858801011115620002c357600080fd5b600091505b83821015620002e75785820183015181830184015290820190620002c8565b600093810190920192909252949350505050565b600080604083850312156200030f57600080fd5b82516001600160401b03808211156200032757600080fd5b62000335868387016200024c565b935060208501519150808211156200034c57600080fd5b506200035b858286016200024c565b9150509250929050565b600181811c908216806200037a57607f821691505b6020821081036200039b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200011f57600081815260208120601f850160051c81016020861015620003ca5750805b601f850160051c820191505b81811015620003eb57828155600101620003d6565b505050505050565b81516001600160401b038111156200040f576200040f62000236565b620004278162000420845462000365565b84620003a1565b602080601f8311600181146200045f5760008415620004465750858301515b600019600386901b1c1916600185901b178555620003eb565b600085815260208120601f198616915b8281101562000490578886015182559484019460019091019084016200046f565b5085821015620004af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051611cd1620004e2600039600081816105ad015261092d0152611cd16000f3fe6080604052600436106101b95760003560e01c806370a08231116100eb578063a457c2d71161008f578063d547741f11610061578063d547741f14610527578063dd62ed3e14610547578063e63ab1e914610567578063fc6f94681461059b57005b8063a457c2d714610493578063a9059cbb146104b3578063ca15c873146104d3578063d5391393146104f357005b80639010d07c116100c85780639010d07c1461041157806391d148541461044957806395d89b4114610469578063a217fddf1461047e57005b806370a08231146103a657806379cc6790146103dc5780638456cb59146103fc57005b8063313ce5671161015d57806340c10f191161012f57806340c10f191461033957806342966c68146103595780635c975abb146103795780636b9f96ea1461039157005b8063313ce567146102c857806336568abe146102e457806339509351146103045780633f4ba83a1461032457005b806318160ddd1161019657806318160ddd1461023957806323b872dd14610258578063248a9ca3146102785780632f2ff15d146102a857005b806301ffc9a7146101c257806306fdde03146101f7578063095ea7b31461021957005b366101c057005b005b3480156101ce57600080fd5b506101e26101dd36600461194f565b6105cf565b60405190151581526020015b60405180910390f35b34801561020357600080fd5b5061020c6105fa565b6040516101ee919061199d565b34801561022557600080fd5b506101e26102343660046119ec565b61068c565b34801561024557600080fd5b506004545b6040519081526020016101ee565b34801561026457600080fd5b506101e2610273366004611a16565b6106a4565b34801561028457600080fd5b5061024a610293366004611a52565b60009081526020819052604090206001015490565b3480156102b457600080fd5b506101c06102c3366004611a6b565b6106c8565b3480156102d457600080fd5b50604051601281526020016101ee565b3480156102f057600080fd5b506101c06102ff366004611a6b565b6106f2565b34801561031057600080fd5b506101e261031f3660046119ec565b610775565b34801561033057600080fd5b506101c0610797565b34801561034557600080fd5b506101c06103543660046119ec565b61082b565b34801561036557600080fd5b506101c0610374366004611a52565b6108b8565b34801561038557600080fd5b5060075460ff166101e2565b34801561039d57600080fd5b506101c06108c5565b3480156103b257600080fd5b5061024a6103c1366004611a97565b6001600160a01b031660009081526002602052604090205490565b3480156103e857600080fd5b506101c06103f73660046119ec565b610a12565b34801561040857600080fd5b506101c0610a27565b34801561041d57600080fd5b5061043161042c366004611ab2565b610ab9565b6040516001600160a01b0390911681526020016101ee565b34801561045557600080fd5b506101e2610464366004611a6b565b610ad8565b34801561047557600080fd5b5061020c610b01565b34801561048a57600080fd5b5061024a600081565b34801561049f57600080fd5b506101e26104ae3660046119ec565b610b10565b3480156104bf57600080fd5b506101e26104ce3660046119ec565b610b8b565b3480156104df57600080fd5b5061024a6104ee366004611a52565b610b99565b3480156104ff57600080fd5b5061024a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561053357600080fd5b506101c0610542366004611a6b565b610bb0565b34801561055357600080fd5b5061024a610562366004611ad4565b610bd5565b34801561057357600080fd5b5061024a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b3480156105a757600080fd5b506104317f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b03198216635a05180f60e01b14806105f457506105f482610c99565b92915050565b60606005805461060990611afe565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611afe565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b60003361069a818585610cce565b5060019392505050565b6000336106b2858285610df2565b6106bd858585610e6c565b506001949350505050565b6000828152602081905260409020600101546106e381611028565b6106ed8383611032565b505050565b6001600160a01b03811633146107675760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6107718282611054565b5050565b60003361069a8185856107888383610bd5565b6107929190611b4e565b610cce565b6107c17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610ad8565b6108215760405162461bcd60e51b81526020600482015260396024820152600080516020611c7c83398151915260448201527f76652070617573657220726f6c6520746f20756e706175736500000000000000606482015260840161075e565b610829611076565b565b6108557f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610ad8565b6108ae5760405162461bcd60e51b81526020600482015260366024820152600080516020611c7c8339815191526044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b606482015260840161075e565b61077182826110c8565b6108c2338261119d565b50565b6108d0600033610ad8565b6109295760405162461bcd60e51b81526020600482015260366024820152600080516020611c7c8339815191526044820152750ecca40c2c8dad2dc40e4ded8ca40e8de40ccd8eae6d60531b606482015260840161075e565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03164760405160006040518083038185875af1925050503d8060008114610996576040519150601f19603f3d011682016040523d82523d6000602084013e61099b565b606091505b50509050806108c25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161075e565b610a1d823383610df2565b610771828261119d565b610a517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610ad8565b610ab15760405162461bcd60e51b81526020600482015260376024820152600080516020611c7c83398151915260448201527f76652070617573657220726f6c6520746f207061757365000000000000000000606482015260840161075e565b6108296112e4565b6000828152600160205260408120610ad19083611321565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461060990611afe565b60003381610b1e8286610bd5565b905083811015610b7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161075e565b6106bd8286868403610cce565b60003361069a818585610e6c565b60008181526001602052604081206105f49061132d565b600082815260208190526040902060010154610bcb81611028565b6106ed8383611054565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c0a8282610ad8565b610771576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610c403390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610ad1836001600160a01b038416611337565b60006001600160e01b03198216637965db0b60e01b14806105f457506301ffc9a760e01b6001600160e01b03198316146105f4565b6001600160a01b038316610d305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161075e565b6001600160a01b038216610d915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161075e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610dfe8484610bd5565b90506000198114610e665781811015610e595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161075e565b610e668484848403610cce565b50505050565b6001600160a01b038316610ed05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161075e565b6001600160a01b038216610f325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161075e565b610f3d838383611386565b6001600160a01b03831660009081526002602052604090205481811015610fb55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161075e565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110159086815260200190565b60405180910390a3610e66848484611391565b6108c281336114bc565b61103c8282610c00565b60008281526001602052604090206106ed9082610c84565b61105e8282611515565b60008281526001602052604090206106ed908261157a565b61107e61158f565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03821661111e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161075e565b61112a60008383611386565b806004600082825461113c9190611b4e565b90915550506001600160a01b0382166000818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361077160008383611391565b6001600160a01b0382166111fd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161075e565b61120982600083611386565b6001600160a01b0382166000908152600260205260409020548181101561127d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161075e565b6001600160a01b03831660008181526002602090815260408083208686039055600480548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106ed83600084611391565b6112ec6115d8565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110ab3390565b6000610ad1838361161e565b60006105f4825490565b600081815260018301602052604081205461137e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105f4565b5060006105f4565b6106ed838383611648565b6001600160a01b0382163b156106ed576040516334c8533960e21b81526001600160a01b0384811660048301526024820183905233604483015283169063d3214ce4906064016020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611b61565b60015b61146f5760405162461bcd60e51b815260206004820152602860248201527f494552433230526563656976657220696e74657266616365206e6f7420696d706044820152671b195b595b9d195960c21b606482015260840161075e565b80610e665760405162461bcd60e51b815260206004820152601e60248201527f726563697069656e74206e6f74206163636570746564207061796d656e740000604482015260640161075e565b6114c68282610ad8565b610771576114d3816116ae565b6114de8360206116c0565b6040516020016114ef929190611b83565b60408051601f198184030181529082905262461bcd60e51b825261075e9160040161199d565b61151f8282610ad8565b15610771576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610ad1836001600160a01b03841661185c565b60075460ff166108295760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161075e565b60075460ff16156108295760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161075e565b600082600001828154811061163557611635611bf8565b9060005260206000200154905092915050565b60075460ff16156106ed5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161075e565b60606105f46001600160a01b03831660145b606060006116cf836002611c0e565b6116da906002611b4e565b67ffffffffffffffff8111156116f2576116f2611c25565b6040519080825280601f01601f19166020018201604052801561171c576020820181803683370190505b509050600360fc1b8160008151811061173757611737611bf8565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061176657611766611bf8565b60200101906001600160f81b031916908160001a905350600061178a846002611c0e565b611795906001611b4e565b90505b600181111561180d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106117c9576117c9611bf8565b1a60f81b8282815181106117df576117df611bf8565b60200101906001600160f81b031916908160001a90535060049490941c9361180681611c3b565b9050611798565b508315610ad15760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161075e565b60008181526001830160205260408120548015611945576000611880600183611c52565b855490915060009061189490600190611c52565b90508181146118f95760008660000182815481106118b4576118b4611bf8565b90600052602060002001549050808760000184815481106118d7576118d7611bf8565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061190a5761190a611c65565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105f4565b60009150506105f4565b60006020828403121561196157600080fd5b81356001600160e01b031981168114610ad157600080fd5b60005b8381101561199457818101518382015260200161197c565b50506000910152565b60208152600082518060208401526119bc816040850160208701611979565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146119e757600080fd5b919050565b600080604083850312156119ff57600080fd5b611a08836119d0565b946020939093013593505050565b600080600060608486031215611a2b57600080fd5b611a34846119d0565b9250611a42602085016119d0565b9150604084013590509250925092565b600060208284031215611a6457600080fd5b5035919050565b60008060408385031215611a7e57600080fd5b82359150611a8e602084016119d0565b90509250929050565b600060208284031215611aa957600080fd5b610ad1826119d0565b60008060408385031215611ac557600080fd5b50508035926020909101359150565b60008060408385031215611ae757600080fd5b611af0836119d0565b9150611a8e602084016119d0565b600181811c90821680611b1257607f821691505b602082108103611b3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105f4576105f4611b38565b600060208284031215611b7357600080fd5b81518015158114610ad157600080fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611bbb816017850160208801611979565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611bec816028840160208801611979565b01602801949350505050565b634e487b7160e01b600052603260045260246000fd5b80820281158282048414176105f4576105f4611b38565b634e487b7160e01b600052604160045260246000fd5b600081611c4a57611c4a611b38565b506000190190565b818103818111156105f4576105f4611b38565b634e487b7160e01b600052603160045260246000fdfe45524332305072657365744d696e7465725061757365723a206d757374206861a2646970667358221220d2acd0f53a169fc68fa1cb8b23e571ab853dc85e480de2dfe7d245d8c526999d64736f6c634300081200330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000055a4545425500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a42550000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b95760003560e01c806370a08231116100eb578063a457c2d71161008f578063d547741f11610061578063d547741f14610527578063dd62ed3e14610547578063e63ab1e914610567578063fc6f94681461059b57005b8063a457c2d714610493578063a9059cbb146104b3578063ca15c873146104d3578063d5391393146104f357005b80639010d07c116100c85780639010d07c1461041157806391d148541461044957806395d89b4114610469578063a217fddf1461047e57005b806370a08231146103a657806379cc6790146103dc5780638456cb59146103fc57005b8063313ce5671161015d57806340c10f191161012f57806340c10f191461033957806342966c68146103595780635c975abb146103795780636b9f96ea1461039157005b8063313ce567146102c857806336568abe146102e457806339509351146103045780633f4ba83a1461032457005b806318160ddd1161019657806318160ddd1461023957806323b872dd14610258578063248a9ca3146102785780632f2ff15d146102a857005b806301ffc9a7146101c257806306fdde03146101f7578063095ea7b31461021957005b366101c057005b005b3480156101ce57600080fd5b506101e26101dd36600461194f565b6105cf565b60405190151581526020015b60405180910390f35b34801561020357600080fd5b5061020c6105fa565b6040516101ee919061199d565b34801561022557600080fd5b506101e26102343660046119ec565b61068c565b34801561024557600080fd5b506004545b6040519081526020016101ee565b34801561026457600080fd5b506101e2610273366004611a16565b6106a4565b34801561028457600080fd5b5061024a610293366004611a52565b60009081526020819052604090206001015490565b3480156102b457600080fd5b506101c06102c3366004611a6b565b6106c8565b3480156102d457600080fd5b50604051601281526020016101ee565b3480156102f057600080fd5b506101c06102ff366004611a6b565b6106f2565b34801561031057600080fd5b506101e261031f3660046119ec565b610775565b34801561033057600080fd5b506101c0610797565b34801561034557600080fd5b506101c06103543660046119ec565b61082b565b34801561036557600080fd5b506101c0610374366004611a52565b6108b8565b34801561038557600080fd5b5060075460ff166101e2565b34801561039d57600080fd5b506101c06108c5565b3480156103b257600080fd5b5061024a6103c1366004611a97565b6001600160a01b031660009081526002602052604090205490565b3480156103e857600080fd5b506101c06103f73660046119ec565b610a12565b34801561040857600080fd5b506101c0610a27565b34801561041d57600080fd5b5061043161042c366004611ab2565b610ab9565b6040516001600160a01b0390911681526020016101ee565b34801561045557600080fd5b506101e2610464366004611a6b565b610ad8565b34801561047557600080fd5b5061020c610b01565b34801561048a57600080fd5b5061024a600081565b34801561049f57600080fd5b506101e26104ae3660046119ec565b610b10565b3480156104bf57600080fd5b506101e26104ce3660046119ec565b610b8b565b3480156104df57600080fd5b5061024a6104ee366004611a52565b610b99565b3480156104ff57600080fd5b5061024a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561053357600080fd5b506101c0610542366004611a6b565b610bb0565b34801561055357600080fd5b5061024a610562366004611ad4565b610bd5565b34801561057357600080fd5b5061024a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b3480156105a757600080fd5b506104317f00000000000000000000000003eab42d696aa91e3be03b386275d3e7b51594a181565b60006001600160e01b03198216635a05180f60e01b14806105f457506105f482610c99565b92915050565b60606005805461060990611afe565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611afe565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b60003361069a818585610cce565b5060019392505050565b6000336106b2858285610df2565b6106bd858585610e6c565b506001949350505050565b6000828152602081905260409020600101546106e381611028565b6106ed8383611032565b505050565b6001600160a01b03811633146107675760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6107718282611054565b5050565b60003361069a8185856107888383610bd5565b6107929190611b4e565b610cce565b6107c17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610ad8565b6108215760405162461bcd60e51b81526020600482015260396024820152600080516020611c7c83398151915260448201527f76652070617573657220726f6c6520746f20756e706175736500000000000000606482015260840161075e565b610829611076565b565b6108557f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610ad8565b6108ae5760405162461bcd60e51b81526020600482015260366024820152600080516020611c7c8339815191526044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b606482015260840161075e565b61077182826110c8565b6108c2338261119d565b50565b6108d0600033610ad8565b6109295760405162461bcd60e51b81526020600482015260366024820152600080516020611c7c8339815191526044820152750ecca40c2c8dad2dc40e4ded8ca40e8de40ccd8eae6d60531b606482015260840161075e565b60007f00000000000000000000000003eab42d696aa91e3be03b386275d3e7b51594a16001600160a01b03164760405160006040518083038185875af1925050503d8060008114610996576040519150601f19603f3d011682016040523d82523d6000602084013e61099b565b606091505b50509050806108c25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161075e565b610a1d823383610df2565b610771828261119d565b610a517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610ad8565b610ab15760405162461bcd60e51b81526020600482015260376024820152600080516020611c7c83398151915260448201527f76652070617573657220726f6c6520746f207061757365000000000000000000606482015260840161075e565b6108296112e4565b6000828152600160205260408120610ad19083611321565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461060990611afe565b60003381610b1e8286610bd5565b905083811015610b7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161075e565b6106bd8286868403610cce565b60003361069a818585610e6c565b60008181526001602052604081206105f49061132d565b600082815260208190526040902060010154610bcb81611028565b6106ed8383611054565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c0a8282610ad8565b610771576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610c403390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610ad1836001600160a01b038416611337565b60006001600160e01b03198216637965db0b60e01b14806105f457506301ffc9a760e01b6001600160e01b03198316146105f4565b6001600160a01b038316610d305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161075e565b6001600160a01b038216610d915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161075e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610dfe8484610bd5565b90506000198114610e665781811015610e595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161075e565b610e668484848403610cce565b50505050565b6001600160a01b038316610ed05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161075e565b6001600160a01b038216610f325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161075e565b610f3d838383611386565b6001600160a01b03831660009081526002602052604090205481811015610fb55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161075e565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110159086815260200190565b60405180910390a3610e66848484611391565b6108c281336114bc565b61103c8282610c00565b60008281526001602052604090206106ed9082610c84565b61105e8282611515565b60008281526001602052604090206106ed908261157a565b61107e61158f565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03821661111e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161075e565b61112a60008383611386565b806004600082825461113c9190611b4e565b90915550506001600160a01b0382166000818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361077160008383611391565b6001600160a01b0382166111fd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161075e565b61120982600083611386565b6001600160a01b0382166000908152600260205260409020548181101561127d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161075e565b6001600160a01b03831660008181526002602090815260408083208686039055600480548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36106ed83600084611391565b6112ec6115d8565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110ab3390565b6000610ad1838361161e565b60006105f4825490565b600081815260018301602052604081205461137e575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105f4565b5060006105f4565b6106ed838383611648565b6001600160a01b0382163b156106ed576040516334c8533960e21b81526001600160a01b0384811660048301526024820183905233604483015283169063d3214ce4906064016020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611b61565b60015b61146f5760405162461bcd60e51b815260206004820152602860248201527f494552433230526563656976657220696e74657266616365206e6f7420696d706044820152671b195b595b9d195960c21b606482015260840161075e565b80610e665760405162461bcd60e51b815260206004820152601e60248201527f726563697069656e74206e6f74206163636570746564207061796d656e740000604482015260640161075e565b6114c68282610ad8565b610771576114d3816116ae565b6114de8360206116c0565b6040516020016114ef929190611b83565b60408051601f198184030181529082905262461bcd60e51b825261075e9160040161199d565b61151f8282610ad8565b15610771576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610ad1836001600160a01b03841661185c565b60075460ff166108295760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161075e565b60075460ff16156108295760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161075e565b600082600001828154811061163557611635611bf8565b9060005260206000200154905092915050565b60075460ff16156106ed5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161075e565b60606105f46001600160a01b03831660145b606060006116cf836002611c0e565b6116da906002611b4e565b67ffffffffffffffff8111156116f2576116f2611c25565b6040519080825280601f01601f19166020018201604052801561171c576020820181803683370190505b509050600360fc1b8160008151811061173757611737611bf8565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061176657611766611bf8565b60200101906001600160f81b031916908160001a905350600061178a846002611c0e565b611795906001611b4e565b90505b600181111561180d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106117c9576117c9611bf8565b1a60f81b8282815181106117df576117df611bf8565b60200101906001600160f81b031916908160001a90535060049490941c9361180681611c3b565b9050611798565b508315610ad15760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161075e565b60008181526001830160205260408120548015611945576000611880600183611c52565b855490915060009061189490600190611c52565b90508181146118f95760008660000182815481106118b4576118b4611bf8565b90600052602060002001549050808760000184815481106118d7576118d7611bf8565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061190a5761190a611c65565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105f4565b60009150506105f4565b60006020828403121561196157600080fd5b81356001600160e01b031981168114610ad157600080fd5b60005b8381101561199457818101518382015260200161197c565b50506000910152565b60208152600082518060208401526119bc816040850160208701611979565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146119e757600080fd5b919050565b600080604083850312156119ff57600080fd5b611a08836119d0565b946020939093013593505050565b600080600060608486031215611a2b57600080fd5b611a34846119d0565b9250611a42602085016119d0565b9150604084013590509250925092565b600060208284031215611a6457600080fd5b5035919050565b60008060408385031215611a7e57600080fd5b82359150611a8e602084016119d0565b90509250929050565b600060208284031215611aa957600080fd5b610ad1826119d0565b60008060408385031215611ac557600080fd5b50508035926020909101359150565b60008060408385031215611ae757600080fd5b611af0836119d0565b9150611a8e602084016119d0565b600181811c90821680611b1257607f821691505b602082108103611b3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105f4576105f4611b38565b600060208284031215611b7357600080fd5b81518015158114610ad157600080fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611bbb816017850160208801611979565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611bec816028840160208801611979565b01602801949350505050565b634e487b7160e01b600052603260045260246000fd5b80820281158282048414176105f4576105f4611b38565b634e487b7160e01b600052604160045260246000fd5b600081611c4a57611c4a611b38565b506000190190565b818103818111156105f4576105f4611b38565b634e487b7160e01b600052603160045260246000fdfe45524332305072657365744d696e7465725061757365723a206d757374206861a2646970667358221220d2acd0f53a169fc68fa1cb8b23e571ab853dc85e480de2dfe7d245d8c526999d64736f6c63430008120033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000055a4545425500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a42550000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ZEEBU
Arg [1] : symbol (string): ZBU

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 5a45454255000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5a42550000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

84144:3325:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60761:214;;;;;;;;;;-1:-1:-1;60761:214:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;60761:214:0;;;;;;;;70280:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;72640:201::-;;;;;;;;;;-1:-1:-1;72640:201:0;;;;;:::i;:::-;;:::i;71409:108::-;;;;;;;;;;-1:-1:-1;71497:12:0;;71409:108;;;1736:25:1;;;1724:2;1709:18;71409:108:0;1590:177:1;73421:261:0;;;;;;;;;;-1:-1:-1;73421:261:0;;;;;:::i;:::-;;:::i;56530:131::-;;;;;;;;;;-1:-1:-1;56530:131:0;;;;;:::i;:::-;56604:7;56631:12;;;;;;;;;;:22;;;;56530:131;56971:147;;;;;;;;;;-1:-1:-1;56971:147:0;;;;;:::i;:::-;;:::i;71251:93::-;;;;;;;;;;-1:-1:-1;71251:93:0;;71334:2;2873:36:1;;2861:2;2846:18;71251:93:0;2731:184:1;58115:218:0;;;;;;;;;;-1:-1:-1;58115:218:0;;;;;:::i;:::-;;:::i;74091:238::-;;;;;;;;;;-1:-1:-1;74091:238:0;;;;;:::i;:::-;;:::i;87063:178::-;;;;;;;;;;;;;:::i;86254:205::-;;;;;;;;;;-1:-1:-1;86254:205:0;;;;;:::i;:::-;;:::i;82750:91::-;;;;;;;;;;-1:-1:-1;82750:91:0;;;;;:::i;:::-;;:::i;64089:86::-;;;;;;;;;;-1:-1:-1;64160:7:0;;;;64089:86;;85715:339;;;;;;;;;;;;;:::i;71580:127::-;;;;;;;;;;-1:-1:-1;71580:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;71681:18:0;71654:7;71681:18;;;:9;:18;;;;;;;71580:127;83160:164;;;;;;;;;;-1:-1:-1;83160:164:0;;;;;:::i;:::-;;:::i;86673:172::-;;;;;;;;;;;;;:::i;61574:153::-;;;;;;;;;;-1:-1:-1;61574:153:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3713:32:1;;;3695:51;;3683:2;3668:18;61574:153:0;3549:203:1;55003:147:0;;;;;;;;;;-1:-1:-1;55003:147:0;;;;;:::i;:::-;;:::i;70499:104::-;;;;;;;;;;;;;:::i;54108:49::-;;;;;;;;;;-1:-1:-1;54108:49:0;54153:4;54108:49;;74832:436;;;;;;;;;;-1:-1:-1;74832:436:0;;;;;:::i;:::-;;:::i;71913:193::-;;;;;;;;;;-1:-1:-1;71913:193:0;;;;;:::i;:::-;;:::i;61901:142::-;;;;;;;;;;-1:-1:-1;61901:142:0;;;;;:::i;:::-;;:::i;84232:62::-;;;;;;;;;;;;84270:24;84232:62;;57411:149;;;;;;;;;;-1:-1:-1;57411:149:0;;;;;:::i;:::-;;:::i;72169:151::-;;;;;;;;;;-1:-1:-1;72169:151:0;;;;;:::i;:::-;;:::i;84301:62::-;;;;;;;;;;;;84339:24;84301:62;;84370:45;;;;;;;;;;;;;;;60761:214;60846:4;-1:-1:-1;;;;;;60870:57:0;;-1:-1:-1;;;60870:57:0;;:97;;;60931:36;60955:11;60931:23;:36::i;:::-;60863:104;60761:214;-1:-1:-1;;60761:214:0:o;70280:100::-;70334:13;70367:5;70360:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70280:100;:::o;72640:201::-;72723:4;52045:10;72779:32;52045:10;72795:7;72804:6;72779:8;:32::i;:::-;-1:-1:-1;72829:4:0;;72640:201;-1:-1:-1;;;72640:201:0:o;73421:261::-;73518:4;52045:10;73576:38;73592:4;52045:10;73607:6;73576:15;:38::i;:::-;73625:27;73635:4;73641:2;73645:6;73625:9;:27::i;:::-;-1:-1:-1;73670:4:0;;73421:261;-1:-1:-1;;;;73421:261:0:o;56971:147::-;56604:7;56631:12;;;;;;;;;;:22;;;54599:16;54610:4;54599:10;:16::i;:::-;57085:25:::1;57096:4;57102:7;57085:10;:25::i;:::-;56971:147:::0;;;:::o;58115:218::-;-1:-1:-1;;;;;58211:23:0;;52045:10;58211:23;58203:83;;;;-1:-1:-1;;;58203:83:0;;4833:2:1;58203:83:0;;;4815:21:1;4872:2;4852:18;;;4845:30;4911:34;4891:18;;;4884:62;-1:-1:-1;;;4962:18:1;;;4955:45;5017:19;;58203:83:0;;;;;;;;;58299:26;58311:4;58317:7;58299:11;:26::i;:::-;58115:218;;:::o;74091:238::-;74179:4;52045:10;74235:64;52045:10;74251:7;74288:10;74260:25;52045:10;74251:7;74260:9;:25::i;:::-;:38;;;;:::i;:::-;74235:8;:64::i;87063:178::-;87116:34;84339:24;52045:10;55003:147;:::i;87116:34::-;87108:104;;;;-1:-1:-1;;;87108:104:0;;5511:2:1;87108:104:0;;;5493:21:1;5550:2;5530:18;;;5523:30;-1:-1:-1;;;;;;;;;;;5569:18:1;;;5562:62;5660:27;5640:18;;;5633:55;5705:19;;87108:104:0;5309:421:1;87108:104:0;87223:10;:8;:10::i;:::-;87063:178::o;86254:205::-;86330:34;84270:24;52045:10;55003:147;:::i;86330:34::-;86322:101;;;;-1:-1:-1;;;86322:101:0;;5937:2:1;86322:101:0;;;5919:21:1;5976:2;5956:18;;;5949:30;-1:-1:-1;;;;;;;;;;;5995:18:1;;;5988:62;-1:-1:-1;;;6066:18:1;;;6059:52;6128:19;;86322:101:0;5735:418:1;86322:101:0;86434:17;86440:2;86444:6;86434:5;:17::i;82750:91::-;82806:27;52045:10;82826:6;82806:5;:27::i;:::-;82750:91;:::o;85715:339::-;85758:41;54153:4;52045:10;55003:147;:::i;85758:41::-;85750:108;;;;-1:-1:-1;;;85750:108:0;;6360:2:1;85750:108:0;;;6342:21:1;6399:2;6379:18;;;6372:30;-1:-1:-1;;;;;;;;;;;6418:18:1;;;6411:62;-1:-1:-1;;;6489:18:1;;;6482:52;6551:19;;85750:108:0;6158:418:1;85750:108:0;85880:12;85898;-1:-1:-1;;;;;85898:17:0;85923:21;85898:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85879:70;;;85968:7;85960:78;;;;-1:-1:-1;;;85960:78:0;;6993:2:1;85960:78:0;;;6975:21:1;7032:2;7012:18;;;7005:30;7071:34;7051:18;;;7044:62;7142:28;7122:18;;;7115:56;7188:19;;85960:78:0;6791:422:1;83160:164:0;83237:46;83253:7;52045:10;83276:6;83237:15;:46::i;:::-;83294:22;83300:7;83309:6;83294:5;:22::i;86673:172::-;86724:34;84339:24;52045:10;55003:147;:::i;86724:34::-;86716:102;;;;-1:-1:-1;;;86716:102:0;;7420:2:1;86716:102:0;;;7402:21:1;7459:2;7439:18;;;7432:30;-1:-1:-1;;;;;;;;;;;7478:18:1;;;7471:62;7569:25;7549:18;;;7542:53;7612:19;;86716:102:0;7218:419:1;86716:102:0;86829:8;:6;:8::i;61574:153::-;61664:7;61691:18;;;:12;:18;;;;;:28;;61713:5;61691:21;:28::i;:::-;61684:35;61574:153;-1:-1:-1;;;61574:153:0:o;55003:147::-;55089:4;55113:12;;;;;;;;;;;-1:-1:-1;;;;;55113:29:0;;;;;;;;;;;;;;;55003:147::o;70499:104::-;70555:13;70588:7;70581:14;;;;;:::i;74832:436::-;74925:4;52045:10;74925:4;75008:25;52045:10;75025:7;75008:9;:25::i;:::-;74981:52;;75072:15;75052:16;:35;;75044:85;;;;-1:-1:-1;;;75044:85:0;;7844:2:1;75044:85:0;;;7826:21:1;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;-1:-1:-1;;;7973:18:1;;;7966:35;8018:19;;75044:85:0;7642:401:1;75044:85:0;75165:60;75174:5;75181:7;75209:15;75190:16;:34;75165:8;:60::i;71913:193::-;71992:4;52045:10;72048:28;52045:10;72065:2;72069:6;72048:9;:28::i;61901:142::-;61981:7;62008:18;;;:12;:18;;;;;:27;;:25;:27::i;57411:149::-;56604:7;56631:12;;;;;;;;;;:22;;;54599:16;54610:4;54599:10;:16::i;:::-;57526:26:::1;57538:4;57544:7;57526:11;:26::i;72169:151::-:0;-1:-1:-1;;;;;72285:18:0;;;72258:7;72285:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;72169:151::o;59712:238::-;59796:22;59804:4;59810:7;59796;:22::i;:::-;59791:152;;59835:6;:12;;;;;;;;;;;-1:-1:-1;;;;;59835:29:0;;;;;;;;;:36;;-1:-1:-1;;59835:36:0;59867:4;59835:36;;;59918:12;52045:10;;51965:98;59918:12;-1:-1:-1;;;;;59891:40:0;59909:7;-1:-1:-1;;;;;59891:40:0;59903:4;59891:40;;;;;;;;;;59712:238;;:::o;24205:152::-;24275:4;24299:50;24304:3;-1:-1:-1;;;;;24324:23:0;;24299:4;:50::i;54707:204::-;54792:4;-1:-1:-1;;;;;;54816:47:0;;-1:-1:-1;;;54816:47:0;;:87;;-1:-1:-1;;;;;;;;;;30555:40:0;;;54867:36;30446:157;78825:346;-1:-1:-1;;;;;78927:19:0;;78919:68;;;;-1:-1:-1;;;78919:68:0;;8250:2:1;78919:68:0;;;8232:21:1;8289:2;8269:18;;;8262:30;8328:34;8308:18;;;8301:62;-1:-1:-1;;;8379:18:1;;;8372:34;8423:19;;78919:68:0;8048:400:1;78919:68:0;-1:-1:-1;;;;;79006:21:0;;78998:68;;;;-1:-1:-1;;;78998:68:0;;8655:2:1;78998:68:0;;;8637:21:1;8694:2;8674:18;;;8667:30;8733:34;8713:18;;;8706:62;-1:-1:-1;;;8784:18:1;;;8777:32;8826:19;;78998:68:0;8453:398:1;78998:68:0;-1:-1:-1;;;;;79079:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;79131:32;;1736:25:1;;;79131:32:0;;1709:18:1;79131:32:0;;;;;;;78825:346;;;:::o;79462:419::-;79563:24;79590:25;79600:5;79607:7;79590:9;:25::i;:::-;79563:52;;-1:-1:-1;;79630:16:0;:37;79626:248;;79712:6;79692:16;:26;;79684:68;;;;-1:-1:-1;;;79684:68:0;;9058:2:1;79684:68:0;;;9040:21:1;9097:2;9077:18;;;9070:30;9136:31;9116:18;;;9109:59;9185:18;;79684:68:0;8856:353:1;79684:68:0;79796:51;79805:5;79812:7;79840:6;79821:16;:25;79796:8;:51::i;:::-;79552:329;79462:419;;;:::o;75738:806::-;-1:-1:-1;;;;;75835:18:0;;75827:68;;;;-1:-1:-1;;;75827:68:0;;9416:2:1;75827:68:0;;;9398:21:1;9455:2;9435:18;;;9428:30;9494:34;9474:18;;;9467:62;-1:-1:-1;;;9545:18:1;;;9538:35;9590:19;;75827:68:0;9214:401:1;75827:68:0;-1:-1:-1;;;;;75914:16:0;;75906:64;;;;-1:-1:-1;;;75906:64:0;;9822:2:1;75906:64:0;;;9804:21:1;9861:2;9841:18;;;9834:30;9900:34;9880:18;;;9873:62;-1:-1:-1;;;9951:18:1;;;9944:33;9994:19;;75906:64:0;9620:399:1;75906:64:0;75983:38;76004:4;76010:2;76014:6;75983:20;:38::i;:::-;-1:-1:-1;;;;;76056:15:0;;76034:19;76056:15;;;:9;:15;;;;;;76090:21;;;;76082:72;;;;-1:-1:-1;;;76082:72:0;;10226:2:1;76082:72:0;;;10208:21:1;10265:2;10245:18;;;10238:30;10304:34;10284:18;;;10277:62;-1:-1:-1;;;10355:18:1;;;10348:36;10401:19;;76082:72:0;10024:402:1;76082:72:0;-1:-1:-1;;;;;76190:15:0;;;;;;;:9;:15;;;;;;76208:20;;;76190:38;;76408:13;;;;;;;;;;:23;;;;;;76460:26;;;;;;76222:6;1736:25:1;;1724:2;1709:18;;1590:177;76460:26:0;;;;;;;;76499:37;76519:4;76525:2;76529:6;76499:19;:37::i;55454:105::-;55521:30;55532:4;52045:10;55521;:30::i;62136:169::-;62224:31;62241:4;62247:7;62224:16;:31::i;:::-;62266:18;;;;:12;:18;;;;;:31;;62289:7;62266:22;:31::i;62399:174::-;62488:32;62506:4;62512:7;62488:17;:32::i;:::-;62531:18;;;;:12;:18;;;;;:34;;62557:7;62531:25;:34::i;64944:120::-;63953:16;:14;:16::i;:::-;65003:7:::1;:15:::0;;-1:-1:-1;;65003:15:0::1;::::0;;65034:22:::1;52045:10:::0;65043:12:::1;65034:22;::::0;-1:-1:-1;;;;;3713:32:1;;;3695:51;;3683:2;3668:18;65034:22:0::1;;;;;;;64944:120::o:0;76831:548::-;-1:-1:-1;;;;;76915:21:0;;76907:65;;;;-1:-1:-1;;;76907:65:0;;10633:2:1;76907:65:0;;;10615:21:1;10672:2;10652:18;;;10645:30;10711:33;10691:18;;;10684:61;10762:18;;76907:65:0;10431:355:1;76907:65:0;76985:49;77014:1;77018:7;77027:6;76985:20;:49::i;:::-;77063:6;77047:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;77218:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;77273:37;1736:25:1;;;77273:37:0;;1709:18:1;77273:37:0;;;;;;;77323:48;77351:1;77355:7;77364:6;77323:19;:48::i;77712:675::-;-1:-1:-1;;;;;77796:21:0;;77788:67;;;;-1:-1:-1;;;77788:67:0;;10993:2:1;77788:67:0;;;10975:21:1;11032:2;11012:18;;;11005:30;11071:34;11051:18;;;11044:62;-1:-1:-1;;;11122:18:1;;;11115:31;11163:19;;77788:67:0;10791:397:1;77788:67:0;77868:49;77889:7;77906:1;77910:6;77868:20;:49::i;:::-;-1:-1:-1;;;;;77955:18:0;;77930:22;77955:18;;;:9;:18;;;;;;77992:24;;;;77984:71;;;;-1:-1:-1;;;77984:71:0;;11395:2:1;77984:71:0;;;11377:21:1;11434:2;11414:18;;;11407:30;11473:34;11453:18;;;11446:62;-1:-1:-1;;;11524:18:1;;;11517:32;11566:19;;77984:71:0;11193:398:1;77984:71:0;-1:-1:-1;;;;;78091:18:0;;;;;;:9;:18;;;;;;;;78112:23;;;78091:44;;78230:12;:22;;;;;;;78281:37;1736:25:1;;;78091:18:0;;;78281:37;;1709:18:1;78281:37:0;;;;;;;78331:48;78351:7;78368:1;78372:6;78331:19;:48::i;64685:118::-;63694:19;:17;:19::i;:::-;64745:7:::1;:14:::0;;-1:-1:-1;;64745:14:0::1;64755:4;64745:14;::::0;;64775:20:::1;64782:12;52045:10:::0;;51965:98;25501:158;25575:7;25626:22;25630:3;25642:5;25626:3;:22::i;25030:117::-;25093:7;25120:19;25128:3;20330:18;;20247:109;17936:414;17999:4;20129:19;;;:12;;;:19;;;;;;18016:327;;-1:-1:-1;18059:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;18242:18;;18220:19;;;:12;;;:19;;;;;;:40;;;;18275:11;;18016:327;-1:-1:-1;18326:5:0;18319:12;;87249:217;87414:44;87441:4;87447:2;87451:6;87414:26;:44::i;84914:545::-;-1:-1:-1;;;;;85018:14:0;;;:18;85014:438;;85116:58;;-1:-1:-1;;;85116:58:0;;-1:-1:-1;;;;;11854:15:1;;;85116:58:0;;;11836:34:1;11886:18;;;11879:34;;;85163:10:0;11929:18:1;;;11922:43;85116:33:0;;;;;11771:18:1;;85116:58:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;85116:58:0;;;;;;;;-1:-1:-1;;85116:58:0;;;;;;;;;;;;:::i;:::-;;;85112:329;;85375:50;;-1:-1:-1;;;85375:50:0;;12460:2:1;85375:50:0;;;12442:21:1;12499:2;12479:18;;;12472:30;12538:34;12518:18;;;12511:62;-1:-1:-1;;;12589:18:1;;;12582:38;12637:19;;85375:50:0;12258:404:1;85112:329:0;85221:7;85217:117;;85270:40;;-1:-1:-1;;;85270:40:0;;12869:2:1;85270:40:0;;;12851:21:1;12908:2;12888:18;;;12881:30;12947:32;12927:18;;;12920:60;12997:18;;85270:40:0;12667:354:1;55849:492:0;55938:22;55946:4;55952:7;55938;:22::i;:::-;55933:401;;56126:28;56146:7;56126:19;:28::i;:::-;56227:38;56255:4;56262:2;56227:19;:38::i;:::-;56031:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;56031:257:0;;;;;;;;;;-1:-1:-1;;;55977:345:0;;;;;;;:::i;60130:239::-;60214:22;60222:4;60228:7;60214;:22::i;:::-;60210:152;;;60285:5;60253:12;;;;;;;;;;;-1:-1:-1;;;;;60253:29:0;;;;;;;;;;:37;;-1:-1:-1;;60253:37:0;;;60310:40;52045:10;;60253:12;;60310:40;;60285:5;60310:40;60130:239;;:::o;24533:158::-;24606:4;24630:53;24638:3;-1:-1:-1;;;;;24658:23:0;;24630:7;:53::i;64433:108::-;64160:7;;;;64492:41;;;;-1:-1:-1;;;64492:41:0;;14045:2:1;64492:41:0;;;14027:21:1;14084:2;14064:18;;;14057:30;-1:-1:-1;;;14103:18:1;;;14096:50;14163:18;;64492:41:0;13843:344:1;64248:108:0;64160:7;;;;64318:9;64310:38;;;;-1:-1:-1;;;64310:38:0;;14394:2:1;64310:38:0;;;14376:21:1;14433:2;14413:18;;;14406:30;-1:-1:-1;;;14452:18:1;;;14445:46;14508:18;;64310:38:0;14192:340:1;20710:120:0;20777:7;20804:3;:11;;20816:5;20804:18;;;;;;;;:::i;:::-;;;;;;;;;20797:25;;20710:120;;;;:::o;82126:238::-;64160:7;;;;82300:9;82292:64;;;;-1:-1:-1;;;82292:64:0;;14871:2:1;82292:64:0;;;14853:21:1;14910:2;14890:18;;;14883:30;14949:34;14929:18;;;14922:62;-1:-1:-1;;;15000:18:1;;;14993:40;15050:19;;82292:64:0;14669:406:1;47060:151:0;47118:13;47151:52;-1:-1:-1;;;;;47163:22:0;;44935:2;46456:447;46531:13;46557:19;46589:10;46593:6;46589:1;:10;:::i;:::-;:14;;46602:1;46589:14;:::i;:::-;46579:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46579:25:0;;46557:47;;-1:-1:-1;;;46615:6:0;46622:1;46615:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;46615:15:0;;;;;;;;;-1:-1:-1;;;46641:6:0;46648:1;46641:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;46641:15:0;;;;;;;;-1:-1:-1;46672:9:0;46684:10;46688:6;46684:1;:10;:::i;:::-;:14;;46697:1;46684:14;:::i;:::-;46672:26;;46667:131;46704:1;46700;:5;46667:131;;;-1:-1:-1;;;46748:5:0;46756:3;46748:11;46739:21;;;;;;;:::i;:::-;;;;46727:6;46734:1;46727:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;46727:33:0;;;;;;;;-1:-1:-1;46785:1:0;46775:11;;;;;46707:3;;;:::i;:::-;;;46667:131;;;-1:-1:-1;46816:10:0;;46808:55;;;;-1:-1:-1;;;46808:55:0;;15728:2:1;46808:55:0;;;15710:21:1;;;15747:18;;;15740:30;15806:34;15786:18;;;15779:62;15858:18;;46808:55:0;15526:356:1;18526:1420:0;18592:4;18731:19;;;:12;;;:19;;;;;;18767:15;;18763:1176;;19142:21;19166:14;19179:1;19166:10;:14;:::i;:::-;19215:18;;19142:38;;-1:-1:-1;19195:17:0;;19215:22;;19236:1;;19215:22;:::i;:::-;19195:42;;19271:13;19258:9;:26;19254:405;;19305:17;19325:3;:11;;19337:9;19325:22;;;;;;;;:::i;:::-;;;;;;;;;19305:42;;19479:9;19450:3;:11;;19462:13;19450:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;19564:23;;;:12;;;:23;;;;;:36;;;19254:405;19740:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19835:3;:12;;:19;19848:5;19835:19;;;;;;;;;;;19828:26;;;19878:4;19871:11;;;;;;;18763:1176;19922:5;19915:12;;;;;14:286:1;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:173::-;1221:20;;-1:-1:-1;;;;;1270:31:1;;1260:42;;1250:70;;1316:1;1313;1306:12;1250:70;1153:173;;;:::o;1331:254::-;1399:6;1407;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1499:29;1518:9;1499:29;:::i;:::-;1489:39;1575:2;1560:18;;;;1547:32;;-1:-1:-1;;;1331:254:1:o;1772:328::-;1849:6;1857;1865;1918:2;1906:9;1897:7;1893:23;1889:32;1886:52;;;1934:1;1931;1924:12;1886:52;1957:29;1976:9;1957:29;:::i;:::-;1947:39;;2005:38;2039:2;2028:9;2024:18;2005:38;:::i;:::-;1995:48;;2090:2;2079:9;2075:18;2062:32;2052:42;;1772:328;;;;;:::o;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2472:254::-;2540:6;2548;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2653:9;2640:23;2630:33;;2682:38;2716:2;2705:9;2701:18;2682:38;:::i;:::-;2672:48;;2472:254;;;;;:::o;3105:186::-;3164:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3256:29;3275:9;3256:29;:::i;3296:248::-;3364:6;3372;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;-1:-1:-1;;3464:23:1;;;3534:2;3519:18;;;3506:32;;-1:-1:-1;3296:248:1:o;3757:260::-;3825:6;3833;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;3925:29;3944:9;3925:29;:::i;:::-;3915:39;;3973:38;4007:2;3996:9;3992:18;3973:38;:::i;4246:380::-;4325:1;4321:12;;;;4368;;;4389:61;;4443:4;4435:6;4431:17;4421:27;;4389:61;4496:2;4488:6;4485:14;4465:18;4462:38;4459:161;;4542:10;4537:3;4533:20;4530:1;4523:31;4577:4;4574:1;4567:15;4605:4;4602:1;4595:15;4459:161;;4246:380;;;:::o;5047:127::-;5108:10;5103:3;5099:20;5096:1;5089:31;5139:4;5136:1;5129:15;5163:4;5160:1;5153:15;5179:125;5244:9;;;5265:10;;;5262:36;;;5278:18;;:::i;11976:277::-;12043:6;12096:2;12084:9;12075:7;12071:23;12067:32;12064:52;;;12112:1;12109;12102:12;12064:52;12144:9;12138:16;12197:5;12190:13;12183:21;12176:5;12173:32;12163:60;;12219:1;12216;12209:12;13026:812;13437:25;13432:3;13425:38;13407:3;13492:6;13486:13;13508:75;13576:6;13571:2;13566:3;13562:12;13555:4;13547:6;13543:17;13508:75;:::i;:::-;-1:-1:-1;;;13642:2:1;13602:16;;;13634:11;;;13627:40;13692:13;;13714:76;13692:13;13776:2;13768:11;;13761:4;13749:17;;13714:76;:::i;:::-;13810:17;13829:2;13806:26;;13026:812;-1:-1:-1;;;;13026:812:1:o;14537:127::-;14598:10;14593:3;14589:20;14586:1;14579:31;14629:4;14626:1;14619:15;14653:4;14650:1;14643:15;15080:168;15153:9;;;15184;;15201:15;;;15195:22;;15181:37;15171:71;;15222:18;;:::i;15253:127::-;15314:10;15309:3;15305:20;15302:1;15295:31;15345:4;15342:1;15335:15;15369:4;15366:1;15359:15;15385:136;15424:3;15452:5;15442:39;;15461:18;;:::i;:::-;-1:-1:-1;;;15497:18:1;;15385:136::o;15887:128::-;15954:9;;;15975:11;;;15972:37;;;15989:18;;:::i;16020:127::-;16081:10;16076:3;16072:20;16069:1;16062:31;16112:4;16109:1;16102:15;16136:4;16133:1;16126:15

Swarm Source

ipfs://d2acd0f53a169fc68fa1cb8b23e571ab853dc85e480de2dfe7d245d8c526999d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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