ETH Price: $3,296.01 (-1.61%)

Contract

0x037E5E7698F53a7e03E2566543Dc5D606224F296
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve214002882024-12-14 10:54:2337 days ago1734173663IN
0x037E5E76...06224F296
0 ETH0.000204458.41007089
Approve214002842024-12-14 10:53:3537 days ago1734173615IN
0x037E5E76...06224F296
0 ETH0.000190757.86585355
Approve205472042024-08-17 8:38:59157 days ago1723883939IN
0x037E5E76...06224F296
0 ETH0.000063931.37216752
Mint205068082024-08-11 17:17:59162 days ago1723396679IN
0x037E5E76...06224F296
0 ETH0.00002381
Mint205068082024-08-11 17:17:59162 days ago1723396679IN
0x037E5E76...06224F296
0 ETH0.00002381
Approve205065792024-08-11 16:31:47162 days ago1723393907IN
0x037E5E76...06224F296
0 ETH0.000205274.40561174
Approve205063822024-08-11 15:51:59162 days ago1723391519IN
0x037E5E76...06224F296
0 ETH0.000325996.99634878
Transfer205063752024-08-11 15:50:35162 days ago1723391435IN
0x037E5E76...06224F296
0 ETH0.0001372.93399956
Approve205052882024-08-11 12:11:59162 days ago1723378319IN
0x037E5E76...06224F296
0 ETH0.000055762.11456103
Approve205051822024-08-11 11:50:23162 days ago1723377023IN
0x037E5E76...06224F296
0 ETH0.000066111.42885239
Approve205048552024-08-11 10:44:23162 days ago1723373063IN
0x037E5E76...06224F296
0 ETH0.000132092.83100274
Transfer205048162024-08-11 10:36:35163 days ago1723372595IN
0x037E5E76...06224F296
0 ETH0.000137432.94065773
Mint205032542024-08-11 5:22:11163 days ago1723353731IN
0x037E5E76...06224F296
0 ETH0.00002381
Mint205031692024-08-11 5:04:59163 days ago1723352699IN
0x037E5E76...06224F296
0 ETH0.00002381
Mint205029712024-08-11 4:25:23163 days ago1723350323IN
0x037E5E76...06224F296
0 ETH0.00002381
Approve205026102024-08-11 3:12:59163 days ago1723345979IN
0x037E5E76...06224F296
0 ETH0.000062641.3445362
Approve205025692024-08-11 3:04:35163 days ago1723345475IN
0x037E5E76...06224F296
0 ETH0.00004781.02725736
Approve205023552024-08-11 2:21:11163 days ago1723342871IN
0x037E5E76...06224F296
0 ETH0.000131432.8208116
Mint205023442024-08-11 2:18:59163 days ago1723342739IN
0x037E5E76...06224F296
0 ETH0.00002381
Approve205023062024-08-11 2:11:23163 days ago1723342283IN
0x037E5E76...06224F296
0 ETH0.000040240.86369638
Approve205020292024-08-11 1:15:23163 days ago1723338923IN
0x037E5E76...06224F296
0 ETH0.000041650.89413556
Approve205018902024-08-11 0:47:35163 days ago1723337255IN
0x037E5E76...06224F296
0 ETH0.000079971.7164863
Approve205018582024-08-11 0:41:11163 days ago1723336871IN
0x037E5E76...06224F296
0 ETH0.000135762.91747621
Approve205018292024-08-11 0:35:23163 days ago1723336523IN
0x037E5E76...06224F296
0 ETH0.000107652.32421536
Approve205017952024-08-11 0:28:35163 days ago1723336115IN
0x037E5E76...06224F296
0 ETH0.0005046210.83002308
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:
OneGwei

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license
File 1 of 6 : OneGwei.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract OneGwei is ERC20, Ownable {
    // 1 Gwei or the highway
    uint256 public constant DECIMALS = 10**18;
    uint256 public constant INITIAL_LOT_SIZE = 5000 * DECIMALS;
    uint256 public constant MAX_SUPPLY = 10000000 * DECIMALS;
    uint256 public totalMinted = 0;

    constructor() ERC20("One Gwei", "1GWEI") {
        _mint(msg.sender, INITIAL_LOT_SIZE * 10);
        totalMinted += INITIAL_LOT_SIZE;
    }

    function decimals() public pure override returns (uint8) {
        return 18;
    }

    function mint() public {
        require(tx.gasprice == 1 * 10**9, "1 gwei or the highway");
        uint256 lotSize = 5000 * DECIMALS;
        require(totalMinted + lotSize <= MAX_SUPPLY, "Too much minting");
        totalMinted += lotSize;
        _mint(msg.sender, lotSize);
    }

    function sweep() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function sweepERC20(address token) external onlyOwner {
        IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this)));
    }
}

