ETH Price: $2,687.32 (+10.42%)
Gas: 2 Gwei

Contract

0x74B8E411530b7C01dDc45C7EA4C038f10cA6d562
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer117438462021-01-28 10:45:331288 days ago1611830733IN
0x74B8E411...10cA6d562
0 ETH0.0030243459
Transfer117361802021-01-27 6:22:571290 days ago1611728577IN
0x74B8E411...10cA6d562
0 ETH0.0026398951.5
Transfer117230322021-01-25 5:47:581292 days ago1611553678IN
0x74B8E411...10cA6d562
0 ETH0.0039470277
Transfer117224612021-01-25 3:46:401292 days ago1611546400IN
0x74B8E411...10cA6d562
0 ETH0.0036907272
Transfer117224252021-01-25 3:37:471292 days ago1611545867IN
0x74B8E411...10cA6d562
0 ETH0.0042545883.00000145
Transfer117130912021-01-23 17:10:411293 days ago1611421841IN
0x74B8E411...10cA6d562
0 ETH0.0017404848.00000112
Transfer116800192021-01-18 15:25:251298 days ago1610983525IN
0x74B8E411...10cA6d562
0 ETH0.0049209696
Transfer116791702021-01-18 12:08:091298 days ago1610971689IN
0x74B8E411...10cA6d562
0 ETH0.0027557676.00000145
Transfer116771972021-01-18 4:59:361299 days ago1610945976IN
0x74B8E411...10cA6d562
0 ETH0.0022036643
Transfer116771912021-01-18 4:57:551299 days ago1610945875IN
0x74B8E411...10cA6d562
0 ETH0.0022041843
Transfer116771872021-01-18 4:56:211299 days ago1610945781IN
0x74B8E411...10cA6d562
0 ETH0.0021529242
Transfer116771802021-01-18 4:54:191299 days ago1610945659IN
0x74B8E411...10cA6d562
0 ETH0.0021524142.00000145
Transfer116731422021-01-17 14:05:481299 days ago1610892348IN
0x74B8E411...10cA6d562
0 ETH0.0032293863
Transfer116731342021-01-17 14:04:041299 days ago1610892244IN
0x74B8E411...10cA6d562
0 ETH0.0029730858
Transfer116731192021-01-17 14:00:201299 days ago1610892020IN
0x74B8E411...10cA6d562
0 ETH0.0027167853
Transfer116731082021-01-17 13:58:121299 days ago1610891892IN
0x74B8E411...10cA6d562
0 ETH0.0027161453
Transfer116730972021-01-17 13:55:471299 days ago1610891747IN
0x74B8E411...10cA6d562
0 ETH0.0027167853
Transfer116730912021-01-17 13:53:491299 days ago1610891629IN
0x74B8E411...10cA6d562
0 ETH0.0027167853
Transfer116663722021-01-16 12:55:341300 days ago1610801734IN
0x74B8E411...10cA6d562
0 ETH0.0012531645
Transfer116659652021-01-16 11:24:091300 days ago1610796249IN
0x74B8E411...10cA6d562
0 ETH0.0016311645.00000145
Transfer116646292021-01-16 6:18:121301 days ago1610777892IN
0x74B8E411...10cA6d562
0 ETH0.00181350.00000145
Transfer116645172021-01-16 5:51:341301 days ago1610776294IN
0x74B8E411...10cA6d562
0 ETH0.001269135
Transfer116643812021-01-16 5:21:391301 days ago1610774499IN
0x74B8E411...10cA6d562
0 ETH0.0015229242
Transfer116642462021-01-16 4:53:211301 days ago1610772801IN
0x74B8E411...10cA6d562
0 ETH0.002050440
Transfer116642392021-01-16 4:52:111301 days ago1610772731IN
0x74B8E411...10cA6d562
0 ETH0.0019991439
View all transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

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

Contract Name:
SeekLoss

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-29
*/

/**
 *Submitted for verification at Etherscan.io on 2020-11-22
*/

