ETH Price: $2,823.74 (+7.35%)
 

Overview

Max Total Supply

290,972,500 VRH

Holders

310 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
200 VRH

Value
$0.00
0x256f437a3C8baF96761BCD54E3f93441812082a6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Virtual Rehab's evidence-based solution leverages the advancements in virtual reality, artificial intelligence, and blockchain technologies for psychological rehabilitation of vulnerable populations.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VRHToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-22
*/

pragma solidity 0.4.24;

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

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

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
    return _a / _b;
  }

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

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}

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

  mapping(address => uint256) internal balances;

  uint256 internal totalSupply_;

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

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

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

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

}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address _owner, address _spender)
    public view returns (uint256);

  function transferFrom(address _from, address _to, uint256 _value)
    public returns (bool);

  function approve(address _spender, uint256 _value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

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

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


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

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit 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;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

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

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue >= oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
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 {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // 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

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

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


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() 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 relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @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 {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */





///@title This contract enables to create multiple contract administrators.
contract CustomAdmin is Ownable {
  ///@notice List of administrators.
  mapping(address => bool) public admins;

  event AdminAdded(address indexed _address);
  event AdminRemoved(address indexed _address);

  ///@notice Validates if the sender is actually an administrator.
  modifier onlyAdmin() {
    require(admins[msg.sender] || msg.sender == owner);
    _;
  }

  ///@notice Adds the specified address to the list of administrators.
  ///@param _address The address to add to the administrator list.
  function addAdmin(address _address) external onlyAdmin {
    require(_address != address(0));
    require(!admins[_address]);

    //The owner is already an admin and cannot be added.
    require(_address != owner);

    admins[_address] = true;

    emit AdminAdded(_address);
  }

  ///@notice Adds multiple addresses to the administrator list.
  ///@param _accounts The wallet addresses to add to the administrator list.
  function addManyAdmins(address[] _accounts) external onlyAdmin {
    for(uint8 i=0; i<_accounts.length; i++) {
      address account = _accounts[i];

      ///Zero address cannot be an admin.
      ///The owner is already an admin and cannot be assigned.
      ///The address cannot be an existing admin.
      if(account != address(0) && !admins[account] && account != owner){
        admins[account] = true;

        emit AdminAdded(_accounts[i]);
      }
    }
  }

  ///@notice Removes the specified address from the list of administrators.
  ///@param _address The address to remove from the administrator list.
  function removeAdmin(address _address) external onlyAdmin {
    require(_address != address(0));
    require(admins[_address]);

    //The owner cannot be removed as admin.
    require(_address != owner);

    admins[_address] = false;
    emit AdminRemoved(_address);
  }

  function isAdmin(address _account) view public returns(bool) {
    return admins[_account] || _account == owner;
  }

  ///@notice Removes multiple addresses to the administrator list.
  ///@param _accounts The wallet addresses to remove from the administrator list.
  function removeManyAdmins(address[] _accounts) external onlyAdmin {
    for(uint8 i=0; i<_accounts.length; i++) {
      address account = _accounts[i];

      ///Zero address can neither be added or removed from this list.
      ///The owner is the super admin and cannot be removed.
      ///The address must be an existing admin in order for it to be removed.
      if(account != address(0) && admins[account] && account != owner){
        admins[account] = false;

        emit AdminRemoved(_accounts[i]);
      }
    }
  }
}

/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */








///@title This contract enables you to create pausable mechanism to stop in case of emergency.
contract CustomPausable is CustomAdmin {
  event Paused();
  event Unpaused();

  bool public paused = false;

  ///@notice Verifies whether the contract is not paused.
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  ///@notice Verifies whether the contract is paused.
  modifier whenPaused() {
    require(paused);
    _;
  }

  ///@notice Pauses the contract.
  function pause() external onlyAdmin whenNotPaused {
    paused = true;
    emit Paused();
  }

  ///@notice Unpauses the contract and returns to normal state.
  function unpause() external onlyAdmin whenPaused {
    paused = false;
    emit Unpaused();
  }
}

/*
Copyright 2018 Virtual Rehab (http://virtualrehab.co)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/







///@title Virtual Rehab Token (VRH) ERC20 Token Contract
///@author Binod Nirvan, Subramanian Venkatesan (http://virtualrehab.co)
///@notice The Virtual Rehab Token (VRH) has been created as a centralized currency
///to be used within the Virtual Rehab network. Users will be able to purchase and sell
///VRH tokens in exchanges. The token follows the standards of Ethereum ERC20 Standard token.
///Its design follows the widely adopted token implementation standards.
///This allows token holders to easily store and manage their VRH tokens using existing solutions
///including ERC20-compatible Ethereum wallets. The VRH Token is a utility token
///and is core to Virtual Rehab’s end-to-end operations.
///
///VRH utility use cases include:
///1. Order & Download Virtual Rehab programs through the Virtual Rehab Online Portal
///2. Request further analysis, conducted by Virtual Rehab's unique expert system (which leverages Artificial Intelligence), of the executed programs
///3. Receive incentives (VRH rewards) for seeking help and counselling from psychologists, therapists, or medical doctors
///4. Allows users to pay for services received at the Virtual Rehab Therapy Center
contract VRHToken is StandardToken, CustomPausable, BurnableToken {
  uint8 public constant decimals = 18;
  string public constant name = "Virtual Rehab";
  string public constant symbol = "VRH";

  uint public constant MAX_SUPPLY = 400000000 * (10 ** uint256(decimals));
  uint public constant INITIAL_SUPPLY = (400000000 - 1650000 - 2085000 - 60000000) * (10 ** uint256(decimals));

  bool public released = false;
  uint public ICOEndDate;


  mapping(bytes32 => bool) private mintingList;

  event Mint(address indexed to, uint256 amount);
  event BulkTransferPerformed(address[] _destinations, uint256[] _amounts);
  event TokenReleased(bool _state);
  event ICOEndDateSet(uint256 _date);

  ///@notice Checks if the supplied address is able to perform transfers.
  ///@param _from The address to check against if the transfer is allowed.
  modifier canTransfer(address _from) {
    if(paused || !released) {
      if(!isAdmin(_from)) {
        revert();
      }
    }

    _;
  }

  ///@notice Computes keccak256 hash of the supplied value.
  ///@param _key The string value to compute hash from.
  function computeHash(string _key) private pure returns(bytes32){
    return keccak256(abi.encodePacked(_key));
  }

  ///@notice Checks if the minting for the supplied key was already performed.
  ///@param _key The key or category name of minting.
  modifier whenNotMinted(string _key) {
    if(mintingList[computeHash(_key)]) {
      revert();
    }

    _;
  }

  constructor() public {
    mintTokens(msg.sender, INITIAL_SUPPLY);
  }



  ///@notice This function enables token transfers for everyone.
  ///Can only be enabled after the end of the ICO.
  function releaseTokenForTransfer() public onlyAdmin whenNotPaused {
    require(!released);

    released = true;

    emit TokenReleased(released);
  }

  ///@notice This function disables token transfers for everyone.
  function disableTokenTransfers() public onlyAdmin whenNotPaused {
    require(released);

    released = false;

    emit TokenReleased(released);
  }

  ///@notice This function enables the whitelisted application (internal application) to set the ICO end date and can only be used once.
  ///@param _date The date to set as the ICO end date.
  function setICOEndDate(uint _date) public onlyAdmin {
    require(ICOEndDate == 0);
    require(_date > now);

    ICOEndDate = _date;

    emit ICOEndDateSet(_date);
  }

  ///@notice Mints the supplied value of the tokens to the destination address.
  //Minting cannot be performed any further once the maximum supply is reached.
  //This function is private and cannot be used by anyone except for this contract.
  ///@param _to The address which will receive the minted tokens.
  ///@param _value The amount of tokens to mint.
  function mintTokens(address _to, uint _value) private {
    require(_to != address(0));
    require(totalSupply_.add(_value) <= MAX_SUPPLY);

    balances[_to] = balances[_to].add(_value);
    totalSupply_ = totalSupply_.add(_value);

    emit Mint(_to, _value);
    emit Transfer(address(0), _to, _value);
  }

  ///@notice Mints the tokens only once against the supplied key (category).
  ///@param _key The key or the category of the allocation to mint the tokens for.
  ///@param _to The address receiving the minted tokens.
  ///@param _amount The amount of tokens to mint.
  function mintOnce(string _key, address _to, uint256 _amount) private whenNotPaused whenNotMinted(_key) {
    _amount = _amount * (10 ** uint256(decimals));
    mintTokens(_to, _amount);
    mintingList[computeHash(_key)] = true;
  }

  ///@notice Mints the below-mentioned amount of tokens allocated to the Virtual Rehab advisors.
  //The tokens are only available to the advisors after 1 year of the ICO end.
  function mintTokensForAdvisors() public onlyAdmin {
    require(ICOEndDate != 0);

    require(now > (ICOEndDate + 365 days));
    mintOnce("advisors", msg.sender, 1650000);
  }

  ///@notice Mints the below-mentioned amount of tokens allocated to the Virtual Rehab founders.
  //The tokens are only available to the founders after 2 year of the ICO end.
  function mintTokensForFounders() public onlyAdmin {
    require(ICOEndDate != 0);
    require(now > (ICOEndDate + 720 days));

    mintOnce("founders", msg.sender, 60000000);
  }

  ///@notice Mints the below-mentioned amount of tokens allocated to Virtual Rehab services.
  //The tokens are only available to the services after 1 year of the ICO end.
  function mintTokensForServices() public onlyAdmin  {
    require(ICOEndDate != 0);
    require(now > (ICOEndDate + 60 days));

    mintOnce("services", msg.sender, 2085000);
  }

  ///@notice Transfers the specified value of VRH tokens to the destination address.
  //Transfers can only happen when the tranfer state is enabled.
  //Transfer state can only be enabled after the end of the crowdsale.
  ///@param _to The destination wallet address to transfer funds to.
  ///@param _value The amount of tokens to send to the destination address.
  function transfer(address _to, uint256 _value) public canTransfer(msg.sender) returns (bool) {
    require(_to != address(0));
    return super.transfer(_to, _value);
  }

  ///@notice Transfers tokens from a specified wallet address.
  ///@dev This function is overriden to leverage transfer state feature.
  ///@param _from The address to transfer funds from.
  ///@param _to The address to transfer funds to.
  ///@param _value The amount of tokens to transfer.
  function transferFrom(address _from, address _to, uint256 _value) canTransfer(_from) public returns (bool) {
    require(_to != address(0));
    return super.transferFrom(_from, _to, _value);
  }

  ///@notice Approves a wallet address to spend on behalf of the sender.
  ///@dev This function is overriden to leverage transfer state feature.
  ///@param _spender The address which is approved to spend on behalf of the sender.
  ///@param _value The amount of tokens approve to spend.
  function approve(address _spender, uint256 _value) public canTransfer(msg.sender) returns (bool) {
    require(_spender != address(0));
    return super.approve(_spender, _value);
  }


  ///@notice Increases the approval of the spender.
  ///@dev This function is overriden to leverage transfer state feature.
  ///@param _spender The address which is approved to spend on behalf of the sender.
  ///@param _addedValue The added amount of tokens approved to spend.
  function increaseApproval(address _spender, uint256 _addedValue) public canTransfer(msg.sender) returns(bool) {
    require(_spender != address(0));
    return super.increaseApproval(_spender, _addedValue);
  }

  ///@notice Decreases the approval of the spender.
  ///@dev This function is overriden to leverage transfer state feature.
  ///@param _spender The address of the spender to decrease the allocation from.
  ///@param _subtractedValue The amount of tokens to subtract from the approved allocation.
  function decreaseApproval(address _spender, uint256 _subtractedValue) public canTransfer(msg.sender) returns (bool) {
    require(_spender != address(0));
    return super.decreaseApproval(_spender, _subtractedValue);
  }

  ///@notice Returns the sum of supplied values.
  ///@param _values The collection of values to create the sum from.
  function sumOf(uint256[] _values) private pure returns(uint256) {
    uint256 total = 0;

    for (uint256 i = 0; i < _values.length; i++) {
      total = total.add(_values[i]);
    }

    return total;
  }

  ///@notice Allows only the admins and/or whitelisted applications to perform bulk transfer operation.
  ///@param _destinations The destination wallet addresses to send funds to.
  ///@param _amounts The respective amount of fund to send to the specified addresses.
  function bulkTransfer(address[] _destinations, uint256[] _amounts) public onlyAdmin {
    require(_destinations.length == _amounts.length);

    //Saving gas by determining if the sender has enough balance
    //to post this transaction.
    uint256 requiredBalance = sumOf(_amounts);
    require(balances[msg.sender] >= requiredBalance);

    for (uint256 i = 0; i < _destinations.length; i++) {
     transfer(_destinations[i], _amounts[i]);
    }

    emit BulkTransferPerformed(_destinations, _amounts);
  }

  ///@notice Burns the coins held by the sender.
  ///@param _value The amount of coins to burn.
  ///@dev This function is overriden to leverage Pausable feature.
  function burn(uint256 _value) public whenNotPaused {
    super.burn(_value);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_destinations","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"bulkTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ICOEndDate","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":"_account","type":"address"}],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenForTransfer","outputs":[],"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":true,"inputs":[],"name":"MAX_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"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":"","type":"address"}],"name":"admins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_date","type":"uint256"}],"name":"setICOEndDate","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForAdvisors","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableTokenTransfers","outputs":[],"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":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"}],"name":"addManyAdmins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForFounders","outputs":[],"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":"_accounts","type":"address[]"}],"name":"removeManyAdmins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForServices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_destinations","type":"address[]"},{"indexed":false,"name":"_amounts","type":"uint256[]"}],"name":"BulkTransferPerformed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_state","type":"bool"}],"name":"TokenReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_date","type":"uint256"}],"name":"ICOEndDateSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"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"}]

60806040526005805461ffff191690553480156200001c57600080fd5b5060038054600160a060020a0319163390811790915562000053906b011626e22d31d9b6c3a0000064010000000062000059810204565b620001aa565b600160a060020a03821615156200006f57600080fd5b6001546b014adf4b7320334b90000000906200009a908364010000000062001a1f6200019682021704565b1115620000a657600080fd5b600160a060020a038216600090815260208190526040902054620000d9908264010000000062001a1f6200019682021704565b600160a060020a0383166000908152602081905260409020556001546200010f908264010000000062001a1f6200019682021704565b600155604080518281529051600160a060020a038416917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a2604080518281529051600160a060020a038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b81810182811015620001a457fe5b92915050565b611d4e80620001ba6000396000f3006080604052600436106101b65763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101bb578063095ea7b314610245578063153a1f3e1461027d5780631785f53c1461030d57806318160ddd1461032e57806320a0128e1461035557806323b872dd1461036a57806324d7806c1461039457806328e665ef146103b55780632ff2e9dc146103ca578063313ce567146103df57806332cb6b0c1461040a5780633f4ba83a1461041f57806342966c6814610434578063429b62e51461044c57806343e913841461046d5780635c975abb14610485578063661884631461049a57806370480275146104be57806370a08231146104df578063715018a61461050057806372c174db1461051557806377f9db331461052a5780638456cb591461053f5780638da5cb5b1461055457806395d89b4114610585578063961325211461059a578063a8e6e77b146105af578063a9059cbb146105cf578063d73dd623146105f3578063daec812814610617578063dd62ed3e1461062c578063f1bca30f14610653578063f2fde38b14610673578063f54cc2d014610694575b600080fd5b3480156101c757600080fd5b506101d06106a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020a5781810151838201526020016101f2565b50505050905090810190601f1680156102375780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025157600080fd5b50610269600160a060020a03600435166024356106e0565b604080519115158252519081900360200190f35b34801561028957600080fd5b506040805160206004803580820135838102808601850190965280855261030b95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975061073e9650505050505050565b005b34801561031957600080fd5b5061030b600160a060020a03600435166108b8565b34801561033a57600080fd5b5061034361098b565b60408051918252519081900360200190f35b34801561036157600080fd5b50610343610991565b34801561037657600080fd5b50610269600160a060020a0360043581169060243516604435610997565b3480156103a057600080fd5b50610269600160a060020a03600435166109f7565b3480156103c157600080fd5b5061030b610a31565b3480156103d657600080fd5b50610343610ad9565b3480156103eb57600080fd5b506103f4610ae9565b6040805160ff9092168252519081900360200190f35b34801561041657600080fd5b50610343610aee565b34801561042b57600080fd5b5061030b610afe565b34801561044057600080fd5b5061030b600435610b77565b34801561045857600080fd5b50610269600160a060020a0360043516610b93565b34801561047957600080fd5b5061030b600435610ba8565b34801561049157600080fd5b50610269610c2f565b3480156104a657600080fd5b50610269600160a060020a0360043516602435610c38565b3480156104ca57600080fd5b5061030b600160a060020a0360043516610c8e565b3480156104eb57600080fd5b50610343600160a060020a0360043516610d63565b34801561050c57600080fd5b5061030b610d7e565b34801561052157600080fd5b5061030b610dec565b34801561053657600080fd5b5061030b610e86565b34801561054b57600080fd5b5061030b610f2a565b34801561056057600080fd5b50610569610fa5565b60408051600160a060020a039092168252519081900360200190f35b34801561059157600080fd5b506101d0610fb4565b3480156105a657600080fd5b50610269610feb565b3480156105bb57600080fd5b5061030b6004803560248101910135610ff9565b3480156105db57600080fd5b50610269600160a060020a0360043516602435611143565b3480156105ff57600080fd5b50610269600160a060020a0360043516602435611199565b34801561062357600080fd5b5061030b6111ef565b34801561063857600080fd5b50610343600160a060020a0360043581169060243516611288565b34801561065f57600080fd5b5061030b60048035602481019101356112b3565b34801561067f57600080fd5b5061030b600160a060020a03600435166113f3565b3480156106a057600080fd5b5061030b611413565b60408051808201909152600d81527f5669727475616c20526568616200000000000000000000000000000000000000602082015281565b600554600090339060ff16806106fe5750600554610100900460ff16155b156107175761070c816109f7565b151561071757600080fd5b600160a060020a038416151561072c57600080fd5b61073684846114aa565b949350505050565b33600090815260046020526040812054819060ff16806107685750600354600160a060020a031633145b151561077357600080fd5b825184511461078157600080fd5b61078a83611510565b336000908152602081905260409020549092508211156107a957600080fd5b5060005b83518110156107f7576107ee84828151811015156107c757fe5b9060200190602002015184838151811015156107df57fe5b90602001906020020151611143565b506001016107ad565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8484604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561085e578181015183820152602001610846565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561089d578181015183820152602001610885565b5050505090500194505050505060405180910390a150505050565b3360009081526004602052604090205460ff16806108e05750600354600160a060020a031633145b15156108eb57600080fd5b600160a060020a038116151561090057600080fd5b600160a060020a03811660009081526004602052604090205460ff16151561092757600080fd5b600354600160a060020a038281169116141561094257600080fd5b600160a060020a038116600081815260046020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a250565b60015490565b60065481565b600554600090849060ff16806109b55750600554610100900460ff16155b156109ce576109c3816109f7565b15156109ce57600080fd5b600160a060020a03841615156109e357600080fd5b6109ee858585611557565b95945050505050565b600160a060020a03811660009081526004602052604081205460ff1680610a2b5750600354600160a060020a038381169116145b92915050565b3360009081526004602052604090205460ff1680610a595750600354600160a060020a031633145b1515610a6457600080fd5b60055460ff1615610a7457600080fd5b600554610100900460ff1615610a8957600080fd5b6005805461ff00191661010090811791829055604080519190920460ff161515815290517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a1565b6b011626e22d31d9b6c3a0000081565b601281565b6b014adf4b7320334b9000000081565b3360009081526004602052604090205460ff1680610b265750600354600160a060020a031633145b1515610b3157600080fd5b60055460ff161515610b4257600080fd5b6005805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60055460ff1615610b8757600080fd5b610b90816116ba565b50565b60046020526000908152604090205460ff1681565b3360009081526004602052604090205460ff1680610bd05750600354600160a060020a031633145b1515610bdb57600080fd5b60065415610be857600080fd5b428111610bf457600080fd5b60068190556040805182815290517f8af2dc49ef865a055c56e19964fd4e43183a7143e12813a8246daef30a2b6e0f9181900360200190a150565b60055460ff1681565b600554600090339060ff1680610c565750600554610100900460ff16155b15610c6f57610c64816109f7565b1515610c6f57600080fd5b600160a060020a0384161515610c8457600080fd5b61073684846116c4565b3360009081526004602052604090205460ff1680610cb65750600354600160a060020a031633145b1515610cc157600080fd5b600160a060020a0381161515610cd657600080fd5b600160a060020a03811660009081526004602052604090205460ff1615610cfc57600080fd5b600354600160a060020a0382811691161415610d1757600080fd5b600160a060020a038116600081815260046020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a250565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610d9557600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b3360009081526004602052604090205460ff1680610e145750600354600160a060020a031633145b1515610e1f57600080fd5b6006541515610e2d57600080fd5b6006546301e13380014211610e4157600080fd5b610e846040805190810160405280600881526020017f61647669736f72730000000000000000000000000000000000000000000000008152503362192d506117b3565b565b3360009081526004602052604090205460ff1680610eae5750600354600160a060020a031633145b1515610eb957600080fd5b60055460ff1615610ec957600080fd5b600554610100900460ff161515610edf57600080fd5b6005805461ff001916908190556040805161010090920460ff1615158252517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a1565b3360009081526004602052604090205460ff1680610f525750600354600160a060020a031633145b1515610f5d57600080fd5b60055460ff1615610f6d57600080fd5b6005805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b600354600160a060020a031681565b60408051808201909152600381527f5652480000000000000000000000000000000000000000000000000000000000602082015281565b600554610100900460ff1681565b33600090815260046020526040812054819060ff16806110235750600354600160a060020a031633145b151561102e57600080fd5b600091505b60ff821683111561113d57838360ff841681811061104d57fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a03161415801561109b5750600160a060020a03811660009081526004602052604090205460ff16155b80156110b55750600354600160a060020a03828116911614155b1561113257600160a060020a0381166000908152600460205260409020805460ff19166001179055838360ff84168181106110ec57fe5b90506020020135600160a060020a0316600160a060020a03167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b600190910190611033565b50505050565b600554600090339060ff16806111615750600554610100900460ff16155b1561117a5761116f816109f7565b151561117a57600080fd5b600160a060020a038416151561118f57600080fd5b610736848461183b565b600554600090339060ff16806111b75750600554610100900460ff16155b156111d0576111c5816109f7565b15156111d057600080fd5b600160a060020a03841615156111e557600080fd5b6107368484611908565b3360009081526004602052604090205460ff16806112175750600354600160a060020a031633145b151561122257600080fd5b600654151561123057600080fd5b6006546303b5380001421161124457600080fd5b610e846040805190810160405280600881526020017f666f756e646572730000000000000000000000000000000000000000000000008152503363039387006117b3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b33600090815260046020526040812054819060ff16806112dd5750600354600160a060020a031633145b15156112e857600080fd5b600091505b60ff821683111561113d57838360ff841681811061130757fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156113545750600160a060020a03811660009081526004602052604090205460ff165b801561136e5750600354600160a060020a03828116911614155b156113e857600160a060020a0381166000908152600460205260409020805460ff19169055838360ff84168181106113a257fe5b90506020020135600160a060020a0316600160a060020a03167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b6001909101906112ed565b600354600160a060020a0316331461140a57600080fd5b610b90816119a1565b3360009081526004602052604090205460ff168061143b5750600354600160a060020a031633145b151561144657600080fd5b600654151561145457600080fd5b600654624f1a0001421161146757600080fd5b610e846040805190810160405280600881526020017f736572766963657300000000000000000000000000000000000000000000000081525033621fd0886117b3565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080805b835181101561155057611546848281518110151561152f57fe5b60209081029091010151839063ffffffff611a1f16565b9150600101611515565b5092915050565b600160a060020a03831660009081526020819052604081205482111561157c57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156115ac57600080fd5b600160a060020a03831615156115c157600080fd5b600160a060020a0384166000908152602081905260409020546115ea908363ffffffff611a2c16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461161f908363ffffffff611a1f16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611661908363ffffffff611a2c16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611d03833981519152929181900390910190a35060019392505050565b610b903382611a3e565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061171857336000908152600260209081526040808320600160a060020a038816845290915281205561174d565b611728818463ffffffff611a2c16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff16156117c357600080fd5b82600760006117d183611b2d565b815260208101919091526040016000205460ff16156117ef57600080fd5b670de0b6b3a764000091909102906118078383611bf7565b60016007600061181687611b2d565b81526020810191909152604001600020805460ff191691151591909117905550505050565b3360009081526020819052604081205482111561185757600080fd5b600160a060020a038316151561186c57600080fd5b3360009081526020819052604090205461188c908363ffffffff611a2c16565b3360009081526020819052604080822092909255600160a060020a038516815220546118be908363ffffffff611a1f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020611d038339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461193c908363ffffffff611a1f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156119b657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b81810182811015610a2b57fe5b600082821115611a3857fe5b50900390565b600160a060020a038216600090815260208190526040902054811115611a6357600080fd5b600160a060020a038216600090815260208190526040902054611a8c908263ffffffff611a2c16565b600160a060020a038316600090815260208190526040902055600154611ab8908263ffffffff611a2c16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611d038339815191529181900360200190a35050565b6000816040516020018082805190602001908083835b60208310611b625780518252601f199092019160209182019101611b43565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b60208310611bc55780518252601f199092019160209182019101611ba6565b5181516020939093036101000a6000190180199091169216919091179052604051920182900390912095945050505050565b600160a060020a0382161515611c0c57600080fd5b6001546b014adf4b7320334b9000000090611c2d908363ffffffff611a1f16565b1115611c3857600080fd5b600160a060020a038216600090815260208190526040902054611c61908263ffffffff611a1f16565b600160a060020a038316600090815260208190526040902055600154611c8d908263ffffffff611a1f16565b600155604080518281529051600160a060020a038416917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a2604080518281529051600160a060020a03841691600091600080516020611d038339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206e3e16c259c6f6f0f1ce0e18e0b777bf2096ca197e097cf8c6de53fd83d0166c0029

Deployed Bytecode

0x6080604052600436106101b65763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101bb578063095ea7b314610245578063153a1f3e1461027d5780631785f53c1461030d57806318160ddd1461032e57806320a0128e1461035557806323b872dd1461036a57806324d7806c1461039457806328e665ef146103b55780632ff2e9dc146103ca578063313ce567146103df57806332cb6b0c1461040a5780633f4ba83a1461041f57806342966c6814610434578063429b62e51461044c57806343e913841461046d5780635c975abb14610485578063661884631461049a57806370480275146104be57806370a08231146104df578063715018a61461050057806372c174db1461051557806377f9db331461052a5780638456cb591461053f5780638da5cb5b1461055457806395d89b4114610585578063961325211461059a578063a8e6e77b146105af578063a9059cbb146105cf578063d73dd623146105f3578063daec812814610617578063dd62ed3e1461062c578063f1bca30f14610653578063f2fde38b14610673578063f54cc2d014610694575b600080fd5b3480156101c757600080fd5b506101d06106a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020a5781810151838201526020016101f2565b50505050905090810190601f1680156102375780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025157600080fd5b50610269600160a060020a03600435166024356106e0565b604080519115158252519081900360200190f35b34801561028957600080fd5b506040805160206004803580820135838102808601850190965280855261030b95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975061073e9650505050505050565b005b34801561031957600080fd5b5061030b600160a060020a03600435166108b8565b34801561033a57600080fd5b5061034361098b565b60408051918252519081900360200190f35b34801561036157600080fd5b50610343610991565b34801561037657600080fd5b50610269600160a060020a0360043581169060243516604435610997565b3480156103a057600080fd5b50610269600160a060020a03600435166109f7565b3480156103c157600080fd5b5061030b610a31565b3480156103d657600080fd5b50610343610ad9565b3480156103eb57600080fd5b506103f4610ae9565b6040805160ff9092168252519081900360200190f35b34801561041657600080fd5b50610343610aee565b34801561042b57600080fd5b5061030b610afe565b34801561044057600080fd5b5061030b600435610b77565b34801561045857600080fd5b50610269600160a060020a0360043516610b93565b34801561047957600080fd5b5061030b600435610ba8565b34801561049157600080fd5b50610269610c2f565b3480156104a657600080fd5b50610269600160a060020a0360043516602435610c38565b3480156104ca57600080fd5b5061030b600160a060020a0360043516610c8e565b3480156104eb57600080fd5b50610343600160a060020a0360043516610d63565b34801561050c57600080fd5b5061030b610d7e565b34801561052157600080fd5b5061030b610dec565b34801561053657600080fd5b5061030b610e86565b34801561054b57600080fd5b5061030b610f2a565b34801561056057600080fd5b50610569610fa5565b60408051600160a060020a039092168252519081900360200190f35b34801561059157600080fd5b506101d0610fb4565b3480156105a657600080fd5b50610269610feb565b3480156105bb57600080fd5b5061030b6004803560248101910135610ff9565b3480156105db57600080fd5b50610269600160a060020a0360043516602435611143565b3480156105ff57600080fd5b50610269600160a060020a0360043516602435611199565b34801561062357600080fd5b5061030b6111ef565b34801561063857600080fd5b50610343600160a060020a0360043581169060243516611288565b34801561065f57600080fd5b5061030b60048035602481019101356112b3565b34801561067f57600080fd5b5061030b600160a060020a03600435166113f3565b3480156106a057600080fd5b5061030b611413565b60408051808201909152600d81527f5669727475616c20526568616200000000000000000000000000000000000000602082015281565b600554600090339060ff16806106fe5750600554610100900460ff16155b156107175761070c816109f7565b151561071757600080fd5b600160a060020a038416151561072c57600080fd5b61073684846114aa565b949350505050565b33600090815260046020526040812054819060ff16806107685750600354600160a060020a031633145b151561077357600080fd5b825184511461078157600080fd5b61078a83611510565b336000908152602081905260409020549092508211156107a957600080fd5b5060005b83518110156107f7576107ee84828151811015156107c757fe5b9060200190602002015184838151811015156107df57fe5b90602001906020020151611143565b506001016107ad565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8484604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561085e578181015183820152602001610846565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561089d578181015183820152602001610885565b5050505090500194505050505060405180910390a150505050565b3360009081526004602052604090205460ff16806108e05750600354600160a060020a031633145b15156108eb57600080fd5b600160a060020a038116151561090057600080fd5b600160a060020a03811660009081526004602052604090205460ff16151561092757600080fd5b600354600160a060020a038281169116141561094257600080fd5b600160a060020a038116600081815260046020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a250565b60015490565b60065481565b600554600090849060ff16806109b55750600554610100900460ff16155b156109ce576109c3816109f7565b15156109ce57600080fd5b600160a060020a03841615156109e357600080fd5b6109ee858585611557565b95945050505050565b600160a060020a03811660009081526004602052604081205460ff1680610a2b5750600354600160a060020a038381169116145b92915050565b3360009081526004602052604090205460ff1680610a595750600354600160a060020a031633145b1515610a6457600080fd5b60055460ff1615610a7457600080fd5b600554610100900460ff1615610a8957600080fd5b6005805461ff00191661010090811791829055604080519190920460ff161515815290517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a1565b6b011626e22d31d9b6c3a0000081565b601281565b6b014adf4b7320334b9000000081565b3360009081526004602052604090205460ff1680610b265750600354600160a060020a031633145b1515610b3157600080fd5b60055460ff161515610b4257600080fd5b6005805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60055460ff1615610b8757600080fd5b610b90816116ba565b50565b60046020526000908152604090205460ff1681565b3360009081526004602052604090205460ff1680610bd05750600354600160a060020a031633145b1515610bdb57600080fd5b60065415610be857600080fd5b428111610bf457600080fd5b60068190556040805182815290517f8af2dc49ef865a055c56e19964fd4e43183a7143e12813a8246daef30a2b6e0f9181900360200190a150565b60055460ff1681565b600554600090339060ff1680610c565750600554610100900460ff16155b15610c6f57610c64816109f7565b1515610c6f57600080fd5b600160a060020a0384161515610c8457600080fd5b61073684846116c4565b3360009081526004602052604090205460ff1680610cb65750600354600160a060020a031633145b1515610cc157600080fd5b600160a060020a0381161515610cd657600080fd5b600160a060020a03811660009081526004602052604090205460ff1615610cfc57600080fd5b600354600160a060020a0382811691161415610d1757600080fd5b600160a060020a038116600081815260046020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a250565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610d9557600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b3360009081526004602052604090205460ff1680610e145750600354600160a060020a031633145b1515610e1f57600080fd5b6006541515610e2d57600080fd5b6006546301e13380014211610e4157600080fd5b610e846040805190810160405280600881526020017f61647669736f72730000000000000000000000000000000000000000000000008152503362192d506117b3565b565b3360009081526004602052604090205460ff1680610eae5750600354600160a060020a031633145b1515610eb957600080fd5b60055460ff1615610ec957600080fd5b600554610100900460ff161515610edf57600080fd5b6005805461ff001916908190556040805161010090920460ff1615158252517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a1565b3360009081526004602052604090205460ff1680610f525750600354600160a060020a031633145b1515610f5d57600080fd5b60055460ff1615610f6d57600080fd5b6005805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b600354600160a060020a031681565b60408051808201909152600381527f5652480000000000000000000000000000000000000000000000000000000000602082015281565b600554610100900460ff1681565b33600090815260046020526040812054819060ff16806110235750600354600160a060020a031633145b151561102e57600080fd5b600091505b60ff821683111561113d57838360ff841681811061104d57fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a03161415801561109b5750600160a060020a03811660009081526004602052604090205460ff16155b80156110b55750600354600160a060020a03828116911614155b1561113257600160a060020a0381166000908152600460205260409020805460ff19166001179055838360ff84168181106110ec57fe5b90506020020135600160a060020a0316600160a060020a03167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b600190910190611033565b50505050565b600554600090339060ff16806111615750600554610100900460ff16155b1561117a5761116f816109f7565b151561117a57600080fd5b600160a060020a038416151561118f57600080fd5b610736848461183b565b600554600090339060ff16806111b75750600554610100900460ff16155b156111d0576111c5816109f7565b15156111d057600080fd5b600160a060020a03841615156111e557600080fd5b6107368484611908565b3360009081526004602052604090205460ff16806112175750600354600160a060020a031633145b151561122257600080fd5b600654151561123057600080fd5b6006546303b5380001421161124457600080fd5b610e846040805190810160405280600881526020017f666f756e646572730000000000000000000000000000000000000000000000008152503363039387006117b3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b33600090815260046020526040812054819060ff16806112dd5750600354600160a060020a031633145b15156112e857600080fd5b600091505b60ff821683111561113d57838360ff841681811061130757fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156113545750600160a060020a03811660009081526004602052604090205460ff165b801561136e5750600354600160a060020a03828116911614155b156113e857600160a060020a0381166000908152600460205260409020805460ff19169055838360ff84168181106113a257fe5b90506020020135600160a060020a0316600160a060020a03167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b6001909101906112ed565b600354600160a060020a0316331461140a57600080fd5b610b90816119a1565b3360009081526004602052604090205460ff168061143b5750600354600160a060020a031633145b151561144657600080fd5b600654151561145457600080fd5b600654624f1a0001421161146757600080fd5b610e846040805190810160405280600881526020017f736572766963657300000000000000000000000000000000000000000000000081525033621fd0886117b3565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080805b835181101561155057611546848281518110151561152f57fe5b60209081029091010151839063ffffffff611a1f16565b9150600101611515565b5092915050565b600160a060020a03831660009081526020819052604081205482111561157c57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156115ac57600080fd5b600160a060020a03831615156115c157600080fd5b600160a060020a0384166000908152602081905260409020546115ea908363ffffffff611a2c16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461161f908363ffffffff611a1f16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611661908363ffffffff611a2c16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611d03833981519152929181900390910190a35060019392505050565b610b903382611a3e565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061171857336000908152600260209081526040808320600160a060020a038816845290915281205561174d565b611728818463ffffffff611a2c16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff16156117c357600080fd5b82600760006117d183611b2d565b815260208101919091526040016000205460ff16156117ef57600080fd5b670de0b6b3a764000091909102906118078383611bf7565b60016007600061181687611b2d565b81526020810191909152604001600020805460ff191691151591909117905550505050565b3360009081526020819052604081205482111561185757600080fd5b600160a060020a038316151561186c57600080fd5b3360009081526020819052604090205461188c908363ffffffff611a2c16565b3360009081526020819052604080822092909255600160a060020a038516815220546118be908363ffffffff611a1f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020611d038339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461193c908363ffffffff611a1f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156119b657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b81810182811015610a2b57fe5b600082821115611a3857fe5b50900390565b600160a060020a038216600090815260208190526040902054811115611a6357600080fd5b600160a060020a038216600090815260208190526040902054611a8c908263ffffffff611a2c16565b600160a060020a038316600090815260208190526040902055600154611ab8908263ffffffff611a2c16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611d038339815191529181900360200190a35050565b6000816040516020018082805190602001908083835b60208310611b625780518252601f199092019160209182019101611b43565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b60208310611bc55780518252601f199092019160209182019101611ba6565b5181516020939093036101000a6000190180199091169216919091179052604051920182900390912095945050505050565b600160a060020a0382161515611c0c57600080fd5b6001546b014adf4b7320334b9000000090611c2d908363ffffffff611a1f16565b1115611c3857600080fd5b600160a060020a038216600090815260208190526040902054611c61908263ffffffff611a1f16565b600160a060020a038316600090815260208190526040902055600154611c8d908263ffffffff611a1f16565b600155604080518281529051600160a060020a038416917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a2604080518281529051600160a060020a03841691600091600080516020611d038339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206e3e16c259c6f6f0f1ce0e18e0b777bf2096ca197e097cf8c6de53fd83d0166c0029

Deployed Bytecode Sourcemap

16829:8753:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16940:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16940:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;16940:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22961:186;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22961:186:0;-1:-1:-1;;;;;22961:186:0;;;;;;;;;;;;;;;;;;;;;;;;;24801:523;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;24801:523:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24801:523:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24801:523:0;;;;-1:-1:-1;24801:523:0;-1:-1:-1;24801:523:0;;-1:-1:-1;24801:523:0;;;;;;;;;-1:-1:-1;24801:523:0;;-1:-1:-1;24801:523:0;;-1:-1:-1;;;;;;;24801:523:0;;;12545:281;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12545:281:0;-1:-1:-1;;;;;12545:281:0;;;;;2162:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2162:85:0;;;;;;;;;;;;;;;;;;;;17258:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17258:22:0;;;;22464:198;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22464:198:0;-1:-1:-1;;;;;22464:198:0;;;;;;;;;;;;12832:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12832:118:0;-1:-1:-1;;;;;12832:118:0;;;;;18549:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18549:158:0;;;;17110:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17110:108:0;;;;16900:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16900:35:0;;;;;;;;;;;;;;;;;;;;;;;17034:71;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17034:71:0;;;;14907:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14907:98:0;;;;25497:82;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25497:82:0;;;;;11020:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11020:38:0;-1:-1:-1;;;;;11020:38:0;;;;;19136:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19136:177:0;;;;;14426:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14426:26:0;;;;23960:224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23960:224:0;-1:-1:-1;;;;;23960:224:0;;;;;;;11469:291;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11469:291:0;-1:-1:-1;;;;;11469:291:0;;;;;2946:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2946:101:0;-1:-1:-1;;;;;2946:101:0;;;;;9573:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9573:114:0;;;;20699:182;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20699:182:0;;;;18780:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18780:156:0;;;;14740:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14740:96:0;;;;8778:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8778:20:0;;;;;;;;-1:-1:-1;;;;;8778:20:0;;;;;;;;;;;;;;16990:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16990:37:0;;;;17225:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17225:28:0;;;;11909:480;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11909:480:0;;;;;;;;;;;;21987:173;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21987:173:0;-1:-1:-1;;;;;21987:173:0;;;;;;;23439:213;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23439:213:0;-1:-1:-1;;;;;23439:213:0;;;;;;;21065:183;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21065:183:0;;;;5860:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5860:162:0;-1:-1:-1;;;;;5860:162:0;;;;;;;;;;13107:539;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13107:539:0;;;;;;;;;;;;9855:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9855:105:0;-1:-1:-1;;;;;9855:105:0;;;;;21428:182;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21428:182:0;;;;16940:45;;;;;;;;;;;;;;;;;;;:::o;22961:186::-;17743:6;;23052:4;;23031:10;;17743:6;;;:19;;-1:-1:-1;17754:8:0;;;;;;;17753:9;17743:19;17740:89;;;17777:14;17785:5;17777:7;:14::i;:::-;17776:15;17773:49;;;17804:8;;;17773:49;-1:-1:-1;;;;;23073:22:0;;;;23065:31;;;;;;23110;23124:8;23134:6;23110:13;:31::i;:::-;23103:38;22961:186;-1:-1:-1;;;;22961:186:0:o;24801:523::-;11274:10;25048:23;11267:18;;;:6;:18;;;;;;25048:23;;11267:18;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;24924:15;;24900:20;;:39;24892:48;;;;;;25074:15;25080:8;25074:5;:15::i;:::-;25113:10;25104:8;:20;;;;;;;;;;;25048:41;;-1:-1:-1;25104:39:0;-1:-1:-1;25104:39:0;25096:48;;;;;;-1:-1:-1;25170:1:0;25153:106;25177:13;:20;25173:1;:24;25153:106;;;25212:39;25221:13;25235:1;25221:16;;;;;;;;;;;;;;;;;;25239:8;25248:1;25239:11;;;;;;;;;;;;;;;;;;25212:8;:39::i;:::-;-1:-1:-1;25199:3:0;;25153:106;;;25272:46;25294:13;25309:8;25272:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25272:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25272:46:0;;;;;;;;;;;;;;;;;;;24801:523;;;;:::o;12545:281::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;-1:-1:-1;;;;;12618:22:0;;;;12610:31;;;;;;-1:-1:-1;;;;;12656:16:0;;;;;;:6;:16;;;;;;;;12648:25;;;;;;;;12747:5;;-1:-1:-1;;;;;12735:17:0;;;12747:5;;12735:17;;12727:26;;;;;;-1:-1:-1;;;;;12762:16:0;;12781:5;12762:16;;;:6;:16;;;;;;:24;;-1:-1:-1;;12762:24:0;;;12798:22;;;12781:5;12798:22;12545:281;:::o;2162:85::-;2229:12;;2162:85;:::o;17258:22::-;;;;:::o;22464:198::-;17743:6;;22565:4;;22542:5;;17743:6;;;:19;;-1:-1:-1;17754:8:0;;;;;;;17753:9;17743:19;17740:89;;;17777:14;17785:5;17777:7;:14::i;:::-;17776:15;17773:49;;;17804:8;;;17773:49;-1:-1:-1;;;;;22586:17:0;;;;22578:26;;;;;;22618:38;22637:5;22644:3;22649:6;22618:18;:38::i;:::-;22611:45;22464:198;-1:-1:-1;;;;;22464:198:0:o;12832:118::-;-1:-1:-1;;;;;12907:16:0;;12887:4;12907:16;;;:6;:16;;;;;;;;;:37;;-1:-1:-1;12939:5:0;;-1:-1:-1;;;;;12927:17:0;;;12939:5;;12927:17;12907:37;12900:44;12832:118;-1:-1:-1;;12832:118:0:o;18549:158::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;14559:6;;;;14558:7;14550:16;;;;;;18631:8;;;;;;;18630:9;18622:18;;;;;;18649:8;:15;;-1:-1:-1;;18649:15:0;;;;;;;;;18678:23;;;18692:8;;;;18649:15;18692:8;18678:23;;;;;;;;;;;;;;;18549:158::o;17110:108::-;17148:70;17110:108;:::o;16900:35::-;16933:2;16900:35;:::o;17034:71::-;17068:37;17034:71;:::o;14907:98::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;14678:6;;;;14670:15;;;;;;;;14963:6;:14;;-1:-1:-1;;14963:14:0;;;14989:10;;;;14972:5;;14989:10;14907:98::o;25497:82::-;14559:6;;;;14558:7;14550:16;;;;;;25555:18;25566:6;25555:10;:18::i;:::-;25497:82;:::o;11020:38::-;;;;;;;;;;;;;;;:::o;19136:177::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;19203:10;;:15;19195:24;;;;;;19242:3;19234:11;;19226:20;;;;;;19255:10;:18;;;19287:20;;;;;;;;;;;;;;;;;19136:177;:::o;14426:26::-;;;;;;:::o;23960:224::-;17743:6;;24070:4;;24049:10;;17743:6;;;:19;;-1:-1:-1;17754:8:0;;;;;;;17753:9;17743:19;17740:89;;;17777:14;17785:5;17777:7;:14::i;:::-;17776:15;17773:49;;;17804:8;;;17773:49;-1:-1:-1;;;;;24091:22:0;;;;24083:31;;;;;;24128:50;24151:8;24161:16;24128:22;:50::i;11469:291::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;-1:-1:-1;;;;;11539:22:0;;;;11531:31;;;;;;-1:-1:-1;;;;;11578:16:0;;;;;;:6;:16;;;;;;;;11577:17;11569:26;;;;;;11682:5;;-1:-1:-1;;;;;11670:17:0;;;11682:5;;11670:17;;11662:26;;;;;;-1:-1:-1;;;;;11697:16:0;;;;;;:6;:16;;;;;;:23;;-1:-1:-1;;11697:23:0;11716:4;11697:23;;;11734:20;;;11697:16;11734:20;11469:291;:::o;2946:101::-;-1:-1:-1;;;;;3025:16:0;3002:7;3025:16;;;;;;;;;;;;2946:101::o;9573:114::-;9281:5;;-1:-1:-1;;;;;9281:5:0;9267:10;:19;9259:28;;;;;;9650:5;;9631:25;;-1:-1:-1;;;;;9650:5:0;;;;9631:25;;9650:5;;9631:25;9663:5;:18;;-1:-1:-1;;9663:18:0;;;9573:114::o;20699:182::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;20764:10;;:15;;20756:24;;;;;;20804:10;;20817:8;20804:21;20797:3;:29;20789:38;;;;;;20834:41;;;;;;;;;;;;;;;;;;;20855:10;20867:7;20834:8;:41::i;:::-;20699:182::o;18780:156::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;14559:6;;;;14558:7;14550:16;;;;;;18859:8;;;;;;;18851:17;;;;;;;;18877:8;:16;;-1:-1:-1;;18877:16:0;;;;;18907:23;;;18877:16;18921:8;;;18877:16;18921:8;18907:23;;;;;;;;;;;;;;18780:156::o;14740:96::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;14559:6;;;;14558:7;14550:16;;;;;;14797:6;:13;;-1:-1:-1;;14797:13:0;14806:4;14797:13;;;14822:8;;;;14797:6;;14822:8;14740:96::o;8778:20::-;;;-1:-1:-1;;;;;8778:20:0;;:::o;16990:37::-;;;;;;;;;;;;;;;;;;;:::o;17225:28::-;;;;;;;;;:::o;11909:480::-;11274:10;11983:7;11267:18;;;:6;:18;;;;;;11983:7;;11267:18;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;11991:1;11983:9;;11979:405;11994:18;;;;-1:-1:-1;11979:405:0;;;12046:9;;:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12046:12:0;12028:30;;12249:1;-1:-1:-1;;;;;12230:21:0;:7;-1:-1:-1;;;;;12230:21:0;;;:41;;;;-1:-1:-1;;;;;;12256:15:0;;;;;;:6;:15;;;;;;;;12255:16;12230:41;:61;;;;-1:-1:-1;12286:5:0;;-1:-1:-1;;;;;12275:16:0;;;12286:5;;12275:16;;12230:61;12227:150;;;-1:-1:-1;;;;;12303:15:0;;;;;;:6;:15;;;;;:22;;-1:-1:-1;;12303:22:0;12321:4;12303:22;;;12354:9;;12303:22;12354:12;;;;;;;;;;;;;;;-1:-1:-1;;;;;12354:12:0;-1:-1:-1;;;;;12343:24:0;;;;;;;;;;;12227:150;12014:3;;;;;11979:405;;;11909:480;;;;:::o;21987:173::-;17743:6;;22074:4;;22053:10;;17743:6;;;:19;;-1:-1:-1;17754:8:0;;;;;;;17753:9;17743:19;17740:89;;;17777:14;17785:5;17777:7;:14::i;:::-;17776:15;17773:49;;;17804:8;;;17773:49;-1:-1:-1;;;;;22095:17:0;;;;22087:26;;;;;;22127:27;22142:3;22147:6;22127:14;:27::i;23439:213::-;17743:6;;23543:4;;23523:10;;17743:6;;;:19;;-1:-1:-1;17754:8:0;;;;;;;17753:9;17743:19;17740:89;;;17777:14;17785:5;17777:7;:14::i;:::-;17776:15;17773:49;;;17804:8;;;17773:49;-1:-1:-1;;;;;23564:22:0;;;;23556:31;;;;;;23601:45;23624:8;23634:11;23601:22;:45::i;21065:183::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;21130:10;;:15;;21122:24;;;;;;21168:10;;21181:8;21168:21;21161:3;:29;21153:38;;;;;;21200:42;;;;;;;;;;;;;;;;;;;21221:10;21233:8;21200;:42::i;5860:162::-;-1:-1:-1;;;;;5991:15:0;;;5965:7;5991:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5860:162::o;13107:539::-;11274:10;13184:7;11267:18;;;:6;:18;;;;;;13184:7;;11267:18;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;13192:1;13184:9;;13180:461;13195:18;;;;-1:-1:-1;13180:461:0;;;13247:9;;:12;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13247:12:0;13229:30;;13504:1;-1:-1:-1;;;;;13485:21:0;:7;-1:-1:-1;;;;;13485:21:0;;;:40;;;;-1:-1:-1;;;;;;13510:15:0;;;;;;:6;:15;;;;;;;;13485:40;:60;;;;-1:-1:-1;13540:5:0;;-1:-1:-1;;;;;13529:16:0;;;13540:5;;13529:16;;13485:60;13482:152;;;-1:-1:-1;;;;;13557:15:0;;13575:5;13557:15;;;:6;:15;;;;;:23;;-1:-1:-1;;13557:23:0;;;13611:9;;13557:23;13611:12;;;;;;;;;;;;;;;-1:-1:-1;;;;;13611:12:0;-1:-1:-1;;;;;13598:26:0;;;;;;;;;;;13482:152;13215:3;;;;;13180:461;;9855:105;9281:5;;-1:-1:-1;;;;;9281:5:0;9267:10;:19;9259:28;;;;;;9925:29;9944:9;9925:18;:29::i;21428:182::-;11274:10;11267:18;;;;:6;:18;;;;;;;;;:41;;-1:-1:-1;11303:5:0;;-1:-1:-1;;;;;11303:5:0;11289:10;:19;11267:41;11259:50;;;;;;;;21494:10;;:15;;21486:24;;;;;;21532:10;;21545:7;21532:20;21525:3;:28;21517:37;;;;;;21563:41;;;;;;;;;;;;;;;;;;;21584:10;21596:7;21563:8;:41::i;5341:192::-;5429:10;5408:4;5421:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5421:29:0;;;;;;;;;;;:38;;;5471;;;;;;;5408:4;;5421:29;;5429:10;;5471:38;;;;;;;;-1:-1:-1;5523:4:0;5341:192;;;;:::o;24310:214::-;24365:7;;;24407:91;24431:7;:14;24427:1;:18;24407:91;;;24469:21;24479:7;24487:1;24479:10;;;;;;;;;;;;;;;;;;;24469:5;;:21;:9;:21;:::i;:::-;24461:29;-1:-1:-1;24447:3:0;;24407:91;;;-1:-1:-1;24513:5:0;24310:214;-1:-1:-1;;24310:214:0:o;4225:487::-;-1:-1:-1;;;;;4371:15:0;;4337:4;4371:15;;;;;;;;;;;4361:25;;;4353:34;;;;;;-1:-1:-1;;;;;4412:14:0;;;;;;:7;:14;;;;;;;;4427:10;4412:26;;;;;;;;4402:36;;;4394:45;;;;;;-1:-1:-1;;;;;4454:17:0;;;;4446:26;;;;;;-1:-1:-1;;;;;4499:15:0;;:8;:15;;;;;;;;;;;:27;;4519:6;4499:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4481:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4549:13;;;;;;;:25;;4567:6;4549:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4533:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4610:14;;;;;:7;:14;;;;;4625:10;4610:26;;;;;;;:38;;4641:6;4610:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4581:14:0;;;;;;;:7;:14;;;;;;;;4596:10;4581:26;;;;;;;;:67;;;;4660:28;;;;;;;;;;;4581:14;;-1:-1:-1;;;;;;;;;;;4660:28:0;;;;;;;;;;-1:-1:-1;4702:4:0;4225:487;;;;;:::o;8026:75::-;8070:25;8076:10;8088:6;8070:5;:25::i;7260:447::-;7414:10;7371:4;7406:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7406:29:0;;;;;;;;;;7446:28;;;7442:169;;7493:10;7517:1;7485:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7485:29:0;;;;;;;;;:33;7442:169;;;7573:30;:8;7586:16;7573:30;:12;:30;:::i;:::-;7549:10;7541:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7541:29:0;;;;;;;;;:62;7442:169;7631:10;7653:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7622:61:0;;7653:29;;;;;;;;;;;7622:61;;;;;;;;;7631:10;7622:61;;;;;;;;;;;-1:-1:-1;7697:4:0;;7260:447;-1:-1:-1;;;7260:447:0:o;20279:236::-;14559:6;;;;14558:7;14550:16;;;;;;20376:4;18271:11;:30;18283:17;18295:4;18283:11;:17::i;:::-;18271:30;;;;;;;;;;;;;;;;18268:60;;;18312:8;;;18268:60;20410:23;20399:35;;;;;20441:24;20452:3;20399:35;20441:10;:24::i;:::-;20505:4;20472:11;:30;20484:17;20496:4;20484:11;:17::i;:::-;20472:30;;;;;;;;;;;-1:-1:-1;20472:30:0;:37;;-1:-1:-1;;20472:37:0;;;;;;;;;;-1:-1:-1;;;;20279:236:0:o;2408:329::-;2511:10;2471:4;2502:20;;;;;;;;;;;2492:30;;;2484:39;;;;;;-1:-1:-1;;;;;2538:17:0;;;;2530:26;;;;;;2597:10;2588:8;:20;;;;;;;;;;;:32;;2613:6;2588:32;:24;:32;:::i;:::-;2574:10;2565:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2643:13:0;;;;;;:25;;2661:6;2643:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2627:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2680:33;;;;;;;2627:13;;2689:10;;-1:-1:-1;;;;;;;;;;;2680:33:0;;;;;;;;;-1:-1:-1;2727:4:0;2408:329;;;;:::o;6485:307::-;6656:10;6591:4;6648:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6648:29:0;;;;;;;;;;:46;;6682:11;6648:46;:33;:46;:::i;:::-;6615:10;6607:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6607:29:0;;;;;;;;;;;;:88;;;6707:61;;;;;;6607:29;;6707:61;;;;;;;;;;;-1:-1:-1;6782:4:0;6485:307;;;;:::o;10101:175::-;-1:-1:-1;;;;;10172:23:0;;;;10164:32;;;;;;10229:5;;10208:38;;-1:-1:-1;;;;;10208:38:0;;;;10229:5;;10208:38;;10229:5;;10208:38;10253:5;:17;;-1:-1:-1;;10253:17:0;-1:-1:-1;;;;;10253:17:0;;;;;;;;;;10101:175::o;1710:132::-;1792:7;;;1813;;;;1806:15;;;1524:119;1584:7;1607:8;;;;1600:16;;;;-1:-1:-1;1630:7:0;;;1524:119::o;8107:447::-;-1:-1:-1;;;;;8186:14:0;;:8;:14;;;;;;;;;;;8176:24;;;8168:33;;;;;;-1:-1:-1;;;;;8400:14:0;;:8;:14;;;;;;;;;;;:26;;8419:6;8400:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;8383:14:0;;:8;:14;;;;;;;;;;:43;8448:12;;:24;;8465:6;8448:24;:16;:24;:::i;:::-;8433:12;:39;8484:18;;;;;;;;-1:-1:-1;;;;;8484:18:0;;;;;;;;;;;;;8514:34;;;;;;;;8537:1;;-1:-1:-1;;;;;8514:34:0;;;-1:-1:-1;;;;;;;;;;;8514:34:0;;;;;;;;8107:447;;:::o;17968:116::-;18023:7;18072:4;18055:22;;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;18055:22:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;18055:22:0;;;18045:33;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;;;;365:33;;18045::0;;;;;;;;;;;;-1:-1:-1;;;;;17968:116:0:o;19683:319::-;-1:-1:-1;;;;;19752:17:0;;;;19744:26;;;;;;19785:12;;17068:37;;19785:24;;19802:6;19785:24;:16;:24;:::i;:::-;:38;;19777:47;;;;;;-1:-1:-1;;;;;19849:13:0;;:8;:13;;;;;;;;;;;:25;;19867:6;19849:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;19833:13:0;;:8;:13;;;;;;;;;;:41;19896:12;;:24;;19913:6;19896:24;:16;:24;:::i;:::-;19881:12;:39;19934:17;;;;;;;;-1:-1:-1;;;;;19934:17:0;;;;;;;;;;;;;19963:33;;;;;;;;-1:-1:-1;;;;;19963:33:0;;;19980:1;;-1:-1:-1;;;;;;;;;;;19963:33:0;;;;;;;;19683:319;;:::o

Swarm Source

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