Mumbai Testnet

Contract

0xBd70BCeefA3522F31e9E2C138E29B6eeB1E5B626

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
Allow Contract280621912022-09-12 9:44:21563 days ago1662975861IN
0xBd70BCee...eB1E5B626
0 MATIC0.0009605220
0x60806040280621872022-09-12 9:44:01563 days ago1662975841IN
 Contract Creation
0 MATIC0.0512632820

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xaef92849...14f15d818
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
STO_crypt

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 7 : STO_crypt.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

//import "hardhat/console.sol";

/**
    CONTRACT util STO
    Utility to take track of expenses
 */
contract STO_crypt is Ownable, ERC20, ERC20Burnable{
    uint256 public totalReceived;

    mapping(address => uint256) public spent;

    mapping(address => bool) allowedContracts;

    event allowContractEvent(address _contract);
    event disAllowContractEvent(address _contract);

    event receivedEvent(uint256 amount,uint256 totalSent);
    event recalculatePaid(address account1, address account2, uint256 amount1, uint256 amount2);
    event withdrawEvent(address account, uint256 amount);

   

    modifier allowedContract(){
        require(allowedContracts[_msgSender()],"Contract not allowed");
        _;
    }

    constructor(string memory name_, string memory symbol_, uint256 initialSupply) ERC20(name_,symbol_){
        _transferOwnership(_msgSender());
         _mint(msg.sender, initialSupply);
    }

    function isAllowedContract(address _contract) public view returns(bool){
        return allowedContracts[_contract];
    }

    function allowContract(address _contract) external onlyOwner{
        require(!allowedContracts[_contract],"Contract is already allowed");
        allowedContracts[_contract]=true;
        emit allowContractEvent(_contract); 
    }

      function disAllowContract(address _contract) external onlyOwner{
        require(allowedContracts[_contract],"Contract is not allowed");
        allowedContracts[_contract]=false;
        emit disAllowContractEvent(_contract); 
    }
  
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool){
        require(balanceOf(from) >= amount,"Amount exceeds balance");
        uint256 fromBalance=balanceOf(from) - amount; 
        uint256 toBalance=balanceOf(to) + amount;

        (uint256 amount1, uint256 amount2) = _recalculateTransfer(from, to, fromBalance, toBalance);
        if(amount1>0)  payable(from).transfer(amount1);
        if(amount2>0)  payable(to).transfer(amount2);

        return super.transferFrom(from,to,amount);
    }


    function transfer(address to, uint256 amount) public override returns (bool){
        require(balanceOf(msg.sender) >= amount,"Amount exceeds balance");
        uint256 fromBalance=balanceOf(msg.sender) - amount; 
        uint256 toBalance=balanceOf(to) + amount;

        (uint256 amount1, uint256 amount2) = _recalculateTransfer(msg.sender, to, fromBalance, toBalance);
        if(amount1>0)  payable(msg.sender).transfer(amount1);
        if(amount2>0)  payable(to).transfer(amount2);
      

        return super.transfer(to,amount);
    }

    function withdraw() external{
        uint256 amountToPay=_calculatePaid(msg.sender);
        spent[msg.sender] = balanceOf(msg.sender) * totalReceived / totalSupply();
        
        if(amountToPay>0){
            payable(msg.sender).transfer(amountToPay);
        }        

        emit withdrawEvent(msg.sender, amountToPay);
    } 

    receive() external payable { 
        totalReceived += msg.value;
        emit receivedEvent(msg.value,totalReceived);
    }

     function _calculatePaid(address account) internal view returns(uint256) {
        uint256 amountToPay=balanceOf(account) * totalReceived / totalSupply();
        amountToPay -= spent[account];
        return amountToPay;
    }

     function _recalculateTransfer(
        address account1, 
        address account2,
        uint256 newAmount1,
        uint256 newAmount2
        ) internal 
    returns(uint256 amount1,uint256 amount2){
        amount1 = _calculatePaid(account1);
        amount2 = _calculatePaid(account2);

        spent[account1] = newAmount1 * totalReceived / totalSupply();
        spent[account2] = newAmount2 * totalReceived / totalSupply();

        emit recalculatePaid(account1,account2, amount1, amount2);

        return (amount1,amount2);
    }

    function mint(address to, uint256 amount) external allowedContract{
        _mint(to, amount);
    }

    function burn(address from, uint256 amount) external allowedContract{
        _burn(from, amount);
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 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);
    }
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 `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;
        }
        _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 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 : 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 6 of 7 : 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 7 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);
}

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

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_contract","type":"address"}],"name":"allowContractEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_contract","type":"address"}],"name":"disAllowContractEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account1","type":"address"},{"indexed":false,"internalType":"address","name":"account2","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount2","type":"uint256"}],"name":"recalculatePaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSent","type":"uint256"}],"name":"receivedEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEvent","type":"event"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"allowContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"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":"_contract","type":"address"}],"name":"disAllowContract","outputs":[],"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":"_contract","type":"address"}],"name":"isAllowedContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"spent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReceived","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x60806040526004361061014f5760003560e01c806379cc6790116100b6578063a9059cbb1161006f578063a9059cbb146104f1578063c3553d871461052e578063dd62ed3e14610557578063f2fde38b14610594578063f43b8555146105bd578063f6bd02fa146105fa576101aa565b806379cc6790146103e15780638da5cb5b1461040a57806395d89b41146104355780639dc29fac14610460578063a3c2c46214610489578063a457c2d7146104b4576101aa565b8063395093511161010857806339509351146102e75780633ccfd60b1461032457806340c10f191461033b57806342966c681461036457806370a082311461038d578063715018a6146103ca576101aa565b806306fdde03146101af578063095ea7b3146101da57806318160ddd146102175780631e6a41ea1461024257806323b872dd1461027f578063313ce567146102bc576101aa565b366101aa5734600660008282546101669190611d26565b925050819055507f145510a4268f342ac0c63bc581fa02839bf2df99b7cdcec547f1efad649b0ca9346006546040516101a0929190611d8b565b60405180910390a1005b600080fd5b3480156101bb57600080fd5b506101c4610623565b6040516101d19190611e4d565b60405180910390f35b3480156101e657600080fd5b5061020160048036038101906101fc9190611efe565b6106b5565b60405161020e9190611f59565b60405180910390f35b34801561022357600080fd5b5061022c6106d8565b6040516102399190611f74565b60405180910390f35b34801561024e57600080fd5b5061026960048036038101906102649190611f8f565b6106e2565b6040516102769190611f74565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190611fbc565b6106fa565b6040516102b39190611f59565b60405180910390f35b3480156102c857600080fd5b506102d1610844565b6040516102de919061202b565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190611efe565b61084d565b60405161031b9190611f59565b60405180910390f35b34801561033057600080fd5b50610339610884565b005b34801561034757600080fd5b50610362600480360381019061035d9190611efe565b610989565b005b34801561037057600080fd5b5061038b60048036038101906103869190612046565b610a2a565b005b34801561039957600080fd5b506103b460048036038101906103af9190611f8f565b610a3e565b6040516103c19190611f74565b60405180910390f35b3480156103d657600080fd5b506103df610a87565b005b3480156103ed57600080fd5b5061040860048036038101906104039190611efe565b610a9b565b005b34801561041657600080fd5b5061041f610abb565b60405161042c9190612082565b60405180910390f35b34801561044157600080fd5b5061044a610ae4565b6040516104579190611e4d565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190611efe565b610b76565b005b34801561049557600080fd5b5061049e610c17565b6040516104ab9190611f74565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d69190611efe565b610c1d565b6040516104e89190611f59565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190611efe565b610c94565b6040516105259190611f59565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190611f8f565b610ddc565b005b34801561056357600080fd5b5061057e6004803603810190610579919061209d565b610f02565b60405161058b9190611f74565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190611f8f565b610f89565b005b3480156105c957600080fd5b506105e460048036038101906105df9190611f8f565b61100d565b6040516105f19190611f59565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190611f8f565b611063565b005b6060600480546106329061210c565b80601f016020809104026020016040519081016040528092919081815260200182805461065e9061210c565b80156106ab5780601f10610680576101008083540402835291602001916106ab565b820191906000526020600020905b81548152906001019060200180831161068e57829003601f168201915b5050505050905090565b6000806106c061118a565b90506106cd818585611192565b600191505092915050565b6000600354905090565b60076020528060005260406000206000915090505481565b60008161070685610a3e565b1015610747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073e9061218a565b60405180910390fd5b60008261075386610a3e565b61075d91906121aa565b905060008361076b86610a3e565b6107759190611d26565b90506000806107868888868661135d565b9150915060008211156107db578773ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156107d9573d6000803e3d6000fd5b505b600081111561082c578673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561082a573d6000803e3d6000fd5b505b610837888888611482565b9450505050509392505050565b60006012905090565b60008061085861118a565b905061087981858561086a8589610f02565b6108749190611d26565b611192565b600191505092915050565b600061088f336114b1565b90506108996106d8565b6006546108a533610a3e565b6108af91906121de565b6108b99190612267565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600081111561094d573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561094b573d6000803e3d6000fd5b505b7f87d5f4772963d1f9b76047158b4ae97c420a1b3bff2a746c828beffd9e7c3e26338260405161097e929190612298565b60405180910390a150565b6008600061099561118a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a139061230d565b60405180910390fd5b610a268282611534565b5050565b610a3b610a3561118a565b82611695565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8f61186e565b610a9960006118ec565b565b610aad82610aa761118a565b836119b0565b610ab78282611695565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610af39061210c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f9061210c565b8015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b5050505050905090565b60086000610b8261118a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c009061230d565b60405180910390fd5b610c138282611695565b5050565b60065481565b600080610c2861118a565b90506000610c368286610f02565b905083811015610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061239f565b60405180910390fd5b610c888286868403611192565b60019250505092915050565b600081610ca033610a3e565b1015610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd89061218a565b60405180910390fd5b600082610ced33610a3e565b610cf791906121aa565b9050600083610d0586610a3e565b610d0f9190611d26565b9050600080610d203388868661135d565b915091506000821115610d75573373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610d73573d6000803e3d6000fd5b505b6000811115610dc6578673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dc4573d6000803e3d6000fd5b505b610dd08787611a3c565b94505050505092915050565b610de461186e565b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061240b565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f5d2d9bf28ca3dbbc14dbe06888c9a8b04c61ef8c4e6c5b517dcff02c588eeed681604051610ef79190612082565b60405180910390a150565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f9161186e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff89061249d565b60405180910390fd5b61100a816118ec565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61106b61186e565b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90612509565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f91ffe52412b053cb59f7d29d48dd760d97fdc89b12c579785de26bdd86693db48160405161117f9190612082565b60405180910390a150565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061259b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061262d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113509190611f74565b60405180910390a3505050565b600080611369866114b1565b9150611374856114b1565b905061137e6106d8565b6006548561138c91906121de565b6113969190612267565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113e16106d8565b600654846113ef91906121de565b6113f99190612267565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f32b7f9b68a5157772b72a286a96849fae9c6d8e45d8f412ce7a4ec890a8f0c8386868484604051611471949392919061264d565b60405180910390a194509492505050565b60008061148d61118a565b905061149a8582856119b0565b6114a5858585611a5f565b60019150509392505050565b6000806114bc6106d8565b6006546114c885610a3e565b6114d291906121de565b6114dc9190612267565b9050600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548161152991906121aa565b905080915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906126de565b60405180910390fd5b6115b060008383611ce3565b80600360008282546115c29190611d26565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116189190611d26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161167d9190611f74565b60405180910390a361169160008383611ce8565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90612770565b60405180910390fd5b61171182600083611ce3565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90612802565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546117f091906121aa565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118559190611f74565b60405180910390a361186983600084611ce8565b505050565b61187661118a565b73ffffffffffffffffffffffffffffffffffffffff16611894610abb565b73ffffffffffffffffffffffffffffffffffffffff16146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e19061286e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119bc8484610f02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a365781811015611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f906128da565b60405180910390fd5b611a358484848403611192565b5b50505050565b600080611a4761118a565b9050611a54818585611a5f565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac69061296c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b36906129fe565b60405180910390fd5b611b4a838383611ce3565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890612a90565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c669190611d26565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cca9190611f74565b60405180910390a3611cdd848484611ce8565b50505050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d3182611ced565b9150611d3c83611ced565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d7157611d70611cf7565b5b828201905092915050565b611d8581611ced565b82525050565b6000604082019050611da06000830185611d7c565b611dad6020830184611d7c565b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611dee578082015181840152602081019050611dd3565b83811115611dfd576000848401525b50505050565b6000601f19601f8301169050919050565b6000611e1f82611db4565b611e298185611dbf565b9350611e39818560208601611dd0565b611e4281611e03565b840191505092915050565b60006020820190508181036000830152611e678184611e14565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e9f82611e74565b9050919050565b611eaf81611e94565b8114611eba57600080fd5b50565b600081359050611ecc81611ea6565b92915050565b611edb81611ced565b8114611ee657600080fd5b50565b600081359050611ef881611ed2565b92915050565b60008060408385031215611f1557611f14611e6f565b5b6000611f2385828601611ebd565b9250506020611f3485828601611ee9565b9150509250929050565b60008115159050919050565b611f5381611f3e565b82525050565b6000602082019050611f6e6000830184611f4a565b92915050565b6000602082019050611f896000830184611d7c565b92915050565b600060208284031215611fa557611fa4611e6f565b5b6000611fb384828501611ebd565b91505092915050565b600080600060608486031215611fd557611fd4611e6f565b5b6000611fe386828701611ebd565b9350506020611ff486828701611ebd565b925050604061200586828701611ee9565b9150509250925092565b600060ff82169050919050565b6120258161200f565b82525050565b6000602082019050612040600083018461201c565b92915050565b60006020828403121561205c5761205b611e6f565b5b600061206a84828501611ee9565b91505092915050565b61207c81611e94565b82525050565b60006020820190506120976000830184612073565b92915050565b600080604083850312156120b4576120b3611e6f565b5b60006120c285828601611ebd565b92505060206120d385828601611ebd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061212457607f821691505b60208210811415612138576121376120dd565b5b50919050565b7f416d6f756e7420657863656564732062616c616e636500000000000000000000600082015250565b6000612174601683611dbf565b915061217f8261213e565b602082019050919050565b600060208201905081810360008301526121a381612167565b9050919050565b60006121b582611ced565b91506121c083611ced565b9250828210156121d3576121d2611cf7565b5b828203905092915050565b60006121e982611ced565b91506121f483611ced565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561222d5761222c611cf7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061227282611ced565b915061227d83611ced565b92508261228d5761228c612238565b5b828204905092915050565b60006040820190506122ad6000830185612073565b6122ba6020830184611d7c565b9392505050565b7f436f6e7472616374206e6f7420616c6c6f776564000000000000000000000000600082015250565b60006122f7601483611dbf565b9150612302826122c1565b602082019050919050565b60006020820190508181036000830152612326816122ea565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612389602583611dbf565b91506123948261232d565b604082019050919050565b600060208201905081810360008301526123b88161237c565b9050919050565b7f436f6e7472616374206973206e6f7420616c6c6f776564000000000000000000600082015250565b60006123f5601783611dbf565b9150612400826123bf565b602082019050919050565b60006020820190508181036000830152612424816123e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612487602683611dbf565b91506124928261242b565b604082019050919050565b600060208201905081810360008301526124b68161247a565b9050919050565b7f436f6e747261637420697320616c726561647920616c6c6f7765640000000000600082015250565b60006124f3601b83611dbf565b91506124fe826124bd565b602082019050919050565b60006020820190508181036000830152612522816124e6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612585602483611dbf565b915061259082612529565b604082019050919050565b600060208201905081810360008301526125b481612578565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612617602283611dbf565b9150612622826125bb565b604082019050919050565b600060208201905081810360008301526126468161260a565b9050919050565b60006080820190506126626000830187612073565b61266f6020830186612073565b61267c6040830185611d7c565b6126896060830184611d7c565b95945050505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006126c8601f83611dbf565b91506126d382612692565b602082019050919050565b600060208201905081810360008301526126f7816126bb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061275a602183611dbf565b9150612765826126fe565b604082019050919050565b600060208201905081810360008301526127898161274d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006127ec602283611dbf565b91506127f782612790565b604082019050919050565b6000602082019050818103600083015261281b816127df565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612858602083611dbf565b915061286382612822565b602082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006128c4601d83611dbf565b91506128cf8261288e565b602082019050919050565b600060208201905081810360008301526128f3816128b7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612956602583611dbf565b9150612961826128fa565b604082019050919050565b6000602082019050818103600083015261298581612949565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129e8602383611dbf565b91506129f38261298c565b604082019050919050565b60006020820190508181036000830152612a17816129db565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a7a602683611dbf565b9150612a8582612a1e565b604082019050919050565b60006020820190508181036000830152612aa981612a6d565b905091905056fea26469706673582212202af6b87838341b57144057c7cd19ea86373356df7b65ecd70c2781356515fe5864736f6c63430008080033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.