ETH Price: $3,396.48 (+1.94%)

Contract

0xfd8971d5E8E1740cE2d0A84095fCA4De729d0c16
 
Transaction Hash
Method
Block
From
To
Approve212368992024-11-21 15:08:112 days ago1732201691IN
Zilla Token
0 ETH0.0014758430.37850076
Approve211326332024-11-07 1:56:5916 days ago1730944619IN
Zilla Token
0 ETH0.0008626917.86779723
Approve210755282024-10-30 2:37:5924 days ago1730255879IN
Zilla Token
0 ETH0.0005325710.96230674
Transfer210542362024-10-27 3:20:2327 days ago1729999223IN
Zilla Token
0 ETH0.000183593.70261162
Transfer206888792024-09-06 3:30:5978 days ago1725593459IN
Zilla Token
0 ETH0.000051251.03361233
Approve206863592024-09-05 19:04:3579 days ago1725563075IN
Zilla Token
0 ETH0.00022674.66645157
Approve205171782024-08-13 4:00:47102 days ago1723521647IN
Zilla Token
0 ETH0.000052211.07480978
Approve205096442024-08-12 2:46:35103 days ago1723430795IN
Zilla Token
0 ETH0.00005461.12393654
Approve205093562024-08-12 1:48:47103 days ago1723427327IN
Zilla Token
0 ETH0.000053611.10962244
Approve205051832024-08-11 11:50:35104 days ago1723377035IN
Zilla Token
0 ETH0.00009251.90416202
Transfer204085222024-07-29 0:04:59117 days ago1722211499IN
Zilla Token
0 ETH0.000049531
Transfer202732062024-07-10 2:47:47136 days ago1720579667IN
Zilla Token
0 ETH0.000050042.07310982
Transfer201502692024-06-22 22:38:23154 days ago1719095903IN
Zilla Token
0 ETH0.000072771.46875
Approve200938552024-06-15 1:13:59161 days ago1718414039IN
Zilla Token
0 ETH0.000131182.70020341
Approve192998362024-02-24 20:29:47273 days ago1708806587IN
Zilla Token
0 ETH0.0016000732.93561292
Approve192680612024-02-20 9:34:47277 days ago1708421687IN
Zilla Token
0 ETH0.0020948343.38754003
Transfer186269342023-11-22 11:19:23367 days ago1700651963IN
Zilla Token
0 ETH0.0016124332.52716754
Transfer182199252023-09-26 12:23:23424 days ago1695731003IN
Zilla Token
0 ETH0.0004888915.05599774
Transfer182199242023-09-26 12:23:11424 days ago1695730991IN
Zilla Token
0 ETH0.0004898215.0844594
Transfer182199232023-09-26 12:22:59424 days ago1695730979IN
Zilla Token
0 ETH0.0004433613.65371132
Transfer182198052023-09-26 11:59:11424 days ago1695729551IN
Zilla Token
0 ETH0.0004749414.62631796
Transfer182198052023-09-26 11:59:11424 days ago1695729551IN
Zilla Token
0 ETH0.0004749414.62631796
Transfer182193242023-09-26 10:21:59424 days ago1695723719IN
Zilla Token
0 ETH0.0006893721.22201597
Transfer182186862023-09-26 8:12:59424 days ago1695715979IN
Zilla Token
0 ETH0.000437638.82619788
Transfer182103662023-09-25 4:17:23425 days ago1695615443IN
Zilla Token
0 ETH0.000443398.94232357
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
46488652017-11-30 8:08:292550 days ago1512029309  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ZillaToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-11-30
*/

pragma solidity ^0.4.18;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
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;
  }
}





/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }


  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}



/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}




/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}





/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}





/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

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

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}





