ETH Price: $3,451.45 (-0.75%)
Gas: 2 Gwei

Token

Proof Test (PRFT Test)
 

Overview

Max Total Supply

112,386.7129247255088024 PRFT Test

Holders

270

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cryptolinked.eth
Balance
400 PRFT Test

Value
$0.00
0x77F6d9261dD8E45c0E8555Aa86aB1648Da9b95c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

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

Contract Name:
ProofToken

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-10-29
*/

pragma solidity ^0.4.15;

contract TokenFactoryInterface {

    function createCloneToken(
        address _parentToken,
        uint _snapshotBlock,
        string _tokenName,
        string _tokenSymbol
      ) public returns (ProofToken newToken);
}

contract Controllable {
  address public controller;


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

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

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newController The address to transfer ownership to.
   */
  function transferControl(address newController) public onlyController {
    if (newController != address(0)) {
      controller = newController;
    }
  }

}

contract ApproveAndCallReceiver {
    function receiveApproval(address from, uint256 _amount, address _token, bytes _data) public;
}

library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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

contract ProofToken is Controllable {

  using SafeMath for uint256;
  ProofTokenInterface public parentToken;
  TokenFactoryInterface public tokenFactory;

  string public name;
  string public symbol;
  string public version;
  uint8 public decimals;

  struct Checkpoint {
    uint128 fromBlock;
    uint128 value;
  }

  uint256 public parentSnapShotBlock;
  uint256 public creationBlock;
  bool public transfersEnabled;
  bool public masterTransfersEnabled;

  mapping(address => Checkpoint[]) balances;
  mapping (address => mapping (address => uint)) allowed;

  Checkpoint[] totalSupplyHistory;

  bool public mintingFinished = false;
  bool public presaleBalancesLocked = false;

  uint256 public constant TOTAL_PRESALE_TOKENS = 112386712924725508802400;
  address public constant MASTER_WALLET = 0x740C588C5556e523981115e587892be0961853B8;

  event Mint(address indexed to, uint256 amount);
  event MintFinished();
  event ClaimedTokens(address indexed _token, address indexed _owner, uint _amount);
  event NewCloneToken(address indexed cloneToken);
  event Approval(address indexed _owner, address indexed _spender, uint256 _amount);
  event Transfer(address indexed from, address indexed to, uint256 value);




  function ProofToken(
    address _tokenFactory,
    address _parentToken,
    uint256 _parentSnapShotBlock,
    string _tokenName,
    string _tokenSymbol
    ) public {
      tokenFactory = TokenFactoryInterface(_tokenFactory);
      parentToken = ProofTokenInterface(_parentToken);
      parentSnapShotBlock = _parentSnapShotBlock;
      name = _tokenName;
      symbol = _tokenSymbol;
      decimals = 18;
      transfersEnabled = false;
      masterTransfersEnabled = false;
      creationBlock = block.number;
      version = '0.1';
  }

  function() public payable {
    revert();
  }


  /**
  * Returns the total Proof token supply at the current block
  * @return total supply {uint}
  */
  function totalSupply() public constant returns (uint) {
    return totalSupplyAt(block.number);
  }

  /**
  * Returns the total Proof token supply at the given block number
  * @param _blockNumber {uint}
  * @return total supply {uint}
  */
  function totalSupplyAt(uint _blockNumber) public constant returns(uint) {
    // These next few lines are used when the totalSupply of the token is
    //  requested before a check point was ever created for this token, it
    //  requires that the `parentToken.totalSupplyAt` be queried at the
    //  genesis block for this token as that contains totalSupply of this
    //  token at this block number.
    if ((totalSupplyHistory.length == 0) || (totalSupplyHistory[0].fromBlock > _blockNumber)) {
        if (address(parentToken) != 0) {
            return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock));
        } else {
            return 0;
        }

    // This will return the expected totalSupply during normal situations
    } else {
        return getValueAt(totalSupplyHistory, _blockNumber);
    }
  }

  /**
  * Returns the token holder balance at the current block
  * @param _owner {address}
  * @return balance {uint}
   */
  function balanceOf(address _owner) public constant returns (uint256 balance) {
    return balanceOfAt(_owner, block.number);
  }

  /**
  * Returns the token holder balance the the given block number
  * @param _owner {address}
  * @param _blockNumber {uint}
  * @return balance {uint}
  */
  function balanceOfAt(address _owner, uint _blockNumber) public constant returns (uint) {
    // These next few lines are used when the balance of the token is
    //  requested before a check point was ever created for this token, it
    //  requires that the `parentToken.balanceOfAt` be queried at the
    //  genesis block for that token as this contains initial balance of
    //  this token
    if ((balances[_owner].length == 0) || (balances[_owner][0].fromBlock > _blockNumber)) {
        if (address(parentToken) != 0) {
            return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock));
        } else {
            // Has no parent
            return 0;
        }

    // This will return the expected balance during normal situations
    } else {
        return getValueAt(balances[_owner], _blockNumber);
    }
  }

  /**
  * Standard ERC20 transfer tokens
  * @param _to {address}
  * @param _amount {uint}
  * @return success {bool}
  */
  function transfer(address _to, uint256 _amount) public returns (bool success) {
    return doTransfer(msg.sender, _to, _amount);
  }

  /**
  * Standard ERC20 transferFrom interface
  * @param _from {address}
  * @param _to {address}
  * @param _amount {uint256}
  * @return success {bool}
  */
  function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) {
    require(allowed[_from][msg.sender] >= _amount);
    allowed[_from][msg.sender] -= _amount;
    return doTransfer(_from, _to, _amount);
  }

  /**
  * Standard ERC20 approve interface
  * @param _spender {address}
  * @param _amount {uint256}
  * @return success {bool}
  */
  function approve(address _spender, uint256 _amount) public returns (bool success) {
    require(transfersEnabled);

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender,0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_amount == 0) || (allowed[msg.sender][_spender] == 0));

    allowed[msg.sender][_spender] = _amount;
    Approval(msg.sender, _spender, _amount);
    return true;
  }

  function approveAndCall(address _spender, uint256 _amount, bytes _extraData) public returns (bool success) {
    approve(_spender, _amount);

    ApproveAndCallReceiver(_spender).receiveApproval(
        msg.sender,
        _amount,
        this,
        _extraData
    );

    return true;
  }

  function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }


  function doTransfer(address _from, address _to, uint _amount) internal returns(bool) {

    if (msg.sender != MASTER_WALLET) {
      require(transfersEnabled);
    } else {
      require(masterTransfersEnabled);
    }

    require(transfersEnabled);
    require(_amount > 0);
    require(parentSnapShotBlock < block.number);
    require((_to != 0) && (_to != address(this)));

    // If the amount being transfered is more than the balance of the
    //  account the transfer returns false
    var previousBalanceFrom = balanceOfAt(_from, block.number);
    require(previousBalanceFrom >= _amount);

    // First update the balance array with the new value for the address
    //  sending the tokens
    updateValueAtNow(balances[_from], previousBalanceFrom - _amount);

    // Then update the balance array with the new value for the address
    //  receiving the tokens
    var previousBalanceTo = balanceOfAt(_to, block.number);
    require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
    updateValueAtNow(balances[_to], previousBalanceTo + _amount);

    // An event to make the transfer easy to find on the blockchain
    Transfer(_from, _to, _amount);
    return true;
  }


  function mint(address _owner, uint _amount) public onlyController canMint returns (bool) {
    uint curTotalSupply = totalSupply();
    uint previousBalanceTo = balanceOf(_owner);

    require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow
    require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow

    updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount);
    updateValueAtNow(balances[_owner], previousBalanceTo + _amount);
    Transfer(0, _owner, _amount);
    return true;
  }

  modifier canMint() {
    require(!mintingFinished);
    _;
  }


  /**
   * Import presale balances before the start of the token sale. After importing
   * balances, lockPresaleBalances() has to be called to prevent further modification
   * of presale balances.
   * @param _addresses {address[]} Array of presale addresses
   * @param _balances {uint256[]} Array of balances corresponding to presale addresses.
   * @return success {bool}
   */
  function importPresaleBalances(address[] _addresses, uint256[] _balances) public onlyController returns (bool) {
    require(presaleBalancesLocked == false);

    for (uint256 i = 0; i < _addresses.length; i++) {
      updateValueAtNow(balances[_addresses[i]], _balances[i]);
      Transfer(0, _addresses[i], _balances[i]);
    }

    updateValueAtNow(totalSupplyHistory, TOTAL_PRESALE_TOKENS);
    return true;
  }

  /**
   * Lock presale balances after successful presale balance import
   * @return A boolean that indicates if the operation was successful.
   */
  function lockPresaleBalances() public onlyController returns (bool) {
    presaleBalancesLocked = true;
    return true;
  }

  /**
   * Lock the minting of Proof Tokens - to be called after the presale
   * @return {bool} success
  */
  function finishMinting() public onlyController returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }

  /**
   * Enable or block transfers - to be called in case of emergency
  */
  function enableTransfers(bool _value) public onlyController {
    transfersEnabled = _value;
  }

  function enableMasterTransfers(bool _value) public onlyController {
    masterTransfersEnabled = _value;
  }


  function getValueAt(Checkpoint[] storage checkpoints, uint _block) constant internal returns (uint) {

      if (checkpoints.length == 0)
        return 0;
      // Shortcut for the actual value
      if (_block >= checkpoints[checkpoints.length-1].fromBlock)
        return checkpoints[checkpoints.length-1].value;
      if (_block < checkpoints[0].fromBlock)
        return 0;

      // Binary search of the value in the array
      uint min = 0;
      uint max = checkpoints.length-1;
      while (max > min) {
          uint mid = (max + min + 1) / 2;
          if (checkpoints[mid].fromBlock<=_block) {
              min = mid;
          } else {
              max = mid-1;
          }
      }
      return checkpoints[min].value;
  }

  function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value
  ) internal
  {
      if ((checkpoints.length == 0) || (checkpoints[checkpoints.length-1].fromBlock < block.number)) {
              Checkpoint storage newCheckPoint = checkpoints[checkpoints.length++];
              newCheckPoint.fromBlock = uint128(block.number);
              newCheckPoint.value = uint128(_value);
          } else {
              Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length-1];
              oldCheckPoint.value = uint128(_value);
          }
  }

  /// @dev Helper function to return a min betwen the two uints
  function min(uint a, uint b) internal constant returns (uint) {
      return a < b ? a : b;
  }

  /**
  * Clones Proof Token at the given snapshot block
  * @param _snapshotBlock {uint}
  * @param _cloneTokenName {string}
  * @param _cloneTokenSymbol {string}
   */
  function createCloneToken(
        uint _snapshotBlock,
        string _cloneTokenName,
        string _cloneTokenSymbol
    ) public returns(address) {

      if (_snapshotBlock == 0) {
        _snapshotBlock = block.number;
      }

      if (_snapshotBlock > block.number) {
        _snapshotBlock = block.number;
      }

      ProofToken cloneToken = tokenFactory.createCloneToken(
          this,
          _snapshotBlock,
          _cloneTokenName,
          _cloneTokenSymbol
        );


      cloneToken.transferControl(msg.sender);

      // An event to make the token easy to find on the blockchain
      NewCloneToken(address(cloneToken));
      return address(cloneToken);
    }

}

