ETH Price: $3,303.69 (-3.15%)
Gas: 12 Gwei

Contract

0x5Fa20D59d2A907E5FEd9Fb80B4A8D9F0d069a48D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Approve202200912024-07-02 16:42:3523 hrs ago1719938555IN
0x5Fa20D59...0d069a48D
0 ETH0.000387678.25761646
Transfer202200172024-07-02 16:27:3523 hrs ago1719937655IN
0x5Fa20D59...0d069a48D
0 ETH0.000485589.30797258
Approve201916042024-06-28 17:13:474 days ago1719594827IN
0x5Fa20D59...0d069a48D
0 ETH0.000188326.30957295
Approve200353522024-06-06 21:04:4726 days ago1717707887IN
0x5Fa20D59...0d069a48D
0 ETH0.0010348522.0430094
Approve200212732024-06-04 21:53:5928 days ago1717538039IN
0x5Fa20D59...0d069a48D
0 ETH0.0005081910.82482338
Approve199025532024-05-19 7:40:1145 days ago1716104411IN
0x5Fa20D59...0d069a48D
0 ETH0.000127612.71902225
Approve198637002024-05-13 21:12:1150 days ago1715634731IN
0x5Fa20D59...0d069a48D
0 ETH0.000350487.46739053
Approve197949962024-05-04 6:37:1160 days ago1714804631IN
0x5Fa20D59...0d069a48D
0 ETH0.000162136.5013167
Approve197947572024-05-04 5:49:2360 days ago1714801763IN
0x5Fa20D59...0d069a48D
0 ETH0.000237245.02389536
Approve197551552024-04-28 16:57:4765 days ago1714323467IN
0x5Fa20D59...0d069a48D
0 ETH0.000447499.52952959
Approve197313452024-04-25 8:59:5969 days ago1714035599IN
0x5Fa20D59...0d069a48D
0 ETH0.000621213.23539216
Approve197291042024-04-25 1:28:2369 days ago1714008503IN
0x5Fa20D59...0d069a48D
0 ETH0.00035567.57647746
Approve197289682024-04-25 1:01:1169 days ago1714006871IN
0x5Fa20D59...0d069a48D
0 ETH0.000326826.96150172
Approve197272402024-04-24 19:13:3569 days ago1713986015IN
0x5Fa20D59...0d069a48D
0 ETH0.0005805212.36860464
Approve197256642024-04-24 13:54:5970 days ago1713966899IN
0x5Fa20D59...0d069a48D
0 ETH0.0011834925.20917067
Approve197256422024-04-24 13:50:3570 days ago1713966635IN
0x5Fa20D59...0d069a48D
0 ETH0.0009685720.64701958
Approve197255902024-04-24 13:40:1170 days ago1713966011IN
0x5Fa20D59...0d069a48D
0 ETH0.0012302426.21837085
Approve197228362024-04-24 4:23:5970 days ago1713932639IN
0x5Fa20D59...0d069a48D
0 ETH0.000456089.71729049
Approve197222342024-04-24 2:22:4770 days ago1713925367IN
0x5Fa20D59...0d069a48D
0 ETH0.000423759.02847622
Transfer197222182024-04-24 2:19:3570 days ago1713925175IN
0x5Fa20D59...0d069a48D
0 ETH0.0005064810.69499315
Approve197215032024-04-23 23:54:5970 days ago1713916499IN
0x5Fa20D59...0d069a48D
0 ETH0.000352057.50101079
Approve197201942024-04-23 19:30:5970 days ago1713900659IN
0x5Fa20D59...0d069a48D
0 ETH0.0008645718.41598661
Approve197168552024-04-23 8:18:4771 days ago1713860327IN
0x5Fa20D59...0d069a48D
0 ETH0.000460619.81148172
Approve197142632024-04-22 23:37:4771 days ago1713829067IN
0x5Fa20D59...0d069a48D
0 ETH0.000341627.27859666
Approve197123782024-04-22 17:18:3571 days ago1713806315IN
0x5Fa20D59...0d069a48D
0 ETH0.0006319713.46142306
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:
Noggles

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Noggles.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