contract ZillaToken is StandardToken, Ownable {
  uint256 constant zilla = 1 ether;

  string public name = 'Zilla Token';
  string public symbol = 'ZLA';
  uint public decimals = 18;
  uint256 public initialSupply = 60000000 * zilla;
  bool public tradeable;

  function ZillaToken() public {
    totalSupply = initialSupply;
    balances[msg.sender] = initialSupply;
    tradeable = false;
  }

  /**
   * @dev modifier to determine if the token is tradeable
   */
  modifier isTradeable() {
    require( tradeable == true );
    _;
  }

  /**
   * @dev allow the token to be freely tradeable
   */
  function allowTrading() public onlyOwner {
    require( tradeable == false );
    tradeable = true;
  }

  /**
   * @dev allow the token to be freely tradeable
   * @param _to the address to transfer ZLA to
   * @param _value the amount of ZLA to transfer
   */
  function crowdsaleTransfer(address _to, uint256 _value) public onlyOwner returns (bool) {
    require( tradeable == false );
    return super.transfer(_to, _value);
  } 

  function transfer(address _to, uint256 _value) public isTradeable returns (bool) {
    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) public isTradeable returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(address _spender, uint256 _value) public isTradeable returns (bool) {
    return super.approve(_spender, _value);
  }

  function increaseApproval(address _spender, uint _addedValue) public isTradeable returns (bool success) {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public isTradeable returns (bool success) {
    return super.decreaseApproval(_spender, _subtractedValue);
  }

}





/**
 * @title Crowdsale
 * @dev Crowdsale is a base contract for managing a token crowdsale.
 * Crowdsales have a start and end timestamps, where investors can make
 * token purchases and the crowdsale will assign them tokens based
 * on a token per ETH rate. Funds collected are forwarded to a wallet
 * as they arrive.
 */
contract ZillaCrowdsale is Ownable {
  using SafeMath for uint256;

  // public events
  event StartCrowdsale();
  event FinalizeCrowdsale();
  event TokenSold(address recipient, uint eth_amount, uint zla_amount);
 
  // crowdsale constants
  uint256 constant presale_eth_to_zilla   = 1200;
  uint256 constant crowdsale_eth_to_zilla =  750;

  // our ZillaToken contract
  ZillaToken public token;

  // crowdsale token limit
  uint256 public zilla_remaining;

  // our Zilla multisig vault address
  address public vault;

  // crowdsale state
  enum CrowdsaleState { Waiting, Running, Ended }
  CrowdsaleState public state = CrowdsaleState.Waiting;
  uint256 public start;
  uint256 public unlimited;
  uint256 public end;

  // participants state
  struct Participant {
    bool    whitelist;
    uint256 remaining;
  }
  mapping (address => Participant) private participants;

  /**
   * @dev constructs ZillaCrowdsale
   */
  function ZillaCrowdsale() public {
    token = new ZillaToken();
    zilla_remaining = token.totalSupply();
  }

  /**
   * @dev modifier to determine if the crowdsale has been initialized
   */
  modifier isStarted() {
    require( (state == CrowdsaleState.Running) );
    _;
  }

  /**
   * @dev modifier to determine if the crowdsale is active
   */
  modifier isRunning() {
    require( (state == CrowdsaleState.Running) && (now >= start) && (now < end) );
    _;
  }

  /**
   * @dev start the Zilla Crowdsale
   * @param _start is the epoch time the crowdsale starts
   * @param _end is the epoch time the crowdsale ends
   * @param _vault is the multisig wallet the ethereum is transfered to
   */
  function startCrowdsale(uint256 _start, uint256 _unlimited, uint256 _end, address _vault) public onlyOwner {
    require(state == CrowdsaleState.Waiting);
    require(_start >= now);
    require(_unlimited > _start);
    require(_unlimited < _end);
    require(_end > _start);
    require(_vault != 0x0);

    start     = _start;
    unlimited = _unlimited;
    end       = _end;
    vault     = _vault;
    state     = CrowdsaleState.Running;
    StartCrowdsale();
  }

  /**
   * @dev Finalize the Zilla Crowdsale, unsold tokens are moved to the vault account
   */
  function finalizeCrowdsale() public onlyOwner {
    require(state == CrowdsaleState.Running);
    require(end < now);
    // transfer remaining tokens to vault
    _transferTokens( vault, 0, zilla_remaining );
    // end the crowdsale
    state = CrowdsaleState.Ended;
    // allow the token to be traded
    token.allowTrading();
    FinalizeCrowdsale();
  }

  /**
   * @dev Allow owner to increase the end date of the crowdsale as long as the crowdsale is still running
   * @param _end the new end date for the crowdsale
   */
  function setEndDate(uint256 _end) public onlyOwner {
    require(state == CrowdsaleState.Running);
    require(_end > now);
    require(_end > start);
    require(_end > end);

    end = _end;
  }

  /**
   * @dev Allow owner to change the multisig wallet
   * @param _vault the new address of the multisig wallet
   */
  function setVault(address _vault) public onlyOwner {
    require(_vault != 0x0);

    vault = _vault;    
  }

  /**
   * @dev Allow owner to add to the whitelist
   * @param _addresses array of addresses to add to the whitelist
   */
  function whitelistAdd(address[] _addresses) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      Participant storage p = participants[ _addresses[i] ];
      p.whitelist = true;
      p.remaining = 15 ether;
    }
  }

  /**
   * @dev Allow owner to remove from the whitelist
   * @param _addresses array of addresses to remove from the whitelist
   */
  function whitelistRemove(address[] _addresses) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      delete participants[ _addresses[i] ];
    }
  }

  /**
   * @dev Fallback function which buys tokens when sent ether
   */
  function() external payable {
    buyTokens(msg.sender);
  }

  /**
   * @dev Apply our fixed buy rate and verify we are not sold out.
   * @param eth the amount of ether being used to purchase tokens.
   */
  function _allocateTokens(uint256 eth) private view returns(uint256 tokens) {
    tokens = crowdsale_eth_to_zilla.mul(eth);
    require( zilla_remaining >= tokens );
  }

  /**
   * @dev Apply our fixed presale rate and verify we are not sold out.
   * @param eth the amount of ether used to purchase presale tokens.
   */
  function _allocatePresaleTokens(uint256 eth) private view returns(uint256 tokens) {
    tokens = presale_eth_to_zilla.mul(eth);
    require( zilla_remaining >= tokens );
  }

  /**
   * @dev Transfer tokens to the recipient and update our token availability.
   * @param recipient the recipient to receive tokens.
   * @param eth the amount of Ethereum spent.
   * @param zla the amount of Zilla Tokens received.
   */
  function _transferTokens(address recipient, uint256 eth, uint256 zla) private {
    require( token.crowdsaleTransfer( recipient, zla ) );
    zilla_remaining = zilla_remaining.sub( zla );
    TokenSold(recipient, eth, zla);
  }

  /**
   * @dev Allows the owner to grant presale participants their tokens.
   * @param recipient the recipient to receive tokens. 
   * @param eth the amount of ether from the presale.
   */
  function _grantPresaleTokens(address recipient, uint256 eth) private {
    uint256 tokens = _allocatePresaleTokens(eth);
    _transferTokens( recipient, eth, tokens );
  }

  /**
   * @dev Allows anyone to create tokens by depositing ether.
   * @param recipient the recipient to receive tokens. 
   */
  function buyTokens(address recipient) public isRunning payable {
    Participant storage p = participants[ recipient ];    
    require( p.whitelist );
    // check for the first session buy limits
    if( unlimited > now ) {
      require( p.remaining >= msg.value );
      p.remaining.sub( msg.value );
    }
    uint256 tokens = _allocateTokens(msg.value);
    require( vault.send(msg.value) );
    _transferTokens( recipient, msg.value, tokens );
  }

  /**
   * @dev Allows owner to transfer tokens to any address.
   * @param recipient is the address to receive tokens. 
   * @param zla is the amount of Zilla to transfer
   */
  function grantTokens(address recipient, uint256 zla) public isStarted onlyOwner {
    require( zilla_remaining >= zla );
    _transferTokens( recipient, 0, zla );
  }

  /**
   * @dev Allows the owner to grant presale participants their tokens.
   * @param recipients array of recipients to receive tokens. 
   * @param eths array of ether from the presale.
   */
  function grantPresaleTokens(address[] recipients, uint256[] eths) public isStarted onlyOwner {
    require( recipients.length == eths.length );
    for (uint i=0; i<recipients.length; i++) {
      _grantPresaleTokens( recipients[i], eths[i] );
    }
  }

}

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":false,"inputs":[],"name":"allowTrading","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"crowdsaleTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","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":"tradeable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

