Contract 0x08ce2d030cdd9b4661933504cf4dade5679a76ec 1

 
 
Txn Hash
Method
Block
From
To
Value [Txn Fee]
0x65ab660404774e117ef4943eb35e37598353bf1d3eb109de22e848ef8ca63c6eTransfer283064682022-05-14 11:46:40322 days 12 hrs ago0x9bdc05326958057858f65bb078fcf9428da2d15a IN  EMG: EMG Token0 MATIC0.002398251123 50.441710463
0xc21b880ae014c2e52f69a6380f552d25cc6751d7a52454d56b540dc1c2bb3debTransfer283064392022-05-14 11:45:42322 days 12 hrs ago0x9bdc05326958057858f65bb078fcf9428da2d15a IN  EMG: EMG Token0 MATIC0.002959754441 56.543212184
0x6a516d9f613e528e5f1d573f5af5d6f98ab6af6bd8313768844ed99935f932a2Transfer283063882022-05-14 11:43:56322 days 12 hrs ago0x9bdc05326958057858f65bb078fcf9428da2d15a IN  EMG: EMG Token0 MATIC0.002122675125 60.226276782
0x9425b528893f2d7864e3535cdc6d1aff55d884ce4c57b2656f2e5feceadb9349Transfer283061172022-05-14 11:34:38322 days 12 hrs ago0x9bdc05326958057858f65bb078fcf9428da2d15a IN  EMG: EMG Token0 MATIC0.005888280652 112.489839568
0xa8a5ca4b9b0e35820d2cb152d4670c7d831216cf71db43b5934f74919f915af4Transfer283059552022-05-14 11:29:02322 days 12 hrs ago0x9bdc05326958057858f65bb078fcf9428da2d15a IN  EMG: EMG Token0 MATIC0.005897846565 112.672586973
0x4644fcd541211df772084eac738760fb446e7fbd7f382f9a6c2e0dad55dd0bd5Transfer283054582022-05-14 11:11:56322 days 12 hrs ago0x9bdc05326958057858f65bb078fcf9428da2d15a IN  EMG: EMG Token0 MATIC0.001919679279 54.448174256
0x7a19b7b4b7fe7f3dafe02ca8904e1d81e29f2775892e8a357a674c743be48ca1Transfer283051762022-05-14 11:02:16322 days 12 hrs ago0x9bdc05326958057858f65bb078fcf9428da2d15a IN  EMG: EMG Token0 MATIC0.002025701922 38.716804393
0x21d5b13b33a3a4121c1d0b0f7bb8cd048513fb3c1e74194e47e895182374eaf6Transfer282376742022-05-12 18:20:12324 days 5 hrs agoEMG: Deployer IN  EMG: EMG Token0 MATIC0.002214457643 72.679039151
0x5bbae0f5a89458e10199f053e81d642fcf725b5e2ca96c18686c5da29fced352Transfer282370772022-05-12 17:59:42324 days 5 hrs agoEMG: Deployer IN  EMG: EMG Token0 MATIC0.012715027617 243.019583301
0x9f0d8f1dac44fb9be1160e7ece163e732a78e37c0478ca10c2fe1f149dd8757d0x60806040282369342022-05-12 17:52:54324 days 5 hrs agoEMG: Deployer IN  Create: EmeldiToken0 MATIC1.053406500
[ Download CSV Export 

OVERVIEW

EMG launching E-Commerce Telecom Super App platform, using blockchain technology for all customer orders, payment transactions and new customer contract authentication.

Parent Txn Hash Block From To Value
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
EmeldiToken

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 6 : EmeldiToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

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

contract EmeldiToken is Ownable, ERC20 {

    // Initially there are 500.000.000 tokens pre-minted.
    // After 2 years there CAN be minted additional tokens, but no more than 300.000.000 (total allowed supply is 800.000.000)
    uint256 public constant SUPPLY_BASE_INITIAL = 500000000;
    uint256 public constant SUPPLY_BASE_MAX     = 800000000;
    // amount of days in two years (approx.)
    uint256 public constant MAX_SUPPLY_LOCK_PERIOD = 2 * 365; 

    // Holds the date when the additional supply may be added by mintAdditional function. 
    // This value is immutable, it is set once during construction.
    uint256 public targetSupplyUnlockDate;

    constructor() ERC20("EMG Coin", "EMG") {
        targetSupplyUnlockDate = block.timestamp + MAX_SUPPLY_LOCK_PERIOD * 1 days;

        // pre-mint initial supply
        _mint(_msgSender(), SUPPLY_BASE_INITIAL * 10**decimals());
    }

    function mintAdditional(uint256 amount) external onlyOwner {
        require(amount > 0);

        uint256 amountToMint = amount * 10**decimals();
        require(amountToMint <= SUPPLY_BASE_MAX * 10**decimals() - totalSupply(), 'Too much');

        require(block.timestamp >= targetSupplyUnlockDate, 'Too early');
        
        _mint(_msgSender(), amountToMint);
    }

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    // fallback, accept ETH
    receive() external payable {
        payable(owner()).transfer(msg.value);
    }

}

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

File 3 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 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 5 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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_SUPPLY_LOCK_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_BASE_INITIAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_BASE_MAX","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":[],"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":"uint256","name":"amount","type":"uint256"}],"name":"mintAdditional","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":"targetSupplyUnlockDate","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"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f454d4720436f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f454d4700000000000000000000000000000000000000000000000000000000008152506200009e620000926200014d60201b60201c565b6200015560201b60201c565b8160049080519060200190620000b6929190620003a5565b508060059080519060200190620000cf929190620003a5565b505050620151806102da620000e591906200048e565b42620000f29190620004ef565b600681905550620001476200010c6200014d60201b60201c565b6200011c6200021960201b60201c565b600a6200012a9190620006ad565b631dcd65006200013b91906200048e565b6200022260201b60201c565b62000813565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b906200075f565b60405180910390fd5b620002a8600083836200039b60201b60201c565b8060036000828254620002bc9190620004ef565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003149190620004ef565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037b919062000792565b60405180910390a36200039760008383620003a060201b60201c565b5050565b505050565b505050565b828054620003b390620007de565b90600052602060002090601f016020900481019282620003d7576000855562000423565b82601f10620003f257805160ff191683800117855562000423565b8280016001018555821562000423579182015b828111156200042257825182559160200191906001019062000405565b5b50905062000432919062000436565b5090565b5b808211156200045157600081600090555060010162000437565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200049b8262000455565b9150620004a88362000455565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620004e457620004e36200045f565b5b828202905092915050565b6000620004fc8262000455565b9150620005098362000455565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200054157620005406200045f565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b6001851115620005ab578086048111156200058357620005826200045f565b5b6001851615620005935780820291505b8081029050620005a3856200054c565b945062000563565b94509492505050565b600082620005c6576001905062000699565b81620005d6576000905062000699565b8160018114620005ef5760028114620005fa5762000630565b600191505062000699565b60ff8411156200060f576200060e6200045f565b5b8360020a9150848211156200062957620006286200045f565b5b5062000699565b5060208310610133831016604e8410600b84101617156200066a5782820a9050838111156200066457620006636200045f565b5b62000699565b62000679848484600162000559565b925090508184048111156200069357620006926200045f565b5b81810290505b9392505050565b600060ff82169050919050565b6000620006ba8262000455565b9150620006c783620006a0565b9250620006f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b4565b905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000747601f83620006fe565b915062000754826200070f565b602082019050919050565b600060208201905081810360008301526200077a8162000738565b9050919050565b6200078c8162000455565b82525050565b6000602082019050620007a9600083018462000781565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f757607f821691505b6020821081036200080d576200080c620007af565b5b50919050565b61224780620008236000396000f3fe6080604052600436106101235760003560e01c806370a08231116100a0578063a9059cbb11610064578063a9059cbb14610443578063dd62ed3e14610480578063e79eaada146104bd578063f2fde38b146104e8578063fe8a29631461051157610177565b806370a082311461035c578063715018a6146103995780638da5cb5b146103b057806395d89b41146103db578063a457c2d71461040657610177565b8063313ce567116100e7578063313ce5671461027757806339509351146102a257806342966c68146102df578063545b0da114610308578063676638e31461033357610177565b806306fdde031461017c578063095ea7b3146101a75780630bfe62b8146101e457806318160ddd1461020f57806323b872dd1461023a57610177565b366101775761013061053c565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610175573d6000803e3d6000fd5b005b600080fd5b34801561018857600080fd5b50610191610565565b60405161019e9190611539565b60405180910390f35b3480156101b357600080fd5b506101ce60048036038101906101c991906115f4565b6105f7565b6040516101db919061164f565b60405180910390f35b3480156101f057600080fd5b506101f961061a565b6040516102069190611679565b60405180910390f35b34801561021b57600080fd5b50610224610620565b6040516102319190611679565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190611694565b61062a565b60405161026e919061164f565b60405180910390f35b34801561028357600080fd5b5061028c610659565b6040516102999190611703565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906115f4565b610662565b6040516102d6919061164f565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061171e565b610699565b005b34801561031457600080fd5b5061031d6106ad565b60405161032a9190611679565b60405180910390f35b34801561033f57600080fd5b5061035a6004803603810190610355919061171e565b6106b5565b005b34801561036857600080fd5b50610383600480360381019061037e919061174b565b610832565b6040516103909190611679565b60405180910390f35b3480156103a557600080fd5b506103ae61087b565b005b3480156103bc57600080fd5b506103c561053c565b6040516103d29190611787565b60405180910390f35b3480156103e757600080fd5b506103f0610903565b6040516103fd9190611539565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906115f4565b610995565b60405161043a919061164f565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906115f4565b610a0c565b604051610477919061164f565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a291906117a2565b610a2f565b6040516104b49190611679565b60405180910390f35b3480156104c957600080fd5b506104d2610ab6565b6040516104df9190611679565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a919061174b565b610abe565b005b34801561051d57600080fd5b50610526610bb5565b6040516105339190611679565b60405180910390f35b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461057490611811565b80601f01602080910402602001604051908101604052809291908181526020018280546105a090611811565b80156105ed5780601f106105c2576101008083540402835291602001916105ed565b820191906000526020600020905b8154815290600101906020018083116105d057829003601f168201915b5050505050905090565b600080610602610bbb565b905061060f818585610bc3565b600191505092915050565b6102da81565b6000600354905090565b600080610635610bbb565b9050610642858285610d8c565b61064d858585610e18565b60019150509392505050565b60006012905090565b60008061066d610bbb565b905061068e81858561067f8589610a2f565b6106899190611871565b610bc3565b600191505092915050565b6106aa6106a4610bbb565b8261109a565b50565b632faf080081565b6106bd610bbb565b73ffffffffffffffffffffffffffffffffffffffff166106db61053c565b73ffffffffffffffffffffffffffffffffffffffff1614610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890611913565b60405180910390fd5b6000811161073e57600080fd5b6000610748610659565b600a6107549190611a66565b8261075f9190611ab1565b9050610769610620565b610771610659565b600a61077d9190611a66565b632faf080061078c9190611ab1565b6107969190611b0b565b8111156107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf90611b8b565b60405180910390fd5b60065442101561081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490611bf7565b60405180910390fd5b61082e610828610bbb565b82611272565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610883610bbb565b73ffffffffffffffffffffffffffffffffffffffff166108a161053c565b73ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90611913565b60405180910390fd5b61090160006113d2565b565b60606005805461091290611811565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90611811565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b6000806109a0610bbb565b905060006109ae8286610a2f565b9050838110156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90611c89565b60405180910390fd5b610a008286868403610bc3565b60019250505092915050565b600080610a17610bbb565b9050610a24818585610e18565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b631dcd650081565b610ac6610bbb565b73ffffffffffffffffffffffffffffffffffffffff16610ae461053c565b73ffffffffffffffffffffffffffffffffffffffff1614610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3190611913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090611d1b565b60405180910390fd5b610bb2816113d2565b50565b60065481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990611dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611e3f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d7f9190611679565b60405180910390a3505050565b6000610d988484610a2f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e125781811015610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611eab565b60405180910390fd5b610e118484848403610bc3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611f3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611fcf565b60405180910390fd5b610f01838383611496565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90612061565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101d9190611871565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110819190611679565b60405180910390a361109484848461149b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611100906120f3565b60405180910390fd5b61111582600083611496565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612185565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111f49190611b0b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112599190611679565b60405180910390a361126d8360008461149b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906121f1565b60405180910390fd5b6112ed60008383611496565b80600360008282546112ff9190611871565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113559190611871565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ba9190611679565b60405180910390a36113ce6000838361149b565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114da5780820151818401526020810190506114bf565b838111156114e9576000848401525b50505050565b6000601f19601f8301169050919050565b600061150b826114a0565b61151581856114ab565b93506115258185602086016114bc565b61152e816114ef565b840191505092915050565b600060208201905081810360008301526115538184611500565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061158b82611560565b9050919050565b61159b81611580565b81146115a657600080fd5b50565b6000813590506115b881611592565b92915050565b6000819050919050565b6115d1816115be565b81146115dc57600080fd5b50565b6000813590506115ee816115c8565b92915050565b6000806040838503121561160b5761160a61155b565b5b6000611619858286016115a9565b925050602061162a858286016115df565b9150509250929050565b60008115159050919050565b61164981611634565b82525050565b60006020820190506116646000830184611640565b92915050565b611673816115be565b82525050565b600060208201905061168e600083018461166a565b92915050565b6000806000606084860312156116ad576116ac61155b565b5b60006116bb868287016115a9565b93505060206116cc868287016115a9565b92505060406116dd868287016115df565b9150509250925092565b600060ff82169050919050565b6116fd816116e7565b82525050565b600060208201905061171860008301846116f4565b92915050565b6000602082840312156117345761173361155b565b5b6000611742848285016115df565b91505092915050565b6000602082840312156117615761176061155b565b5b600061176f848285016115a9565b91505092915050565b61178181611580565b82525050565b600060208201905061179c6000830184611778565b92915050565b600080604083850312156117b9576117b861155b565b5b60006117c7858286016115a9565b92505060206117d8858286016115a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182957607f821691505b60208210810361183c5761183b6117e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061187c826115be565b9150611887836115be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118bc576118bb611842565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118fd6020836114ab565b9150611908826118c7565b602082019050919050565b6000602082019050818103600083015261192c816118f0565b9050919050565b60008160011c9050919050565b6000808291508390505b600185111561198a5780860481111561196657611965611842565b5b60018516156119755780820291505b808102905061198385611933565b945061194a565b94509492505050565b6000826119a35760019050611a5f565b816119b15760009050611a5f565b81600181146119c757600281146119d157611a00565b6001915050611a5f565b60ff8411156119e3576119e2611842565b5b8360020a9150848211156119fa576119f9611842565b5b50611a5f565b5060208310610133831016604e8410600b8410161715611a355782820a905083811115611a3057611a2f611842565b5b611a5f565b611a428484846001611940565b92509050818404811115611a5957611a58611842565b5b81810290505b9392505050565b6000611a71826115be565b9150611a7c836116e7565b9250611aa97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611993565b905092915050565b6000611abc826115be565b9150611ac7836115be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b0057611aff611842565b5b828202905092915050565b6000611b16826115be565b9150611b21836115be565b925082821015611b3457611b33611842565b5b828203905092915050565b7f546f6f206d756368000000000000000000000000000000000000000000000000600082015250565b6000611b756008836114ab565b9150611b8082611b3f565b602082019050919050565b60006020820190508181036000830152611ba481611b68565b9050919050565b7f546f6f206561726c790000000000000000000000000000000000000000000000600082015250565b6000611be16009836114ab565b9150611bec82611bab565b602082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c736025836114ab565b9150611c7e82611c17565b604082019050919050565b60006020820190508181036000830152611ca281611c66565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d056026836114ab565b9150611d1082611ca9565b604082019050919050565b60006020820190508181036000830152611d3481611cf8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d976024836114ab565b9150611da282611d3b565b604082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e296022836114ab565b9150611e3482611dcd565b604082019050919050565b60006020820190508181036000830152611e5881611e1c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e95601d836114ab565b9150611ea082611e5f565b602082019050919050565b60006020820190508181036000830152611ec481611e88565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f276025836114ab565b9150611f3282611ecb565b604082019050919050565b60006020820190508181036000830152611f5681611f1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fb96023836114ab565b9150611fc482611f5d565b604082019050919050565b60006020820190508181036000830152611fe881611fac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061204b6026836114ab565b915061205682611fef565b604082019050919050565b6000602082019050818103600083015261207a8161203e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120dd6021836114ab565b91506120e882612081565b604082019050919050565b6000602082019050818103600083015261210c816120d0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061216f6022836114ab565b915061217a82612113565b604082019050919050565b6000602082019050818103600083015261219e81612162565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006121db601f836114ab565b91506121e6826121a5565b602082019050919050565b6000602082019050818103600083015261220a816121ce565b905091905056fea26469706673582212207020ea24f9a436d16484518dc1102161172e0672d1f7e949ed4da42f2110a05e64736f6c634300080d0033

Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.