ETH Price: $2,996.04 (+3.83%)
Gas: 7 Gwei

Token

Everest ID (ID)
 

Overview

Max Total Supply

800,000,000 ID

Holders

6,467 ( 0.093%)

Market

Price

$0.12 @ 0.000041 ETH (-7.29%)

Onchain Market Cap

$98,197,169.46

Circulating Supply Market Cap

$14,324,512.10

Other Info

Token Contract (WITH 18 Decimals)

Balance
35,621.908860715343058015 ID

Value
$4,372.46 ( ~1.4594 Eth) [0.0045%]
0x8a4aa176007196d48d39c89402d3753c39ae64c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Everest provides the tools for institutions to serve communities that lack verifiable identity or the ability to store and exchange value – a digital identity, EverID, value exchange mechanism, EverWallet, and our scalable digital ledger, EverChain.

Market

Volume (24H):$132,154.84
Market Capitalization:$14,324,512.10
Circulating Supply:116,700,000.00 ID
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ElementToken

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-09-05
*/

pragma solidity ^0.4.11;


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



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


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


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


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


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

}













/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal view returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

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

  function add(uint256 a, uint256 b) internal view returns (uint256) {
    uint256 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) 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));

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

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

}







/**
 * @title 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.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) 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));

    uint256 _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = _allowance.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 remaining) {
    return allowed[_owner][_spender];
  }

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

  function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
    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;
  }

}







/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
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;
    emit Pause();
  }

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



/**
 * @title Element Token
 * @dev ERC20 Element Token)
 *
 * All initial tokens are assigned to the creator of
 * this contract.
 *
 */