contract Noggles is ERC20, ERC20Burnable, Ownable {
    /// @dev Defines how frequently inflation can be triggered: Once a year
    uint256 public constant TIME_BETWEEN_MINTINGS = 365 days;
    /// @dev Defines the maximal inflation per year defined as k%, i.e. 1000 is 1%.
    uint256 public constant MAX_YEARLY_INFLATION = 1_690;
    /// @dev Stores the timestamp of the last inflation event
    uint256 public timestampLastMinting = 0;

    constructor() ERC20("Noggles", "NOGS") {
        _mint(msg.sender, 69_000_000_000 * 10 ** decimals());

        // solhint-disable-next-line not-rely-on-time
        timestampLastMinting = block.timestamp;
    }

    /// @dev This function allows to mint new tokens once every TIME_BETWEEN_MINTINGS and mints INFLATION.
    /// @param target The address that should receive the new tokens
    function mint(address target) external onlyOwner {
        // solhint-disable-next-line not-rely-on-time
        require(
            block.timestamp - timestampLastMinting >= TIME_BETWEEN_MINTINGS,
            "already inflated"
        );
        // solhint-disable-next-line not-rely-on-time
        timestampLastMinting = block.timestamp;
        uint256 amount = (totalSupply() * MAX_YEARLY_INFLATION) / 100_000;
        _mint(target, amount);
    }
}

File 2 of 7 : 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 7 : 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 7 : 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 5 of 7 : 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 7 : 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 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

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

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":"MAX_YEARLY_INFLATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIME_BETWEEN_MINTINGS","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"target","type":"address"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timestampLastMinting","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"}]

