ETH Price: $2,642.11 (+1.42%)

Token

DRC (DRC)
 

Overview

Max Total Supply

2,000,000,000 DRC

Holders

3,556

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
28.88 DRC

Value
$0.00
0xfacbbef7b560b8e9be3bc19019fdf5f4804fcca5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DRCToken

Compiler Version
v0.4.19+commit.c4cbbb05

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-02-08
*/

pragma solidity ^0.4.19;

interface tokenRecipient { 

    function receiveApproval(

        address _from, 

        uint256 _value,

        address _token, 

        bytes _extraData

    ) public; 

}

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

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

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

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

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

}

contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    Unpause();
  }
}

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

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

}

contract BurnableToken is BasicToken {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public {
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        Burn(burner, _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 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];
  }

  /**
   * @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, 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;
  }

  /**
   * @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, 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 MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


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

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }
}

contract PausableToken is StandardToken, Pausable {

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

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

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

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

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

contract DRCToken is BurnableToken, MintableToken, PausableToken {    

    string public name = 'DRC Token';

    string public symbol = 'DRC';

    uint8 public decimals = 18;

    uint256 public INITIAL_SUPPLY = 1000000000000000000000000000;

    // add map for recording the accounts that will not be allowed to transfer tokens
    mapping (address => bool) public frozenAccount;
    event FrozenFunds(address _target, bool _frozen);

    /**
     * contruct the token by total amount 
     *
     * initial balance is set. 
     */
    function DRCToken() public {
        totalSupply = INITIAL_SUPPLY;
        balances[msg.sender] = totalSupply;
    }
    
    /**
     * freeze the account's balance 
     *
     * by default all the accounts will not be frozen until set freeze value as true. 
     */
    function freezeAccount(address _target, bool _freeze) onlyOwner public {
        frozenAccount[_target] = _freeze;
        FrozenFunds(_target, _freeze);
    }

  /**
   * @dev transfer token for a specified address with froze status checking
   * @param _to The address to transfer to.
   * @param _value The amount to be transferred.
   */
  function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
    require(!frozenAccount[msg.sender]);
    return super.transfer(_to, _value);
  }
  
  /**
   * @dev Transfer tokens from one address to another with checking the frozen status
   * @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 whenNotPaused returns (bool) {
    require(!frozenAccount[_from]);
    return super.transferFrom(_from, _to, _value);
  }

  /**
   * @dev transfer token for a specified address with froze status checking
   * @param _toMulti The addresses to transfer to.
   * @param _values The array of the amount to be transferred.
   */
  function transferMultiAddress(address[] _toMulti, uint256[] _values) public whenNotPaused returns (bool) {
    require(!frozenAccount[msg.sender]);
    assert(_toMulti.length == _values.length);

    uint256 i = 0;
    while ( i < _toMulti.length) {
        require(_toMulti[i] != address(0));
        require(_values[i] <= balances[msg.sender]);

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_values[i]);
        balances[_toMulti[i]] = balances[_toMulti[i]].add(_values[i]);
        Transfer(msg.sender, _toMulti[i], _values[i]);

        i = i.add(1);
    }

    return true;
  }

  /**
   * @dev Transfer tokens from one address to another with checking the frozen status
   * @param _from address The address which you want to send tokens from
   * @param _toMulti address[] The addresses which you want to transfer to in boundle
   * @param _values uint256[] the array of amount of tokens to be transferred
   */
  function transferMultiAddressFrom(address _from, address[] _toMulti, uint256[] _values) public whenNotPaused returns (bool) {
    require(!frozenAccount[_from]);
    assert(_toMulti.length == _values.length);
    
    uint256 i = 0;
    while ( i < _toMulti.length) {
        require(_toMulti[i] != address(0));
        require(_values[i] <= balances[_from]);
        require(_values[i] <= allowed[_from][msg.sender]);

        // SafeMath.sub will throw if there is not enough balance.
        balances[_from] = balances[_from].sub(_values[i]);
        balances[_toMulti[i]] = balances[_toMulti[i]].add(_values[i]);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_values[i]);
        Transfer(_from, _toMulti[i], _values[i]);

        i = i.add(1);
    }

    return true;
  }
  
    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) whenNotPaused public {
        super.burn(_value);
    }

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

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint whenNotPaused public returns (bool) {
      return super.mint(_to, _amount);
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint whenNotPaused public returns (bool) {
      return super.finishMinting();
  }


    /**

     * Set allowance for other address and notify

     *

     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it

     *

     * @param _spender The address authorized to spend

     * @param _value the max amount they can spend

     * @param _extraData some extra information to send to the approved contract

     */

    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public whenNotPaused returns (bool success) {

        tokenRecipient spender = tokenRecipient(_spender);

        if (approve(_spender, _value)) {

            spender.receiveApproval(msg.sender, _value, this, _extraData);

            return true;

        }

    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_toMulti","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"transferMultiAddressFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toMulti","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"transferMultiAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"_target","type":"address"},{"name":"_freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_target","type":"address"},{"indexed":false,"name":"_frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"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":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"}]