606060405260408051908101604052600b81527f5a696c6c6120546f6b656e0000000000000000000000000000000000000000006020820152600490805161004b9291602001906100f6565b5060408051908101604052600381527f5a4c410000000000000000000000000000000000000000000000000000000000602082015260059080516100939291602001906100f6565b5060126006556a31a17e847807b1bc00000060075534156100b357600080fd5b60038054600160a060020a03191633600160a060020a0316908117909155600754600081815591825260016020526040909120556008805460ff19169055610191565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013757805160ff1916838001178555610164565b82800160010185558215610164579182015b82811115610164578251825591602001919060010190610149565b50610170929150610174565b5090565b61018e91905b80821115610170576000815560010161017a565b90565b610b82806101a06000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da5780632e5b4c4314610202578063313ce56714610217578063378dc3dc1461022a578063661884631461023d57806369dd45241461025f57806370a08231146102815780638da5cb5b146102a057806395d89b41146102cf578063a9059cbb146102e2578063d73dd62314610304578063dd62ed3e14610326578063f2fde38b1461034b578063f5ac9db61461036a575b600080fd5b341561010057600080fd5b61010861037d565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a036004351660243561041b565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c8610443565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a0360043581169060243516604435610449565b341561020d57600080fd5b610215610473565b005b341561022257600080fd5b6101c86104ad565b341561023557600080fd5b6101c86104b3565b341561024857600080fd5b6101a1600160a060020a03600435166024356104b9565b341561026a57600080fd5b6101a1600160a060020a03600435166024356104da565b341561028c57600080fd5b6101c8600160a060020a0360043516610512565b34156102ab57600080fd5b6102b361052d565b604051600160a060020a03909116815260200160405180910390f35b34156102da57600080fd5b61010861053c565b34156102ed57600080fd5b6101a1600160a060020a03600435166024356105a7565b341561030f57600080fd5b6101a1600160a060020a03600435166024356105be565b341561033157600080fd5b6101c8600160a060020a03600435811690602435166105df565b341561035657600080fd5b610215600160a060020a036004351661060a565b341561037557600080fd5b6101a16106a5565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104135780601f106103e857610100808354040283529160200191610413565b820191906000526020600020905b8154815290600101906020018083116103f657829003601f168201915b505050505081565b60085460009060ff16151560011461043257600080fd5b61043c83836106ae565b9392505050565b60005481565b60085460009060ff16151560011461046057600080fd5b61046b84848461071a565b949350505050565b60035433600160a060020a0390811691161461048e57600080fd5b60085460ff161561049e57600080fd5b6008805460ff19166001179055565b60065481565b60075481565b60085460009060ff1615156001146104d057600080fd5b61043c838361089c565b60035460009033600160a060020a039081169116146104f857600080fd5b60085460ff161561050857600080fd5b61043c8383610996565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104135780601f106103e857610100808354040283529160200191610413565b60085460009060ff16151560011461050857600080fd5b60085460009060ff1615156001146105d557600080fd5b61043c8383610a91565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461062557600080fd5b600160a060020a038116151561063a57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60085460ff1681565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a038316151561073157600080fd5b600160a060020a03841660009081526001602052604090205482111561075657600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561078957600080fd5b600160a060020a0384166000908152600160205260409020546107b2908363ffffffff610b3516565b600160a060020a0380861660009081526001602052604080822093909355908516815220546107e7908363ffffffff610b4716565b600160a060020a0380851660009081526001602090815260408083209490945587831682526002815283822033909316825291909152205461082f908363ffffffff610b3516565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108f957600160a060020a033381166000908152600260209081526040808320938816835292905290812055610930565b610909818463ffffffff610b3516565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a03831615156109ad57600080fd5b600160a060020a0333166000908152600160205260409020548211156109d257600080fd5b600160a060020a0333166000908152600160205260409020546109fb908363ffffffff610b3516565b600160a060020a033381166000908152600160205260408082209390935590851681522054610a30908363ffffffff610b4716565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ac9908363ffffffff610b4716565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600082821115610b4157fe5b50900390565b60008282018381101561043c57fe00a165627a7a723058205b75c93dfcf1fd428a3aec37e405d1d43d16082a369398a039807d6feb4228af0029

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da5780632e5b4c4314610202578063313ce56714610217578063378dc3dc1461022a578063661884631461023d57806369dd45241461025f57806370a08231146102815780638da5cb5b146102a057806395d89b41146102cf578063a9059cbb146102e2578063d73dd62314610304578063dd62ed3e14610326578063f2fde38b1461034b578063f5ac9db61461036a575b600080fd5b341561010057600080fd5b61010861037d565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a036004351660243561041b565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c8610443565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a0360043581169060243516604435610449565b341561020d57600080fd5b610215610473565b005b341561022257600080fd5b6101c86104ad565b341561023557600080fd5b6101c86104b3565b341561024857600080fd5b6101a1600160a060020a03600435166024356104b9565b341561026a57600080fd5b6101a1600160a060020a03600435166024356104da565b341561028c57600080fd5b6101c8600160a060020a0360043516610512565b34156102ab57600080fd5b6102b361052d565b604051600160a060020a03909116815260200160405180910390f35b34156102da57600080fd5b61010861053c565b34156102ed57600080fd5b6101a1600160a060020a03600435166024356105a7565b341561030f57600080fd5b6101a1600160a060020a03600435166024356105be565b341561033157600080fd5b6101c8600160a060020a03600435811690602435166105df565b341561035657600080fd5b610215600160a060020a036004351661060a565b341561037557600080fd5b6101a16106a5565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104135780601f106103e857610100808354040283529160200191610413565b820191906000526020600020905b8154815290600101906020018083116103f657829003601f168201915b505050505081565b60085460009060ff16151560011461043257600080fd5b61043c83836106ae565b9392505050565b60005481565b60085460009060ff16151560011461046057600080fd5b61046b84848461071a565b949350505050565b60035433600160a060020a0390811691161461048e57600080fd5b60085460ff161561049e57600080fd5b6008805460ff19166001179055565b60065481565b60075481565b60085460009060ff1615156001146104d057600080fd5b61043c838361089c565b60035460009033600160a060020a039081169116146104f857600080fd5b60085460ff161561050857600080fd5b61043c8383610996565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104135780601f106103e857610100808354040283529160200191610413565b60085460009060ff16151560011461050857600080fd5b60085460009060ff1615156001146105d557600080fd5b61043c8383610a91565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461062557600080fd5b600160a060020a038116151561063a57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60085460ff1681565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a038316151561073157600080fd5b600160a060020a03841660009081526001602052604090205482111561075657600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561078957600080fd5b600160a060020a0384166000908152600160205260409020546107b2908363ffffffff610b3516565b600160a060020a0380861660009081526001602052604080822093909355908516815220546107e7908363ffffffff610b4716565b600160a060020a0380851660009081526001602090815260408083209490945587831682526002815283822033909316825291909152205461082f908363ffffffff610b3516565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108f957600160a060020a033381166000908152600260209081526040808320938816835292905290812055610930565b610909818463ffffffff610b3516565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a03831615156109ad57600080fd5b600160a060020a0333166000908152600160205260409020548211156109d257600080fd5b600160a060020a0333166000908152600160205260409020546109fb908363ffffffff610b3516565b600160a060020a033381166000908152600160205260408082209390935590851681522054610a30908363ffffffff610b4716565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610ac9908363ffffffff610b4716565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600082821115610b4157fe5b50900390565b60008282018381101561043c57fe00a165627a7a723058205b75c93dfcf1fd428a3aec37e405d1d43d16082a369398a039807d6feb4228af0029

Swarm Source

bzzr://5b75c93dfcf1fd428a3aec37e405d1d43d16082a369398a039807d6feb4228af

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  ]
[ 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.