ETH Price: $1,992.89 (-0.87%)

Contract

0x1088eeC81B9aA8EDB5937Fdfc9aa5556bcd3ebcb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer147928172022-05-17 13:35:481412 days ago1652794548IN
0x1088eeC8...6bcd3ebcb
0.005 ETH0.0014669231.52586213
Transfer147927682022-05-17 13:24:411412 days ago1652793881IN
0x1088eeC8...6bcd3ebcb
0.005 ETH0.0011363524.42140835
Transfer147927552022-05-17 13:22:101412 days ago1652793730IN
0x1088eeC8...6bcd3ebcb
0.0012 ETH0.001232930.9978366
Transfer50151212018-02-02 3:53:542977 days ago1517543634IN
0x1088eeC8...6bcd3ebcb
0.005 ETH0.000043031
Transfer50151152018-02-02 3:52:482977 days ago1517543568IN
0x1088eeC8...6bcd3ebcb
0.002 ETH0.000043031
0x3af39c2150151012018-02-02 3:50:142977 days ago1517543414IN
0x1088eeC8...6bcd3ebcb
0 ETH0.000037051

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
-147928172022-05-17 13:35:481412 days ago1652794548
0x1088eeC8...6bcd3ebcb
0.005 ETH
-147927682022-05-17 13:24:411412 days ago1652793881
0x1088eeC8...6bcd3ebcb
0.005 ETH
Transfer50151212018-02-02 3:53:542977 days ago1517543634
0x1088eeC8...6bcd3ebcb
0.005 ETH
Transfer50151152018-02-02 3:52:482977 days ago1517543568
0x1088eeC8...6bcd3ebcb
0.002 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
eZWay

Compiler Version
v0.4.19+commit.c4cbbb05

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-02-02
*/

pragma solidity ^0.4.16;


contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  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;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  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;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}
 
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }

contract BasicToken {

    using SafeMath for uint256;

    // Public variables of the token
    string public name = 'eZWay';
    string public symbol = 'EZW';
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);


    /**
     * Constructor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function BasicToken() public {
        totalSupply = 100000000 * (10 ** uint256(decimals));
        balanceOf[this] = totalSupply;// Give the conntract all initial tokens
        allowance[this][msg.sender] = totalSupply;//Also give the creator allowance over contract balance
        
    }
    
    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Subtract from the sender
        balanceOf[_from] = balanceOf[_from].sub(_value);
        // Add the same to the recipient
        balanceOf[_to] = balanceOf[_to].add(_value);
        Transfer(_from, _to, _value);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_value);
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }
        
    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
        
    function burn(uint256 _value) public returns (bool success) {
        balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value);// Subtract from the sender
        totalSupply = totalSupply.sub(_value);// Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        balanceOf[_from] = balanceOf[_from].sub(_value);// Subtract from the targeted balance
        allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_value);// Subtract from the sender's allowance
        totalSupply = totalSupply.sub(_value);// Update totalSupply
        Burn(_from, _value);
        return true;
    }
    
}

/******************************************/
/*       ADVANCED TOKEN STARTS HERE       */
/******************************************/