606060409081526003805460a060020a61ffff02191690558051908101604052600981527f44524320546f6b656e0000000000000000000000000000000000000000000000602082015260049080516200005e9291602001906200010c565b5060408051908101604052600381527f445243000000000000000000000000000000000000000000000000000000000060208201526005908051620000a89291602001906200010c565b506006805460ff191660121790556b033b2e3c9fd0803ce80000006007553415620000d257600080fd5b60038054600160a060020a03191633600160a060020a031690811790915560075460008181559182526001602052604090912055620001b1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014f57805160ff19168380011785556200017f565b828001600101855582156200017f579182015b828111156200017f57825182559160200191906001019062000162565b506200018d92915062000191565b5090565b620001ae91905b808211156200018d576000815560010162000198565b90565b611ac280620001c16000396000f30060606040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016357806306fdde031461018a578063095ea7b31461021457806318160ddd1461023657806323b872dd1461025b5780632ff2e9dc14610283578063313ce567146102965780633f4ba83a146102bf57806340c10f19146102d457806342966c68146102f65780635c975abb1461030c578063661884631461031f57806370a0823114610341578063782ec0231461036057806379b4a2c7146103fd57806379cc67901461048c5780637d64bcb4146104ae5780638456cb59146104c15780638da5cb5b146104d457806395d89b4114610503578063a9059cbb14610516578063b414d4b614610538578063cae9ca5114610557578063d73dd623146105bc578063dd62ed3e146105de578063e724529c14610603578063f2fde38b14610627575b600080fd5b341561016e57600080fd5b610176610646565b604051901515815260200160405180910390f35b341561019557600080fd5b61019d610656565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d95780820151838201526020016101c1565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021f57600080fd5b610176600160a060020a03600435166024356106f4565b341561024157600080fd5b61024961071f565b60405190815260200160405180910390f35b341561026657600080fd5b610176600160a060020a0360043581169060243516604435610725565b341561028e57600080fd5b610249610778565b34156102a157600080fd5b6102a961077e565b60405160ff909116815260200160405180910390f35b34156102ca57600080fd5b6102d2610787565b005b34156102df57600080fd5b610176600160a060020a0360043516602435610807565b341561030157600080fd5b6102d260043561085d565b341561031757600080fd5b610176610880565b341561032a57600080fd5b610176600160a060020a0360043516602435610890565b341561034c57600080fd5b610249600160a060020a03600435166108b4565b341561036b57600080fd5b61017660048035600160a060020a0316906044602480359081019083013580602080820201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506108cf95505050505050565b341561040857600080fd5b610176600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610bb295505050505050565b341561049757600080fd5b610176600160a060020a0360043516602435610d8d565b34156104b957600080fd5b610176610ef2565b34156104cc57600080fd5b6102d2610f4b565b34156104df57600080fd5b6104e7610fd0565b604051600160a060020a03909116815260200160405180910390f35b341561050e57600080fd5b61019d610fdf565b341561052157600080fd5b610176600160a060020a036004351660243561104a565b341561054357600080fd5b610176600160a060020a0360043516611094565b341561056257600080fd5b61017660048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506110a995505050505050565b34156105c757600080fd5b610176600160a060020a03600435166024356111f2565b34156105e957600080fd5b610249600160a060020a0360043581169060243516611216565b341561060e57600080fd5b6102d2600160a060020a03600435166024351515611241565b341561063257600080fd5b6102d2600160a060020a03600435166112cd565b60035460a060020a900460ff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b505050505081565b60035460009060a860020a900460ff161561070e57600080fd5b6107188383611368565b9392505050565b60005481565b60035460009060a860020a900460ff161561073f57600080fd5b600160a060020a03841660009081526008602052604090205460ff161561076557600080fd5b6107708484846113d4565b949350505050565b60075481565b60065460ff1681565b60035433600160a060020a039081169116146107a257600080fd5b60035460a860020a900460ff1615156107ba57600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460009033600160a060020a0390811691161461082557600080fd5b60035460a060020a900460ff161561083c57600080fd5b60035460a860020a900460ff161561085357600080fd5b61071883836113f9565b60035460a860020a900460ff161561087457600080fd5b61087d816114f4565b50565b60035460a860020a900460ff1681565b60035460009060a860020a900460ff16156108aa57600080fd5b61071883836115af565b600160a060020a031660009081526001602052604090205490565b600354600090819060a860020a900460ff16156108eb57600080fd5b600160a060020a03851660009081526008602052604090205460ff161561091157600080fd5b825184511461091c57fe5b5060005b8351811015610ba557600084828151811061093757fe5b90602001906020020151600160a060020a0316141561095557600080fd5b600160a060020a03851660009081526001602052604090205483828151811061097a57fe5b90602001906020020151111561098f57600080fd5b600160a060020a03808616600090815260026020908152604080832033909416835292905220548382815181106109c257fe5b9060200190602002015111156109d757600080fd5b610a158382815181106109e657fe5b90602001906020020151600160a060020a0387166000908152600160205260409020549063ffffffff6116a916565b600160a060020a038616600090815260016020526040902055610a87838281518110610a3d57fe5b9060200190602002015160016000878581518110610a5757fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff6116bb16565b60016000868481518110610a9757fe5b90602001906020020151600160a060020a03168152602081019190915260400160002055610b07838281518110610aca57fe5b90602001906020020151600160a060020a03808816600090815260026020908152604080832033909416835292905220549063ffffffff6116a916565b600160a060020a0380871660009081526002602090815260408083203390941683529290522055838181518110610b3a57fe5b90602001906020020151600160a060020a031685600160a060020a0316600080516020611a77833981519152858481518110610b7257fe5b9060200190602002015160405190815260200160405180910390a3610b9e81600163ffffffff6116bb16565b9050610920565b600191505b509392505050565b600354600090819060a860020a900460ff1615610bce57600080fd5b600160a060020a03331660009081526008602052604090205460ff1615610bf457600080fd5b8251845114610bff57fe5b5060005b8351811015610d83576000848281518110610c1a57fe5b90602001906020020151600160a060020a03161415610c3857600080fd5b600160a060020a033316600090815260016020526040902054838281518110610c5d57fe5b906020019060200201511115610c7257600080fd5b610cb0838281518110610c8157fe5b90602001906020020151600160a060020a0333166000908152600160205260409020549063ffffffff6116a916565b600160a060020a033316600090815260016020526040902055610cd8838281518110610a3d57fe5b60016000868481518110610ce857fe5b90602001906020020151600160a060020a03168152602081019190915260400160002055838181518110610d1857fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020611a77833981519152858481518110610d5057fe5b9060200190602002015160405190815260200160405180910390a3610d7c81600163ffffffff6116bb16565b9050610c03565b5060019392505050565b60035460009060a860020a900460ff1615610da757600080fd5b600160a060020a03831660009081526001602052604090205482901015610dcd57600080fd5b600160a060020a0380841660009081526002602090815260408083203390941683529290522054821115610e0057600080fd5b600160a060020a038316600090815260016020526040902054610e29908363ffffffff6116a916565b600160a060020a0380851660009081526001602090815260408083209490945560028152838220339093168252919091522054610e6c908363ffffffff6116a916565b600160a060020a0380851660009081526002602090815260408083203390941683529290529081209190915554610ea9908363ffffffff6116a916565b600055600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b60035460009033600160a060020a03908116911614610f1057600080fd5b60035460a060020a900460ff1615610f2757600080fd5b60035460a860020a900460ff1615610f3e57600080fd5b610f466116ca565b905090565b60035433600160a060020a03908116911614610f6657600080fd5b60035460a860020a900460ff1615610f7d57600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ec5780601f106106c1576101008083540402835291602001916106ec565b60035460009060a860020a900460ff161561106457600080fd5b600160a060020a03331660009081526008602052604090205460ff161561108a57600080fd5b6107188383611755565b60086020526000908152604090205460ff1681565b600354600090819060a860020a900460ff16156110c557600080fd5b50836110d181856106f4565b15610baa5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561118757808201518382015260200161116f565b50505050905090810190601f1680156111b45780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15156111d557600080fd5b6102c65a03f115156111e657600080fd5b50505060019150610baa565b60035460009060a860020a900460ff161561120c57600080fd5b6107188383611779565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461125c57600080fd5b600160a060020a03821660009081526008602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60035433600160a060020a039081169116146112e857600080fd5b600160a060020a03811615156112fd57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035460009060a860020a900460ff16156113ee57600080fd5b61077084848461181d565b60035460009033600160a060020a0390811691161461141757600080fd5b60035460a060020a900460ff161561142e57600080fd5b600054611441908363ffffffff6116bb16565b6000908155600160a060020a03841681526001602052604090205461146c908363ffffffff6116bb16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a0383166000600080516020611a778339815191528460405190815260200160405180910390a350600192915050565b600160a060020a03331660009081526001602052604081205482111561151957600080fd5b5033600160a060020a03811660009081526001602052604090205461153e90836116a9565b600160a060020a0382166000908152600160205260408120919091555461156b908363ffffffff6116a916565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561160c57600160a060020a033381166000908152600260209081526040808320938816835292905290812055611643565b61161c818463ffffffff6116a916565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000828211156116b557fe5b50900390565b60008282018381101561071857fe5b60035460009033600160a060020a039081169116146116e857600080fd5b60035460a060020a900460ff16156116ff57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035460009060a860020a900460ff161561176f57600080fd5b610718838361198d565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546117b1908363ffffffff6116bb16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b6000600160a060020a038316151561183457600080fd5b600160a060020a03841660009081526001602052604090205482111561185957600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561188c57600080fd5b600160a060020a0384166000908152600160205260409020546118b5908363ffffffff6116a916565b600160a060020a0380861660009081526001602052604080822093909355908516815220546118ea908363ffffffff6116bb16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054611932908363ffffffff6116a916565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020611a778339815191529085905190815260200160405180910390a35060019392505050565b6000600160a060020a03831615156119a457600080fd5b600160a060020a0333166000908152600160205260409020548211156119c957600080fd5b600160a060020a0333166000908152600160205260409020546119f2908363ffffffff6116a916565b600160a060020a033381166000908152600160205260408082209390935590851681522054611a27908363ffffffff6116bb16565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020611a778339815191529085905190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200f4df3ca92eb495364aea9a8b9bb9387f508e65306a494cfb2c856529f6c6ad90029

