ETH Price: $3,488.81 (+2.17%)

Contract

0x017073b9bAe99d2AFbB6D7e30D464f993ae9C741
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve214393612024-12-19 21:50:115 days ago1734645011IN
Hourglass Protocol: HGP Token
0 ETH0.0005201321.37493523
Approve214077632024-12-15 11:56:599 days ago1734263819IN
Hourglass Protocol: HGP Token
0 ETH0.000158156.49929758
Approve214073752024-12-15 10:38:599 days ago1734259139IN
Hourglass Protocol: HGP Token
0 ETH0.00015786.48506422
Approve213798462024-12-11 14:25:1113 days ago1733927111IN
Hourglass Protocol: HGP Token
0 ETH0.000669827.52529953
Approve213488172024-12-07 6:26:2317 days ago1733552783IN
Hourglass Protocol: HGP Token
0 ETH0.0003617514.86638499
Approve211131512024-11-04 8:40:1150 days ago1730709611IN
Hourglass Protocol: HGP Token
0 ETH0.000125055.13927672
Approve210965712024-11-02 1:06:5952 days ago1730509619IN
Hourglass Protocol: HGP Token
0 ETH0.00011634.77962267
Approve210516722024-10-26 18:45:3559 days ago1729968335IN
Hourglass Protocol: HGP Token
0 ETH0.000270285.79797383
Transfer210514502024-10-26 18:00:4759 days ago1729965647IN
Hourglass Protocol: HGP Token
0 ETH0.000263235.15227514
Transfer210418202024-10-25 9:45:3560 days ago1729849535IN
Hourglass Protocol: HGP Token
0 ETH0.000318195.69434655
Approve210343482024-10-24 8:45:3561 days ago1729759535IN
Hourglass Protocol: HGP Token
0 ETH0.0002510.27400558
Transfer209828022024-10-17 4:09:2368 days ago1729138163IN
Hourglass Protocol: HGP Token
0 ETH0.000551149.86316712
Approve209745822024-10-16 0:36:1169 days ago1729038971IN
Hourglass Protocol: HGP Token
0 ETH0.0002731411.22484331
Transfer209658672024-10-14 19:22:5971 days ago1728933779IN
Hourglass Protocol: HGP Token
0 ETH0.0013544924.2398378
Transfer209408922024-10-11 7:28:5974 days ago1728631739IN
Hourglass Protocol: HGP Token
0 ETH0.0006694111.97975667
Transfer209338782024-10-10 8:00:5975 days ago1728547259IN
Hourglass Protocol: HGP Token
0 ETH0.0006562411.74647378
Approve209222782024-10-08 17:12:3577 days ago1728407555IN
Hourglass Protocol: HGP Token
0 ETH0.0016426435.4645267
Transfer209015572024-10-05 19:54:1180 days ago1728158051IN
Hourglass Protocol: HGP Token
0 ETH0.000367576.57953544
Transfer209008952024-10-05 17:41:3580 days ago1728150095IN
Hourglass Protocol: HGP Token
0 ETH0.0010750819.24357154
Transfer208931822024-10-04 15:53:2381 days ago1728057203IN
Hourglass Protocol: HGP Token
0 ETH0.0009942617.7970191
Approve208910152024-10-04 8:38:5981 days ago1728031139IN
Hourglass Protocol: HGP Token
0 ETH0.000142585.87402125
Transfer208861402024-10-03 16:20:5982 days ago1727972459IN
Hourglass Protocol: HGP Token
0 ETH0.0008660915.49941244
Transfer208812822024-10-03 0:04:2383 days ago1727913863IN
Hourglass Protocol: HGP Token
0 ETH0.000419577.51033692
Approve208805612024-10-02 21:39:4783 days ago1727905187IN
Hourglass Protocol: HGP Token
0 ETH0.0006333913.58700945
Approve208803632024-10-02 20:59:5983 days ago1727902799IN
Hourglass Protocol: HGP Token
0 ETH0.0007687716.49099066
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HGP20

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion
File 1 of 10 : HGP20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/[email protected]/security/Pausable.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/utils/structs/EnumerableSet.sol";

import "./interface/IHGP.sol";