contract ElementToken is StandardToken, Pausable {

  string public name = "";               // Set the token name for display
  string public symbol = "";             // Set the token symbol for display
  uint8 public decimals = 0;             // Set the token symbol for display

  /**
   * @dev Don't allow tokens to be sent to the contract
   */
  modifier rejectTokensToContract(address _to) {
    require(_to != address(this));
    _;
  }

  /**
   * @dev ElementToken Constructor
   * Runs only on initial contract creation.
   */
  function ElementToken(string _name, string _symbol, uint256 _tokens, uint8 _decimals)  public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
    totalSupply = _tokens * 10**uint256(decimals);          // Set the total supply
    balances[msg.sender] = totalSupply;                      // Creator address is assigned all
    Transfer(0x0, msg.sender, totalSupply);                  // create Transfer event for minting
  }

  /**
   * @dev Transfer token for a specified address when not paused
   * @param _to The address to transfer to.
   * @param _value The amount to be transferred.
   */
  function transfer(address _to, uint256 _value) rejectTokensToContract(_to) public whenNotPaused returns (bool) {
    return super.transfer(_to, _value);
  }

  /**
   * @dev Transfer tokens from one address to another when not paused
   * @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) rejectTokensToContract(_to) public whenNotPaused returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender when not paused.
   * @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 whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }

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

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

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","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":"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":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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_tokens","type":"uint256"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

6003805460a060020a60ff021916905560a06040819052600060808190526100299160049161013a565b506040805160208101918290526000908190526100489160059161013a565b506006805460ff1916905534801561005f57600080fd5b50604051610d6d380380610d6d833981016040908152815160208084015192840151606085015160038054600160a060020a031916331790559285018051909594909401939092916100b69160049187019061013a565b5082516100ca90600590602086019061013a565b506006805460ff191660ff838116919091179182905516600a0a820260008181553380825260016020908152604080842085905580519485525191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050506101d5565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061017b57805160ff19168380011785556101a8565b828001600101855582156101a8579182015b828111156101a857825182559160200191906001019061018d565b506101b49291506101b8565b5090565b6101d291905b808211156101b457600081556001016101be565b90565b610b89806101e46000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd5780633f4ba83a146102285780635c975abb1461023f578063661884631461025457806370a08231146102785780638456cb59146102995780638da5cb5b146102ae57806395d89b41146102df578063a9059cbb146102f4578063d73dd62314610318578063dd62ed3e1461033c578063f2fde38b14610363575b600080fd5b3480156100f657600080fd5b506100ff610384565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a0360043516602435610412565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c161043d565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a0360043581169060243516604435610443565b34801561020957600080fd5b50610212610487565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b5061023d610490565b005b34801561024b57600080fd5b50610198610508565b34801561026057600080fd5b50610198600160a060020a0360043516602435610518565b34801561028457600080fd5b506101c1600160a060020a036004351661053c565b3480156102a557600080fd5b5061023d610557565b3480156102ba57600080fd5b506102c36105d4565b60408051600160a060020a039092168252519081900360200190f35b3480156102eb57600080fd5b506100ff6105e3565b34801561030057600080fd5b50610198600160a060020a036004351660243561063e565b34801561032457600080fd5b50610198600160a060020a0360043516602435610680565b34801561034857600080fd5b506101c1600160a060020a03600435811690602435166106a4565b34801561036f57600080fd5b5061023d600160a060020a03600435166106cf565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561040a5780601f106103df5761010080835404028352916020019161040a565b820191906000526020600020905b8154815290600101906020018083116103ed57829003601f168201915b505050505081565b60035460009060a060020a900460ff161561042c57600080fd5b6104368383610764565b9392505050565b60005481565b600082600160a060020a03811630141561045c57600080fd5b60035460a060020a900460ff161561047357600080fd5b61047e8585856107ca565b95945050505050565b60065460ff1681565b600354600160a060020a031633146104a757600080fd5b60035460a060020a900460ff1615156104bf57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561053257600080fd5b61043683836108ec565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a0316331461056e57600080fd5b60035460a060020a900460ff161561058557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561040a5780601f106103df5761010080835404028352916020019161040a565b600082600160a060020a03811630141561065757600080fd5b60035460a060020a900460ff161561066e57600080fd5b61067884846109dc565b949350505050565b60035460009060a060020a900460ff161561069a57600080fd5b6104368383610aa3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146106e657600080fd5b600160a060020a03811615156106fb57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080600160a060020a03841615156107e257600080fd5b50600160a060020a03841660008181526002602090815260408083203384528252808320549383526001909152902054610822908463ffffffff610b3c16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610857908463ffffffff610b4e16565b600160a060020a038516600090815260016020526040902055610880818463ffffffff610b3c16565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561094157336000908152600260209081526040808320600160a060020a0388168452909152812055610976565b610951818463ffffffff610b3c16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a03831615156109f357600080fd5b33600090815260016020526040902054610a13908363ffffffff610b3c16565b3360009081526001602052604080822092909255600160a060020a03851681522054610a45908363ffffffff610b4e16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610ad7908363ffffffff610b4e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610b4857fe5b50900390565b60008282018381101561043657fe00a165627a7a72305820a24bbe73dcc0b4a5a88c8cb845feeb71e0e1b5bb5f9060c7284956967b201aeb0029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000002faf08000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a457665726573742049440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024944000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd5780633f4ba83a146102285780635c975abb1461023f578063661884631461025457806370a08231146102785780638456cb59146102995780638da5cb5b146102ae57806395d89b41146102df578063a9059cbb146102f4578063d73dd62314610318578063dd62ed3e1461033c578063f2fde38b14610363575b600080fd5b3480156100f657600080fd5b506100ff610384565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a0360043516602435610412565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c161043d565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a0360043581169060243516604435610443565b34801561020957600080fd5b50610212610487565b6040805160ff9092168252519081900360200190f35b34801561023457600080fd5b5061023d610490565b005b34801561024b57600080fd5b50610198610508565b34801561026057600080fd5b50610198600160a060020a0360043516602435610518565b34801561028457600080fd5b506101c1600160a060020a036004351661053c565b3480156102a557600080fd5b5061023d610557565b3480156102ba57600080fd5b506102c36105d4565b60408051600160a060020a039092168252519081900360200190f35b3480156102eb57600080fd5b506100ff6105e3565b34801561030057600080fd5b50610198600160a060020a036004351660243561063e565b34801561032457600080fd5b50610198600160a060020a0360043516602435610680565b34801561034857600080fd5b506101c1600160a060020a03600435811690602435166106a4565b34801561036f57600080fd5b5061023d600160a060020a03600435166106cf565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561040a5780601f106103df5761010080835404028352916020019161040a565b820191906000526020600020905b8154815290600101906020018083116103ed57829003601f168201915b505050505081565b60035460009060a060020a900460ff161561042c57600080fd5b6104368383610764565b9392505050565b60005481565b600082600160a060020a03811630141561045c57600080fd5b60035460a060020a900460ff161561047357600080fd5b61047e8585856107ca565b95945050505050565b60065460ff1681565b600354600160a060020a031633146104a757600080fd5b60035460a060020a900460ff1615156104bf57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561053257600080fd5b61043683836108ec565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a0316331461056e57600080fd5b60035460a060020a900460ff161561058557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561040a5780601f106103df5761010080835404028352916020019161040a565b600082600160a060020a03811630141561065757600080fd5b60035460a060020a900460ff161561066e57600080fd5b61067884846109dc565b949350505050565b60035460009060a060020a900460ff161561069a57600080fd5b6104368383610aa3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146106e657600080fd5b600160a060020a03811615156106fb57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080600160a060020a03841615156107e257600080fd5b50600160a060020a03841660008181526002602090815260408083203384528252808320549383526001909152902054610822908463ffffffff610b3c16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610857908463ffffffff610b4e16565b600160a060020a038516600090815260016020526040902055610880818463ffffffff610b3c16565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561094157336000908152600260209081526040808320600160a060020a0388168452909152812055610976565b610951818463ffffffff610b3c16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a03831615156109f357600080fd5b33600090815260016020526040902054610a13908363ffffffff610b3c16565b3360009081526001602052604080822092909255600160a060020a03851681522054610a45908363ffffffff610b4e16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610ad7908363ffffffff610b4e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610b4857fe5b50900390565b60008282018381101561043657fe00a165627a7a72305820a24bbe73dcc0b4a5a88c8cb845feeb71e0e1b5bb5f9060c7284956967b201aeb0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000002faf08000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a457665726573742049440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024944000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Everest ID
Arg [1] : _symbol (string): ID
Arg [2] : _tokens (uint256): 800000000
Arg [3] : _decimals (uint8): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000002faf0800
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4576657265737420494400000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4944000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8336:2679:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8392:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8392:23: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;8392:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10424:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10424:138:0;-1:-1:-1;;;;;10424:138:0;;;;;;;;;;;;;;;;;;;;;;;;;188:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;188:26:0;;;;;;;;;;;;;;;;;;;;9982:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9982:188:0;-1:-1:-1;;;;;9982:188:0;;;;;;;;;;;;8546:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8546:25:0;;;;;;;;;;;;;;;;;;;;;;;8084:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8084:95:0;;;;;;7463:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7463:26:0;;;;10828:182;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10828:182:0;-1:-1:-1;;;;;10828:182:0;;;;;;;3215:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3215:109:0;-1:-1:-1;;;;;3215:109:0;;;;;7904:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7904:93:0;;;;656:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;656:20:0;;;;;;;;-1:-1:-1;;;;;656:20:0;;;;;;;;;;;;;;8468:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8468:25:0;;;;9525:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9525:158:0;-1:-1:-1;;;;;9525:158:0;;;;;;;10609:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10609:172:0;-1:-1:-1;;;;;10609:172:0;;;;;;;6173:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6173:138:0;-1:-1:-1;;;;;6173:138:0;;;;;;;;;;1281:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1281:178:0;-1:-1:-1;;;;;1281:178:0;;;;;8392:23;;;;;;;;;;;;;;;-1:-1:-1;;8392:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10424:138::-;7639:6;;10505:4;;-1:-1:-1;;;7639:6:0;;;;7638:7;7630:16;;;;;;10525:31;10539:8;10549:6;10525:13;:31::i;:::-;10518:38;10424:138;-1:-1:-1;;;10424:138:0:o;188:26::-;;;;:::o;9982:188::-;10106:4;10071:3;-1:-1:-1;;;;;8757:20:0;;8772:4;8757:20;;8749:29;;;;;;7639:6;;-1:-1:-1;;;7639:6:0;;;;7638:7;7630:16;;;;;;10126:38;10145:5;10152:3;10157:6;10126:18;:38::i;:::-;10119:45;9982:188;-1:-1:-1;;;;;9982:188:0:o;8546:25::-;;;;;;:::o;8084:95::-;1092:5;;-1:-1:-1;;;;;1092:5:0;1078:10;:19;1070:28;;;;;;7799:6;;-1:-1:-1;;;7799:6:0;;;;7791:15;;;;;;;;8138:6;:14;;-1:-1:-1;;8138:14:0;;;8164:9;;;;8147:5;;8164:9;8084:95::o;7463:26::-;;;-1:-1:-1;;;7463:26:0;;;;;:::o;10828:182::-;7639:6;;10926:12;;-1:-1:-1;;;7639:6:0;;;;7638:7;7630:16;;;;;;10954:50;10977:8;10987:16;10954:22;:50::i;3215:109::-;-1:-1:-1;;;;;3302:16:0;3271:15;3302:16;;;:8;:16;;;;;;;3215:109::o;7904:93::-;1092:5;;-1:-1:-1;;;;;1092:5:0;1078:10;:19;1070:28;;;;;;7639:6;;-1:-1:-1;;;7639:6:0;;;;7638:7;7630:16;;;;;;7959:6;:13;;-1:-1:-1;;7959:13:0;-1:-1:-1;;;7959:13:0;;;7984:7;;;;7959:13;;7984:7;7904:93::o;656:20::-;;;-1:-1:-1;;;;;656:20:0;;:::o;8468:25::-;;;;;;;;;;;;;;;-1:-1:-1;;8468:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9525:158;9630:4;9595:3;-1:-1:-1;;;;;8757:20:0;;8772:4;8757:20;;8749:29;;;;;;7639:6;;-1:-1:-1;;;7639:6:0;;;;7638:7;7630:16;;;;;;9650:27;9665:3;9670:6;9650:14;:27::i;:::-;9643:34;9525:158;-1:-1:-1;;;;9525:158:0:o;10609:172::-;7639:6;;10702:12;;-1:-1:-1;;;7639:6:0;;;;7638:7;7630:16;;;;;;10730:45;10753:8;10763:11;10730:22;:45::i;6173:138::-;-1:-1:-1;;;;;6280:15:0;;;6247:17;6280:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6173:138::o;1281:178::-;1092:5;;-1:-1:-1;;;;;1092:5:0;1078:10;:19;1070:28;;;;;;-1:-1:-1;;;;;1358:22:0;;;;1350:31;;;;;;1414:5;;1393:37;;-1:-1:-1;;;;;1393:37:0;;;;1414:5;;1393:37;;1414:5;;1393:37;1437:5;:16;;-1:-1:-1;;1437:16:0;-1:-1:-1;;;;;1437:16:0;;;;;;;;;;1281:178::o;5659:187::-;5747:10;5726:4;5739:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5739:29:0;;;;;;;;;;;:38;;;5784;;;;;;;5726:4;;5739:29;;5747:10;;5784:38;;;;;;;;-1:-1:-1;5836:4:0;5659:187;;;;:::o;4478:546::-;4560:4;;-1:-1:-1;;;;;4581:17:0;;;;4573:26;;;;;;-1:-1:-1;;;;;;4629:14:0;;;;;;:7;:14;;;;;;;;4644:10;4629:26;;;;;;;;4832:15;;;:8;:15;;;;;;:27;;4852:6;4832:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4814:15:0;;;;;;;:8;:15;;;;;;:45;;;;4882:13;;;;;;;:25;;4900:6;4882:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4866:13:0;;;;;;:8;:13;;;;;:41;4943:22;:10;4958:6;4943:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;4914:14:0;;;;;;;:7;:14;;;;;;;;4929:10;4914:26;;;;;;;;:51;;;;4972:28;;;;;;;;;;;4914:14;;4972:28;;;;;;;;;;;-1:-1:-1;5014:4:0;;4478:546;-1:-1:-1;;;;4478:546:0:o;6835:416::-;6964:10;6919:12;6956:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6956:29:0;;;;;;;;;;6996:27;;;6992:168;;;7042:10;7066:1;7034:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7034:29:0;;;;;;;;;:33;6992:168;;;7122:30;:8;7135:16;7122:30;:12;:30;:::i;:::-;7098:10;7090:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7090:29:0;;;;;;;;;:62;6992:168;7175:10;7197:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7166:61:0;;7197:29;;;;;;;;;;;7166:61;;;;;;;;;7175:10;7166:61;;;;;;;;;;;-1:-1:-1;7241:4:0;;6835:416;-1:-1:-1;;;6835:416:0:o;2664:342::-;2727:4;-1:-1:-1;;;;;2748:17:0;;;;2740:26;;;;;;2871:10;2862:20;;;;:8;:20;;;;;;:32;;2887:6;2862:32;:24;:32;:::i;:::-;2848:10;2839:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;2917:13:0;;;;;;:25;;2935:6;2917:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2901:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;2949:33;;;;;;;2901:13;;2958:10;;2949:33;;;;;;;;;;-1:-1:-1;2996:4:0;2664:342;;;;:::o;6559:270::-;6699:10;6638:12;6691:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6691:29:0;;;;;;;;;;:46;;6725:11;6691:46;:33;:46;:::i;:::-;6667:10;6659:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6659:29:0;;;;;;;;;;;;:78;;;6744:61;;;;;;6659:29;;6744:61;;;;;;;;;;;-1:-1:-1;6819:4:0;6559:270;;;;:::o;2037:113::-;2095:7;2118:6;;;;2111:14;;;;-1:-1:-1;2139:5:0;;;2037:113::o;2156:133::-;2214:7;2242:5;;;2261:6;;;;2254:14;;

Swarm Source

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