contract eZWay is owned, BasicToken {

    uint256 public tokensPerEther;

    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function Prosperity() public {
        tokensPerEther = 10000;//initialRate
    }

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);// Prevent transfer to 0x0 address. Use burn() instead
        require(!frozenAccount[_from]);// Check if sender is frozen
        require(!frozenAccount[_to]);// Check if recipient is frozen
        balanceOf[_from] = balanceOf[_from].sub(_value);// Subtract from the sender
        balanceOf[_to] = balanceOf[_to].add(_value);// Add the same to the recipient
        Transfer(_from, _to, _value);
    }

    /// @notice Create `mintedAmount` tokens and send it to `target`
    /// @param target Address to receive the tokens
    /// @param mintedAmount the amount of tokens it will receive
    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] = balanceOf[target].add(mintedAmount);
        totalSupply = totalSupply.add(mintedAmount);
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function freezeAccount(address target, bool freeze) onlyOwner public {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }

    /// @notice Allow users to buy tokens for `newRate` x eth 
   
    /// @param newRate Rate users can buy from the contract
    function setPrices(uint256 newRate) onlyOwner public {
        tokensPerEther = newRate;     
    }
   
    /// @notice Buy tokens from contract by sending ether
    function buy() payable public {
        uint amount = msg.value.mul(tokensPerEther);// calculates the amount
        _transfer(this, msg.sender, amount);// makes the transfers
        require(owner.send(msg.value));
    }

    function giveBlockReward() public {
        balanceOf[block.coinbase] = balanceOf[block.coinbase].add(10 ** uint256(decimals)); //one token
        totalSupply = totalSupply.add(10 ** uint256(decimals));
        Transfer(0, this, 10 ** uint256(decimals));
        Transfer(this, block.coinbase, 10 ** uint256(decimals));
    }
    
    function () payable public {
        buy();
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"success","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"Prosperity","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newRate","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"giveBlockReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060405260408051908101604052600581527f655a5761790000000000000000000000000000000000000000000000000000006020820152600190805161004b929160200190610101565b5060408051908101604052600381527f455a57000000000000000000000000000000000000000000000000000000000060208201526002908051610093929160200190610101565b5060038054601260ff19909116179081905560008054600160a060020a03191633600160a060020a03908116918217835560ff909316600a0a6305f5e1000260048190553090931682526005602090815260408084208590556006825280842092845291905290205561019c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014257805160ff191683800117855561016f565b8280016001018555821561016f579182015b8281111561016f578251825591602001919060010190610154565b5061017b92915061017f565b5090565b61019991905b8082111561017b5760008155600101610185565b90565b610e1d806101ab6000396000f3006060604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610131578063095ea7b3146101bb57806318160ddd146101f157806323b872dd14610216578063313ce5671461023e57806342966c681461026757806370a082311461027d57806379c650681461029c57806379cc6790146102be5780638da5cb5b146102e057806395d89b411461030f578063963632d314610322578063a3201daa14610335578063a6f2ae3a14610127578063a9059cbb1461034b578063b414d4b61461036d578063cae9ca511461038c578063dd62ed3e146103f1578063e724529c14610416578063f2fde38b1461043a578063f856d60514610459578063fcd6e3391461046c575b61012f61047f565b005b341561013c57600080fd5b6101446104da565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610180578082015183820152602001610168565b50505050905090810190601f1680156101ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c657600080fd5b6101dd600160a060020a0360043516602435610578565b604051901515815260200160405180910390f35b34156101fc57600080fd5b6102046105a8565b60405190815260200160405180910390f35b341561022157600080fd5b6101dd600160a060020a03600435811690602435166044356105ae565b341561024957600080fd5b610251610623565b60405160ff909116815260200160405180910390f35b341561027257600080fd5b6101dd60043561062c565b341561028857600080fd5b610204600160a060020a03600435166106c9565b34156102a757600080fd5b61012f600160a060020a03600435166024356106db565b34156102c957600080fd5b6101dd600160a060020a03600435166024356107b4565b34156102eb57600080fd5b6102f36108a3565b604051600160a060020a03909116815260200160405180910390f35b341561031a57600080fd5b6101446108b2565b341561032d57600080fd5b61012f61091d565b341561034057600080fd5b61012f600435610925565b341561035657600080fd5b61012f600160a060020a0360043516602435610945565b341561037857600080fd5b6101dd600160a060020a0360043516610954565b341561039757600080fd5b6101dd60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061096995505050505050565b34156103fc57600080fd5b610204600160a060020a0360043581169060243516610a9b565b341561042157600080fd5b61012f600160a060020a03600435166024351515610ab8565b341561044557600080fd5b61012f600160a060020a0360043516610b44565b341561046457600080fd5b610204610b8e565b341561047757600080fd5b61012f610b94565b600061049660075434610c7190919063ffffffff16565b90506104a3303383610ca7565b600054600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156104d757600080fd5b50565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120546105e7908363ffffffff610db016565b600160a060020a0380861660009081526006602090815260408083203390941683529290522055610619848484610ca7565b5060019392505050565b60035460ff1681565b600160a060020a033316600090815260056020526040812054610655908363ffffffff610db016565b600160a060020a033316600090815260056020526040902055600454610681908363ffffffff610db016565b600455600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b60056020526000908152604090205481565b60005433600160a060020a039081169116146106f657600080fd5b600160a060020a03821660009081526005602052604090205461071f908263ffffffff610dc216565b600160a060020a03831660009081526005602052604090205560045461074b908263ffffffff610dc216565b600455600160a060020a0330166000600080516020610dd28339815191528360405190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020610dd28339815191528360405190815260200160405180910390a35050565b600160a060020a0382166000908152600560205260408120546107dd908363ffffffff610db016565b600160a060020a0380851660009081526005602090815260408083209490945560068152838220339093168252919091522054610820908363ffffffff610db016565b600160a060020a038085166000908152600660209081526040808320339094168352929052205560045461085a908363ffffffff610db016565b600455600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105705780601f1061054557610100808354040283529160200191610570565b612710600755565b60005433600160a060020a0390811691161461094057600080fd5b600755565b610950338383610ca7565b5050565b60086020526000908152604090205460ff1681565b6000836109768185610578565b15610a935780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a2c578082015183820152602001610a14565b50505050905090810190601f168015610a595780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610a7a57600080fd5b6102c65a03f11515610a8b57600080fd5b505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610ad357600080fd5b600160a060020a03821660009081526008602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610b5f57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075481565b600354600160a060020a034116600090815260056020526040902054610bc59160ff16600a0a63ffffffff610dc216565b600160a060020a034116600090815260056020526040902055600354600454610bf99160ff16600a0a63ffffffff610dc216565b600455600354600160a060020a03301690600090600080516020610dd28339815191529060ff16600a0a60405190815260200160405180910390a3600354600160a060020a03418116913090911690600080516020610dd28339815191529060ff16600a0a60405190815260200160405180910390a3565b600080831515610c845760009150610ca0565b50828202828482811515610c9457fe5b0414610c9c57fe5b8091505b5092915050565b600160a060020a0382161515610cbc57600080fd5b600160a060020a03831660009081526008602052604090205460ff1615610ce257600080fd5b600160a060020a03821660009081526008602052604090205460ff1615610d0857600080fd5b600160a060020a038316600090815260056020526040902054610d31908263ffffffff610db016565b600160a060020a038085166000908152600560205260408082209390935590841681522054610d66908263ffffffff610dc216565b600160a060020a0380841660008181526005602052604090819020939093559190851690600080516020610dd28339815191529084905190815260200160405180910390a3505050565b600082821115610dbc57fe5b50900390565b600082820183811015610c9c57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820a320d4e37134f8462f2ceed060ffdbced624777808d4a54062378a4ae7f2d3af0029

Deployed Bytecode

0x6060604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610131578063095ea7b3146101bb57806318160ddd146101f157806323b872dd14610216578063313ce5671461023e57806342966c681461026757806370a082311461027d57806379c650681461029c57806379cc6790146102be5780638da5cb5b146102e057806395d89b411461030f578063963632d314610322578063a3201daa14610335578063a6f2ae3a14610127578063a9059cbb1461034b578063b414d4b61461036d578063cae9ca511461038c578063dd62ed3e146103f1578063e724529c14610416578063f2fde38b1461043a578063f856d60514610459578063fcd6e3391461046c575b61012f61047f565b005b341561013c57600080fd5b6101446104da565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610180578082015183820152602001610168565b50505050905090810190601f1680156101ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c657600080fd5b6101dd600160a060020a0360043516602435610578565b604051901515815260200160405180910390f35b34156101fc57600080fd5b6102046105a8565b60405190815260200160405180910390f35b341561022157600080fd5b6101dd600160a060020a03600435811690602435166044356105ae565b341561024957600080fd5b610251610623565b60405160ff909116815260200160405180910390f35b341561027257600080fd5b6101dd60043561062c565b341561028857600080fd5b610204600160a060020a03600435166106c9565b34156102a757600080fd5b61012f600160a060020a03600435166024356106db565b34156102c957600080fd5b6101dd600160a060020a03600435166024356107b4565b34156102eb57600080fd5b6102f36108a3565b604051600160a060020a03909116815260200160405180910390f35b341561031a57600080fd5b6101446108b2565b341561032d57600080fd5b61012f61091d565b341561034057600080fd5b61012f600435610925565b341561035657600080fd5b61012f600160a060020a0360043516602435610945565b341561037857600080fd5b6101dd600160a060020a0360043516610954565b341561039757600080fd5b6101dd60048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061096995505050505050565b34156103fc57600080fd5b610204600160a060020a0360043581169060243516610a9b565b341561042157600080fd5b61012f600160a060020a03600435166024351515610ab8565b341561044557600080fd5b61012f600160a060020a0360043516610b44565b341561046457600080fd5b610204610b8e565b341561047757600080fd5b61012f610b94565b600061049660075434610c7190919063ffffffff16565b90506104a3303383610ca7565b600054600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156104d757600080fd5b50565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120546105e7908363ffffffff610db016565b600160a060020a0380861660009081526006602090815260408083203390941683529290522055610619848484610ca7565b5060019392505050565b60035460ff1681565b600160a060020a033316600090815260056020526040812054610655908363ffffffff610db016565b600160a060020a033316600090815260056020526040902055600454610681908363ffffffff610db016565b600455600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b60056020526000908152604090205481565b60005433600160a060020a039081169116146106f657600080fd5b600160a060020a03821660009081526005602052604090205461071f908263ffffffff610dc216565b600160a060020a03831660009081526005602052604090205560045461074b908263ffffffff610dc216565b600455600160a060020a0330166000600080516020610dd28339815191528360405190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020610dd28339815191528360405190815260200160405180910390a35050565b600160a060020a0382166000908152600560205260408120546107dd908363ffffffff610db016565b600160a060020a0380851660009081526005602090815260408083209490945560068152838220339093168252919091522054610820908363ffffffff610db016565b600160a060020a038085166000908152600660209081526040808320339094168352929052205560045461085a908363ffffffff610db016565b600455600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105705780601f1061054557610100808354040283529160200191610570565b612710600755565b60005433600160a060020a0390811691161461094057600080fd5b600755565b610950338383610ca7565b5050565b60086020526000908152604090205460ff1681565b6000836109768185610578565b15610a935780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a2c578082015183820152602001610a14565b50505050905090810190601f168015610a595780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610a7a57600080fd5b6102c65a03f11515610a8b57600080fd5b505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610ad357600080fd5b600160a060020a03821660009081526008602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610b5f57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60075481565b600354600160a060020a034116600090815260056020526040902054610bc59160ff16600a0a63ffffffff610dc216565b600160a060020a034116600090815260056020526040902055600354600454610bf99160ff16600a0a63ffffffff610dc216565b600455600354600160a060020a03301690600090600080516020610dd28339815191529060ff16600a0a60405190815260200160405180910390a3600354600160a060020a03418116913090911690600080516020610dd28339815191529060ff16600a0a60405190815260200160405180910390a3565b600080831515610c845760009150610ca0565b50828202828482811515610c9457fe5b0414610c9c57fe5b8091505b5092915050565b600160a060020a0382161515610cbc57600080fd5b600160a060020a03831660009081526008602052604090205460ff1615610ce257600080fd5b600160a060020a03821660009081526008602052604090205460ff1615610d0857600080fd5b600160a060020a038316600090815260056020526040902054610d31908263ffffffff610db016565b600160a060020a038085166000908152600560205260408082209390935590841681522054610d66908263ffffffff610dc216565b600160a060020a0380841660008181526005602052604090819020939093559190851690600080516020610dd28339815191529084905190815260200160405180910390a3505050565b600082821115610dbc57fe5b50900390565b600082820183811015610c9c57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820a320d4e37134f8462f2ceed060ffdbced624777808d4a54062378a4ae7f2d3af0029

Swarm Source

bzzr://a320d4e37134f8462f2ceed060ffdbced624777808d4a54062378a4ae7f2d3af

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.