ETH Price: $2,571.83 (-1.50%)

Token

gHegic Soft Governance Token (gHEGIC)
 

Overview

Max Total Supply

110 gHEGIC

Holders

106 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
1 gHEGIC

Value
$0.00
0xfc58E043d29F046DC00F1D775Ae6ec15834984d3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Hegic is an on-chain peer-to-pool options trading protocol built on Ethereum.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HegicSoftGovernance

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-01
*/

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



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}




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



pragma solidity ^0.8.0;


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

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

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


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


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



pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

    struct Set {
        // Storage of set values
        bytes32[] _values;

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

}




// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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



pragma solidity ^0.8.0;




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

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

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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






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



pragma solidity ^0.8.0;



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

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




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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;



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

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

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



pragma solidity ^0.8.0;






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

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

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

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

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

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

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

// File: contracts/3_Ballot.sol

//SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.3;


contract HegicSoftGovernance is ERC20PresetMinterPauser("gHegic Soft Governance Token", "gHEGIC") {
  function decimals() public pure override returns (uint8) {
    return 0;
  }
}

Contract Security Audit

Contract ABI

[{"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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601c81527f67486567696320536f667420476f7665726e616e636520546f6b656e0000000060208083019182528351808501909452600684526567484547494360d01b9084015281519192918391839162000079916005916200026f565b5080516200008f9060069060208401906200026f565b50506007805460ff1916905550620000aa6000335b6200010a565b620000d67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000a4565b620001027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000a4565b505062000352565b6200012182826200014d60201b620009f21760201c565b600082815260016020908152604090912062000148918390620009fc6200015d821b17901c565b505050565b6200015982826200017d565b5050565b600062000174836001600160a01b0384166200021d565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000159576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001d93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620002665750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000177565b50600062000177565b8280546200027d9062000315565b90600052602060002090601f016020900481019282620002a15760008555620002ec565b82601f10620002bc57805160ff1916838001178555620002ec565b82800160010185558215620002ec579182015b82811115620002ec578251825591602001919060010190620002cf565b50620002fa929150620002fe565b5090565b5b80821115620002fa5760008155600101620002ff565b600181811c908216806200032a57607f821691505b602082108114156200034c57634e487b7160e01b600052602260045260246000fd5b50919050565b611a3c80620003626000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103af578063d547741f146103d6578063dd62ed3e146103e9578063e63ab1e914610422576101c4565b8063a457c2d714610376578063a9059cbb14610389578063ca15c8731461039c576101c4565b80639010d07c116100d35780639010d07c1461032857806391d148541461035357806395d89b4114610366578063a217fddf1461036e576101c4565b806370a08231146102e457806379cc67901461030d5780638456cb5914610320576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102ab57806340c10f19146102b357806342966c68146102c65780635c975abb146102d9576101c4565b8063313ce5671461027657806336568abe146102855780633950935114610298576101c4565b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d14610261576101c4565b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004611850565b610449565b60405190151581526020015b60405180910390f35b6101f9610476565b6040516101e891906118ed565b6101dc6102143660046117cc565b610508565b6004545b6040519081526020016101e8565b6101dc610239366004611791565b61051f565b61021d61024c3660046117f5565b60009081526020819052604090206001015490565b61027461026f36600461180d565b6105d5565b005b604051600081526020016101e8565b61027461029336600461180d565b6105fc565b6101dc6102a63660046117cc565b61061e565b610274610655565b6102746102c13660046117cc565b6106fb565b6102746102d43660046117f5565b61079e565b60075460ff166101dc565b61021d6102f2366004611745565b6001600160a01b031660009081526002602052604090205490565b61027461031b3660046117cc565b6107ab565b61027461082e565b61033b61033636600461182f565b6108d2565b6040516001600160a01b0390911681526020016101e8565b6101dc61036136600461180d565b6108f1565b6101f961091a565b61021d600081565b6101dc6103843660046117cc565b610929565b6101dc6103973660046117cc565b6109c4565b61021d6103aa3660046117f5565b6109d1565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102746103e436600461180d565b6109e8565b61021d6103f736600461175f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061046e575061046e82610a11565b90505b919050565b606060058054610485906119b5565b80601f01602080910402602001604051908101604052809291908181526020018280546104b1906119b5565b80156104fe5780601f106104d3576101008083540402835291602001916104fe565b820191906000526020600020905b8154815290600101906020018083116104e157829003601f168201915b5050505050905090565b6000610515338484610a46565b5060015b92915050565b600061052c848484610b6b565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105b65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105ca85336105c58685611957565b610a46565b506001949350505050565b6105df8282610d4e565b60008281526001602052604090206105f790826109fc565b505050565b6106068282610d75565b60008281526001602052604090206105f79082610def565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916105159185906105c5908690611920565b61067f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6106f15760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105ad565b6106f9610e04565b565b6107257f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610361565b6107905760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016105ad565b61079a8282610e97565b5050565b6107a83382610f82565b50565b60006107b783336103f7565b9050818110156108155760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105ad565b61082483336105c58585611957565b6105f78383610f82565b6108587f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6108ca5760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105ad565b6106f96110dd565b60008281526001602052604081206108ea9083611158565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060068054610485906119b5565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156109ab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105ad565b6109ba33856105c58685611957565b5060019392505050565b6000610515338484610b6b565b600081815260016020526040812061046e90611164565b610606828261116e565b61079a8282611194565b60006108ea836001600160a01b038416611218565b60006001600160e01b03198216637965db0b60e01b148061046e57506301ffc9a760e01b6001600160e01b031983161461046e565b6001600160a01b038316610aa85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ad565b6001600160a01b038216610b095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ad565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bcf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ad565b6001600160a01b038216610c315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ad565b610c3c838383611267565b6001600160a01b03831660009081526002602052604090205481811015610cb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105ad565b610cbe8282611957565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610cf4908490611920565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4091815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610d6b81335b611272565b6105f78383611194565b6001600160a01b0381163314610de55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105ad565b61079a82826112d6565b60006108ea836001600160a01b03841661133b565b60075460ff16610e4d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105ad565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610eed5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105ad565b610ef960008383611267565b8060046000828254610f0b9190611920565b90915550506001600160a01b03821660009081526002602052604081208054839290610f38908490611920565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610fe25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105ad565b610fee82600083611267565b6001600160a01b038216600090815260026020526040902054818110156110625760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105ad565b61106c8282611957565b6001600160a01b0384166000908152600260205260408120919091556004805484929061109a908490611957565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b5e565b60075460ff16156111235760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105ad565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e7a3390565b60006108ea8383611452565b600061046e825490565b60008281526020819052604090206001015461118a8133610d66565b6105f783836112d6565b61119e82826108f1565b61079a576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111d43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461125f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610519565b506000610519565b6105f78383836114e6565b61127c82826108f1565b61079a57611294816001600160a01b0316601461154c565b61129f83602061154c565b6040516020016112b0929190611878565b60408051601f198184030181529082905262461bcd60e51b82526105ad916004016118ed565b6112e082826108f1565b1561079a576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561144857600061135f600183611957565b855490915060009061137390600190611957565b9050600086600001828154811061139a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106113cb57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526001890190915260409020849055865487908061140c57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610519565b6000915050610519565b815460009082106114b05760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016105ad565b8260000182815481106114d357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156105f75760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105ad565b6060600061155b836002611938565b611566906002611920565b67ffffffffffffffff81111561158c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115b6576020820181803683370190505b509050600360fc1b816000815181106115df57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061161c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611640846002611938565b61164b906001611920565b90505b60018111156116df576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061168d57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106116b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936116d88161199e565b905061164e565b5083156108ea5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105ad565b80356001600160a01b038116811461047157600080fd5b600060208284031215611756578081fd5b6108ea8261172e565b60008060408385031215611771578081fd5b61177a8361172e565b91506117886020840161172e565b90509250929050565b6000806000606084860312156117a5578081fd5b6117ae8461172e565b92506117bc6020850161172e565b9150604084013590509250925092565b600080604083850312156117de578182fd5b6117e78361172e565b946020939093013593505050565b600060208284031215611806578081fd5b5035919050565b6000806040838503121561181f578182fd5b823591506117886020840161172e565b60008060408385031215611841578182fd5b50508035926020909101359150565b600060208284031215611861578081fd5b81356001600160e01b0319811681146108ea578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516118b081601785016020880161196e565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516118e181602884016020880161196e565b01602801949350505050565b600060208252825180602084015261190c81604085016020870161196e565b601f01601f19169190910160400192915050565b60008219821115611933576119336119f0565b500190565b6000816000190483118215151615611952576119526119f0565b500290565b600082821015611969576119696119f0565b500390565b60005b83811015611989578181015183820152602001611971565b83811115611998576000848401525b50505050565b6000816119ad576119ad6119f0565b506000190190565b600181811c908216806119c957607f821691505b602082108114156119ea57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220075f0ff38d74e90f7e01eaee2d87ebf58a01922ce320b3fefc859674c4bac90864736f6c63430008030033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103af578063d547741f146103d6578063dd62ed3e146103e9578063e63ab1e914610422576101c4565b8063a457c2d714610376578063a9059cbb14610389578063ca15c8731461039c576101c4565b80639010d07c116100d35780639010d07c1461032857806391d148541461035357806395d89b4114610366578063a217fddf1461036e576101c4565b806370a08231146102e457806379cc67901461030d5780638456cb5914610320576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102ab57806340c10f19146102b357806342966c68146102c65780635c975abb146102d9576101c4565b8063313ce5671461027657806336568abe146102855780633950935114610298576101c4565b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d14610261576101c4565b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004611850565b610449565b60405190151581526020015b60405180910390f35b6101f9610476565b6040516101e891906118ed565b6101dc6102143660046117cc565b610508565b6004545b6040519081526020016101e8565b6101dc610239366004611791565b61051f565b61021d61024c3660046117f5565b60009081526020819052604090206001015490565b61027461026f36600461180d565b6105d5565b005b604051600081526020016101e8565b61027461029336600461180d565b6105fc565b6101dc6102a63660046117cc565b61061e565b610274610655565b6102746102c13660046117cc565b6106fb565b6102746102d43660046117f5565b61079e565b60075460ff166101dc565b61021d6102f2366004611745565b6001600160a01b031660009081526002602052604090205490565b61027461031b3660046117cc565b6107ab565b61027461082e565b61033b61033636600461182f565b6108d2565b6040516001600160a01b0390911681526020016101e8565b6101dc61036136600461180d565b6108f1565b6101f961091a565b61021d600081565b6101dc6103843660046117cc565b610929565b6101dc6103973660046117cc565b6109c4565b61021d6103aa3660046117f5565b6109d1565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102746103e436600461180d565b6109e8565b61021d6103f736600461175f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061046e575061046e82610a11565b90505b919050565b606060058054610485906119b5565b80601f01602080910402602001604051908101604052809291908181526020018280546104b1906119b5565b80156104fe5780601f106104d3576101008083540402835291602001916104fe565b820191906000526020600020905b8154815290600101906020018083116104e157829003601f168201915b5050505050905090565b6000610515338484610a46565b5060015b92915050565b600061052c848484610b6b565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105b65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105ca85336105c58685611957565b610a46565b506001949350505050565b6105df8282610d4e565b60008281526001602052604090206105f790826109fc565b505050565b6106068282610d75565b60008281526001602052604090206105f79082610def565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916105159185906105c5908690611920565b61067f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6106f15760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105ad565b6106f9610e04565b565b6107257f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610361565b6107905760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016105ad565b61079a8282610e97565b5050565b6107a83382610f82565b50565b60006107b783336103f7565b9050818110156108155760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105ad565b61082483336105c58585611957565b6105f78383610f82565b6108587f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610361565b6108ca5760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105ad565b6106f96110dd565b60008281526001602052604081206108ea9083611158565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060068054610485906119b5565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156109ab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105ad565b6109ba33856105c58685611957565b5060019392505050565b6000610515338484610b6b565b600081815260016020526040812061046e90611164565b610606828261116e565b61079a8282611194565b60006108ea836001600160a01b038416611218565b60006001600160e01b03198216637965db0b60e01b148061046e57506301ffc9a760e01b6001600160e01b031983161461046e565b6001600160a01b038316610aa85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ad565b6001600160a01b038216610b095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ad565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bcf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ad565b6001600160a01b038216610c315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ad565b610c3c838383611267565b6001600160a01b03831660009081526002602052604090205481811015610cb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105ad565b610cbe8282611957565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290610cf4908490611920565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4091815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610d6b81335b611272565b6105f78383611194565b6001600160a01b0381163314610de55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105ad565b61079a82826112d6565b60006108ea836001600160a01b03841661133b565b60075460ff16610e4d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105ad565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610eed5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105ad565b610ef960008383611267565b8060046000828254610f0b9190611920565b90915550506001600160a01b03821660009081526002602052604081208054839290610f38908490611920565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610fe25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105ad565b610fee82600083611267565b6001600160a01b038216600090815260026020526040902054818110156110625760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105ad565b61106c8282611957565b6001600160a01b0384166000908152600260205260408120919091556004805484929061109a908490611957565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b5e565b60075460ff16156111235760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105ad565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e7a3390565b60006108ea8383611452565b600061046e825490565b60008281526020819052604090206001015461118a8133610d66565b6105f783836112d6565b61119e82826108f1565b61079a576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111d43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461125f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610519565b506000610519565b6105f78383836114e6565b61127c82826108f1565b61079a57611294816001600160a01b0316601461154c565b61129f83602061154c565b6040516020016112b0929190611878565b60408051601f198184030181529082905262461bcd60e51b82526105ad916004016118ed565b6112e082826108f1565b1561079a576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561144857600061135f600183611957565b855490915060009061137390600190611957565b9050600086600001828154811061139a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106113cb57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526001890190915260409020849055865487908061140c57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610519565b6000915050610519565b815460009082106114b05760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016105ad565b8260000182815481106114d357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156105f75760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105ad565b6060600061155b836002611938565b611566906002611920565b67ffffffffffffffff81111561158c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115b6576020820181803683370190505b509050600360fc1b816000815181106115df57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061161c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611640846002611938565b61164b906001611920565b90505b60018111156116df576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061168d57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106116b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936116d88161199e565b905061164e565b5083156108ea5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105ad565b80356001600160a01b038116811461047157600080fd5b600060208284031215611756578081fd5b6108ea8261172e565b60008060408385031215611771578081fd5b61177a8361172e565b91506117886020840161172e565b90509250929050565b6000806000606084860312156117a5578081fd5b6117ae8461172e565b92506117bc6020850161172e565b9150604084013590509250925092565b600080604083850312156117de578182fd5b6117e78361172e565b946020939093013593505050565b600060208284031215611806578081fd5b5035919050565b6000806040838503121561181f578182fd5b823591506117886020840161172e565b60008060408385031215611841578182fd5b50508035926020909101359150565b600060208284031215611861578081fd5b81356001600160e01b0319811681146108ea578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516118b081601785016020880161196e565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516118e181602884016020880161196e565b01602801949350505050565b600060208252825180602084015261190c81604085016020870161196e565b601f01601f19169190910160400192915050565b60008219821115611933576119336119f0565b500190565b6000816000190483118215151615611952576119526119f0565b500290565b600082821015611969576119696119f0565b500390565b60005b83811015611989578181015183820152602001611971565b83811115611998576000848401525b50505050565b6000816119ad576119ad6119f0565b506000190190565b600181811c908216806119c957607f821691505b602082108114156119ea57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220075f0ff38d74e90f7e01eaee2d87ebf58a01922ce320b3fefc859674c4bac90864736f6c63430008030033

Deployed Bytecode Sourcemap

47825:184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41383:227;;;;;;:::i;:::-;;:::i;:::-;;;3677:14:1;;3670:22;3652:41;;3640:2;3625:18;41383:227:0;;;;;;;;6577:100;;;:::i;:::-;;;;;;;:::i;8744:169::-;;;;;;:::i;:::-;;:::i;7697:108::-;7785:12;;7697:108;;;3850:25:1;;;3838:2;3823:18;7697:108:0;3805:76:1;9395:422:0;;;;;;:::i;:::-;;:::i;36566:123::-;;;;;;:::i;:::-;36632:7;36659:12;;;;;;;;;;:22;;;;36566:123;42754:165;;;;;;:::i;:::-;;:::i;:::-;;47928:78;;;47978:5;12566:36:1;;12554:2;12539:18;47928:78:0;12521:87:1;43277:174:0;;;;;;:::i;:::-;;:::i;10226:215::-;;;;;;:::i;:::-;;:::i;47341:178::-;;;:::i;46532:205::-;;;;;;:::i;:::-;;:::i;44213:91::-;;;;;;:::i;:::-;;:::i;29959:86::-;30030:7;;;;29959:86;;7868:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7969:18:0;7942:7;7969:18;;;:9;:18;;;;;;;7868:127;44623:332;;;;;;:::i;:::-;;:::i;46951:172::-;;;:::i;42209:145::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;42209:145:0;3405:102:1;35564:139:0;;;;;;:::i;:::-;;:::i;6796:104::-;;;:::i;33529:49::-;;33574:4;33529:49;;10944:377;;;;;;:::i;:::-;;:::i;8208:175::-;;;;;;:::i;:::-;;:::i;42528:134::-;;;;;;:::i;:::-;;:::i;45774:62::-;;45812:24;45774:62;;43012:170;;;;;;:::i;:::-;;:::i;8446:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8562:18:0;;;8535:7;8562:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8446:151;45843:62;;45881:24;45843:62;;41383:227;41468:4;-1:-1:-1;;;;;;41492:57:0;;-1:-1:-1;;;41492:57:0;;:110;;;41566:36;41590:11;41566:23;:36::i;:::-;41485:117;;41383:227;;;;:::o;6577:100::-;6631:13;6664:5;6657:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6577:100;:::o;8744:169::-;8827:4;8844:39;3509:10;8867:7;8876:6;8844:8;:39::i;:::-;-1:-1:-1;8901:4:0;8744:169;;;;;:::o;9395:422::-;9501:4;9518:36;9528:6;9536:9;9547:6;9518:9;:36::i;:::-;-1:-1:-1;;;;;9594:19:0;;9567:24;9594:19;;;:11;:19;;;;;;;;3509:10;9594:33;;;;;;;;9646:26;;;;9638:79;;;;-1:-1:-1;;;9638:79:0;;7977:2:1;9638:79:0;;;7959:21:1;8016:2;7996:18;;;7989:30;8055:34;8035:18;;;8028:62;-1:-1:-1;;;8106:18:1;;;8099:38;8154:19;;9638:79:0;;;;;;;;;9728:57;9737:6;3509:10;9759:25;9778:6;9759:16;:25;:::i;:::-;9728:8;:57::i;:::-;-1:-1:-1;9805:4:0;;9395:422;-1:-1:-1;;;;9395:422:0:o;42754:165::-;42839:30;42855:4;42861:7;42839:15;:30::i;:::-;42880:18;;;;:12;:18;;;;;:31;;42903:7;42880:22;:31::i;:::-;;42754:165;;:::o;43277:174::-;43365:33;43384:4;43390:7;43365:18;:33::i;:::-;43409:18;;;;:12;:18;;;;;:34;;43435:7;43409:25;:34::i;10226:215::-;3509:10;10314:4;10363:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10363:34:0;;;;;;;;;;10314:4;;10331:80;;10354:7;;10363:47;;10400:10;;10363:47;:::i;47341:178::-;47394:34;45881:24;3509:10;47415:12;3429:98;47394:34;47386:104;;;;-1:-1:-1;;;47386:104:0;;6396:2:1;47386:104:0;;;6378:21:1;6435:2;6415:18;;;6408:30;6474:34;6454:18;;;6447:62;6545:27;6525:18;;;6518:55;6590:19;;47386:104:0;6368:247:1;47386:104:0;47501:10;:8;:10::i;:::-;47341:178::o;46532:205::-;46608:34;45812:24;3509:10;46629:12;3429:98;46608:34;46600:101;;;;-1:-1:-1;;;46600:101:0;;8386:2:1;46600:101:0;;;8368:21:1;8425:2;8405:18;;;8398:30;8464:34;8444:18;;;8437:62;-1:-1:-1;;;8515:18:1;;;8508:52;8577:19;;46600:101:0;8358:244:1;46600:101:0;46712:17;46718:2;46722:6;46712:5;:17::i;:::-;46532:205;;:::o;44213:91::-;44269:27;3509:10;44289:6;44269:5;:27::i;:::-;44213:91;:::o;44623:332::-;44700:24;44727:32;44737:7;3509:10;44746:12;3429:98;44727:32;44700:59;;44798:6;44778:16;:26;;44770:75;;;;-1:-1:-1;;;44770:75:0;;8809:2:1;44770:75:0;;;8791:21:1;8848:2;8828:18;;;8821:30;8887:34;8867:18;;;8860:62;-1:-1:-1;;;8938:18:1;;;8931:34;8982:19;;44770:75:0;8781:226:1;44770:75:0;44856:58;44865:7;3509:10;44888:25;44907:6;44888:16;:25;:::i;44856:58::-;44925:22;44931:7;44940:6;44925:5;:22::i;46951:172::-;47002:34;45881:24;3509:10;47023:12;3429:98;47002:34;46994:102;;;;-1:-1:-1;;;46994:102:0;;10427:2:1;46994:102:0;;;10409:21:1;10466:2;10446:18;;;10439:30;10505:34;10485:18;;;10478:62;10576:25;10556:18;;;10549:53;10619:19;;46994:102:0;10399:245:1;46994:102:0;47107:8;:6;:8::i;42209:145::-;42291:7;42318:18;;;:12;:18;;;;;:28;;42340:5;42318:21;:28::i;:::-;42311:35;42209:145;-1:-1:-1;;;42209:145:0:o;35564:139::-;35642:4;35666:12;;;;;;;;;;;-1:-1:-1;;;;;35666:29:0;;;;;;;;;;;;;;;35564:139::o;6796:104::-;6852:13;6885:7;6878:14;;;;;:::i;10944:377::-;3509:10;11037:4;11081:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11081:34:0;;;;;;;;;;11134:35;;;;11126:85;;;;-1:-1:-1;;;11126:85:0;;10851:2:1;11126:85:0;;;10833:21:1;10890:2;10870:18;;;10863:30;10929:34;10909:18;;;10902:62;-1:-1:-1;;;10980:18:1;;;10973:35;11025:19;;11126:85:0;10823:227:1;11126:85:0;11222:67;3509:10;11245:7;11254:34;11273:15;11254:16;:34;:::i;11222:67::-;-1:-1:-1;11309:4:0;;10944:377;-1:-1:-1;;;10944:377:0:o;8208:175::-;8294:4;8311:42;3509:10;8335:9;8346:6;8311:9;:42::i;42528:134::-;42600:7;42627:18;;;:12;:18;;;;;:27;;:25;:27::i;43012:170::-;43098:31;43115:4;43121:7;43098:16;:31::i;38800:112::-;38879:25;38890:4;38896:7;38879:10;:25::i;21945:152::-;22015:4;22039:50;22044:3;-1:-1:-1;;;;;22064:23:0;;22039:4;:50::i;35255:217::-;35340:4;-1:-1:-1;;;;;;35364:47:0;;-1:-1:-1;;;35364:47:0;;:100;;-1:-1:-1;;;;;;;;;;26759:40:0;;;35428:36;26650:157;14300:346;-1:-1:-1;;;;;14402:19:0;;14394:68;;;;-1:-1:-1;;;14394:68:0;;10022:2:1;14394:68:0;;;10004:21:1;10061:2;10041:18;;;10034:30;10100:34;10080:18;;;10073:62;-1:-1:-1;;;10151:18:1;;;10144:34;10195:19;;14394:68:0;9994:226:1;14394:68:0;-1:-1:-1;;;;;14481:21:0;;14473:68;;;;-1:-1:-1;;;14473:68:0;;6822:2:1;14473:68:0;;;6804:21:1;6861:2;6841:18;;;6834:30;6900:34;6880:18;;;6873:62;-1:-1:-1;;;6951:18:1;;;6944:32;6993:19;;14473:68:0;6794:224:1;14473:68:0;-1:-1:-1;;;;;14554:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14606:32;;3850:25:1;;;14606:32:0;;3823:18:1;14606:32:0;;;;;;;;14300:346;;;:::o;11811:604::-;-1:-1:-1;;;;;11917:20:0;;11909:70;;;;-1:-1:-1;;;11909:70:0;;9616:2:1;11909:70:0;;;9598:21:1;9655:2;9635:18;;;9628:30;9694:34;9674:18;;;9667:62;-1:-1:-1;;;9745:18:1;;;9738:35;9790:19;;11909:70:0;9588:227:1;11909:70:0;-1:-1:-1;;;;;11998:23:0;;11990:71;;;;-1:-1:-1;;;11990:71:0;;5240:2:1;11990:71:0;;;5222:21:1;5279:2;5259:18;;;5252:30;5318:34;5298:18;;;5291:62;-1:-1:-1;;;5369:18:1;;;5362:33;5412:19;;11990:71:0;5212:225:1;11990:71:0;12074:47;12095:6;12103:9;12114:6;12074:20;:47::i;:::-;-1:-1:-1;;;;;12158:17:0;;12134:21;12158:17;;;:9;:17;;;;;;12194:23;;;;12186:74;;;;-1:-1:-1;;;12186:74:0;;7225:2:1;12186:74:0;;;7207:21:1;7264:2;7244:18;;;7237:30;7303:34;7283:18;;;7276:62;-1:-1:-1;;;7354:18:1;;;7347:36;7400:19;;12186:74:0;7197:228:1;12186:74:0;12291:22;12307:6;12291:13;:22;:::i;:::-;-1:-1:-1;;;;;12271:17:0;;;;;;;:9;:17;;;;;;:42;;;;12324:20;;;;;;;;:30;;12348:6;;12271:17;12324:30;;12348:6;;12324:30;:::i;:::-;;;;;;;;12389:9;-1:-1:-1;;;;;12372:35:0;12381:6;-1:-1:-1;;;;;12372:35:0;;12400:6;12372:35;;;;3850:25:1;;3838:2;3823:18;;3805:76;12372:35:0;;;;;;;;11811:604;;;;:::o;36951:147::-;36632:7;36659:12;;;;;;;;;;:22;;;35133:30;35144:4;3509:10;35150:12;35133:10;:30::i;:::-;37065:25:::1;37076:4;37082:7;37065:10;:25::i;37999:218::-:0;-1:-1:-1;;;;;38095:23:0;;3509:10;38095:23;38087:83;;;;-1:-1:-1;;;38087:83:0;;11257:2:1;38087:83:0;;;11239:21:1;11296:2;11276:18;;;11269:30;11335:34;11315:18;;;11308:62;-1:-1:-1;;;11386:18:1;;;11379:45;11441:19;;38087:83:0;11229:237:1;38087:83:0;38183:26;38195:4;38201:7;38183:11;:26::i;22273:158::-;22346:4;22370:53;22378:3;-1:-1:-1;;;;;22398:23:0;;22370:7;:53::i;31018:120::-;30030:7;;;;30554:41;;;;-1:-1:-1;;;30554:41:0;;5644:2:1;30554:41:0;;;5626:21:1;5683:2;5663:18;;;5656:30;-1:-1:-1;;;5702:18:1;;;5695:50;5762:18;;30554:41:0;5616:170:1;30554:41:0;31077:7:::1;:15:::0;;-1:-1:-1;;31077:15:0::1;::::0;;31108:22:::1;3509:10:::0;31117:12:::1;31108:22;::::0;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;31108:22:0::1;;;;;;;31018:120::o:0;12697:338::-;-1:-1:-1;;;;;12781:21:0;;12773:65;;;;-1:-1:-1;;;12773:65:0;;11673:2:1;12773:65:0;;;11655:21:1;11712:2;11692:18;;;11685:30;11751:33;11731:18;;;11724:61;11802:18;;12773:65:0;11645:181:1;12773:65:0;12851:49;12880:1;12884:7;12893:6;12851:20;:49::i;:::-;12929:6;12913:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12946:18:0;;;;;;:9;:18;;;;;:28;;12968:6;;12946:18;:28;;12968:6;;12946:28;:::i;:::-;;;;-1:-1:-1;;12990:37:0;;3850:25:1;;;-1:-1:-1;;;;;12990:37:0;;;13007:1;;12990:37;;3838:2:1;3823:18;12990:37:0;;;;;;;12697:338;;:::o;13368:494::-;-1:-1:-1;;;;;13452:21:0;;13444:67;;;;-1:-1:-1;;;13444:67:0;;9214:2:1;13444:67:0;;;9196:21:1;9253:2;9233:18;;;9226:30;9292:34;9272:18;;;9265:62;-1:-1:-1;;;9343:18:1;;;9336:31;9384:19;;13444:67:0;9186:223:1;13444:67:0;13524:49;13545:7;13562:1;13566:6;13524:20;:49::i;:::-;-1:-1:-1;;;;;13611:18:0;;13586:22;13611:18;;;:9;:18;;;;;;13648:24;;;;13640:71;;;;-1:-1:-1;;;13640:71:0;;5993:2:1;13640:71:0;;;5975:21:1;6032:2;6012:18;;;6005:30;6071:34;6051:18;;;6044:62;-1:-1:-1;;;6122:18:1;;;6115:32;6164:19;;13640:71:0;5965:224:1;13640:71:0;13743:23;13760:6;13743:14;:23;:::i;:::-;-1:-1:-1;;;;;13722:18:0;;;;;;:9;:18;;;;;:44;;;;13777:12;:22;;13793:6;;13722:18;13777:22;;13793:6;;13777:22;:::i;:::-;;;;-1:-1:-1;;13817:37:0;;3850:25:1;;;13843:1:0;;-1:-1:-1;;;;;13817:37:0;;;;;3838:2:1;3823:18;13817:37:0;3805:76:1;30759:118:0;30030:7;;;;30284:9;30276:38;;;;-1:-1:-1;;;30276:38:0;;7632:2:1;30276:38:0;;;7614:21:1;7671:2;7651:18;;;7644:30;-1:-1:-1;;;7690:18:1;;;7683:46;7746:18;;30276:38:0;7604:166:1;30276:38:0;30819:7:::1;:14:::0;;-1:-1:-1;;30819:14:0::1;30829:4;30819:14;::::0;;30849:20:::1;30856:12;3509:10:::0;3429:98;;23231:158;23305:7;23356:22;23360:3;23372:5;23356:3;:22::i;22770:117::-;22833:7;22860:19;22868:3;19527:18;;19444:109;37343:149;36632:7;36659:12;;;;;;;;;;:22;;;35133:30;35144:4;3509:10;35150:12;3429:98;35133:30;37458:26:::1;37470:4;37476:7;37458:11;:26::i;39247:229::-:0;39322:22;39330:4;39336:7;39322;:22::i;:::-;39317:152;;39361:6;:12;;;;;;;;;;;-1:-1:-1;;;;;39361:29:0;;;;;;;;;:36;;-1:-1:-1;;39361:36:0;39393:4;39361:36;;;39444:12;3509:10;3429:98;;39444:12;-1:-1:-1;;;;;39417:40:0;39435:7;-1:-1:-1;;;;;39417:40:0;39429:4;39417:40;;;;;;;;;;39247:229;;:::o;17000:414::-;17063:4;19326:19;;;:12;;;:19;;;;;;17080:327;;-1:-1:-1;17123:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;17306:18;;17284:19;;;:12;;;:19;;;;;;:40;;;;17339:11;;17080:327;-1:-1:-1;17390:5:0;17383:12;;47527:183;47658:44;47685:4;47691:2;47695:6;47658:26;:44::i;35993:384::-;36073:22;36081:4;36087:7;36073;:22::i;:::-;36069:301;;36205:41;36233:7;-1:-1:-1;;;;;36205:41:0;36243:2;36205:19;:41::i;:::-;36303:38;36331:4;36338:2;36303:19;:38::i;:::-;36126:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;36126:230:0;;;;;;;;;;-1:-1:-1;;;36112:246:0;;;;;;;:::i;39484:230::-;39559:22;39567:4;39573:7;39559;:22::i;:::-;39555:152;;;39630:5;39598:12;;;;;;;;;;;-1:-1:-1;;;;;39598:29:0;;;;;;;;;;:37;;-1:-1:-1;;39598:37:0;;;39655:40;3509:10;;39598:12;;39655:40;;39630:5;39655:40;39484:230;;:::o;17590:1553::-;17656:4;17795:19;;;:12;;;:19;;;;;;17831:15;;17827:1309;;18193:21;18217:14;18230:1;18217:10;:14;:::i;:::-;18266:18;;18193:38;;-1:-1:-1;18246:17:0;;18266:22;;18287:1;;18266:22;:::i;:::-;18246:42;;18533:17;18553:3;:11;;18565:9;18553:22;;;;;;-1:-1:-1;;;18553:22:0;;;;;;;;;;;;;;;;;18533:42;;18699:9;18670:3;:11;;18682:13;18670:26;;;;;;-1:-1:-1;;;18670:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;18776:23;;;:12;;;:23;;;;;;:36;;;18937:17;;18776:3;;18937:17;;;-1:-1:-1;;;18937:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;19032:3;:12;;:19;19045:5;19032:19;;;;;;;;;;;19025:26;;;19075:4;19068:11;;;;;;;;17827:1309;19119:5;19112:12;;;;;19897:204;19992:18;;19964:7;;19992:26;-1:-1:-1;19984:73:0;;;;-1:-1:-1;;;19984:73:0;;4476:2:1;19984:73:0;;;4458:21:1;4515:2;4495:18;;;4488:30;4554:34;4534:18;;;4527:62;-1:-1:-1;;;4605:18:1;;;4598:32;4647:19;;19984:73:0;4448:224:1;19984:73:0;20075:3;:11;;20087:5;20075:18;;;;;;-1:-1:-1;;;20075:18:0;;;;;;;;;;;;;;;;;20068:25;;19897:204;;;;:::o;40324:238::-;30030:7;;;;40498:9;40490:64;;;;-1:-1:-1;;;40490:64:0;;12033:2:1;40490:64:0;;;12015:21:1;12072:2;12052:18;;;12045:30;12111:34;12091:18;;;12084:62;-1:-1:-1;;;12162:18:1;;;12155:40;12212:19;;40490:64:0;12005:232:1;28422:447:0;28497:13;28523:19;28555:10;28559:6;28555:1;:10;:::i;:::-;:14;;28568:1;28555:14;:::i;:::-;28545:25;;;;;;-1:-1:-1;;;28545:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28545:25:0;;28523:47;;-1:-1:-1;;;28581:6:0;28588:1;28581:9;;;;;;-1:-1:-1;;;28581:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;28581:15:0;;;;;;;;;-1:-1:-1;;;28607:6:0;28614:1;28607:9;;;;;;-1:-1:-1;;;28607:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;28607:15:0;;;;;;;;-1:-1:-1;28638:9:0;28650:10;28654:6;28650:1;:10;:::i;:::-;:14;;28663:1;28650:14;:::i;:::-;28638:26;;28633:131;28670:1;28666;:5;28633:131;;;-1:-1:-1;;;28714:5:0;28722:3;28714:11;28705:21;;;;;-1:-1:-1;;;28705:21:0;;;;;;;;;;;;28693:6;28700:1;28693:9;;;;;;-1:-1:-1;;;28693:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;28693:33:0;;;;;;;;-1:-1:-1;28751:1:0;28741:11;;;;;28673:3;;;:::i;:::-;;;28633:131;;;-1:-1:-1;28782:10:0;;28774:55;;;;-1:-1:-1;;;28774:55:0;;4879:2:1;28774:55:0;;;4861:21:1;;;4898:18;;;4891:30;4957:34;4937:18;;;4930:62;5009:18;;28774:55:0;4851:182:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;;;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:258::-;;;1873:2;1861:9;1852:7;1848:23;1844:32;1841:2;;;1894:6;1886;1879:22;1841:2;-1:-1:-1;;1922:23:1;;;1992:2;1977:18;;;1964:32;;-1:-1:-1;1831:171:1:o;2007:306::-;;2118:2;2106:9;2097:7;2093:23;2089:32;2086:2;;;2139:6;2131;2124:22;2086:2;2170:23;;-1:-1:-1;;;;;;2222:32:1;;2212:43;;2202:2;;2274:6;2266;2259:22;2513:786;;2924:25;2919:3;2912:38;2979:6;2973:13;2995:62;3050:6;3045:2;3040:3;3036:12;3029:4;3021:6;3017:17;2995:62;:::i;:::-;-1:-1:-1;;;3116:2:1;3076:16;;;3108:11;;;3101:40;3166:13;;3188:63;3166:13;3237:2;3229:11;;3222:4;3210:17;;3188:63;:::i;:::-;3271:17;3290:2;3267:26;;2902:397;-1:-1:-1;;;;2902:397:1:o;3886:383::-;;4035:2;4024:9;4017:21;4067:6;4061:13;4110:6;4105:2;4094:9;4090:18;4083:34;4126:66;4185:6;4180:2;4169:9;4165:18;4160:2;4152:6;4148:15;4126:66;:::i;:::-;4253:2;4232:15;-1:-1:-1;;4228:29:1;4213:45;;;;4260:2;4209:54;;4007:262;-1:-1:-1;;4007:262:1:o;12613:128::-;;12684:1;12680:6;12677:1;12674:13;12671:2;;;12690:18;;:::i;:::-;-1:-1:-1;12726:9:1;;12661:80::o;12746:168::-;;12852:1;12848;12844:6;12840:14;12837:1;12834:21;12829:1;12822:9;12815:17;12811:45;12808:2;;;12859:18;;:::i;:::-;-1:-1:-1;12899:9:1;;12798:116::o;12919:125::-;;12987:1;12984;12981:8;12978:2;;;12992:18;;:::i;:::-;-1:-1:-1;13029:9:1;;12968:76::o;13049:258::-;13121:1;13131:113;13145:6;13142:1;13139:13;13131:113;;;13221:11;;;13215:18;13202:11;;;13195:39;13167:2;13160:10;13131:113;;;13262:6;13259:1;13256:13;13253:2;;;13297:1;13288:6;13283:3;13279:16;13272:27;13253:2;;13102:205;;;:::o;13312:136::-;;13379:5;13369:2;;13388:18;;:::i;:::-;-1:-1:-1;;;13424:18:1;;13359:89::o;13453:380::-;13532:1;13528:12;;;;13575;;;13596:2;;13650:4;13642:6;13638:17;13628:27;;13596:2;13703;13695:6;13692:14;13672:18;13669:38;13666:2;;;13749:10;13744:3;13740:20;13737:1;13730:31;13784:4;13781:1;13774:15;13812:4;13809:1;13802:15;13666:2;;13508:325;;;:::o;13838:127::-;13899:10;13894:3;13890:20;13887:1;13880:31;13930:4;13927:1;13920:15;13954:4;13951:1;13944:15

Swarm Source

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