ETH Price: $3,389.44 (-1.52%)
Gas: 2 Gwei

Token

NLC Token (NLC)
 

Overview

Max Total Supply

100,000,000 NLC

Holders

2,985

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Remitano 2
Balance
6,000 NLC

Value
$0.00
0x2819c144d5946404c0516b6f817a960db37d4929
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:
NightlightToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-01-04
*/

/**
 *Submitted for verification at Etherscan.io on 2019-08-03
*/

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

pragma solidity ^0.4.24;

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

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring '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;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts 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;
  }

  /**
  * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

  /**
  * @dev Adds two numbers, reverts on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a);

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  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/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract ERC20 is IERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;

  mapping (address => mapping (address => uint256)) private _allowed;

  uint256 private _totalSupply;

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

  /**
  * @dev Gets the balance of the specified address.
  * @param owner The address to query 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];
  }

  /**
   * @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 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) {
    _transfer(msg.sender, 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) {
    require(spender != address(0));

    _allowed[msg.sender][spender] = value;
    emit Approval(msg.sender, spender, value);
    return true;
  }

  /**
   * @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 <= _allowed[from][msg.sender]);

    _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
    _transfer(from, to, value);
    return true;
  }

  /**
   * @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 increaseAllowance(
    address spender,
    uint256 addedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _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 decreaseAllowance(
    address spender,
    uint256 subtractedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].sub(subtractedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

  /**
  * @dev Transfer token for a specified addresses
  * @param from The address to transfer from.
  * @param to The address to transfer to.
  * @param value The amount to be transferred.
  */
  function _transfer(address from, address to, uint256 value) internal {
    require(value <= _balances[from]);
    require(to != address(0));

    _balances[from] = _balances[from].sub(value);
    _balances[to] = _balances[to].add(value);
    emit Transfer(from, to, value);
  }

  /**
   * @dev Internal function that mints an amount of the token and assigns it to
   * an account. This encapsulates the modification of balances such that the
   * proper events are emitted.
   * @param account The account that will receive the created tokens.
   * @param value The amount that will be created.
   */
  function _mint(address account, uint256 value) internal {
    require(account != 0);
    _totalSupply = _totalSupply.add(value);
    _balances[account] = _balances[account].add(value);
    emit Transfer(address(0), account, value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burn(address account, uint256 value) internal {
    require(account != 0);
    require(value <= _balances[account]);

    _totalSupply = _totalSupply.sub(value);
    _balances[account] = _balances[account].sub(value);
    emit Transfer(account, address(0), value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account, deducting from the sender's allowance for said account. Uses the
   * internal burn function.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burnFrom(address account, uint256 value) internal {
    require(value <= _allowed[account][msg.sender]);

    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
      value);
    _burn(account, 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 private _owner;

  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;
    emit OwnershipTransferred(address(0), _owner);
  }

  /**
   * @return the address of the owner.
   */
  function owner() public view returns(address) {
    return _owner;
  }

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

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return 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 OwnershipTransferred(_owner, address(0));
    _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 ERC20Detailed 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 ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20, Ownable {

  /**
   * @dev Burns a specific amount of tokens.
   * @param value The amount of token to be burned.
   */
  function burn(uint256 value) onlyOwner public {
    _burn(msg.sender, value);
  }

  /**
   * @dev Burns a specific amount of tokens from the target address and decrements allowance
   * @param from address The address which you want to send tokens from
   * @param value uint256 The amount of token to be burned
   */
  function burnFrom(address from, uint256 value) onlyOwner public {
    _burnFrom(from, value);
  }
}


/**
 * @title HadaCoinV18
 */
contract NightlightToken is ERC20Burnable,ERC20Detailed {

  uint8 public constant DECIMALS = 18;
    uint256 public constant INITIAL_SUPPLY = 100000000 * (10 ** uint256(DECIMALS)); 

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("NLC Token", "NLC", 18) {
        _mint(msg.sender, INITIAL_SUPPLY); 
    }

}

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":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"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":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","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":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"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":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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","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"}]

60806040523480156200001157600080fd5b50604080518082018252600981527f4e4c4320546f6b656e00000000000000000000000000000000000000000000006020808301919091528251808401845260038082527f4e4c430000000000000000000000000000000000000000000000000000000000928201929092528154600160a060020a0319163317918290559251919291601291600160a060020a0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620000de9060049060208601906200020b565b508151620000f49060059060208501906200020b565b506006805460ff191660ff92909216919091179055506200012c9050336a52b7d2dcc80cd2e400000064010000000062000132810204565b620002b0565b600160a060020a03821615156200014857600080fd5b60025462000165908264010000000062000972620001f182021704565b600255600160a060020a0382166000908152602081905260409020546200019b908264010000000062000972620001f182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200020457600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b620002ad91905b808211156200028c576000815560010162000297565b90565b610b9580620002c06000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632e0f26251461021e5780632ff2e9dc14610249578063313ce5671461025e578063395093511461027357806342966c681461029757806370a08231146102b1578063715018a6146102d257806379cc6790146102e75780638da5cb5b1461030b5780638f32d59b1461033c57806395d89b4114610351578063a457c2d714610366578063a9059cbb1461038a578063dd62ed3e146103ae578063f2fde38b146103d5575b600080fd5b34801561011757600080fd5b506101206103f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561048c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e261050a565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a0360043581169060243516604435610510565b34801561022a57600080fd5b506102336105ad565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101e26105b2565b34801561026a57600080fd5b506102336105c1565b34801561027f57600080fd5b506101b9600160a060020a03600435166024356105ca565b3480156102a357600080fd5b506102af60043561067a565b005b3480156102bd57600080fd5b506101e2600160a060020a036004351661069a565b3480156102de57600080fd5b506102af6106b5565b3480156102f357600080fd5b506102af600160a060020a036004351660243561071f565b34801561031757600080fd5b50610320610740565b60408051600160a060020a039092168252519081900360200190f35b34801561034857600080fd5b506101b961074f565b34801561035d57600080fd5b50610120610760565b34801561037257600080fd5b506101b9600160a060020a03600435166024356107c1565b34801561039657600080fd5b506101b9600160a060020a036004351660243561080c565b3480156103ba57600080fd5b506101e2600160a060020a0360043581169060243516610822565b3480156103e157600080fd5b506102af600160a060020a036004351661084d565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b6000600160a060020a03831615156104a357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561054057600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610574908363ffffffff61086916565b600160a060020a03851660009081526001602090815260408083203384529091529020556105a3848484610880565b5060019392505050565b601281565b6a52b7d2dcc80cd2e400000081565b60065460ff1690565b6000600160a060020a03831615156105e157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61097216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61068261074f565b151561068d57600080fd5b610697338261098b565b50565b600160a060020a031660009081526020819052604090205490565b6106bd61074f565b15156106c857600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b61072761074f565b151561073257600080fd5b61073c8282610a59565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b6000600160a060020a03831615156107d857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61086916565b6000610819338484610880565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b61085561074f565b151561086057600080fd5b61069781610aeb565b6000808383111561087957600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156108a557600080fd5b600160a060020a03821615156108ba57600080fd5b600160a060020a0383166000908152602081905260409020546108e3908263ffffffff61086916565b600160a060020a038085166000908152602081905260408082209390935590841681522054610918908263ffffffff61097216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561098457600080fd5b9392505050565b600160a060020a03821615156109a057600080fd5b600160a060020a0382166000908152602081905260409020548111156109c557600080fd5b6002546109d8908263ffffffff61086916565b600255600160a060020a038216600090815260208190526040902054610a04908263ffffffff61086916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054811115610a8957600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610abd908263ffffffff61086916565b600160a060020a038316600090815260016020908152604080832033845290915290205561073c828261098b565b600160a060020a0381161515610b0057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582041c369e1fb3c1b0a7d2d8afdf39cfeebf77ba845faf831a47113c3bf186aeb3d0029

Deployed Bytecode

0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632e0f26251461021e5780632ff2e9dc14610249578063313ce5671461025e578063395093511461027357806342966c681461029757806370a08231146102b1578063715018a6146102d257806379cc6790146102e75780638da5cb5b1461030b5780638f32d59b1461033c57806395d89b4114610351578063a457c2d714610366578063a9059cbb1461038a578063dd62ed3e146103ae578063f2fde38b146103d5575b600080fd5b34801561011757600080fd5b506101206103f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561048c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e261050a565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a0360043581169060243516604435610510565b34801561022a57600080fd5b506102336105ad565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101e26105b2565b34801561026a57600080fd5b506102336105c1565b34801561027f57600080fd5b506101b9600160a060020a03600435166024356105ca565b3480156102a357600080fd5b506102af60043561067a565b005b3480156102bd57600080fd5b506101e2600160a060020a036004351661069a565b3480156102de57600080fd5b506102af6106b5565b3480156102f357600080fd5b506102af600160a060020a036004351660243561071f565b34801561031757600080fd5b50610320610740565b60408051600160a060020a039092168252519081900360200190f35b34801561034857600080fd5b506101b961074f565b34801561035d57600080fd5b50610120610760565b34801561037257600080fd5b506101b9600160a060020a03600435166024356107c1565b34801561039657600080fd5b506101b9600160a060020a036004351660243561080c565b3480156103ba57600080fd5b506101e2600160a060020a0360043581169060243516610822565b3480156103e157600080fd5b506102af600160a060020a036004351661084d565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b6000600160a060020a03831615156104a357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561054057600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610574908363ffffffff61086916565b600160a060020a03851660009081526001602090815260408083203384529091529020556105a3848484610880565b5060019392505050565b601281565b6a52b7d2dcc80cd2e400000081565b60065460ff1690565b6000600160a060020a03831615156105e157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61097216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61068261074f565b151561068d57600080fd5b610697338261098b565b50565b600160a060020a031660009081526020819052604090205490565b6106bd61074f565b15156106c857600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b61072761074f565b151561073257600080fd5b61073c8282610a59565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b6000600160a060020a03831615156107d857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61086916565b6000610819338484610880565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b61085561074f565b151561086057600080fd5b61069781610aeb565b6000808383111561087957600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156108a557600080fd5b600160a060020a03821615156108ba57600080fd5b600160a060020a0383166000908152602081905260409020546108e3908263ffffffff61086916565b600160a060020a038085166000908152602081905260408082209390935590841681522054610918908263ffffffff61097216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561098457600080fd5b9392505050565b600160a060020a03821615156109a057600080fd5b600160a060020a0382166000908152602081905260409020548111156109c557600080fd5b6002546109d8908263ffffffff61086916565b600255600160a060020a038216600090815260208190526040902054610a04908263ffffffff61086916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054811115610a8957600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610abd908263ffffffff61086916565b600160a060020a038316600090815260016020908152604080832033845290915290205561073c828261098b565b600160a060020a0381161515610b0057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582041c369e1fb3c1b0a7d2d8afdf39cfeebf77ba845faf831a47113c3bf186aeb3d0029

Deployed Bytecode Sourcemap

13497:400:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12363:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12363:83: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;12363:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5022:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5022:226:0;-1:-1:-1;;;;;5022:226:0;;;;;;;;;;;;;;;;;;;;;;;;;3233:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3233:85:0;;;;;;;;;;;;;;;;;;;;5528:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5528:301:0;-1:-1:-1;;;;;5528:301:0;;;;;;;;;;;;13560:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13560:35:0;;;;;;;;;;;;;;;;;;;;;;;13602:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13602:78:0;;;;12679:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12679:83:0;;;;6291:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6291:343:0;-1:-1:-1;;;;;6291:343:0;;;;;;;13026:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13026:83:0;;;;;;;3522:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3522:100:0;-1:-1:-1;;;;;3522:100:0;;;;;11044:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11044:130:0;;;;13356:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13356:99:0;-1:-1:-1;;;;;13356:99:0;;;;;;;10385:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10385:72:0;;;;;;;;-1:-1:-1;;;;;10385:72:0;;;;;;;;;;;;;;10687:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10687:85:0;;;;12513:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12513:87:0;;;;7101:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7101:353:0;-1:-1:-1;;;;;7101:353:0;;;;;;;4265:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4265:130:0;-1:-1:-1;;;;;4265:130:0;;;;;;;3947:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3947:159:0;-1:-1:-1;;;;;3947:159:0;;;;;;;;;;11341:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11341:103:0;-1:-1:-1;;;;;11341:103:0;;;;;12363:83;12433:5;12426:12;;;;;;;;-1:-1:-1;;12426:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12400:6;;12426:12;;12433:5;;12426:12;;12433:5;12426:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12363:83;:::o;5022:226::-;5087:4;-1:-1:-1;;;;;5108:21:0;;;;5100:30;;;;;;5148:10;5139:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;5139:29:0;;;;;;;;;;;;:37;;;5188:36;;;;;;;5139:29;;5148:10;5188:36;;;;;;;;;;;-1:-1:-1;5238:4:0;5022:226;;;;:::o;3233:85::-;3300:12;;3233:85;:::o;5528:301::-;-1:-1:-1;;;;;5670:14:0;;5637:4;5670:14;;;:8;:14;;;;;;;;5685:10;5670:26;;;;;;;;5661:35;;;5653:44;;;;;;-1:-1:-1;;;;;5735:14:0;;;;;;:8;:14;;;;;;;;5750:10;5735:26;;;;;;;;:37;;5766:5;5735:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5706:14:0;;;;;;:8;:14;;;;;;;;5721:10;5706:26;;;;;;;:66;5779:26;5715:4;5795:2;5799:5;5779:9;:26::i;:::-;-1:-1:-1;5819:4:0;5528:301;;;;;:::o;13560:35::-;13593:2;13560:35;:::o;13602:78::-;13643:37;13602:78;:::o;12679:83::-;12745:9;;;;12679:83;:::o;6291:343::-;6396:4;-1:-1:-1;;;;;6420:21:0;;;;6412:30;;;;;;6501:10;6492:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6492:29:0;;;;;;;;;;:45;;6526:10;6492:45;:33;:45;:::i;:::-;6460:10;6451:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6451:29:0;;;;;;;;;;;;:87;;;6550:60;;;;;;6451:29;;6550:60;;;;;;;;;;;-1:-1:-1;6624:4:0;6291:343;;;;:::o;13026:83::-;10578:9;:7;:9::i;:::-;10570:18;;;;;;;;13079:24;13085:10;13097:5;13079;:24::i;:::-;13026:83;:::o;3522:100::-;-1:-1:-1;;;;;3600:16:0;3577:7;3600:16;;;;;;;;;;;;3522:100::o;11044:130::-;10578:9;:7;:9::i;:::-;10570:18;;;;;;;;11123:6;;11102:40;;11139:1;;-1:-1:-1;;;;;11123:6:0;;11102:40;;11139:1;;11102:40;11149:6;:19;;-1:-1:-1;;11149:19:0;;;11044:130::o;13356:99::-;10578:9;:7;:9::i;:::-;10570:18;;;;;;;;13427:22;13437:4;13443:5;13427:9;:22::i;:::-;13356:99;;:::o;10385:72::-;10445:6;;-1:-1:-1;;;;;10445:6:0;10385:72;:::o;10687:85::-;10760:6;;-1:-1:-1;;;;;10760:6:0;10746:10;:20;;10687:85::o;12513:87::-;12585:7;12578:14;;;;;;;;-1:-1:-1;;12578:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12552:6;;12578:14;;12585:7;;12578:14;;12585:7;12578:14;;;;;;;;;;;;;;;;;;;;;;;;7101:353;7211:4;-1:-1:-1;;;;;7235:21:0;;;;7227:30;;;;;;7316:10;7307:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7307:29:0;;;;;;;;;;:50;;7341:15;7307:50;:33;:50;:::i;4265:130::-;4326:4;4339:32;4349:10;4361:2;4365:5;4339:9;:32::i;:::-;-1:-1:-1;4385:4:0;4265:130;;;;:::o;3947:159::-;-1:-1:-1;;;;;4076:15:0;;;4050:7;4076:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3947:159::o;11341:103::-;10578:9;:7;:9::i;:::-;10570:18;;;;;;;;11410:28;11429:8;11410:18;:28::i;1259:136::-;1317:7;;1341:6;;;;1333:15;;;;;;-1:-1:-1;;1367:5:0;;;1259:136::o;7662:284::-;-1:-1:-1;;;;;7755:15:0;;:9;:15;;;;;;;;;;;7746:24;;;7738:33;;;;;;-1:-1:-1;;;;;7786:16:0;;;;7778:25;;;;;;-1:-1:-1;;;;;7830:15:0;;:9;:15;;;;;;;;;;;:26;;7850:5;7830:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7812:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7879:13;;;;;;;:24;;7897:5;7879:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7863:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7915:25;;;;;;;7863:13;;7915:25;;;;;;;;;;;;;7662:284;;;:::o;1463:136::-;1521:7;1549:5;;;1569:6;;;;1561:15;;;;;;1592:1;1463:136;-1:-1:-1;;;1463:136:0:o;8742:285::-;-1:-1:-1;;;;;8813:12:0;;;;8805:21;;;;;;-1:-1:-1;;;;;8850:18:0;;:9;:18;;;;;;;;;;;8841:27;;;8833:36;;;;;;8893:12;;:23;;8910:5;8893:23;:16;:23;:::i;:::-;8878:12;:38;-1:-1:-1;;;;;8944:18:0;;:9;:18;;;;;;;;;;;:29;;8967:5;8944:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8923:18:0;;:9;:18;;;;;;;;;;;:50;;;;8985:36;;;;;;;8923:9;;8985:36;;;;;;;;;;;8742:285;;:::o;9342:398::-;-1:-1:-1;;;;;9426:17:0;;;;;;:8;:17;;;;;;;;9444:10;9426:29;;;;;;;;9417:38;;;9409:47;;;;;;-1:-1:-1;;;;;9658:17:0;;;;;;:8;:17;;;;;;;;9676:10;9658:29;;;;;;;;:48;;9700:5;9658:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;9626:17:0;;;;;;:8;:17;;;;;;;;9644:10;9626:29;;;;;;;:80;9713:21;9635:7;9728:5;9713;:21::i;11584:173::-;-1:-1:-1;;;;;11654:22:0;;;;11646:31;;;;;;11710:6;;11689:38;;-1:-1:-1;;;;;11689:38:0;;;;11710:6;;11689:38;;11710:6;;11689:38;11734:6;:17;;-1:-1:-1;;11734:17:0;-1:-1:-1;;;;;11734:17:0;;;;;;;;;;11584:173::o

Swarm Source

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