ETH Price: $2,932.74 (-1.01%)
Gas: 9 Gwei

Token

Level01 Token (LVX)
 

Overview

Max Total Supply

1,200,000,000 LVX

Holders

6,785

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40,110 LVX

Value
$0.00
0x8f20a07e0541ca2db9152d7e521aee5d639b211d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Level01Token

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.23;


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



/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev 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 Roles
 * @author Francisco Giordano (@frangio)
 * @dev Library for managing addresses assigned to a Role.
 *      See RBAC.sol for example usage.
 */
library Roles {
  struct Role {
    mapping (address => bool) bearer;
  }

  /**
   * @dev give an address access to this role
   */
  function add(Role storage role, address addr)
    internal
  {
    role.bearer[addr] = true;
  }

  /**
   * @dev remove an address' access to this role
   */
  function remove(Role storage role, address addr)
    internal
  {
    role.bearer[addr] = false;
  }

  /**
   * @dev check if an address has this role
   * // reverts
   */
  function check(Role storage role, address addr)
    view
    internal
  {
    require(has(role, addr));
  }

  /**
   * @dev check if an address has this role
   * @return bool
   */
  function has(Role storage role, address addr)
    view
    internal
    returns (bool)
  {
    return role.bearer[addr];
  }
}





/**
 * @title RBAC (Role-Based Access Control)
 * @author Matt Condon (@Shrugs)
 * @dev Stores and provides setters and getters for roles and addresses.
 * @dev Supports unlimited numbers of roles and addresses.
 * @dev See //contracts/mocks/RBACMock.sol for an example of usage.
 * This RBAC method uses strings to key roles. It may be beneficial
 *  for you to write your own implementation of this interface using Enums or similar.
 * It's also recommended that you define constants in the contract, like ROLE_ADMIN below,
 *  to avoid typos.
 */
contract RBAC {
  using Roles for Roles.Role;

  mapping (string => Roles.Role) private roles;

  event RoleAdded(address addr, string roleName);
  event RoleRemoved(address addr, string roleName);

  /**
   * @dev reverts if addr does not have role
   * @param addr address
   * @param roleName the name of the role
   * // reverts
   */
  function checkRole(address addr, string roleName)
    view
    public
  {
    roles[roleName].check(addr);
  }

  /**
   * @dev determine if addr has role
   * @param addr address
   * @param roleName the name of the role
   * @return bool
   */
  function hasRole(address addr, string roleName)
    view
    public
    returns (bool)
  {
    return roles[roleName].has(addr);
  }

  /**
   * @dev add a role to an address
   * @param addr address
   * @param roleName the name of the role
   */
  function addRole(address addr, string roleName)
    internal
  {
    roles[roleName].add(addr);
    emit RoleAdded(addr, roleName);
  }

  /**
   * @dev remove a role from an address
   * @param addr address
   * @param roleName the name of the role
   */
  function removeRole(address addr, string roleName)
    internal
  {
    roles[roleName].remove(addr);
    emit RoleRemoved(addr, roleName);
  }

  /**
   * @dev modifier to scope access to a single role (uses msg.sender as addr)
   * @param roleName the name of the role
   * // reverts
   */
  modifier onlyRole(string roleName)
  {
    checkRole(msg.sender, roleName);
    _;
  }

  /**
   * @dev modifier to scope access to a set of roles (uses msg.sender as addr)
   * @param roleNames the names of the roles to scope access to
   * // reverts
   *
   * @TODO - when solidity supports dynamic arrays as arguments to modifiers, provide this
   *  see: https://github.com/ethereum/solidity/issues/2467
   */
  // modifier onlyRoles(string[] roleNames) {
  //     bool hasAnyRole = false;
  //     for (uint8 i = 0; i < roleNames.length; i++) {
  //         if (hasRole(msg.sender, roleNames[i])) {
  //             hasAnyRole = true;
  //             break;
  //         }
  //     }

  //     require(hasAnyRole);

  //     _;
  // }
}