608060405260006006553480156200001657600080fd5b506040518060400160405280600781526020017f4e6f67676c6573000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4f4753000000000000000000000000000000000000000000000000000000008152508160039081620000949190620005df565b508060049081620000a69190620005df565b505050620000c9620000bd6200011760201b60201c565b6200011f60201b60201c565b6200010a33620000de620001e560201b60201c565b600a620000ec919062000856565b641010b87200620000fe9190620008a7565b620001ee60201b60201c565b42600681905550620009de565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002579062000953565b60405180910390fd5b62000274600083836200035b60201b60201c565b806002600082825462000288919062000975565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033b9190620009c1565b60405180910390a362000357600083836200036060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e757607f821691505b602082108103620003fd57620003fc6200039f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000428565b62000473868362000428565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004c0620004ba620004b4846200048b565b62000495565b6200048b565b9050919050565b6000819050919050565b620004dc836200049f565b620004f4620004eb82620004c7565b84845462000435565b825550505050565b600090565b6200050b620004fc565b62000518818484620004d1565b505050565b5b8181101562000540576200053460008262000501565b6001810190506200051e565b5050565b601f8211156200058f57620005598162000403565b620005648462000418565b8101602085101562000574578190505b6200058c620005838562000418565b8301826200051d565b50505b505050565b600082821c905092915050565b6000620005b46000198460080262000594565b1980831691505092915050565b6000620005cf8383620005a1565b9150826002028217905092915050565b620005ea8262000365565b67ffffffffffffffff81111562000606576200060562000370565b5b620006128254620003ce565b6200061f82828562000544565b600060209050601f83116001811462000657576000841562000642578287015190505b6200064e8582620005c1565b865550620006be565b601f198416620006678662000403565b60005b8281101562000691578489015182556001820191506020850194506020810190506200066a565b86831015620006b15784890151620006ad601f891682620005a1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000754578086048111156200072c576200072b620006c6565b5b60018516156200073c5780820291505b80810290506200074c85620006f5565b94506200070c565b94509492505050565b6000826200076f576001905062000842565b816200077f576000905062000842565b8160018114620007985760028114620007a357620007d9565b600191505062000842565b60ff841115620007b857620007b7620006c6565b5b8360020a915084821115620007d257620007d1620006c6565b5b5062000842565b5060208310610133831016604e8410600b8410161715620008135782820a9050838111156200080d576200080c620006c6565b5b62000842565b62000822848484600162000702565b925090508184048111156200083c576200083b620006c6565b5b81810290505b9392505050565b600060ff82169050919050565b600062000863826200048b565b9150620008708362000849565b92506200089f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200075d565b905092915050565b6000620008b4826200048b565b9150620008c1836200048b565b9250828202620008d1816200048b565b91508282048414831517620008eb57620008ea620006c6565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200093b601f83620008f2565b9150620009488262000903565b602082019050919050565b600060208201905081810360008301526200096e816200092c565b9050919050565b600062000982826200048b565b91506200098f836200048b565b9250828201905080821115620009aa57620009a9620006c6565b5b92915050565b620009bb816200048b565b82525050565b6000602082019050620009d86000830184620009b0565b92915050565b611dd380620009ee6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610333578063cd42dcbe14610363578063dd62ed3e14610381578063f2fde38b146103b1578063fde9e07a146103cd5761012c565b8063715018a6146102a157806379cc6790146102ab5780638da5cb5b146102c757806395d89b41146102e5578063a457c2d7146103035761012c565b806339509351116100f457806339509351146101eb57806342966c681461021b5780635862bf3d146102375780636a6278421461025557806370a08231146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103eb565b6040516101469190611289565b60405180910390f35b61016960048036038101906101649190611344565b61047d565b604051610176919061139f565b60405180910390f35b6101876104a0565b60405161019491906113c9565b60405180910390f35b6101b760048036038101906101b291906113e4565b6104aa565b6040516101c4919061139f565b60405180910390f35b6101d56104d9565b6040516101e29190611453565b60405180910390f35b61020560048036038101906102009190611344565b6104e2565b604051610212919061139f565b60405180910390f35b6102356004803603810190610230919061146e565b610519565b005b61023f61052d565b60405161024c91906113c9565b60405180910390f35b61026f600480360381019061026a919061149b565b610533565b005b61028b6004803603810190610286919061149b565b6105cb565b60405161029891906113c9565b60405180910390f35b6102a9610613565b005b6102c560048036038101906102c09190611344565b610627565b005b6102cf610647565b6040516102dc91906114d7565b60405180910390f35b6102ed610671565b6040516102fa9190611289565b60405180910390f35b61031d60048036038101906103189190611344565b610703565b60405161032a919061139f565b60405180910390f35b61034d60048036038101906103489190611344565b61077a565b60405161035a919061139f565b60405180910390f35b61036b61079d565b60405161037891906113c9565b60405180910390f35b61039b600480360381019061039691906114f2565b6107a5565b6040516103a891906113c9565b60405180910390f35b6103cb60048036038101906103c6919061149b565b61082c565b005b6103d56108af565b6040516103e291906113c9565b60405180910390f35b6060600380546103fa90611561565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611561565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b6000806104886108b5565b90506104958185856108bd565b600191505092915050565b6000600254905090565b6000806104b56108b5565b90506104c2858285610a86565b6104cd858585610b12565b60019150509392505050565b60006012905090565b6000806104ed6108b5565b905061050e8185856104ff85896107a5565b61050991906115c1565b6108bd565b600191505092915050565b61052a6105246108b5565b82610d88565b50565b61069a81565b61053b610f55565b6301e133806006544261054e91906115f5565b101561058f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058690611675565b60405180910390fd5b426006819055506000620186a061069a6105a76104a0565b6105b19190611695565b6105bb9190611706565b90506105c78282610fd3565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061b610f55565b6106256000611129565b565b610639826106336108b5565b83610a86565b6106438282610d88565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068090611561565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac90611561565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b60008061070e6108b5565b9050600061071c82866107a5565b905083811015610761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610758906117a9565b60405180910390fd5b61076e82868684036108bd565b60019250505092915050565b6000806107856108b5565b9050610792818585610b12565b600191505092915050565b6301e1338081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610834610f55565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a9061183b565b60405180910390fd5b6108ac81611129565b50565b60065481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610923906118cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361099b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109929061195f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a7991906113c9565b60405180910390a3505050565b6000610a9284846107a5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b0c5781811015610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af5906119cb565b60405180910390fd5b610b0b84848484036108bd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890611a5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790611aef565b60405180910390fd5b610bfb8383836111ef565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890611b81565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6f91906113c9565b60405180910390a3610d828484846111f4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90611c13565b60405180910390fd5b610e03826000836111ef565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090611ca5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3c91906113c9565b60405180910390a3610f50836000846111f4565b505050565b610f5d6108b5565b73ffffffffffffffffffffffffffffffffffffffff16610f7b610647565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890611d11565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990611d7d565b60405180910390fd5b61104e600083836111ef565b806002600082825461106091906115c1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161111191906113c9565b60405180910390a3611125600083836111f4565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611233578082015181840152602081019050611218565b60008484015250505050565b6000601f19601f8301169050919050565b600061125b826111f9565b6112658185611204565b9350611275818560208601611215565b61127e8161123f565b840191505092915050565b600060208201905081810360008301526112a38184611250565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112db826112b0565b9050919050565b6112eb816112d0565b81146112f657600080fd5b50565b600081359050611308816112e2565b92915050565b6000819050919050565b6113218161130e565b811461132c57600080fd5b50565b60008135905061133e81611318565b92915050565b6000806040838503121561135b5761135a6112ab565b5b6000611369858286016112f9565b925050602061137a8582860161132f565b9150509250929050565b60008115159050919050565b61139981611384565b82525050565b60006020820190506113b46000830184611390565b92915050565b6113c38161130e565b82525050565b60006020820190506113de60008301846113ba565b92915050565b6000806000606084860312156113fd576113fc6112ab565b5b600061140b868287016112f9565b935050602061141c868287016112f9565b925050604061142d8682870161132f565b9150509250925092565b600060ff82169050919050565b61144d81611437565b82525050565b60006020820190506114686000830184611444565b92915050565b600060208284031215611484576114836112ab565b5b60006114928482850161132f565b91505092915050565b6000602082840312156114b1576114b06112ab565b5b60006114bf848285016112f9565b91505092915050565b6114d1816112d0565b82525050565b60006020820190506114ec60008301846114c8565b92915050565b60008060408385031215611509576115086112ab565b5b6000611517858286016112f9565b9250506020611528858286016112f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061157957607f821691505b60208210810361158c5761158b611532565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115cc8261130e565b91506115d78361130e565b92508282019050808211156115ef576115ee611592565b5b92915050565b60006116008261130e565b915061160b8361130e565b925082820390508181111561162357611622611592565b5b92915050565b7f616c726561647920696e666c6174656400000000000000000000000000000000600082015250565b600061165f601083611204565b915061166a82611629565b602082019050919050565b6000602082019050818103600083015261168e81611652565b9050919050565b60006116a08261130e565b91506116ab8361130e565b92508282026116b98161130e565b915082820484148315176116d0576116cf611592565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117118261130e565b915061171c8361130e565b92508261172c5761172b6116d7565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611793602583611204565b915061179e82611737565b604082019050919050565b600060208201905081810360008301526117c281611786565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611825602683611204565b9150611830826117c9565b604082019050919050565b6000602082019050818103600083015261185481611818565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118b7602483611204565b91506118c28261185b565b604082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611949602283611204565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119b5601d83611204565b91506119c08261197f565b602082019050919050565b600060208201905081810360008301526119e4816119a8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a47602583611204565b9150611a52826119eb565b604082019050919050565b60006020820190508181036000830152611a7681611a3a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad9602383611204565b9150611ae482611a7d565b604082019050919050565b60006020820190508181036000830152611b0881611acc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b6b602683611204565b9150611b7682611b0f565b604082019050919050565b60006020820190508181036000830152611b9a81611b5e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfd602183611204565b9150611c0882611ba1565b604082019050919050565b60006020820190508181036000830152611c2c81611bf0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c8f602283611204565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cfb602083611204565b9150611d0682611cc5565b602082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d67601f83611204565b9150611d7282611d31565b602082019050919050565b60006020820190508181036000830152611d9681611d5a565b905091905056fea26469706673582212206a564ac02b287dc229121a615ec25ae36063e682c86a7a1d6342da8ad2c1c1ca64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610333578063cd42dcbe14610363578063dd62ed3e14610381578063f2fde38b146103b1578063fde9e07a146103cd5761012c565b8063715018a6146102a157806379cc6790146102ab5780638da5cb5b146102c757806395d89b41146102e5578063a457c2d7146103035761012c565b806339509351116100f457806339509351146101eb57806342966c681461021b5780635862bf3d146102375780636a6278421461025557806370a08231146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103eb565b6040516101469190611289565b60405180910390f35b61016960048036038101906101649190611344565b61047d565b604051610176919061139f565b60405180910390f35b6101876104a0565b60405161019491906113c9565b60405180910390f35b6101b760048036038101906101b291906113e4565b6104aa565b6040516101c4919061139f565b60405180910390f35b6101d56104d9565b6040516101e29190611453565b60405180910390f35b61020560048036038101906102009190611344565b6104e2565b604051610212919061139f565b60405180910390f35b6102356004803603810190610230919061146e565b610519565b005b61023f61052d565b60405161024c91906113c9565b60405180910390f35b61026f600480360381019061026a919061149b565b610533565b005b61028b6004803603810190610286919061149b565b6105cb565b60405161029891906113c9565b60405180910390f35b6102a9610613565b005b6102c560048036038101906102c09190611344565b610627565b005b6102cf610647565b6040516102dc91906114d7565b60405180910390f35b6102ed610671565b6040516102fa9190611289565b60405180910390f35b61031d60048036038101906103189190611344565b610703565b60405161032a919061139f565b60405180910390f35b61034d60048036038101906103489190611344565b61077a565b60405161035a919061139f565b60405180910390f35b61036b61079d565b60405161037891906113c9565b60405180910390f35b61039b600480360381019061039691906114f2565b6107a5565b6040516103a891906113c9565b60405180910390f35b6103cb60048036038101906103c6919061149b565b61082c565b005b6103d56108af565b6040516103e291906113c9565b60405180910390f35b6060600380546103fa90611561565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611561565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b6000806104886108b5565b90506104958185856108bd565b600191505092915050565b6000600254905090565b6000806104b56108b5565b90506104c2858285610a86565b6104cd858585610b12565b60019150509392505050565b60006012905090565b6000806104ed6108b5565b905061050e8185856104ff85896107a5565b61050991906115c1565b6108bd565b600191505092915050565b61052a6105246108b5565b82610d88565b50565b61069a81565b61053b610f55565b6301e133806006544261054e91906115f5565b101561058f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058690611675565b60405180910390fd5b426006819055506000620186a061069a6105a76104a0565b6105b19190611695565b6105bb9190611706565b90506105c78282610fd3565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061b610f55565b6106256000611129565b565b610639826106336108b5565b83610a86565b6106438282610d88565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068090611561565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac90611561565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b60008061070e6108b5565b9050600061071c82866107a5565b905083811015610761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610758906117a9565b60405180910390fd5b61076e82868684036108bd565b60019250505092915050565b6000806107856108b5565b9050610792818585610b12565b600191505092915050565b6301e1338081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610834610f55565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a9061183b565b60405180910390fd5b6108ac81611129565b50565b60065481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610923906118cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361099b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109929061195f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a7991906113c9565b60405180910390a3505050565b6000610a9284846107a5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b0c5781811015610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af5906119cb565b60405180910390fd5b610b0b84848484036108bd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890611a5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790611aef565b60405180910390fd5b610bfb8383836111ef565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890611b81565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6f91906113c9565b60405180910390a3610d828484846111f4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90611c13565b60405180910390fd5b610e03826000836111ef565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090611ca5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3c91906113c9565b60405180910390a3610f50836000846111f4565b505050565b610f5d6108b5565b73ffffffffffffffffffffffffffffffffffffffff16610f7b610647565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890611d11565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990611d7d565b60405180910390fd5b61104e600083836111ef565b806002600082825461106091906115c1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161111191906113c9565b60405180910390a3611125600083836111f4565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611233578082015181840152602081019050611218565b60008484015250505050565b6000601f19601f8301169050919050565b600061125b826111f9565b6112658185611204565b9350611275818560208601611215565b61127e8161123f565b840191505092915050565b600060208201905081810360008301526112a38184611250565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112db826112b0565b9050919050565b6112eb816112d0565b81146112f657600080fd5b50565b600081359050611308816112e2565b92915050565b6000819050919050565b6113218161130e565b811461132c57600080fd5b50565b60008135905061133e81611318565b92915050565b6000806040838503121561135b5761135a6112ab565b5b6000611369858286016112f9565b925050602061137a8582860161132f565b9150509250929050565b60008115159050919050565b61139981611384565b82525050565b60006020820190506113b46000830184611390565b92915050565b6113c38161130e565b82525050565b60006020820190506113de60008301846113ba565b92915050565b6000806000606084860312156113fd576113fc6112ab565b5b600061140b868287016112f9565b935050602061141c868287016112f9565b925050604061142d8682870161132f565b9150509250925092565b600060ff82169050919050565b61144d81611437565b82525050565b60006020820190506114686000830184611444565b92915050565b600060208284031215611484576114836112ab565b5b60006114928482850161132f565b91505092915050565b6000602082840312156114b1576114b06112ab565b5b60006114bf848285016112f9565b91505092915050565b6114d1816112d0565b82525050565b60006020820190506114ec60008301846114c8565b92915050565b60008060408385031215611509576115086112ab565b5b6000611517858286016112f9565b9250506020611528858286016112f9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061157957607f821691505b60208210810361158c5761158b611532565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115cc8261130e565b91506115d78361130e565b92508282019050808211156115ef576115ee611592565b5b92915050565b60006116008261130e565b915061160b8361130e565b925082820390508181111561162357611622611592565b5b92915050565b7f616c726561647920696e666c6174656400000000000000000000000000000000600082015250565b600061165f601083611204565b915061166a82611629565b602082019050919050565b6000602082019050818103600083015261168e81611652565b9050919050565b60006116a08261130e565b91506116ab8361130e565b92508282026116b98161130e565b915082820484148315176116d0576116cf611592565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117118261130e565b915061171c8361130e565b92508261172c5761172b6116d7565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611793602583611204565b915061179e82611737565b604082019050919050565b600060208201905081810360008301526117c281611786565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611825602683611204565b9150611830826117c9565b604082019050919050565b6000602082019050818103600083015261185481611818565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118b7602483611204565b91506118c28261185b565b604082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611949602283611204565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119b5601d83611204565b91506119c08261197f565b602082019050919050565b600060208201905081810360008301526119e4816119a8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a47602583611204565b9150611a52826119eb565b604082019050919050565b60006020820190508181036000830152611a7681611a3a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad9602383611204565b9150611ae482611a7d565b604082019050919050565b60006020820190508181036000830152611b0881611acc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b6b602683611204565b9150611b7682611b0f565b604082019050919050565b60006020820190508181036000830152611b9a81611b5e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfd602183611204565b9150611c0882611ba1565b604082019050919050565b60006020820190508181036000830152611c2c81611bf0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c8f602283611204565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611cfb602083611204565b9150611d0682611cc5565b602082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d67601f83611204565b9150611d7282611d31565b602082019050919050565b60006020820190508181036000830152611d9681611d5a565b905091905056fea26469706673582212206a564ac02b287dc229121a615ec25ae36063e682c86a7a1d6342da8ad2c1c1ca64736f6c63430008120033

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.