contract HGP20 is ERC20,ERC20Burnable,Ownable,Pausable,IHGP20 {
  
    using EnumerableSet for EnumerableSet.AddressSet;
    // total supply
    uint256 public constant SUPPLY_CAP = 800 * 1e18;
    // for black list
    mapping(address => bool) public _blackAccountMap;
    //minters map 
    EnumerableSet.AddressSet private _minters;

    modifier onlyMinter() {
        require(_minters.contains(msg.sender), "must call by minter");
        _;
    }

    constructor() 
    ERC20("Hourglass Protocol", "HGP") {
    }

    /**
     * @dev function to grant permission to a minter
     */
    function addMinter(address minter) public onlyOwner {

        require(!_minters.contains(minter), "the minter already exist!");
        _minters.add(minter);
        emit eAddMinter(minter,block.number);
    }

    /**
     * @dev function to remove permission to a minter
     */
    function removeMinter(address minter) public onlyOwner {

        require(_minters.contains(minter), "the minter does not exist!");
        _minters.remove(minter);
        emit eDelMinter(minter,block.number);
    }

    function mint(address to, uint256 amount) external override onlyMinter returns(bool) {

        require(!_blackAccountMap[to], "can't mint to address in blacklist!");
        require(totalSupply() + amount <= SUPPLY_CAP, "supply is over the limit!");

        _mint(to, amount);
        return true;
    }
    
    function burn(address account, uint256 amount) external override onlyMinter returns(bool) {
        burnFrom(account, amount);
        return true;
    }

    function pause() external onlyOwner{
        super._pause();
    }

    function unpause() external onlyOwner{
        super._unpause();
    }

    function addBlackAccount(address blackAccount) external onlyOwner {
        require(!_blackAccountMap[blackAccount], "has in black list");
        _blackAccountMap[blackAccount] = true;
        emit eAddBlackAccount(blackAccount);
    }

    function delBlackAccount(address blackAccount) external onlyOwner {
        require(_blackAccountMap[blackAccount], "not in black list");
        _blackAccountMap[blackAccount] = false;
        emit eDelBlackAccount(blackAccount);
    }

    /**
    * @dev for black list transfer
    */
    function _transfer(address from, address to, uint256 amount) 
    internal override whenNotPaused{
        require(!_blackAccountMap[from], "can't transfer");
        super._transfer(from, to, amount);
    }


    /**
     * @dev function to get all minters
     */
    function getMinters() public view returns(address[] memory){
        return _minters.values();
    }
    
}

File 2 of 10 : IHGP.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

interface IHGP20  {
  
    event eAddBlackAccount(address indexed blackAccount);
    event eDelBlackAccount(address indexed blackAccount);
    event eAddMinter(address minter,uint256 blockNum);
    event eDelMinter(address minter,uint256 blockNum);

    function mint(address to, uint256 amount) external returns(bool);
    function burn(address account, uint256 amount) external returns(bool);
}


interface IHGP721  {
  
    event TransferBatch(address indexed from, address indexed to, uint256[]  ids);
    event eAddMinter(address minter,uint256 blockNum);
    event eDelMinter(address minter,uint256 blockNum);

    function mint(address to) external returns (uint256 id) ;
    function burn(uint256 tokenId) external;
    function safeBatchTransferFrom(address from, address to, uint256[] memory ids , bytes memory data) external;
}

interface IMintRule  {

    struct MintRule {
        address mintRule;
        address asset;
        address to;
        bytes32 signCode;
        uint256 expirationTime;
        uint256 stage;
        uint256 mintFee;
        uint256 userMaxMintedAmount;
        uint256 maxMintedAmount;
        uint256 startTime;
        uint256 endTime;
    }

    function beforeMint( IMintRule.MintRule calldata mintData) external payable;

}


interface IHGPFactory  {

    event eUpdateSigner(
        address signer,
        uint256 blockNum
    );

    event eBurned(
        address indexed asset,
        address indexed owner,
        uint256[] ids,
        uint256 timestemp
    );

    event eMint(
        address indexed mintRule,
        address indexed asset,
        address indexed to,
        uint256 tokenId,
        uint256 timestemp,
        uint256 stage
    );

    function mint(IMintRule.MintRule calldata mintData, bytes memory dataSignature) external payable;
    function burn(uint256[] calldata tokenIds, address asset) external;
}

File 3 of 10 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

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

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

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

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

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

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

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

        return result;
    }
}

File 4 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 5 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 10 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

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

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

File 7 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 8 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 10 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

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

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