/**
 * @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 DetailedERC20 token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

  constructor(string _name, string _symbol, uint8 _decimals) public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
  }
}












/**
 * @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) balances;

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

    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 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)) internal allowed;


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

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    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,
    uint _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,
    uint _subtractedValue
  )
    public
    returns (bool)
  {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit 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();
  }
}




contract PausableToken is StandardToken, Pausable, RBAC {

    string public constant ROLE_ADMINISTRATOR = "administrator";

    modifier whenNotPausedOrAuthorized() {
        require(!paused || hasRole(msg.sender, ROLE_ADMINISTRATOR));
        _;
    }
    /**
     * @dev Add an address that can administer the token even when paused.
     * @param _administrator Address of the given administrator.
     * @return True if the administrator has been added, false if the address was already an administrator.
     */
    function addAdministrator(address _administrator) onlyOwner public returns (bool) {
        if (isAdministrator(_administrator)) {
            return false;
        } else {
            addRole(_administrator, ROLE_ADMINISTRATOR);
            return true;
        }
    }

    /**
     * @dev Remove an administrator.
     * @param _administrator Address of the administrator to be removed.
     * @return True if the administrator has been removed,
     *  false if the address wasn't an administrator in the first place.
     */
    function removeAdministrator(address _administrator) onlyOwner public returns (bool) {
        if (isAdministrator(_administrator)) {
            removeRole(_administrator, ROLE_ADMINISTRATOR);
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Determine if address is an administrator.
     * @param _administrator Address of the administrator to be checked.
     */
    function isAdministrator(address _administrator) public view returns (bool) {
        return hasRole(_administrator, ROLE_ADMINISTRATOR);
    }

    /**
    * @dev Transfer token for a specified address with pause feature for administrator.
    * @dev Only applies when the transfer is allowed by the owner.
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public whenNotPausedOrAuthorized returns (bool) {
        return super.transfer(_to, _value);
    }

    /**
    * @dev Transfer tokens from one address to another with pause feature for administrator.
    * @dev Only applies when the transfer is allowed by the owner.
    * @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 whenNotPausedOrAuthorized returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }
}


contract Level01Token is DetailedERC20, PausableToken {

    uint256 public initialTotalSupply;
    uint256 constant INITIAL_WHOLE_TOKENS = 12 * 10e7;

    constructor()
        public
        DetailedERC20("Level01 Token", "LVX", 18)
    {
        initialTotalSupply = INITIAL_WHOLE_TOKENS * uint256(10) ** decimals;
        totalSupply_ = initialTotalSupply;
        balances[msg.sender] = initialTotalSupply;
        emit Transfer(address(0), msg.sender, initialTotalSupply);
    }
}

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":"addr","type":"address"},{"name":"roleName","type":"string"}],"name":"checkRole","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_administrator","type":"address"}],"name":"isAdministrator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"},{"name":"roleName","type":"string"}],"name":"hasRole","outputs":[{"name":"","type":"bool"}],"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":"initialTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"_administrator","type":"address"}],"name":"removeAdministrator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","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":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":"_administrator","type":"address"}],"name":"addAdministrator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ROLE_ADMINISTRATOR","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"roleName","type":"string"}],"name":"RoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"roleName","type":"string"}],"name":"RoleRemoved","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

60806040526006805460a060020a60ff02191690553480156200002157600080fd5b50604080518082018252600d81527f4c6576656c303120546f6b656e0000000000000000000000000000000000000060208083019182528351808501909452600384527f4c56580000000000000000000000000000000000000000000000000000000000908401528151919291601291620000a0916000919062000143565b508151620000b690600190602085019062000143565b506002805460ff191660ff92831617908190556006805433600160a060020a031990911681179091559116600a0a6347868c00026008819055600481905560008281526003602090815260408083208490558051938452519395509093507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3620001e8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b620001e591905b80821115620001c45760008155600101620001cf565b90565b6112a580620001f86000396000f30060806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780630988ca8c146102045780630a2eb3011461026d57806318160ddd1461028e578063217fe6c6146102b557806323b872dd1461031c578063311028af14610346578063313ce5671461035b5780633f4ba83a146103865780635c975abb1461039b57806366188463146103b057806368fa8134146103d457806370a08231146103f5578063715018a6146104165780638456cb591461042b5780638da5cb5b1461044057806395d89b4114610471578063a9059cbb14610486578063c9991176146104aa578063d73dd623146104cb578063dd62ed3e146104ef578063ecdfdc2714610516578063f2fde38b1461052b575b600080fd5b34801561014e57600080fd5b5061015761054c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610191578181015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d857600080fd5b506101f0600160a060020a03600435166024356105da565b604080519115158252519081900360200190f35b34801561021057600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261026b958335600160a060020a03169536956044949193909101919081908401838280828437509497506106409650505050505050565b005b34801561027957600080fd5b506101f0600160a060020a03600435166106ae565b34801561029a57600080fd5b506102a36106e5565b60408051918252519081900360200190f35b3480156102c157600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526101f0958335600160a060020a03169536956044949193909101919081908401838280828437509497506106eb9650505050505050565b34801561032857600080fd5b506101f0600160a060020a036004358116906024351660443561075e565b34801561035257600080fd5b506102a36107c0565b34801561036757600080fd5b506103706107c6565b6040805160ff9092168252519081900360200190f35b34801561039257600080fd5b5061026b6107cf565b3480156103a757600080fd5b506101f0610847565b3480156103bc57600080fd5b506101f0600160a060020a0360043516602435610857565b3480156103e057600080fd5b506101f0600160a060020a0360043516610947565b34801561040157600080fd5b506102a3600160a060020a03600435166109ac565b34801561042257600080fd5b5061026b6109c7565b34801561043757600080fd5b5061026b610a35565b34801561044c57600080fd5b50610455610ab2565b60408051600160a060020a039092168252519081900360200190f35b34801561047d57600080fd5b50610157610ac1565b34801561049257600080fd5b506101f0600160a060020a0360043516602435610b1b565b3480156104b657600080fd5b506101f0600160a060020a0360043516610b74565b3480156104d757600080fd5b506101f0600160a060020a0360043516602435610bd1565b3480156104fb57600080fd5b506102a3600160a060020a0360043581169060243516610c6a565b34801561052257600080fd5b50610157610c95565b34801561053757600080fd5b5061026b600160a060020a0360043516610cba565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d25780601f106105a7576101008083540402835291602001916105d2565b820191906000526020600020905b8154815290600101906020018083116105b557829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6106aa826007836040518082805190602001908083835b602083106106765780518252601f199092019160209182019101610657565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610cdd565b5050565b60006106dd826040805190810160405280600d815260200160008051602061125a8339815191528152506106eb565b90505b919050565b60045490565b6000610757836007846040518082805190602001908083835b602083106107235780518252601f199092019160209182019101610704565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610cf2565b9392505050565b60065460009060a060020a900460ff1615806107a257506107a2336040805190810160405280600d815260200160008051602061125a8339815191528152506106eb565b15156107ad57600080fd5b6107b8848484610d11565b949350505050565b60085481565b60025460ff1681565b600654600160a060020a031633146107e657600080fd5b60065460a060020a900460ff1615156107fe57600080fd5b6006805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60065460a060020a900460ff1681565b336000908152600560209081526040808320600160a060020a0386168452909152812054808311156108ac57336000908152600560209081526040808320600160a060020a03881684529091528120556108e1565b6108bc818463ffffffff610e8a16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600654600090600160a060020a0316331461096157600080fd5b61096a826106ae565b156109a45761099c826040805190810160405280600d815260200160008051602061125a833981519152815250610e9c565b5060016106e0565b5060006106e0565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146109de57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600160a060020a03163314610a4c57600080fd5b60065460a060020a900460ff1615610a6357600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d25780601f106105a7576101008083540402835291602001916105d2565b60065460009060a060020a900460ff161580610b5f5750610b5f336040805190810160405280600d815260200160008051602061125a8339815191528152506106eb565b1515610b6a57600080fd5b6107578383610fbd565b600654600090600160a060020a03163314610b8e57600080fd5b610b97826106ae565b15610ba4575060006106e0565b61099c826040805190810160405280600d815260200160008051602061125a8339815191528152506110a0565b336000908152600560209081526040808320600160a060020a0386168452909152812054610c05908363ffffffff61118116565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60408051808201909152600d815260008051602061125a833981519152602082015281565b600654600160a060020a03163314610cd157600080fd5b610cda81611194565b50565b610ce78282610cf2565b15156106aa57600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b6000600160a060020a0383161515610d2857600080fd5b600160a060020a038416600090815260036020526040902054821115610d4d57600080fd5b600160a060020a0384166000908152600560209081526040808320338452909152902054821115610d7d57600080fd5b600160a060020a038416600090815260036020526040902054610da6908363ffffffff610e8a16565b600160a060020a038086166000908152600360205260408082209390935590851681522054610ddb908363ffffffff61118116565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610e1f908363ffffffff610e8a16565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610e9657fe5b50900390565b610f06826007836040518082805190602001908083835b60208310610ed25780518252601f199092019160209182019101610eb3565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611212565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f7e578181015183820152602001610f66565b50505050905090810190601f168015610fab5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b6000600160a060020a0383161515610fd457600080fd5b33600090815260036020526040902054821115610ff057600080fd5b33600090815260036020526040902054611010908363ffffffff610e8a16565b3360009081526003602052604080822092909255600160a060020a03851681522054611042908363ffffffff61118116565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b61110a826007836040518082805190602001908083835b602083106110d65780518252601f1990920191602091820191016110b7565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611234565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383600083811015610f7e578181015183820152602001610f66565b8181018281101561118e57fe5b92915050565b600160a060020a03811615156111a957600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0316600090815260209190915260409020805460ff19166001179055560061646d696e6973747261746f7200000000000000000000000000000000000000a165627a7a7230582088cbe3d58b159ac9860b0e4ccf4ee7c2ada97cbf9c052a6b966e95ef9bfaeac70029

Deployed Bytecode

0x60806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780630988ca8c146102045780630a2eb3011461026d57806318160ddd1461028e578063217fe6c6146102b557806323b872dd1461031c578063311028af14610346578063313ce5671461035b5780633f4ba83a146103865780635c975abb1461039b57806366188463146103b057806368fa8134146103d457806370a08231146103f5578063715018a6146104165780638456cb591461042b5780638da5cb5b1461044057806395d89b4114610471578063a9059cbb14610486578063c9991176146104aa578063d73dd623146104cb578063dd62ed3e146104ef578063ecdfdc2714610516578063f2fde38b1461052b575b600080fd5b34801561014e57600080fd5b5061015761054c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610191578181015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d857600080fd5b506101f0600160a060020a03600435166024356105da565b604080519115158252519081900360200190f35b34801561021057600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261026b958335600160a060020a03169536956044949193909101919081908401838280828437509497506106409650505050505050565b005b34801561027957600080fd5b506101f0600160a060020a03600435166106ae565b34801561029a57600080fd5b506102a36106e5565b60408051918252519081900360200190f35b3480156102c157600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526101f0958335600160a060020a03169536956044949193909101919081908401838280828437509497506106eb9650505050505050565b34801561032857600080fd5b506101f0600160a060020a036004358116906024351660443561075e565b34801561035257600080fd5b506102a36107c0565b34801561036757600080fd5b506103706107c6565b6040805160ff9092168252519081900360200190f35b34801561039257600080fd5b5061026b6107cf565b3480156103a757600080fd5b506101f0610847565b3480156103bc57600080fd5b506101f0600160a060020a0360043516602435610857565b3480156103e057600080fd5b506101f0600160a060020a0360043516610947565b34801561040157600080fd5b506102a3600160a060020a03600435166109ac565b34801561042257600080fd5b5061026b6109c7565b34801561043757600080fd5b5061026b610a35565b34801561044c57600080fd5b50610455610ab2565b60408051600160a060020a039092168252519081900360200190f35b34801561047d57600080fd5b50610157610ac1565b34801561049257600080fd5b506101f0600160a060020a0360043516602435610b1b565b3480156104b657600080fd5b506101f0600160a060020a0360043516610b74565b3480156104d757600080fd5b506101f0600160a060020a0360043516602435610bd1565b3480156104fb57600080fd5b506102a3600160a060020a0360043581169060243516610c6a565b34801561052257600080fd5b50610157610c95565b34801561053757600080fd5b5061026b600160a060020a0360043516610cba565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d25780601f106105a7576101008083540402835291602001916105d2565b820191906000526020600020905b8154815290600101906020018083116105b557829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6106aa826007836040518082805190602001908083835b602083106106765780518252601f199092019160209182019101610657565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610cdd565b5050565b60006106dd826040805190810160405280600d815260200160008051602061125a8339815191528152506106eb565b90505b919050565b60045490565b6000610757836007846040518082805190602001908083835b602083106107235780518252601f199092019160209182019101610704565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610cf2565b9392505050565b60065460009060a060020a900460ff1615806107a257506107a2336040805190810160405280600d815260200160008051602061125a8339815191528152506106eb565b15156107ad57600080fd5b6107b8848484610d11565b949350505050565b60085481565b60025460ff1681565b600654600160a060020a031633146107e657600080fd5b60065460a060020a900460ff1615156107fe57600080fd5b6006805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60065460a060020a900460ff1681565b336000908152600560209081526040808320600160a060020a0386168452909152812054808311156108ac57336000908152600560209081526040808320600160a060020a03881684529091528120556108e1565b6108bc818463ffffffff610e8a16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600654600090600160a060020a0316331461096157600080fd5b61096a826106ae565b156109a45761099c826040805190810160405280600d815260200160008051602061125a833981519152815250610e9c565b5060016106e0565b5060006106e0565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a031633146109de57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600160a060020a03163314610a4c57600080fd5b60065460a060020a900460ff1615610a6357600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d25780601f106105a7576101008083540402835291602001916105d2565b60065460009060a060020a900460ff161580610b5f5750610b5f336040805190810160405280600d815260200160008051602061125a8339815191528152506106eb565b1515610b6a57600080fd5b6107578383610fbd565b600654600090600160a060020a03163314610b8e57600080fd5b610b97826106ae565b15610ba4575060006106e0565b61099c826040805190810160405280600d815260200160008051602061125a8339815191528152506110a0565b336000908152600560209081526040808320600160a060020a0386168452909152812054610c05908363ffffffff61118116565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60408051808201909152600d815260008051602061125a833981519152602082015281565b600654600160a060020a03163314610cd157600080fd5b610cda81611194565b50565b610ce78282610cf2565b15156106aa57600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b6000600160a060020a0383161515610d2857600080fd5b600160a060020a038416600090815260036020526040902054821115610d4d57600080fd5b600160a060020a0384166000908152600560209081526040808320338452909152902054821115610d7d57600080fd5b600160a060020a038416600090815260036020526040902054610da6908363ffffffff610e8a16565b600160a060020a038086166000908152600360205260408082209390935590851681522054610ddb908363ffffffff61118116565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610e1f908363ffffffff610e8a16565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610e9657fe5b50900390565b610f06826007836040518082805190602001908083835b60208310610ed25780518252601f199092019160209182019101610eb3565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611212565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f7e578181015183820152602001610f66565b50505050905090810190601f168015610fab5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b6000600160a060020a0383161515610fd457600080fd5b33600090815260036020526040902054821115610ff057600080fd5b33600090815260036020526040902054611010908363ffffffff610e8a16565b3360009081526003602052604080822092909255600160a060020a03851681522054611042908363ffffffff61118116565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b61110a826007836040518082805190602001908083835b602083106110d65780518252601f1990920191602091820191016110b7565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611234565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383600083811015610f7e578181015183820152602001610f66565b8181018281101561118e57fe5b92915050565b600160a060020a03811615156111a957600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0316600090815260209190915260409020805460ff19166001179055560061646d696e6973747261746f7200000000000000000000000000000000000000a165627a7a7230582088cbe3d58b159ac9860b0e4ccf4ee7c2ada97cbf9c052a6b966e95ef9bfaeac70029

Swarm Source

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