File 2 of 6 : 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);
    }
}

File 3 of 6 : 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 4 of 6 : 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 5 of 6 : 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 6 of 6 : 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_LOT_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"sweepERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

608060405260006006553480156200001657600080fd5b50604051806040016040528060088152602001674f6e65204777656960c01b81525060405180604001604052806005815260200164314757454960d81b8152508160039081620000679190620002bb565b506004620000768282620002bb565b505050620000936200008d620000f660201b60201c565b620000fa565b620000c133620000ae670de0b6b3a76400006113886200039d565b620000bb90600a6200039d565b6200014c565b620000d7670de0b6b3a76400006113886200039d565b60066000828254620000ea9190620003bd565b90915550620003d39050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001bb9190620003bd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200024257607f821691505b6020821081036200026357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021257600081815260208120601f850160051c81016020861015620002925750805b601f850160051c820191505b81811015620002b3578281556001016200029e565b505050505050565b81516001600160401b03811115620002d757620002d762000217565b620002ef81620002e884546200022d565b8462000269565b602080601f8311600181146200032757600084156200030e5750858301515b600019600386901b1c1916600185901b178555620002b3565b600085815260208120601f198616915b82811015620003585788860151825594840194600190910190840162000337565b5085821015620003775787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620003b757620003b762000387565b92915050565b80820180821115620003b757620003b762000387565b610e0f80620003e36000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a2309ff81161007c578063a2309ff814610249578063a457c2d714610252578063a9059cbb14610265578063dd62ed3e14610278578063e00af4a71461028b578063f2fde38b1461029e57600080fd5b806370a08231146101ed578063715018a6146102165780638da5cb5b1461021e57806395d89b411461023957806396efb1371461024157600080fd5b80632e0f2625116100ff5780632e0f2625146101ac578063313ce567146101bb57806332cb6b0c146101ca57806335faa416146101d257806339509351146101da57600080fd5b806306fdde031461013c578063095ea7b31461015a5780631249c58b1461017d57806318160ddd1461018757806323b872dd14610199575b600080fd5b6101446102b1565b6040516101519190610bff565b60405180910390f35b61016d610168366004610c69565b610343565b6040519015158152602001610151565b61018561035d565b005b6002545b604051908152602001610151565b61016d6101a7366004610c93565b61044e565b61018b670de0b6b3a764000081565b60405160128152602001610151565b61018b610472565b61018561048a565b61016d6101e8366004610c69565b6104cb565b61018b6101fb366004610ccf565b6001600160a01b031660009081526020819052604090205490565b6101856104ed565b6005546040516001600160a01b039091168152602001610151565b610144610501565b61018b610510565b61018b60065481565b61016d610260366004610c69565b610524565b61016d610273366004610c69565b61059f565b61018b610286366004610cf1565b6105ad565b610185610299366004610ccf565b6105d8565b6101856102ac366004610ccf565b6106dc565b6060600380546102c090610d24565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec90610d24565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b600033610351818585610752565b60019150505b92915050565b3a633b9aca00146103ad5760405162461bcd60e51b8152602060048201526015602482015274312067776569206f7220746865206869676877617960581b60448201526064015b60405180910390fd5b60006103c3670de0b6b3a7640000611388610d74565b90506103da670de0b6b3a764000062989680610d74565b816006546103e89190610d8b565b11156104295760405162461bcd60e51b815260206004820152601060248201526f546f6f206d756368206d696e74696e6760801b60448201526064016103a4565b806006600082825461043b9190610d8b565b9091555061044b90503382610876565b50565b60003361045c858285610935565b6104678585856109af565b506001949350505050565b610487670de0b6b3a764000062989680610d74565b81565b610492610b53565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561044b573d6000803e3d6000fd5b6000336103518185856104de83836105ad565b6104e89190610d8b565b610752565b6104f5610b53565b6104ff6000610bad565b565b6060600480546102c090610d24565b610487670de0b6b3a7640000611388610d74565b6000338161053282866105ad565b9050838110156105925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a4565b6104678286868403610752565b6000336103518185856109af565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105e0610b53565b806001600160a01b031663a9059cbb6106016005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106699190610d9e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156106b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d89190610db7565b5050565b6106e4610b53565b6001600160a01b0381166107495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a4565b61044b81610bad565b6001600160a01b0383166107b45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a4565b6001600160a01b0382166108155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166108cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a4565b80600260008282546108de9190610d8b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600061094184846105ad565b905060001981146109a9578181101561099c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a4565b6109a98484848403610752565b50505050565b6001600160a01b038316610a135760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a4565b6001600160a01b038216610a755760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a4565b6001600160a01b03831660009081526020819052604090205481811015610aed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a4565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109a9565b6005546001600160a01b031633146104ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610c2c57858101830151858201604001528201610c10565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c6457600080fd5b919050565b60008060408385031215610c7c57600080fd5b610c8583610c4d565b946020939093013593505050565b600080600060608486031215610ca857600080fd5b610cb184610c4d565b9250610cbf60208501610c4d565b9150604084013590509250925092565b600060208284031215610ce157600080fd5b610cea82610c4d565b9392505050565b60008060408385031215610d0457600080fd5b610d0d83610c4d565b9150610d1b60208401610c4d565b90509250929050565b600181811c90821680610d3857607f821691505b602082108103610d5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035757610357610d5e565b8082018082111561035757610357610d5e565b600060208284031215610db057600080fd5b5051919050565b600060208284031215610dc957600080fd5b81518015158114610cea57600080fdfea264697066735822122000ce3097e87a2c880bce6fdf5c983c85fec7eb7ecbd5682d4b2e4f170a705a4164736f6c63430008140033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a2309ff81161007c578063a2309ff814610249578063a457c2d714610252578063a9059cbb14610265578063dd62ed3e14610278578063e00af4a71461028b578063f2fde38b1461029e57600080fd5b806370a08231146101ed578063715018a6146102165780638da5cb5b1461021e57806395d89b411461023957806396efb1371461024157600080fd5b80632e0f2625116100ff5780632e0f2625146101ac578063313ce567146101bb57806332cb6b0c146101ca57806335faa416146101d257806339509351146101da57600080fd5b806306fdde031461013c578063095ea7b31461015a5780631249c58b1461017d57806318160ddd1461018757806323b872dd14610199575b600080fd5b6101446102b1565b6040516101519190610bff565b60405180910390f35b61016d610168366004610c69565b610343565b6040519015158152602001610151565b61018561035d565b005b6002545b604051908152602001610151565b61016d6101a7366004610c93565b61044e565b61018b670de0b6b3a764000081565b60405160128152602001610151565b61018b610472565b61018561048a565b61016d6101e8366004610c69565b6104cb565b61018b6101fb366004610ccf565b6001600160a01b031660009081526020819052604090205490565b6101856104ed565b6005546040516001600160a01b039091168152602001610151565b610144610501565b61018b610510565b61018b60065481565b61016d610260366004610c69565b610524565b61016d610273366004610c69565b61059f565b61018b610286366004610cf1565b6105ad565b610185610299366004610ccf565b6105d8565b6101856102ac366004610ccf565b6106dc565b6060600380546102c090610d24565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec90610d24565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b600033610351818585610752565b60019150505b92915050565b3a633b9aca00146103ad5760405162461bcd60e51b8152602060048201526015602482015274312067776569206f7220746865206869676877617960581b60448201526064015b60405180910390fd5b60006103c3670de0b6b3a7640000611388610d74565b90506103da670de0b6b3a764000062989680610d74565b816006546103e89190610d8b565b11156104295760405162461bcd60e51b815260206004820152601060248201526f546f6f206d756368206d696e74696e6760801b60448201526064016103a4565b806006600082825461043b9190610d8b565b9091555061044b90503382610876565b50565b60003361045c858285610935565b6104678585856109af565b506001949350505050565b610487670de0b6b3a764000062989680610d74565b81565b610492610b53565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561044b573d6000803e3d6000fd5b6000336103518185856104de83836105ad565b6104e89190610d8b565b610752565b6104f5610b53565b6104ff6000610bad565b565b6060600480546102c090610d24565b610487670de0b6b3a7640000611388610d74565b6000338161053282866105ad565b9050838110156105925760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a4565b6104678286868403610752565b6000336103518185856109af565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105e0610b53565b806001600160a01b031663a9059cbb6106016005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106699190610d9e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156106b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d89190610db7565b5050565b6106e4610b53565b6001600160a01b0381166107495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a4565b61044b81610bad565b6001600160a01b0383166107b45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a4565b6001600160a01b0382166108155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166108cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a4565b80600260008282546108de9190610d8b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600061094184846105ad565b905060001981146109a9578181101561099c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a4565b6109a98484848403610752565b50505050565b6001600160a01b038316610a135760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a4565b6001600160a01b038216610a755760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a4565b6001600160a01b03831660009081526020819052604090205481811015610aed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a4565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109a9565b6005546001600160a01b031633146104ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610c2c57858101830151858201604001528201610c10565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c6457600080fd5b919050565b60008060408385031215610c7c57600080fd5b610c8583610c4d565b946020939093013593505050565b600080600060608486031215610ca857600080fd5b610cb184610c4d565b9250610cbf60208501610c4d565b9150604084013590509250925092565b600060208284031215610ce157600080fd5b610cea82610c4d565b9392505050565b60008060408385031215610d0457600080fd5b610d0d83610c4d565b9150610d1b60208401610c4d565b90509250929050565b600181811c90821680610d3857607f821691505b602082108103610d5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035757610357610d5e565b8082018082111561035757610357610d5e565b600060208284031215610db057600080fd5b5051919050565b600060208284031215610dc957600080fd5b81518015158114610cea57600080fdfea264697066735822122000ce3097e87a2c880bce6fdf5c983c85fec7eb7ecbd5682d4b2e4f170a705a4164736f6c63430008140033