File 10 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"blackAccount","type":"address"}],"name":"eAddBlackAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"blockNum","type":"uint256"}],"name":"eAddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"blackAccount","type":"address"}],"name":"eDelBlackAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"blockNum","type":"uint256"}],"name":"eDelMinter","type":"event"},{"inputs":[],"name":"SUPPLY_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blackAccountMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"blackAccount","type":"address"}],"name":"addBlackAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","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":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"blackAccount","type":"address"}],"name":"delBlackAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMinters","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806012815260200171121bdd5c99db185cdcc8141c9bdd1bd8dbdb60721b8152506040518060400160405280600381526020016204847560ec1b81525081600390816200006a9190620001a4565b506004620000798282620001a4565b5050506200009662000090620000a960201b60201c565b620000ad565b6005805460ff60a01b1916905562000270565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012a57607f821691505b6020821081036200014b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019f57600081815260208120601f850160051c810160208610156200017a5750805b601f850160051c820191505b818110156200019b5782815560010162000186565b5050505b505050565b81516001600160401b03811115620001c057620001c0620000ff565b620001d881620001d1845462000115565b8462000151565b602080601f831160018114620002105760008415620001f75750858301515b600019600386901b1c1916600185901b1785556200019b565b600085815260208120601f198616915b82811015620002415788860151825594840194600190910190840162000220565b5085821015620002605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6116c480620002806000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80635c975abb116100f957806395d89b4111610097578063a457c2d711610071578063a457c2d7146103ad578063a9059cbb146103c0578063dd62ed3e146103d3578063f2fde38b146103e657600080fd5b806395d89b411461037f578063983b2d56146103875780639dc29fac1461039a57600080fd5b8063715018a6116100d3578063715018a61461034157806379cc6790146103495780638456cb591461035c5780638da5cb5b1461036457600080fd5b80635c975abb146102f15780636b32810b1461030357806370a082311461031857600080fd5b806331d42bf2116101665780633f4ba83a116101405780633f4ba83a146102a057806340c10f19146102a8578063427bdab3146102bb57806342966c68146102de57600080fd5b806331d42bf214610267578063395093511461027a5780633976bd1d1461028d57600080fd5b806318160ddd116101a257806318160ddd1461022857806323b872dd146102305780633092afd514610243578063313ce5671461025857600080fd5b806306fdde03146101c9578063095ea7b3146101e75780630cfccc831461020a575b600080fd5b6101d16103f9565b6040516101de9190611468565b60405180910390f35b6101fa6101f53660046114d2565b61048b565b60405190151581526020016101de565b61021a682b5e3af16b1880000081565b6040519081526020016101de565b60025461021a565b6101fa61023e3660046114fc565b6104a5565b610256610251366004611538565b6104c9565b005b604051601281526020016101de565b610256610275366004611538565b61057e565b6101fa6102883660046114d2565b61062f565b61025661029b366004611538565b610651565b6102566106fe565b6101fa6102b63660046114d2565b610710565b6101fa6102c9366004611538565b60066020526000908152604090205460ff1681565b6102566102ec366004611553565b610853565b600554600160a01b900460ff166101fa565b61030b610860565b6040516101de919061156c565b61021a610326366004611538565b6001600160a01b031660009081526020819052604090205490565b610256610871565b6102566103573660046114d2565b610883565b61025661089c565b6005546040516001600160a01b0390911681526020016101de565b6101d16108ac565b610256610395366004611538565b6108bb565b6101fa6103a83660046114d2565b610965565b6101fa6103bb3660046114d2565b6109be565b6101fa6103ce3660046114d2565b610a39565b61021a6103e13660046115b9565b610a47565b6102566103f4366004611538565b610a72565b606060038054610408906115ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610434906115ec565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600033610499818585610ae8565b60019150505b92915050565b6000336104b3858285610c0c565b6104be858585610c86565b506001949350505050565b6104d1610cf8565b6104dc600782610d52565b61052d5760405162461bcd60e51b815260206004820152601a60248201527f746865206d696e74657220646f6573206e6f742065786973742100000000000060448201526064015b60405180910390fd5b610538600782610d77565b50604080516001600160a01b03831681524360208201527f6fe653fe772afff767acb8f06322c2ccdca9b9161ba5fea749a292031c4886db91015b60405180910390a150565b610586610cf8565b6001600160a01b03811660009081526006602052604090205460ff16156105e35760405162461bcd60e51b81526020600482015260116024820152701a185cc81a5b88189b1858dac81b1a5cdd607a1b6044820152606401610524565b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517f414a50a0a3ac39f418da83cdc9f6ef28b28e5d335cc17e71324ea48d01e5cc6d9190a250565b6000336104998185856106428383610a47565b61064c919061163c565b610ae8565b610659610cf8565b6001600160a01b03811660009081526006602052604090205460ff166106b55760405162461bcd60e51b81526020600482015260116024820152701b9bdd081a5b88189b1858dac81b1a5cdd607a1b6044820152606401610524565b6001600160a01b038116600081815260066020526040808220805460ff19169055517f8a2b1479432fb92af03ef57e4e6c89ab85e15c33cd5429e8881a36e335ef0d119190a250565b610706610cf8565b61070e610d8c565b565b600061071d600733610d52565b61075f5760405162461bcd60e51b815260206004820152601360248201527236bab9ba1031b0b63610313c9036b4b73a32b960691b6044820152606401610524565b6001600160a01b03831660009081526006602052604090205460ff16156107d45760405162461bcd60e51b815260206004820152602360248201527f63616e2774206d696e7420746f206164647265737320696e20626c61636b6c6960448201526273742160e81b6064820152608401610524565b682b5e3af16b18800000826107e860025490565b6107f2919061163c565b11156108405760405162461bcd60e51b815260206004820152601960248201527f737570706c79206973206f76657220746865206c696d697421000000000000006044820152606401610524565b61084a8383610de1565b50600192915050565b61085d3382610ea0565b50565b606061086c6007610fd2565b905090565b610879610cf8565b61070e6000610fdf565b61088e823383610c0c565b6108988282610ea0565b5050565b6108a4610cf8565b61070e611031565b606060048054610408906115ec565b6108c3610cf8565b6108ce600782610d52565b1561091b5760405162461bcd60e51b815260206004820152601960248201527f746865206d696e74657220616c726561647920657869737421000000000000006044820152606401610524565b610926600782611074565b50604080516001600160a01b03831681524360208201527f97d43c024b420050312d1944c864cdd4183109e92852ae43cfc0dff357fa85c79101610573565b6000610972600733610d52565b6109b45760405162461bcd60e51b815260206004820152601360248201527236bab9ba1031b0b63610313c9036b4b73a32b960691b6044820152606401610524565b61084a8383610883565b600033816109cc8286610a47565b905083811015610a2c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610524565b6104be8286868403610ae8565b600033610499818585610c86565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a7a610cf8565b6001600160a01b038116610adf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610524565b61085d81610fdf565b6001600160a01b038316610b4a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610524565b6001600160a01b038216610bab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610524565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610c188484610a47565b90506000198114610c805781811015610c735760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610524565b610c808484848403610ae8565b50505050565b610c8e611089565b6001600160a01b03831660009081526006602052604090205460ff1615610ce85760405162461bcd60e51b815260206004820152600e60248201526d31b0b713ba103a3930b739b332b960911b6044820152606401610524565b610cf38383836110d6565b505050565b6005546001600160a01b0316331461070e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610524565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6000610d70836001600160a01b03841661127a565b610d9461136d565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610e375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610524565b8060026000828254610e49919061163c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610f005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610524565b6001600160a01b03821660009081526020819052604090205481811015610f745760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610524565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60606000610d70836113bd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611039611089565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dc43390565b6000610d70836001600160a01b038416611419565b600554600160a01b900460ff161561070e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610524565b6001600160a01b03831661113a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610524565b6001600160a01b03821661119c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610524565b6001600160a01b038316600090815260208190526040902054818110156112145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610524565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c80565b6000818152600183016020526040812054801561136357600061129e60018361164f565b85549091506000906112b29060019061164f565b90508181146113175760008660000182815481106112d2576112d2611662565b90600052602060002001549050808760000184815481106112f5576112f5611662565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061132857611328611678565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b600554600160a01b900460ff1661070e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610524565b60608160000180548060200260200160405190810160405280929190818152602001828054801561140d57602002820191906000526020600020905b8154815260200190600101908083116113f9575b50505050509050919050565b60008181526001830160205260408120546114605750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b600060208083528351808285015260005b8181101561149557858101830151858201604001528201611479565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146114cd57600080fd5b919050565b600080604083850312156114e557600080fd5b6114ee836114b6565b946020939093013593505050565b60008060006060848603121561151157600080fd5b61151a846114b6565b9250611528602085016114b6565b9150604084013590509250925092565b60006020828403121561154a57600080fd5b610d70826114b6565b60006020828403121561156557600080fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156115ad5783516001600160a01b031683529284019291840191600101611588565b50909695505050505050565b600080604083850312156115cc57600080fd5b6115d5836114b6565b91506115e3602084016114b6565b90509250929050565b600181811c9082168061160057607f821691505b60208210810361162057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049f5761049f611626565b8181038181111561049f5761049f611626565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfea264697066735822122072568e89fb847cadc6be538e9d85701950a550cc6c751c936ecb3c7b121752ab64736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80635c975abb116100f957806395d89b4111610097578063a457c2d711610071578063a457c2d7146103ad578063a9059cbb146103c0578063dd62ed3e146103d3578063f2fde38b146103e657600080fd5b806395d89b411461037f578063983b2d56146103875780639dc29fac1461039a57600080fd5b8063715018a6116100d3578063715018a61461034157806379cc6790146103495780638456cb591461035c5780638da5cb5b1461036457600080fd5b80635c975abb146102f15780636b32810b1461030357806370a082311461031857600080fd5b806331d42bf2116101665780633f4ba83a116101405780633f4ba83a146102a057806340c10f19146102a8578063427bdab3146102bb57806342966c68146102de57600080fd5b806331d42bf214610267578063395093511461027a5780633976bd1d1461028d57600080fd5b806318160ddd116101a257806318160ddd1461022857806323b872dd146102305780633092afd514610243578063313ce5671461025857600080fd5b806306fdde03146101c9578063095ea7b3146101e75780630cfccc831461020a575b600080fd5b6101d16103f9565b6040516101de9190611468565b60405180910390f35b6101fa6101f53660046114d2565b61048b565b60405190151581526020016101de565b61021a682b5e3af16b1880000081565b6040519081526020016101de565b60025461021a565b6101fa61023e3660046114fc565b6104a5565b610256610251366004611538565b6104c9565b005b604051601281526020016101de565b610256610275366004611538565b61057e565b6101fa6102883660046114d2565b61062f565b61025661029b366004611538565b610651565b6102566106fe565b6101fa6102b63660046114d2565b610710565b6101fa6102c9366004611538565b60066020526000908152604090205460ff1681565b6102566102ec366004611553565b610853565b600554600160a01b900460ff166101fa565b61030b610860565b6040516101de919061156c565b61021a610326366004611538565b6001600160a01b031660009081526020819052604090205490565b610256610871565b6102566103573660046114d2565b610883565b61025661089c565b6005546040516001600160a01b0390911681526020016101de565b6101d16108ac565b610256610395366004611538565b6108bb565b6101fa6103a83660046114d2565b610965565b6101fa6103bb3660046114d2565b6109be565b6101fa6103ce3660046114d2565b610a39565b61021a6103e13660046115b9565b610a47565b6102566103f4366004611538565b610a72565b606060038054610408906115ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610434906115ec565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600033610499818585610ae8565b60019150505b92915050565b6000336104b3858285610c0c565b6104be858585610c86565b506001949350505050565b6104d1610cf8565b6104dc600782610d52565b61052d5760405162461bcd60e51b815260206004820152601a60248201527f746865206d696e74657220646f6573206e6f742065786973742100000000000060448201526064015b60405180910390fd5b610538600782610d77565b50604080516001600160a01b03831681524360208201527f6fe653fe772afff767acb8f06322c2ccdca9b9161ba5fea749a292031c4886db91015b60405180910390a150565b610586610cf8565b6001600160a01b03811660009081526006602052604090205460ff16156105e35760405162461bcd60e51b81526020600482015260116024820152701a185cc81a5b88189b1858dac81b1a5cdd607a1b6044820152606401610524565b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517f414a50a0a3ac39f418da83cdc9f6ef28b28e5d335cc17e71324ea48d01e5cc6d9190a250565b6000336104998185856106428383610a47565b61064c919061163c565b610ae8565b610659610cf8565b6001600160a01b03811660009081526006602052604090205460ff166106b55760405162461bcd60e51b81526020600482015260116024820152701b9bdd081a5b88189b1858dac81b1a5cdd607a1b6044820152606401610524565b6001600160a01b038116600081815260066020526040808220805460ff19169055517f8a2b1479432fb92af03ef57e4e6c89ab85e15c33cd5429e8881a36e335ef0d119190a250565b610706610cf8565b61070e610d8c565b565b600061071d600733610d52565b61075f5760405162461bcd60e51b815260206004820152601360248201527236bab9ba1031b0b63610313c9036b4b73a32b960691b6044820152606401610524565b6001600160a01b03831660009081526006602052604090205460ff16156107d45760405162461bcd60e51b815260206004820152602360248201527f63616e2774206d696e7420746f206164647265737320696e20626c61636b6c6960448201526273742160e81b6064820152608401610524565b682b5e3af16b18800000826107e860025490565b6107f2919061163c565b11156108405760405162461bcd60e51b815260206004820152601960248201527f737570706c79206973206f76657220746865206c696d697421000000000000006044820152606401610524565b61084a8383610de1565b50600192915050565b61085d3382610ea0565b50565b606061086c6007610fd2565b905090565b610879610cf8565b61070e6000610fdf565b61088e823383610c0c565b6108988282610ea0565b5050565b6108a4610cf8565b61070e611031565b606060048054610408906115ec565b6108c3610cf8565b6108ce600782610d52565b1561091b5760405162461bcd60e51b815260206004820152601960248201527f746865206d696e74657220616c726561647920657869737421000000000000006044820152606401610524565b610926600782611074565b50604080516001600160a01b03831681524360208201527f97d43c024b420050312d1944c864cdd4183109e92852ae43cfc0dff357fa85c79101610573565b6000610972600733610d52565b6109b45760405162461bcd60e51b815260206004820152601360248201527236bab9ba1031b0b63610313c9036b4b73a32b960691b6044820152606401610524565b61084a8383610883565b600033816109cc8286610a47565b905083811015610a2c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610524565b6104be8286868403610ae8565b600033610499818585610c86565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a7a610cf8565b6001600160a01b038116610adf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610524565b61085d81610fdf565b6001600160a01b038316610b4a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610524565b6001600160a01b038216610bab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610524565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610c188484610a47565b90506000198114610c805781811015610c735760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610524565b610c808484848403610ae8565b50505050565b610c8e611089565b6001600160a01b03831660009081526006602052604090205460ff1615610ce85760405162461bcd60e51b815260206004820152600e60248201526d31b0b713ba103a3930b739b332b960911b6044820152606401610524565b610cf38383836110d6565b505050565b6005546001600160a01b0316331461070e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610524565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b6000610d70836001600160a01b03841661127a565b610d9461136d565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610e375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610524565b8060026000828254610e49919061163c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610f005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610524565b6001600160a01b03821660009081526020819052604090205481811015610f745760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610524565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60606000610d70836113bd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611039611089565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dc43390565b6000610d70836001600160a01b038416611419565b600554600160a01b900460ff161561070e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610524565b6001600160a01b03831661113a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610524565b6001600160a01b03821661119c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610524565b6001600160a01b038316600090815260208190526040902054818110156112145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610524565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c80565b6000818152600183016020526040812054801561136357600061129e60018361164f565b85549091506000906112b29060019061164f565b90508181146113175760008660000182815481106112d2576112d2611662565b90600052602060002001549050808760000184815481106112f5576112f5611662565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061132857611328611678565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b600554600160a01b900460ff1661070e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610524565b60608160000180548060200260200160405190810160405280929190818152602001828054801561140d57602002820191906000526020600020905b8154815260200190600101908083116113f9575b50505050509050919050565b60008181526001830160205260408120546114605750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b600060208083528351808285015260005b8181101561149557858101830151858201604001528201611479565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146114cd57600080fd5b919050565b600080604083850312156114e557600080fd5b6114ee836114b6565b946020939093013593505050565b60008060006060848603121561151157600080fd5b61151a846114b6565b9250611528602085016114b6565b9150604084013590509250925092565b60006020828403121561154a57600080fd5b610d70826114b6565b60006020828403121561156557600080fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156115ad5783516001600160a01b031683529284019291840191600101611588565b50909695505050505050565b600080604083850312156115cc57600080fd5b6115d5836114b6565b91506115e3602084016114b6565b90509250929050565b600181811c9082168061160057607f821691505b60208210810361162057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049f5761049f611626565b8181038181111561049f5761049f611626565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfea264697066735822122072568e89fb847cadc6be538e9d85701950a550cc6c751c936ecb3c7b121752ab64736f6c63430008100033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

The Hourglass Protocol deployed on Ethereum, mixed ERC4O4A, ERC20, ERC721 implementation with native liquidity.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.