Deployed Bytecode

0x60606040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016357806306fdde031461018a578063095ea7b31461021457806318160ddd1461023657806323b872dd1461025b5780632ff2e9dc14610283578063313ce567146102965780633f4ba83a146102bf57806340c10f19146102d457806342966c68146102f65780635c975abb1461030c578063661884631461031f57806370a0823114610341578063782ec0231461036057806379b4a2c7146103fd57806379cc67901461048c5780637d64bcb4146104ae5780638456cb59146104c15780638da5cb5b146104d457806395d89b4114610503578063a9059cbb14610516578063b414d4b614610538578063cae9ca5114610557578063d73dd623146105bc578063dd62ed3e146105de578063e724529c14610603578063f2fde38b14610627575b600080fd5b341561016e57600080fd5b610176610646565b604051901515815260200160405180910390f35b341561019557600080fd5b61019d610656565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d95780820151838201526020016101c1565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021f57600080fd5b610176600160a060020a03600435166024356106f4565b341561024157600080fd5b61024961071f565b60405190815260200160405180910390f35b341561026657600080fd5b610176600160a060020a0360043581169060243516604435610725565b341561028e57600080fd5b610249610778565b34156102a157600080fd5b6102a961077e565b60405160ff909116815260200160405180910390f35b34156102ca57600080fd5b6102d2610787565b005b34156102df57600080fd5b610176600160a060020a0360043516602435610807565b341561030157600080fd5b6102d260043561085d565b341561031757600080fd5b610176610880565b341561032a57600080fd5b610176600160a060020a0360043516602435610890565b341561034c57600080fd5b610249600160a060020a03600435166108b4565b341561036b57600080fd5b61017660048035600160a060020a0316906044602480359081019083013580602080820201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506108cf95505050505050565b341561040857600080fd5b610176600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610bb295505050505050565b341561049757600080fd5b610176600160a060020a0360043516602435610d8d565b34156104b957600080fd5b610176610ef2565b34156104cc57600080fd5b6102d2610f4b565b34156104df57600080fd5b6104e7610fd0565b604051600160a060020a03909116815260200160405180910390f35b341561050e57600080fd5b61019d610fdf565b341561052157600080fd5b610176600160a060020a036004351660243561104a565b341561054357600080fd5b610176600160a060020a0360043516611094565b341561056257600080fd5b61017660048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506110a995505050505050565b34156105c757600080fd5b610176600160a060020a03600435166024356111f2565b34156105e957600080fd5b610249600160a060020a0360043581169060243516611216565b341561060e57600080fd5b6102d2600160a060020a03600435166024351515611241565b341561063257600080fd5b6102d2600160a060020a03600435166112cd565b60035460a060020a900460ff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b505050505081565b60035460009060a860020a900460ff161561070e57600080fd5b6107188383611368565b9392505050565b60005481565b60035460009060a860020a900460ff161561073f57600080fd5b600160a060020a03841660009081526008602052604090205460ff161561076557600080fd5b6107708484846113d4565b949350505050565b60075481565b60065460ff1681565b60035433600160a060020a039081169116146107a257600080fd5b60035460a860020a900460ff1615156107ba57600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460009033600160a060020a0390811691161461082557600080fd5b60035460a060020a900460ff161561083c57600080fd5b60035460a860020a900460ff161561085357600080fd5b61071883836113f9565b60035460a860020a900460ff161561087457600080fd5b61087d816114f4565b50565b60035460a860020a900460ff1681565b60035460009060a860020a900460ff16156108aa57600080fd5b61071883836115af565b600160a060020a031660009081526001602052604090205490565b600354600090819060a860020a900460ff16156108eb57600080fd5b600160a060020a03851660009081526008602052604090205460ff161561091157600080fd5b825184511461091c57fe5b5060005b8351811015610ba557600084828151811061093757fe5b90602001906020020151600160a060020a0316141561095557600080fd5b600160a060020a03851660009081526001602052604090205483828151811061097a57fe5b90602001906020020151111561098f57600080fd5b600160a060020a03808616600090815260026020908152604080832033909416835292905220548382815181106109c257fe5b9060200190602002015111156109d757600080fd5b610a158382815181106109e657fe5b90602001906020020151600160a060020a0387166000908152600160205260409020549063ffffffff6116a916565b600160a060020a038616600090815260016020526040902055610a87838281518110610a3d57fe5b9060200190602002015160016000878581518110610a5757fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff6116bb16565b60016000868481518110610a9757fe5b90602001906020020151600160a060020a03168152602081019190915260400160002055610b07838281518110610aca57fe5b90602001906020020151600160a060020a03808816600090815260026020908152604080832033909416835292905220549063ffffffff6116a916565b600160a060020a0380871660009081526002602090815260408083203390941683529290522055838181518110610b3a57fe5b90602001906020020151600160a060020a031685600160a060020a0316600080516020611a77833981519152858481518110610b7257fe5b9060200190602002015160405190815260200160405180910390a3610b9e81600163ffffffff6116bb16565b9050610920565b600191505b509392505050565b600354600090819060a860020a900460ff1615610bce57600080fd5b600160a060020a03331660009081526008602052604090205460ff1615610bf457600080fd5b8251845114610bff57fe5b5060005b8351811015610d83576000848281518110610c1a57fe5b90602001906020020151600160a060020a03161415610c3857600080fd5b600160a060020a033316600090815260016020526040902054838281518110610c5d57fe5b906020019060200201511115610c7257600080fd5b610cb0838281518110610c8157fe5b90602001906020020151600160a060020a0333166000908152600160205260409020549063ffffffff6116a916565b600160a060020a033316600090815260016020526040902055610cd8838281518110610a3d57fe5b60016000868481518110610ce857fe5b90602001906020020151600160a060020a03168152602081019190915260400160002055838181518110610d1857fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020611a77833981519152858481518110610d5057fe5b9060200190602002015160405190815260200160405180910390a3610d7c81600163ffffffff6116bb16565b9050610c03565b5060019392505050565b60035460009060a860020a900460ff1615610da757600080fd5b600160a060020a03831660009081526001602052604090205482901015610dcd57600080fd5b600160a060020a0380841660009081526002602090815260408083203390941683529290522054821115610e0057600080fd5b600160a060020a038316600090815260016020526040902054610e29908363ffffffff6116a916565b600160a060020a0380851660009081526001602090815260408083209490945560028152838220339093168252919091522054610e6c908363ffffffff6116a916565b600160a060020a0380851660009081526002602090815260408083203390941683529290529081209190915554610ea9908363ffffffff6116a916565b600055600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b60035460009033600160a060020a03908116911614610f1057600080fd5b60035460a060020a900460ff1615610f2757600080fd5b60035460a860020a900460ff1615610f3e57600080fd5b610f466116ca565b905090565b60035433600160a060020a03908116911614610f6657600080fd5b60035460a860020a900460ff1615610f7d57600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ec5780601f106106c1576101008083540402835291602001916106ec565b60035460009060a860020a900460ff161561106457600080fd5b600160a060020a03331660009081526008602052604090205460ff161561108a57600080fd5b6107188383611755565b60086020526000908152604090205460ff1681565b600354600090819060a860020a900460ff16156110c557600080fd5b50836110d181856106f4565b15610baa5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561118757808201518382015260200161116f565b50505050905090810190601f1680156111b45780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15156111d557600080fd5b6102c65a03f115156111e657600080fd5b50505060019150610baa565b60035460009060a860020a900460ff161561120c57600080fd5b6107188383611779565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461125c57600080fd5b600160a060020a03821660009081526008602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60035433600160a060020a039081169116146112e857600080fd5b600160a060020a03811615156112fd57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035460009060a860020a900460ff16156113ee57600080fd5b61077084848461181d565b60035460009033600160a060020a0390811691161461141757600080fd5b60035460a060020a900460ff161561142e57600080fd5b600054611441908363ffffffff6116bb16565b6000908155600160a060020a03841681526001602052604090205461146c908363ffffffff6116bb16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a0383166000600080516020611a778339815191528460405190815260200160405180910390a350600192915050565b600160a060020a03331660009081526001602052604081205482111561151957600080fd5b5033600160a060020a03811660009081526001602052604090205461153e90836116a9565b600160a060020a0382166000908152600160205260408120919091555461156b908363ffffffff6116a916565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561160c57600160a060020a033381166000908152600260209081526040808320938816835292905290812055611643565b61161c818463ffffffff6116a916565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000828211156116b557fe5b50900390565b60008282018381101561071857fe5b60035460009033600160a060020a039081169116146116e857600080fd5b60035460a060020a900460ff16156116ff57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035460009060a860020a900460ff161561176f57600080fd5b610718838361198d565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546117b1908363ffffffff6116bb16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b6000600160a060020a038316151561183457600080fd5b600160a060020a03841660009081526001602052604090205482111561185957600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561188c57600080fd5b600160a060020a0384166000908152600160205260409020546118b5908363ffffffff6116a916565b600160a060020a0380861660009081526001602052604080822093909355908516815220546118ea908363ffffffff6116bb16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054611932908363ffffffff6116a916565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020611a778339815191529085905190815260200160405180910390a35060019392505050565b6000600160a060020a03831615156119a457600080fd5b600160a060020a0333166000908152600160205260409020548211156119c957600080fd5b600160a060020a0333166000908152600160205260409020546119f2908363ffffffff6116a916565b600160a060020a033381166000908152600160205260408082209390935590851681522054611a27908363ffffffff6116bb16565b600160a060020a038085166000818152600160205260409081902093909355913390911690600080516020611a778339815191529085905190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200f4df3ca92eb495364aea9a8b9bb9387f508e65306a494cfb2c856529f6c6ad90029

Swarm Source

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