/**
 *Submitted for verification at Etherscan.io on 2020-07-17
*/

pragma solidity ^0.5.16;

interface IERC20 {
    function totalSupply() external view returns (uint);
    function balanceOf(address account) external view returns (uint);
    function transfer(address recipient, uint amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);
}

contract Context {
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

contract ERC20 is Context, IERC20 {
    using SafeMath for uint;

    mapping (address => uint) private _balances;

    mapping (address => mapping (address => uint)) private _allowances;

    uint private _totalSupply;
    function totalSupply() public view returns (uint) {
        return _totalSupply;
    }
    function balanceOf(address account) public view returns (uint) {
        return _balances[account];
    }
    function transfer(address recipient, uint amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
    function allowance(address owner, address spender) public view returns (uint) {
        return _allowances[owner][spender];
    }
    function approve(address spender, uint amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
    function transferFrom(address sender, address recipient, uint amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
    function increaseAllowance(address spender, uint addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
    function decreaseAllowance(address spender, uint subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
    function _transfer(address sender, address recipient, uint amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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, uint amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
    function _burn(address account, uint amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _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, uint amount) internal {
        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);
    }
}

contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }
    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;
    }
}

library SafeMath {
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }
    function sub(uint a, uint b) internal pure returns (uint) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
    function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b <= a, errorMessage);
        uint c = a - b;

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

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

        return c;
    }
    function div(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "SafeMath: division by zero");
    }
    function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint c = a / b;

        return c;
    }
}

library Address {
    function isContract(address account) internal view returns (bool) {
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != 0x0 && codehash != accountHash);
    }
}