contract ControllerInterface {

    function proxyPayment(address _owner) public payable returns(bool);
    function onTransfer(address _from, address _to, uint _amount) public returns(bool);
    function onApprove(address _owner, address _spender, uint _amount) public returns(bool);
}

contract ProofTokenInterface is Controllable {

  event Mint(address indexed to, uint256 amount);
  event MintFinished();
  event ClaimedTokens(address indexed _token, address indexed _owner, uint _amount);
  event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock);
  event Approval(address indexed _owner, address indexed _spender, uint256 _amount);
  event Transfer(address indexed from, address indexed to, uint256 value);

  function totalSupply() public constant returns (uint);
  function totalSupplyAt(uint _blockNumber) public constant returns(uint);
  function balanceOf(address _owner) public constant returns (uint256 balance);
  function balanceOfAt(address _owner, uint _blockNumber) public constant returns (uint);
  function transfer(address _to, uint256 _amount) public returns (bool success);
  function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success);
  function approve(address _spender, uint256 _amount) public returns (bool success);
  function approveAndCall(address _spender, uint256 _amount, bytes _extraData) public returns (bool success);
  function allowance(address _owner, address _spender) public constant returns (uint256 remaining);
  function mint(address _owner, uint _amount) public returns (bool);
  function importPresaleBalances(address[] _addresses, uint256[] _balances, address _presaleAddress) public returns (bool);
  function lockPresaleBalances() public returns (bool);
  function finishMinting() public returns (bool);
  function enableTransfers(bool _value) public;
  function enableMasterTransfers(bool _value) public;
  function createCloneToken(uint _snapshotBlock, string _cloneTokenName, string _cloneTokenSymbol) public returns (address);

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"importPresaleBalances","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"presaleBalancesLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MASTER_WALLET","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"lockPresaleBalances","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newController","type":"address"}],"name":"transferControl","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_PRESALE_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_snapshotBlock","type":"uint256"},{"name":"_cloneTokenName","type":"string"},{"name":"_cloneTokenSymbol","type":"string"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"bool"}],"name":"enableMasterTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"masterTransfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"},{"name":"_parentToken","type":"address"},{"name":"_parentSnapShotBlock","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"cloneToken","type":"address"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","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"}]