Deployed Bytecode Sourcemap

169:1054:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:6;;1162:22;1144:41;;1132:2;1117:18;4444:197:1;1004:187:6;683:283:5;;;:::i;:::-;;3255:106:1;3342:12;;3255:106;;;1342:25:6;;;1330:2;1315:18;3255:106:1;1196:177:6;5203:256:1;;;;;;:::i;:::-;;:::i;239:41:5:-;;274:6;239:41;;594:83;;;668:2;1853:36:6;;1841:2;1826:18;594:83:5;1711:184:6;350:56:5;;;:::i;972:101::-;;;:::i;5854:234:1:-;;;;;;:::i;:::-;;:::i;3419:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3519:18:1;3493:7;3519:18;;;;;;;;;;;;3419:125;1824:101:0;;;:::i;1201:85::-;1273:6;;1201:85;;-1:-1:-1;;;;;1273:6:0;;;2237:51:6;;2225:2;2210:18;1201:85:0;2091:203:6;2369:102:1;;;:::i;286:58:5:-;;;:::i;412:30::-;;;;;;6575:427:1;;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;:::i;:::-;;:::i;3987:149::-;;;;;;:::i;:::-;;:::i;1079:142:5:-;;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;:::i;:::-;;:::i;2158:98:1:-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;734:10:4;4581:32:1;734:10:4;4597:7:1;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;683:283:5:-;724:11;739:9;724:24;716:58;;;;-1:-1:-1;;;716:58:5;;3151:2:6;716:58:5;;;3133:21:6;3190:2;3170:18;;;3163:30;-1:-1:-1;;;3209:18:6;;;3202:51;3270:18;;716:58:5;;;;;;;;;784:15;802;274:6;802:4;:15;:::i;:::-;784:33;-1:-1:-1;387:19:5;274:6;387:8;:19;:::i;:::-;849:7;835:11;;:21;;;;:::i;:::-;:35;;827:64;;;;-1:-1:-1;;;827:64:5;;3936:2:6;827:64:5;;;3918:21:6;3975:2;3955:18;;;3948:30;-1:-1:-1;;;3994:18:6;;;3987:46;4050:18;;827:64:5;3734:340:6;827:64:5;916:7;901:11;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;933:26:5;;-1:-1:-1;939:10:5;951:7;933:5;:26::i;:::-;706:260;683:283::o;5203:256:1:-;5300:4;734:10:4;5356:38:1;5372:4;734:10:4;5387:6:1;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:1;;5203:256;-1:-1:-1;;;;5203:256:1:o;350:56:5:-;387:19;274:6;387:8;:19;:::i;:::-;350:56;:::o;972:101::-;1094:13:0;:11;:13::i;:::-;1273:6;;1018:48:5::1;::::0;-1:-1:-1;;;;;1273:6:0;;;;1044:21:5::1;1018:48:::0;::::1;;;::::0;::::1;::::0;;;1044:21;1273:6:0;1018:48:5;::::1;;;;;;;;;;;;;::::0;::::1;;;;5854:234:1::0;5942:4;734:10:4;5996:64:1;734:10:4;6012:7:1;6049:10;6021:25;734:10:4;6012:7:1;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;286:58:5:-;329:15;274:6;329:4;:15;:::i;6575:427:1:-;6668:4;734:10:4;6668:4:1;6749:25;734:10:4;6766:7:1;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:1;;4281:2:6;6784:85:1;;;4263:21:6;4320:2;4300:18;;;4293:30;4359:34;4339:18;;;4332:62;-1:-1:-1;;;4410:18:6;;;4403:35;4455:19;;6784:85:1;4079:401:6;6784:85:1;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;734:10:4;3873:28:1;734:10:4;3890:2:1;3894:6;3873:9;:28::i;3987:149::-;-1:-1:-1;;;;;4102:18:1;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149::o;1079:142:5:-;1094:13:0;:11;:13::i;:::-;1150:5:5::1;-1:-1:-1::0;;;;;1143:22:5::1;;1166:7;1273:6:0::0;;-1:-1:-1;;;;;1273:6:0;;1201:85;1166:7:5::1;1175:38;::::0;-1:-1:-1;;;1175:38:5;;1207:4:::1;1175:38;::::0;::::1;2237:51:6::0;-1:-1:-1;;;;;1175:23:5;::::1;::::0;::::1;::::0;2210:18:6;;1175:38:5::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1143:71;::::0;-1:-1:-1;;;;;;1143:71:5::1;::::0;;;;;;-1:-1:-1;;;;;4866:32:6;;;1143:71:5::1;::::0;::::1;4848:51:6::0;4915:18;;;4908:34;4821:18;;1143:71:5::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1079:142:::0;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;5437:2:6;2154:73:0::1;::::0;::::1;5419:21:6::0;5476:2;5456:18;;;5449:30;5515:34;5495:18;;;5488:62;-1:-1:-1;;;5566:18:6;;;5559:36;5612:19;;2154:73:0::1;5235:402:6::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;10457:340:1:-:0;-1:-1:-1;;;;;10558:19:1;;10550:68;;;;-1:-1:-1;;;10550:68:1;;5844:2:6;10550:68:1;;;5826:21:6;5883:2;5863:18;;;5856:30;5922:34;5902:18;;;5895:62;-1:-1:-1;;;5973:18:6;;;5966:34;6017:19;;10550:68:1;5642:400:6;10550:68:1;-1:-1:-1;;;;;10636:21:1;;10628:68;;;;-1:-1:-1;;;10628:68:1;;6249:2:6;10628:68:1;;;6231:21:6;6288:2;6268:18;;;6261:30;6327:34;6307:18;;;6300:62;-1:-1:-1;;;6378:18:6;;;6371:32;6420:19;;10628:68:1;6047:398:6;10628:68:1;-1:-1:-1;;;;;10707:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;1342:25:6;;;10758:32:1;;1315:18:6;10758:32:1;;;;;;;10457:340;;;:::o;8520:535::-;-1:-1:-1;;;;;8603:21:1;;8595:65;;;;-1:-1:-1;;;8595:65:1;;6652:2:6;8595:65:1;;;6634:21:6;6691:2;6671:18;;;6664:30;6730:33;6710:18;;;6703:61;6781:18;;8595:65:1;6450:355:6;8595:65:1;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8899:18:1;;:9;:18;;;;;;;;;;;:28;;;;;;8952:37;1342:25:6;;;8952:37:1;;1315:18:6;8952:37:1;;;;;;;1143:71:5::1;1079:142:::0;:::o;11078:411:1:-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;-1:-1:-1;;11244:16:1;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:1;;7012:2:6;11297:68:1;;;6994:21:6;7051:2;7031:18;;;7024:30;7090:31;7070:18;;;7063:59;7139:18;;11297:68:1;6810:353:6;11297:68:1;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11168:321;11078:411;;;:::o;7456:788::-;-1:-1:-1;;;;;7552:18:1;;7544:68;;;;-1:-1:-1;;;7544:68:1;;7370:2:6;7544:68:1;;;7352:21:6;7409:2;7389:18;;;7382:30;7448:34;7428:18;;;7421:62;-1:-1:-1;;;7499:18:6;;;7492:35;7544:19;;:68:1;7168:401:6;7544:68:1;-1:-1:-1;;;;;7630:16:1;;7622:64;;;;-1:-1:-1;;;7622:64:1;;7776:2:6;7622:64:1;;;7758:21:6;7815:2;7795:18;;;7788:30;7854:34;7834:18;;;7827:62;-1:-1:-1;;;7905:18:6;;;7898:33;7948:19;;7622:64:1;7574:399:6;7622:64:1;-1:-1:-1;;;;;7768:15:1;;7746:19;7768:15;;;;;;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:1;;8180:2:6;7793:72:1;;;8162:21:6;8219:2;8199:18;;;8192:30;8258:34;8238:18;;;8231:62;-1:-1:-1;;;8309:18:6;;;8302:36;8355:19;;7793:72:1;7978:402:6;7793:72:1;-1:-1:-1;;;;;7899:15:1;;;:9;:15;;;;;;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;1342:25:6;;;8114:13:1;;8163:26;;1315:18:6;8163:26:1;;;;;;;8200:37;12073:91;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;734:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;8587:2:6;1414:68:0;;;8569:21:6;;;8606:18;;;8599:30;8665:34;8645:18;;;8638:62;8717:18;;1414:68:0;8385:356:6;2426:187:0;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;14:548:6:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:6;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:6:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:6:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;3299:127::-;3360:10;3355:3;3351:20;3348:1;3341:31;3391:4;3388:1;3381:15;3415:4;3412:1;3405:15;3431:168;3504:9;;;3535;;3552:15;;;3546:22;;3532:37;3522:71;;3573:18;;:::i;3604:125::-;3669:9;;;3690:10;;;3687:36;;;3703:18;;:::i;4485:184::-;4555:6;4608:2;4596:9;4587:7;4583:23;4579:32;4576:52;;;4624:1;4621;4614:12;4576:52;-1:-1:-1;4647:16:6;;4485:184;-1:-1:-1;4485:184:6:o;4953:277::-;5020:6;5073:2;5061:9;5052:7;5048:23;5044:32;5041:52;;;5089:1;5086;5079:12;5041:52;5121:9;5115:16;5174:5;5167:13;5160:21;5153:5;5150:32;5140:60;;5196:1;5193;5186:12

Swarm Source

ipfs://00ce3097e87a2c880bce6fdf5c983c85fec7eb7ecbd5682d4b2e4f170a705a41

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

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.