library SafeERC20 {
    using SafeMath for uint;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint value) internal {
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

contract SeekLoss is ERC20, ERC20Detailed {
  using SafeERC20 for IERC20;
  using Address for address;
  using SafeMath for uint;
  uint256 public _totalSupply ;
  
  address public governance;
  mapping (address => bool) public minters;

  constructor (
      string memory name,
      string memory symbol, 
      uint8 decimals,
      uint256 totalSupply) public ERC20Detailed(name,symbol, decimals) {
      governance = msg.sender;
      _totalSupply = totalSupply;
      _mint(msg.sender, _totalSupply);
  }

  function mint(address account, uint amount) public {
      require(minters[msg.sender], "!minter");
      _mint(account, amount);
  }
  
  function setGovernance(address _governance) public {
      require(msg.sender == governance, "!governance");
      governance = _governance;
  }
  
  function addMinter(address _minter) public {
      require(msg.sender == governance, "!governance");
      minters[_minter] = true;
  }
  
  function removeMinter(address _minter) public {
      require(msg.sender == governance, "!governance");
      minters[_minter] = false;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"payable":false,"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"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80635aa6e675116100a2578063a457c2d711610071578063a457c2d71461054b578063a9059cbb146105b1578063ab033ea914610617578063dd62ed3e1461065b578063f46eccc4146106d357610116565b80635aa6e675146103e257806370a082311461042c57806395d89b4114610484578063983b2d561461050757610116565b80633092afd5116100e95780633092afd5146102a8578063313ce567146102ec57806339509351146103105780633eaaf86b1461037657806340c10f191461039457610116565b806306fdde031461011b578063095ea7b31461019e57806318160ddd1461020457806323b872dd14610222575b600080fd5b61012361072f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610163578082015181840152602081019050610148565b50505050905090810190601f1680156101905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ea600480360360408110156101b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107d1565b604051808215151515815260200191505060405180910390f35b61020c6107ef565b6040518082815260200191505060405180910390f35b61028e6004803603606081101561023857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107f9565b604051808215151515815260200191505060405180910390f35b6102ea600480360360208110156102be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108d2565b005b6102f46109f0565b604051808260ff1660ff16815260200191505060405180910390f35b61035c6004803603604081101561032657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a07565b604051808215151515815260200191505060405180910390f35b61037e610aba565b6040518082815260200191505060405180910390f35b6103e0600480360360408110156103aa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ac0565b005b6103ea610b8d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61046e6004803603602081101561044257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bb3565b6040518082815260200191505060405180910390f35b61048c610bfb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104cc5780820151818401526020810190506104b1565b50505050905090810190601f1680156104f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105496004803603602081101561051d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c9d565b005b6105976004803603604081101561056157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dbb565b604051808215151515815260200191505060405180910390f35b6105fd600480360360408110156105c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e88565b604051808215151515815260200191505060405180910390f35b6106596004803603602081101561062d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ea6565b005b6106bd6004803603604081101561067157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fad565b6040518082815260200191505060405180910390f35b610715600480360360208110156106e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611034565b604051808215151515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107e56107de611054565b848461105c565b6001905092915050565b6000600254905090565b6000610806848484611253565b6108c784610812611054565b6108c28560405180606001604052806028815260200161187860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610878611054565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115099092919063ffffffff16565b61105c565b600190509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b6000610ab0610a14611054565b84610aab8560016000610a25611054565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115c990919063ffffffff16565b61105c565b6001905092915050565b60065481565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f216d696e7465720000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610b898282611651565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c935780601f10610c6857610100808354040283529160200191610c93565b820191906000526020600020905b815481529060010190602001808311610c7657829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610e7e610dc8611054565b84610e79856040518060600160405280602581526020016118e96025913960016000610df2611054565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115099092919063ffffffff16565b61105c565b6001905092915050565b6000610e9c610e95611054565b8484611253565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806118c56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611168576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806118306022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806118a06025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061180d6023913960400191505060405180910390fd5b6113ca81604051806060016040528060268152602001611852602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115099092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061145d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115c990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561157b578082015181840152602081019050611560565b50505050905090810190601f1680156115a85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611709816002546115c990919063ffffffff16565b600281905550611760816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115c990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158205cdf31e73204e695caeb824c9424cc52465de5ce430d163fb1715f543054c2bd64736f6c63430005110032

Deployed Bytecode Sourcemap

7750:1125:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7750:1125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4496:83;;;:::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;4496:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1778:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1778:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1273:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1933:301;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1933:301:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8730:142;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8730:142:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;4678:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2240:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2240:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7886:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8285:136;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8285:136:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7923:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1367:107;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1367:107:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4585: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;4585:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8584:138;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8584:138:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;2453:258;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2453:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1480:155;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1480:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8429:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8429:147:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;1641:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1641:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7953:40;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7953:40:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4496:83;4533:13;4566:5;4559:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4496:83;:::o;1778:149::-;1841:4;1858:39;1867:12;:10;:12::i;:::-;1881:7;1890:6;1858:8;:39::i;:::-;1915:4;1908:11;;1778:149;;;;:::o;1273:88::-;1317:4;1341:12;;1334:19;;1273:88;:::o;1933:301::-;2019:4;2036:36;2046:6;2054:9;2065:6;2036:9;:36::i;:::-;2083:121;2092:6;2100:12;:10;:12::i;:::-;2114:89;2152:6;2114:89;;;;;;;;;;;;;;;;;:11;:19;2126:6;2114:19;;;;;;;;;;;;;;;:33;2134:12;:10;:12::i;:::-;2114:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;2083:8;:121::i;:::-;2222:4;2215:11;;1933:301;;;;;:::o;8730:142::-;8807:10;;;;;;;;;;;8793:24;;:10;:24;;;8785:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8861:5;8842:7;:16;8850:7;8842:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;8730:142;:::o;4678:83::-;4719:5;4744:9;;;;;;;;;;;4737:16;;4678:83;:::o;2240:207::-;2317:4;2334:83;2343:12;:10;:12::i;:::-;2357:7;2366:50;2405:10;2366:11;:25;2378:12;:10;:12::i;:::-;2366:25;;;;;;;;;;;;;;;:34;2392:7;2366:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;2334:8;:83::i;:::-;2435:4;2428:11;;2240:207;;;;:::o;7886:27::-;;;;:::o;8285:136::-;8353:7;:19;8361:10;8353:19;;;;;;;;;;;;;;;;;;;;;;;;;8345:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8393:22;8399:7;8408:6;8393:5;:22::i;:::-;8285:136;;:::o;7923:25::-;;;;;;;;;;;;;:::o;1367:107::-;1424:4;1448:9;:18;1458:7;1448:18;;;;;;;;;;;;;;;;1441:25;;1367:107;;;:::o;4585:87::-;4624:13;4657:7;4650:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4585:87;:::o;8584:138::-;8658:10;;;;;;;;;;;8644:24;;:10;:24;;;8636:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8712:4;8693:7;:16;8701:7;8693:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;8584:138;:::o;2453:258::-;2535:4;2552:129;2561:12;:10;:12::i;:::-;2575:7;2584:96;2623:15;2584:96;;;;;;;;;;;;;;;;;:11;:25;2596:12;:10;:12::i;:::-;2584:25;;;;;;;;;;;;;;;:34;2610:7;2584:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;2552:8;:129::i;:::-;2699:4;2692:11;;2453:258;;;;:::o;1480:155::-;1546:4;1563:42;1573:12;:10;:12::i;:::-;1587:9;1598:6;1563:9;:42::i;:::-;1623:4;1616:11;;1480:155;;;;:::o;8429:147::-;8511:10;;;;;;;;;;;8497:24;;:10;:24;;;8489:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:11;8546:10;;:24;;;;;;;;;;;;;;;;;;8429:147;:::o;1641:131::-;1713:4;1737:11;:18;1749:5;1737:18;;;;;;;;;;;;;;;:27;1756:7;1737:27;;;;;;;;;;;;;;;;1730:34;;1641:131;;;;:::o;7953:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;936:98::-;981:15;1016:10;1009:17;;936:98;:::o;3853:335::-;3961:1;3944:19;;:5;:19;;;;3936:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4042:1;4023:21;;:7;:21;;;;4015:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4126:6;4096:11;:18;4108:5;4096:18;;;;;;;;;;;;;;;:27;4115:7;4096:27;;;;;;;;;;;;;;;:36;;;;4164:7;4148:32;;4157:5;4148:32;;;4173:6;4148:32;;;;;;;;;;;;;;;;;;3853:335;;;:::o;2717:468::-;2830:1;2812:20;;:6;:20;;;;2804:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2914:1;2893:23;;:9;:23;;;;2885:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2989;3011:6;2989:71;;;;;;;;;;;;;;;;;:9;:17;2999:6;2989:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;2969:9;:17;2979:6;2969:17;;;;;;;;;;;;;;;:91;;;;3094:32;3119:6;3094:9;:20;3104:9;3094:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;3071:9;:20;3081:9;3071:20;;;;;;;;;;;;;;;:55;;;;3159:9;3142:35;;3151:6;3142:35;;;3170:6;3142:35;;;;;;;;;;;;;;;;;;2717:468;;;:::o;5100:180::-;5180:4;5210:1;5205;:6;;5213:12;5197: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;5197:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5237:6;5250:1;5246;:5;5237:14;;5271:1;5264:8;;;5100:180;;;;;:::o;4792:169::-;4844:4;4861:6;4874:1;4870;:5;4861:14;;4899:1;4894;:6;;4886:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:1;4945:8;;;4792:169;;;;:::o;3191:305::-;3283:1;3264:21;;:7;:21;;;;3256:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3349:24;3366:6;3349:12;;:16;;:24;;;;:::i;:::-;3334:12;:39;;;;3405:30;3428:6;3405:9;:18;3415:7;3405:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;3384:9;:18;3394:7;3384:18;;;;;;;;;;;;;;;:51;;;;3472:7;3451:37;;3468:1;3451:37;;;3481:6;3451:37;;;;;;;;;;;;;;;;;;3191:305;;:::o

Swarm Source

bzzr://5cdf31e73204e695caeb824c9424cc52465de5ce430d163fb1715f543054c2bd

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.