ETH Price: $3,386.17 (-1.76%)
Gas: 1 Gwei

Token

Shizzle Nizzle 2 (SHNZ2)
 

Overview

Max Total Supply

100,000,000,000 SHNZ2

Holders

7,003

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
Bitstamp 1
Balance
2,000 SHNZ2

Value
$0.00
0x00bdb5699745f5b860228c8f939abf1b9ae374ed
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The goal of Shizzle Nizzle is to build a fun, creative crypto metaverse where the community can connect socially, find entertainment, shop, and trade real estate in Shizzle Nizzle Land.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHNZ2

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-08-02
*/

pragma solidity ^0.4.19;

/**
 * @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 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    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 _a / _b;
  }

  /**
  * @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 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}



contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  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);
}



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
  );
}



contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) internal balances;

  uint256 internal totalSupply_;

  /**
  * @dev Total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @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(_value <= balances[msg.sender]);
    require(_to != address(0));

    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) {
    return balances[_owner];
  }

}



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * 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(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    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;
  }
  
  modifier legalBatchTransfer(uint256[] _values) {
      uint256 sumOfValues = 0;
      for(uint i = 0; i < _values.length; i++) {
          sumOfValues = sumOfValues.add(_values[i]);
      }
      if(sumOfValues.mul(10 ** 8) > balanceOf(msg.sender)) {
          revert();
      }
      _;
  }
  
  function multiValueBatchTransfer(address[] _recipients, uint256[] _values) public legalBatchTransfer(_values) returns(bool){
      require(_recipients.length == _values.length && _values.length <= 100);
      for(uint i = 0; i < _recipients.length; i++) {
        balances[msg.sender] = balances[msg.sender].sub(_values[i].mul(10 ** 8));
        balances[_recipients[i]] = balances[_recipients[i]].add(_values[i].mul(10 ** 8));
        Transfer(msg.sender, _recipients[i], _values[i].mul(10 ** 8));
      }
      return true;
  }
  
  function singleValueBatchTransfer(address[] _recipients, uint256 _value) public returns(bool) {
      require(balanceOf(msg.sender) >= _recipients.length.mul(_value.mul(10 ** 8)));
      for(uint i = 0; i < _recipients.length; i++) {
        balances[msg.sender] = balances[msg.sender].sub(_value.mul(10 ** 8));
        balances[_recipients[i]] = balances[_recipients[i]].add(_value.mul(10 ** 8));
        Transfer(msg.sender, _recipients[i], _value.mul(10 ** 8));
      }
      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];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a 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
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 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 SHNZ2 is StandardToken {
    
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;
    
    function SHNZ2() {
        name = "Shizzle Nizzle 2";
        symbol = "SHNZ2";
        decimals = 8;
        totalSupply = 100000000000e8;
        balances[0x7e826E85CbA4d3AAaa1B484f53BE01D10F527Fd6] = totalSupply;
        Transfer(address(this), 0x7e826E85CbA4d3AAaa1B484f53BE01D10F527Fd6, totalSupply);
    }
}

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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"singleValueBatchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"multiValueBatchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

6060604052341561000f57600080fd5b60408051908101604052601081527f5368697a7a6c65204e697a7a6c652032000000000000000000000000000000006020820152600390805161005692916020019061013f565b5060408051908101604052600581527f53484e5a320000000000000000000000000000000000000000000000000000006020820152600490805161009e92916020019061013f565b506005805460ff19166008179055678ac7230489e800006006819055737e826e85cba4d3aaaa1b484f53be01d10f527fd660008181526020527f50860eafa9bd82d15cce8625a837357ba5a0cff282c31857aa70b72fed4981d58290559030600160a060020a0316907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060405190815260200160405180910390a36101da565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061018057805160ff19168380011785556101ad565b828001600101855582156101ad579182015b828111156101ad578251825591602001919060010190610192565b506101b99291506101bd565b5090565b6101d791905b808211156101b957600081556001016101c3565b90565b610d3b806101e96000396000f3006060604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018957806323b872dd146101ae578063313ce567146101d65780633f802ca0146101ff5780635c20ad9e1461025057806366188463146102df57806370a082311461030157806395d89b4114610320578063a9059cbb14610333578063d73dd62314610355578063dd62ed3e14610377575b600080fd5b34156100d457600080fd5b6100dc61039c565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610118578082015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015e57600080fd5b610175600160a060020a036004351660243561043a565b604051901515815260200160405180910390f35b341561019457600080fd5b61019c6104a7565b60405190815260200160405180910390f35b34156101b957600080fd5b610175600160a060020a03600435811690602435166044356104ad565b34156101e157600080fd5b6101e9610619565b60405160ff909116815260200160405180910390f35b341561020a57600080fd5b6101756004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650509335935061062292505050565b341561025b57600080fd5b6101756004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506107b395505050505050565b34156102ea57600080fd5b610175600160a060020a036004351660243561095b565b341561030c57600080fd5b61019c600160a060020a0360043516610a54565b341561032b57600080fd5b6100dc610a6f565b341561033e57600080fd5b610175600160a060020a0360043516602435610ada565b341561036057600080fd5b610175600160a060020a0360043516602435610bd8565b341561038257600080fd5b61019c600160a060020a0360043581169060243516610c7c565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104325780601f1061040757610100808354040283529160200191610432565b820191906000526020600020905b81548152906001019060200180831161041557829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60065481565b600160a060020a0383166000908152602081905260408120548211156104d257600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561050557600080fd5b600160a060020a038316151561051a57600080fd5b600160a060020a038416600090815260208190526040902054610543908363ffffffff610ca716565b600160a060020a038086166000908152602081905260408082209390935590851681522054610578908363ffffffff610cb916565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546105be908363ffffffff610ca716565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610cf08339815191529085905190815260200160405180910390a35060019392505050565b60055460ff1681565b60008061064a61063c846305f5e10063ffffffff610cc616565b85519063ffffffff610cc616565b61065333610a54565b101561065e57600080fd5b5060005b83518110156107a9576106a7610682846305f5e10063ffffffff610cc616565b600160a060020a0333166000908152602081905260409020549063ffffffff610ca716565b600160a060020a0333166000908152602081905260409020556107166106d7846305f5e10063ffffffff610cc616565b6000808785815181106106e657fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610cb916565b60008086848151811061072557fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205583818151811061075557fe5b90602001906020020151600160a060020a03908116903316600080516020610cf0833981519152610790866305f5e10063ffffffff610cc616565b60405190815260200160405180910390a3600101610662565b5060019392505050565b6000808281805b82518110156107f3576107e98382815181106107d257fe5b90602001906020020151839063ffffffff610cb916565b91506001016107ba565b6107fc33610a54565b610810836305f5e10063ffffffff610cc616565b111561081b57600080fd5b8551875114801561082e57506064865111155b151561083957600080fd5b600093505b865184101561094e576108746106826305f5e10088878151811061085e57fe5b906020019060200201519063ffffffff610cc616565b600160a060020a0333166000908152602081905260409020556108b36108a46305f5e10088878151811061085e57fe5b6000808a88815181106106e657fe5b6000808987815181106108c257fe5b90602001906020020151600160a060020a031681526020810191909152604001600020558684815181106108f257fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020610cf08339815191526109326305f5e1008a898151811061085e57fe5b60405190815260200160405180910390a360019093019261083e565b5060019695505050505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083106109b757600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109ee565b6109c7818463ffffffff610ca716565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104325780601f1061040757610100808354040283529160200191610432565b600160a060020a033316600090815260208190526040812054821115610aff57600080fd5b600160a060020a0383161515610b1457600080fd5b600160a060020a033316600090815260208190526040902054610b3d908363ffffffff610ca716565b600160a060020a033381166000908152602081905260408082209390935590851681522054610b72908363ffffffff610cb916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610cf08339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c10908363ffffffff610cb916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600082821115610cb357fe5b50900390565b818101828110156104a157fe5b6000821515610cd7575060006104a1565b50818102818382811515610ce757fe5b04146104a157fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582094e3742e4feb09805374a76236ec9018ee322adf9fde019119f430ba667c41750029

Deployed Bytecode

0x6060604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018957806323b872dd146101ae578063313ce567146101d65780633f802ca0146101ff5780635c20ad9e1461025057806366188463146102df57806370a082311461030157806395d89b4114610320578063a9059cbb14610333578063d73dd62314610355578063dd62ed3e14610377575b600080fd5b34156100d457600080fd5b6100dc61039c565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610118578082015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015e57600080fd5b610175600160a060020a036004351660243561043a565b604051901515815260200160405180910390f35b341561019457600080fd5b61019c6104a7565b60405190815260200160405180910390f35b34156101b957600080fd5b610175600160a060020a03600435811690602435166044356104ad565b34156101e157600080fd5b6101e9610619565b60405160ff909116815260200160405180910390f35b341561020a57600080fd5b6101756004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650509335935061062292505050565b341561025b57600080fd5b6101756004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506107b395505050505050565b34156102ea57600080fd5b610175600160a060020a036004351660243561095b565b341561030c57600080fd5b61019c600160a060020a0360043516610a54565b341561032b57600080fd5b6100dc610a6f565b341561033e57600080fd5b610175600160a060020a0360043516602435610ada565b341561036057600080fd5b610175600160a060020a0360043516602435610bd8565b341561038257600080fd5b61019c600160a060020a0360043581169060243516610c7c565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104325780601f1061040757610100808354040283529160200191610432565b820191906000526020600020905b81548152906001019060200180831161041557829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60065481565b600160a060020a0383166000908152602081905260408120548211156104d257600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561050557600080fd5b600160a060020a038316151561051a57600080fd5b600160a060020a038416600090815260208190526040902054610543908363ffffffff610ca716565b600160a060020a038086166000908152602081905260408082209390935590851681522054610578908363ffffffff610cb916565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546105be908363ffffffff610ca716565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610cf08339815191529085905190815260200160405180910390a35060019392505050565b60055460ff1681565b60008061064a61063c846305f5e10063ffffffff610cc616565b85519063ffffffff610cc616565b61065333610a54565b101561065e57600080fd5b5060005b83518110156107a9576106a7610682846305f5e10063ffffffff610cc616565b600160a060020a0333166000908152602081905260409020549063ffffffff610ca716565b600160a060020a0333166000908152602081905260409020556107166106d7846305f5e10063ffffffff610cc616565b6000808785815181106106e657fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610cb916565b60008086848151811061072557fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205583818151811061075557fe5b90602001906020020151600160a060020a03908116903316600080516020610cf0833981519152610790866305f5e10063ffffffff610cc616565b60405190815260200160405180910390a3600101610662565b5060019392505050565b6000808281805b82518110156107f3576107e98382815181106107d257fe5b90602001906020020151839063ffffffff610cb916565b91506001016107ba565b6107fc33610a54565b610810836305f5e10063ffffffff610cc616565b111561081b57600080fd5b8551875114801561082e57506064865111155b151561083957600080fd5b600093505b865184101561094e576108746106826305f5e10088878151811061085e57fe5b906020019060200201519063ffffffff610cc616565b600160a060020a0333166000908152602081905260409020556108b36108a46305f5e10088878151811061085e57fe5b6000808a88815181106106e657fe5b6000808987815181106108c257fe5b90602001906020020151600160a060020a031681526020810191909152604001600020558684815181106108f257fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020610cf08339815191526109326305f5e1008a898151811061085e57fe5b60405190815260200160405180910390a360019093019261083e565b5060019695505050505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083106109b757600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109ee565b6109c7818463ffffffff610ca716565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104325780601f1061040757610100808354040283529160200191610432565b600160a060020a033316600090815260208190526040812054821115610aff57600080fd5b600160a060020a0383161515610b1457600080fd5b600160a060020a033316600090815260208190526040902054610b3d908363ffffffff610ca716565b600160a060020a033381166000908152602081905260408082209390935590851681522054610b72908363ffffffff610cb916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610cf08339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c10908363ffffffff610cb916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600082821115610cb357fe5b50900390565b818101828110156104a157fe5b6000821515610cd7575060006104a1565b50818102818382811515610ce757fe5b04146104a157fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582094e3742e4feb09805374a76236ec9018ee322adf9fde019119f430ba667c41750029

Swarm Source

bzzr://94e3742e4feb09805374a76236ec9018ee322adf9fde019119f430ba667c4175
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.