6060604052600d805461ffff1916905534156200001b57600080fd5b60405162001cb038038062001cb08339810160405280805191906020018051919060200180519190602001805182019190602001805190910190505b5b60008054600160a060020a03191633600160a060020a03161790555b60028054600160a060020a03808816600160a060020a031992831617909255600180549287169290911691909117905560078390556003828051620000be92916020019062000147565b506004818051620000d492916020019062000147565b506006805460ff191660121790556009805461ffff191690554360085560408051908101604052600381527f302e310000000000000000000000000000000000000000000000000000000000602082015260059080516200013a92916020019062000147565b505b5050505050620001f1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018a57805160ff1916838001178555620001ba565b82800160010185558215620001ba579182015b82811115620001ba5782518255916020019190600101906200019d565b5b50620001c9929150620001cd565b5090565b620001ee91905b80821115620001c95760008155600101620001d4565b5090565b90565b611aaf80620002016000396000f3006060604052361561017a5763ffffffff60e060020a60003504166305d2035b811461018257806306fdde03146101a9578063095ea7b314610234578063128f04e71461026a578063176345141461030d57806318160ddd146103325780631a53cd901461035757806323b872dd1461037e578063313ce567146103ba5780633c2c4b5e146103e357806340c10f19146104125780634ee2cd7e1461044857806354fd4d501461047c5780635d0a7628146105075780636d16fa411461052e57806370a082311461054f578063763fd2ab146105805780637d64bcb4146105a557806380a54001146105cc57806395d89b41146105fb578063981b24d0146106865780639ed74a23146106ae578063a9059cbb14610762578063aec318f114610798578063b127326e146107b2578063bef97c87146107d9578063c5bcc4f114610800578063cae9ca5114610825578063dd62ed3e1461089e578063e77772fe146108d5578063f41e60c514610904578063f77c47911461091e575b5b600080fd5b005b341561018d57600080fd5b61019561094d565b604051901515815260200160405180910390f35b34156101b457600080fd5b6101bc610956565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023f57600080fd5b610195600160a060020a03600435166024356109f4565b604051901515815260200160405180910390f35b341561027557600080fd5b610195600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610aad95505050505050565b604051901515815260200160405180910390f35b341561031857600080fd5b610320610bd9565b60405190815260200160405180910390f35b341561033d57600080fd5b610320610bdf565b60405190815260200160405180910390f35b341561036257600080fd5b610195610bf0565b604051901515815260200160405180910390f35b341561038957600080fd5b610195600160a060020a0360043581169060243516604435610bfe565b604051901515815260200160405180910390f35b34156103c557600080fd5b6103cd610c76565b60405160ff909116815260200160405180910390f35b34156103ee57600080fd5b6103f6610c7f565b604051600160a060020a03909116815260200160405180910390f35b341561041d57600080fd5b610195600160a060020a0360043516602435610c97565b604051901515815260200160405180910390f35b341561045357600080fd5b610320600160a060020a0360043516602435610d7b565b60405190815260200160405180910390f35b341561048757600080fd5b6101bc610ec1565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561051257600080fd5b610195610f5f565b604051901515815260200160405180910390f35b341561053957600080fd5b610180600160a060020a0360043516610f92565b005b341561055a57600080fd5b610320600160a060020a0360043516610fea565b60405190815260200160405180910390f35b341561058b57600080fd5b610320610ffe565b60405190815260200160405180910390f35b34156105b057600080fd5b61019561100c565b604051901515815260200160405180910390f35b34156105d757600080fd5b6103f6611069565b604051600160a060020a03909116815260200160405180910390f35b341561060657600080fd5b6101bc611078565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561069157600080fd5b610320600435611116565b60405190815260200160405180910390f35b34156106b957600080fd5b6103f6600480359060446024803590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061120e95505050505050565b604051600160a060020a03909116815260200160405180910390f35b341561076d57600080fd5b610195600160a060020a036004351660243561142b565b604051901515815260200160405180910390f35b34156107a357600080fd5b6101806004351515611441565b005b34156107bd57600080fd5b610195611474565b604051901515815260200160405180910390f35b34156107e457600080fd5b610195611482565b604051901515815260200160405180910390f35b341561080b57600080fd5b61032061148b565b60405190815260200160405180910390f35b341561083057600080fd5b61019560048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061149195505050505050565b604051901515815260200160405180910390f35b34156108a957600080fd5b610320600160a060020a03600435811690602435166115a5565b60405190815260200160405180910390f35b34156108e057600080fd5b6103f66115d2565b604051600160a060020a03909116815260200160405180910390f35b341561090f57600080fd5b61018060043515156115e1565b005b341561092957600080fd5b6103f661160f565b604051600160a060020a03909116815260200160405180910390f35b600d5460ff1681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b60095460009060ff161515610a0857600080fd5b811580610a385750600160a060020a033381166000908152600b6020908152604080832093871683529290522054155b1515610a4357600080fd5b600160a060020a033381166000818152600b6020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60008054819033600160a060020a03908116911614610acb57600080fd5b600d54610100900460ff1615610ae057600080fd5b5060005b8351811015610bb757610b45600a6000868481518110610b0057fe5b90602001906020020151600160a060020a0316600160a060020a03168152602001908152602001600020848381518110610b3657fe5b9060200190602002015161161e565b838181518110610b5157fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110610b9357fe5b9060200190602002015160405190815260200160405180910390a35b600101610ae4565b610bcc600c6917cc7ef452b68253876061161e565b600191505b5b5092915050565b60085481565b6000610bea43611116565b90505b90565b600d54610100900460ff1681565b600160a060020a038084166000908152600b602090815260408083203390941683529290529081205482901015610c3457600080fd5b600160a060020a038085166000908152600b602090815260408083203390941683529290522080548390039055610c6c848484611721565b90505b9392505050565b60065460ff1681565b73740c588c5556e523981115e587892be0961853b881565b600080548190819033600160a060020a03908116911614610cb757600080fd5b600d5460ff1615610cc757600080fd5b610ccf610bdf565b9150610cda85610fea565b905083820182901015610cec57600080fd5b83810181901015610cfc57600080fd5b610d09600c85840161161e565b600160a060020a0385166000908152600a60205260409020610d2d9082860161161e565b84600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b5b5b505092915050565b600160a060020a0382166000908152600a60205260408120541580610ddb5750600160a060020a0383166000908152600a6020526040812080548492908110610dc057fe5b906000526020600020900160005b50546001608060020a0316115b15610e9157600154600160a060020a031615610e8457600154600754600160a060020a0390911690634ee2cd7e908590610e169086906118aa565b60006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e6257600080fd5b6102c65a03f11515610e7357600080fd5b505050604051805190509050610aa7565b506000610aa7565b610aa7565b600160a060020a0383166000908152600a60205260409020610eb390836118c4565b9050610aa7565b5b92915050565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b6000805433600160a060020a03908116911614610f7b57600080fd5b50600d805461ff00191661010017905560015b5b90565b60005433600160a060020a03908116911614610fad57600080fd5b600160a060020a03811615610fe5576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000610ff68243610d7b565b90505b919050565b6917cc7ef452b68253876081565b6000805433600160a060020a0390811691161461102857600080fd5b600d805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600154600160a060020a031681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b600c54600090158061114f575081600c600081548110151561113457fe5b906000526020600020900160005b50546001608060020a0316115b156111f657600154600160a060020a0316156111e957600154600754600160a060020a039091169063981b24d0906111889085906118aa565b60006040516020015260405160e060020a63ffffffff84160281526004810191909152602401602060405180830381600087803b15156111c757600080fd5b6102c65a03f115156111d857600080fd5b505050604051805190509050610ff9565b506000610ff9565b610ff9565b611201600c836118c4565b9050610ff9565b5b919050565b60008084151561121c574394505b43851115611228574394505b600254600160a060020a03166359b58dba308787876000604051602001526040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156112b85780820151818401525b60200161129f565b50505050905090810190601f1680156112e55780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561131c5780820151818401525b602001611303565b50505050905090810190601f1680156113495780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b151561136b57600080fd5b6102c65a03f1151561137c57600080fd5b5050506040518051915050600160a060020a038116636d16fa413360405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b15156113d557600080fd5b6102c65a03f115156113e657600080fd5b50505080600160a060020a03167ff30000f977bee4f7df8246f69a4ba66f2d5be05d1fdaa0f0044d24fc52748b0060405160405180910390a28091505b509392505050565b6000611438338484611721565b90505b92915050565b60005433600160a060020a0390811691161461145c57600080fd5b6009805461ff001916610100831515021790555b5b50565b600954610100900460ff1681565b60095460ff1681565b60075481565b600061149d84846109f4565b5083600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156115375780820151818401525b60200161151e565b50505050905090810190601f1680156115645780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561158557600080fd5b6102c65a03f1151561159657600080fd5b505050600190505b9392505050565b600160a060020a038083166000908152600b60209081526040808320938516835292905220545b92915050565b600254600160a060020a031681565b60005433600160a060020a039081169116146115fc57600080fd5b6009805460ff19168215151790555b5b50565b600054600160a060020a031681565b81546000908190158061165b5750835443908590600019810190811061164057fe5b906000526020600020900160005b50546001608060020a0316105b156116d157835484906116718260018301611a38565b8154811061167b57fe5b906000526020600020900160005b5080546001608060020a03858116700100000000000000000000000000000000024382166fffffffffffffffffffffffffffffffff199093169290921716178155915061171a565b8354849060001981019081106116e357fe5b906000526020600020900160005b5080546001608060020a0380861670010000000000000000000000000000000002911617815590505b5b50505050565b6000808033600160a060020a031673740c588c5556e523981115e587892be0961853b81461175f5760095460ff16151561175a57600080fd5b611775565b600954610100900460ff16151561177557600080fd5b5b60095460ff16151561178757600080fd5b6000841161179457600080fd5b6007544390106117a357600080fd5b600160a060020a038516158015906117cd575030600160a060020a031685600160a060020a031614155b15156117d857600080fd5b6117e28643610d7b565b9150838210156117f157600080fd5b600160a060020a0386166000908152600a602052604090206118159085840361161e565b61181f8543610d7b565b90508381018190101561183157600080fd5b600160a060020a0385166000908152600a602052604090206118559082860161161e565b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b60008183106118b95781611438565b825b90505b92915050565b6000806000808580549050600014156118e05760009350611a2f565b8554869060001981019081106118f257fe5b906000526020600020900160005b50546001608060020a031685106119575785548690600019810190811061192357fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a03169350611a2f565b85600081548110151561196657fe5b906000526020600020900160005b50546001608060020a031685101561198f5760009350611a2f565b8554600093506000190191505b828211156119f15760026001838501015b0490508486828154811015156119bf57fe5b906000526020600020900160005b50546001608060020a0316116119e5578092506119ec565b6001810391505b61199c565b85838154811015156119ff57fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a031693505b50505092915050565b815481835581811511611a5c57600083815260209020611a5c918101908301611a62565b5b505050565b610bed91905b80821115611a7c5760008155600101611a68565b5090565b905600a165627a7a72305820a4c7c42dc78a643fc3da7e3aa38db8ce24d76c4489c6745c8753a6a05367cf24002900000000000000000000000025d0df0fd401743369d72bc7dcf347bbe3c668a50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a50726f6f6620546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095052465420546573740000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052361561017a5763ffffffff60e060020a60003504166305d2035b811461018257806306fdde03146101a9578063095ea7b314610234578063128f04e71461026a578063176345141461030d57806318160ddd146103325780631a53cd901461035757806323b872dd1461037e578063313ce567146103ba5780633c2c4b5e146103e357806340c10f19146104125780634ee2cd7e1461044857806354fd4d501461047c5780635d0a7628146105075780636d16fa411461052e57806370a082311461054f578063763fd2ab146105805780637d64bcb4146105a557806380a54001146105cc57806395d89b41146105fb578063981b24d0146106865780639ed74a23146106ae578063a9059cbb14610762578063aec318f114610798578063b127326e146107b2578063bef97c87146107d9578063c5bcc4f114610800578063cae9ca5114610825578063dd62ed3e1461089e578063e77772fe146108d5578063f41e60c514610904578063f77c47911461091e575b5b600080fd5b005b341561018d57600080fd5b61019561094d565b604051901515815260200160405180910390f35b34156101b457600080fd5b6101bc610956565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023f57600080fd5b610195600160a060020a03600435166024356109f4565b604051901515815260200160405180910390f35b341561027557600080fd5b610195600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610aad95505050505050565b604051901515815260200160405180910390f35b341561031857600080fd5b610320610bd9565b60405190815260200160405180910390f35b341561033d57600080fd5b610320610bdf565b60405190815260200160405180910390f35b341561036257600080fd5b610195610bf0565b604051901515815260200160405180910390f35b341561038957600080fd5b610195600160a060020a0360043581169060243516604435610bfe565b604051901515815260200160405180910390f35b34156103c557600080fd5b6103cd610c76565b60405160ff909116815260200160405180910390f35b34156103ee57600080fd5b6103f6610c7f565b604051600160a060020a03909116815260200160405180910390f35b341561041d57600080fd5b610195600160a060020a0360043516602435610c97565b604051901515815260200160405180910390f35b341561045357600080fd5b610320600160a060020a0360043516602435610d7b565b60405190815260200160405180910390f35b341561048757600080fd5b6101bc610ec1565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561051257600080fd5b610195610f5f565b604051901515815260200160405180910390f35b341561053957600080fd5b610180600160a060020a0360043516610f92565b005b341561055a57600080fd5b610320600160a060020a0360043516610fea565b60405190815260200160405180910390f35b341561058b57600080fd5b610320610ffe565b60405190815260200160405180910390f35b34156105b057600080fd5b61019561100c565b604051901515815260200160405180910390f35b34156105d757600080fd5b6103f6611069565b604051600160a060020a03909116815260200160405180910390f35b341561060657600080fd5b6101bc611078565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561069157600080fd5b610320600435611116565b60405190815260200160405180910390f35b34156106b957600080fd5b6103f6600480359060446024803590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061120e95505050505050565b604051600160a060020a03909116815260200160405180910390f35b341561076d57600080fd5b610195600160a060020a036004351660243561142b565b604051901515815260200160405180910390f35b34156107a357600080fd5b6101806004351515611441565b005b34156107bd57600080fd5b610195611474565b604051901515815260200160405180910390f35b34156107e457600080fd5b610195611482565b604051901515815260200160405180910390f35b341561080b57600080fd5b61032061148b565b60405190815260200160405180910390f35b341561083057600080fd5b61019560048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061149195505050505050565b604051901515815260200160405180910390f35b34156108a957600080fd5b610320600160a060020a03600435811690602435166115a5565b60405190815260200160405180910390f35b34156108e057600080fd5b6103f66115d2565b604051600160a060020a03909116815260200160405180910390f35b341561090f57600080fd5b61018060043515156115e1565b005b341561092957600080fd5b6103f661160f565b604051600160a060020a03909116815260200160405180910390f35b600d5460ff1681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b60095460009060ff161515610a0857600080fd5b811580610a385750600160a060020a033381166000908152600b6020908152604080832093871683529290522054155b1515610a4357600080fd5b600160a060020a033381166000818152600b6020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60008054819033600160a060020a03908116911614610acb57600080fd5b600d54610100900460ff1615610ae057600080fd5b5060005b8351811015610bb757610b45600a6000868481518110610b0057fe5b90602001906020020151600160a060020a0316600160a060020a03168152602001908152602001600020848381518110610b3657fe5b9060200190602002015161161e565b838181518110610b5157fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110610b9357fe5b9060200190602002015160405190815260200160405180910390a35b600101610ae4565b610bcc600c6917cc7ef452b68253876061161e565b600191505b5b5092915050565b60085481565b6000610bea43611116565b90505b90565b600d54610100900460ff1681565b600160a060020a038084166000908152600b602090815260408083203390941683529290529081205482901015610c3457600080fd5b600160a060020a038085166000908152600b602090815260408083203390941683529290522080548390039055610c6c848484611721565b90505b9392505050565b60065460ff1681565b73740c588c5556e523981115e587892be0961853b881565b600080548190819033600160a060020a03908116911614610cb757600080fd5b600d5460ff1615610cc757600080fd5b610ccf610bdf565b9150610cda85610fea565b905083820182901015610cec57600080fd5b83810181901015610cfc57600080fd5b610d09600c85840161161e565b600160a060020a0385166000908152600a60205260409020610d2d9082860161161e565b84600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b5b5b505092915050565b600160a060020a0382166000908152600a60205260408120541580610ddb5750600160a060020a0383166000908152600a6020526040812080548492908110610dc057fe5b906000526020600020900160005b50546001608060020a0316115b15610e9157600154600160a060020a031615610e8457600154600754600160a060020a0390911690634ee2cd7e908590610e169086906118aa565b60006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e6257600080fd5b6102c65a03f11515610e7357600080fd5b505050604051805190509050610aa7565b506000610aa7565b610aa7565b600160a060020a0383166000908152600a60205260409020610eb390836118c4565b9050610aa7565b5b92915050565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b6000805433600160a060020a03908116911614610f7b57600080fd5b50600d805461ff00191661010017905560015b5b90565b60005433600160a060020a03908116911614610fad57600080fd5b600160a060020a03811615610fe5576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000610ff68243610d7b565b90505b919050565b6917cc7ef452b68253876081565b6000805433600160a060020a0390811691161461102857600080fd5b600d805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600154600160a060020a031681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b600c54600090158061114f575081600c600081548110151561113457fe5b906000526020600020900160005b50546001608060020a0316115b156111f657600154600160a060020a0316156111e957600154600754600160a060020a039091169063981b24d0906111889085906118aa565b60006040516020015260405160e060020a63ffffffff84160281526004810191909152602401602060405180830381600087803b15156111c757600080fd5b6102c65a03f115156111d857600080fd5b505050604051805190509050610ff9565b506000610ff9565b610ff9565b611201600c836118c4565b9050610ff9565b5b919050565b60008084151561121c574394505b43851115611228574394505b600254600160a060020a03166359b58dba308787876000604051602001526040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156112b85780820151818401525b60200161129f565b50505050905090810190601f1680156112e55780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561131c5780820151818401525b602001611303565b50505050905090810190601f1680156113495780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b151561136b57600080fd5b6102c65a03f1151561137c57600080fd5b5050506040518051915050600160a060020a038116636d16fa413360405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b15156113d557600080fd5b6102c65a03f115156113e657600080fd5b50505080600160a060020a03167ff30000f977bee4f7df8246f69a4ba66f2d5be05d1fdaa0f0044d24fc52748b0060405160405180910390a28091505b509392505050565b6000611438338484611721565b90505b92915050565b60005433600160a060020a0390811691161461145c57600080fd5b6009805461ff001916610100831515021790555b5b50565b600954610100900460ff1681565b60095460ff1681565b60075481565b600061149d84846109f4565b5083600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156115375780820151818401525b60200161151e565b50505050905090810190601f1680156115645780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561158557600080fd5b6102c65a03f1151561159657600080fd5b505050600190505b9392505050565b600160a060020a038083166000908152600b60209081526040808320938516835292905220545b92915050565b600254600160a060020a031681565b60005433600160a060020a039081169116146115fc57600080fd5b6009805460ff19168215151790555b5b50565b600054600160a060020a031681565b81546000908190158061165b5750835443908590600019810190811061164057fe5b906000526020600020900160005b50546001608060020a0316105b156116d157835484906116718260018301611a38565b8154811061167b57fe5b906000526020600020900160005b5080546001608060020a03858116700100000000000000000000000000000000024382166fffffffffffffffffffffffffffffffff199093169290921716178155915061171a565b8354849060001981019081106116e357fe5b906000526020600020900160005b5080546001608060020a0380861670010000000000000000000000000000000002911617815590505b5b50505050565b6000808033600160a060020a031673740c588c5556e523981115e587892be0961853b81461175f5760095460ff16151561175a57600080fd5b611775565b600954610100900460ff16151561177557600080fd5b5b60095460ff16151561178757600080fd5b6000841161179457600080fd5b6007544390106117a357600080fd5b600160a060020a038516158015906117cd575030600160a060020a031685600160a060020a031614155b15156117d857600080fd5b6117e28643610d7b565b9150838210156117f157600080fd5b600160a060020a0386166000908152600a602052604090206118159085840361161e565b61181f8543610d7b565b90508381018190101561183157600080fd5b600160a060020a0385166000908152600a602052604090206118559082860161161e565b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b60008183106118b95781611438565b825b90505b92915050565b6000806000808580549050600014156118e05760009350611a2f565b8554869060001981019081106118f257fe5b906000526020600020900160005b50546001608060020a031685106119575785548690600019810190811061192357fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a03169350611a2f565b85600081548110151561196657fe5b906000526020600020900160005b50546001608060020a031685101561198f5760009350611a2f565b8554600093506000190191505b828211156119f15760026001838501015b0490508486828154811015156119bf57fe5b906000526020600020900160005b50546001608060020a0316116119e5578092506119ec565b6001810391505b61199c565b85838154811015156119ff57fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a031693505b50505092915050565b815481835581811511611a5c57600083815260209020611a5c918101908301611a62565b5b505050565b610bed91905b80821115611a7c5760008155600101611a68565b5090565b905600a165627a7a72305820a4c7c42dc78a643fc3da7e3aa38db8ce24d76c4489c6745c8753a6a05367cf240029

Swarm Source

bzzr://a4c7c42dc78a643fc3da7e3aa38db8ce24d76c4489c6745c8753a6a05367cf24
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.