ETH Price: $2,927.11 (+4.77%)
 

Overview

Max Total Supply

2,000,000,000 LEAX

Holders

506 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Leaxcoin

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-07-19
*/

pragma solidity ^0.4.21;


contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public constant 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.
   */
    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 transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}
/**
 * @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 ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public constant 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);
}

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

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

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

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

/**
 * @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(0x0));

    // SafeMath.sub will throw if there is not enough balance.
    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 constant returns (uint256 balance) {
    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, Pausable {

  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 whenNotPaused returns (bool) {
    require(_to != address(0x0));

    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);
    emit Transfer(_from, _to, _value);
    return true;
  }

  
  function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  function allowance(address _owner, address _spender) public constant whenNotPaused returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

  
  function increaseApproval (address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public whenNotPaused 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);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract Leaxcoin is StandardToken {
    using SafeMath for uint256;

    //Information coin
    string public name = "Leaxcoin";
    string public symbol = "LEAX";
    uint256 public decimals = 18;
    uint256 public totalSupply = 2000000000 * (10 ** decimals); //2 000 000 000 LEAX

    //Adress informated in white paper 
    address public walletETH;               //Wallet ETH
    address public contractAddress = this;  //12%  Team
    address public tokenSale;               //50%  ICO    
    address public bounty;                  //15%  bounty
    address public awardsReservations;      //23%  awards plataforma view in whitepaper  
    

    //Utils ICO   
    uint256 public tokensSold = 0;          //total number of tokens sold
    uint256 public totalRaised = 0;         //total amount of money raised in wei
    uint256 public totalTokenToSale = 0;
    uint256 public rate = 10000;             //LEAX/ETH rate
    bool public pauseEmergence = false;     //the owner address can set this to true to halt the crowdsale due to emergency
    

    //Time Start and Time end
    uint256 public icoStartTimestampStage = 1532563200;             //07/26/2018 @ 12:00am (UTC)
    uint256 public icoEndTimestampStage = 1540598399;               //10/26/2018 @ 11:59pm (UTC)
    uint256 public tokensTeamBlockedTimestamp = 1572134399;         //10/26/2019 @ 11:59pm (UTC)

// =================================== Events ================================================

    event Burn(address indexed burner, uint256 value);  


// =================================== Constructor =============================================
       
    constructor() public {         
      walletETH = 0x4B8353Df6F3a0775C4a428453eCF5289867005c2;
      tokenSale = 0x9eEb17dcC7494A40876b5e91a97Ec7BdFD1eb83D;                 //50%     
      bounty = 0x16F96C97487e27003cE1Ce37d7C95ab3E11BD6fe;                    //15%
      awardsReservations = 0x9Be9a6bA9Bc24c87DbC97F01594E81Ec4cFC5008;        //23% 

      //Distribution Token  
      balances[tokenSale] = totalSupply.mul(50).div(100);             //totalSupply * 50%  
      balances[bounty] = totalSupply.mul(15).div(100);                //totalSupply * 15%
      balances[contractAddress] = totalSupply.mul(12).div(100);       //totalSupply * 12%
      balances[awardsReservations] = totalSupply.mul(23).div(100);    //totalSupply * 23% 
     
      //set token to sale
      totalTokenToSale = balances[tokenSale];           
    }

 // ======================================== Modifier ==================================================

    modifier acceptsFunds() {   
        require(now >= icoStartTimestampStage);          
        require(now <= icoEndTimestampStage); 
        _;
    }    

    modifier nonZeroBuy() {
        require(msg.value > 0);
        _;

    }

    modifier PauseEmergence {
        require(!pauseEmergence);
       _;
    } 

//========================================== Functions ===========================================================================

    /// fallback function to buy tokens
    function () PauseEmergence nonZeroBuy acceptsFunds payable public {  
        uint256 amount = msg.value.mul(rate);
        
        assignTokens(msg.sender, amount);
        totalRaised = totalRaised.add(msg.value);
        forwardFundsToWallet();
    } 

    function forwardFundsToWallet() internal {
        // immediately send Ether to wallet address, propagates exception if execution fails        
        walletETH.transfer(msg.value); 
    }

    function assignTokens(address recipient, uint256 amount) internal {
        uint256 amountTotal = amount;       
        
        balances[tokenSale] = balances[tokenSale].sub(amountTotal);   
        balances[recipient] = balances[recipient].add(amountTotal);
        tokensSold = tokensSold.add(amountTotal);        
       
        //test token sold, if it was sold more than the total available right total token total
        if (tokensSold > totalTokenToSale) {
            uint256 diferenceTotalSale = totalTokenToSale.sub(tokensSold);
            totalTokenToSale = tokensSold;
            totalSupply = tokensSold.add(diferenceTotalSale);
        }
        
        emit Transfer(0x0, recipient, amountTotal);
    }  

    function manuallyAssignTokens(address recipient, uint256 amount) public onlyOwner {
        require(tokensSold < totalSupply);
        assignTokens(recipient, amount);
    }

    function setRate(uint256 _rate) public onlyOwner { 
        require(_rate > 0);               
        rate = _rate;        
    }

    function setPauseEmergence() public onlyOwner {        
        pauseEmergence = true;
    }

    function setUnPauseEmergence() public onlyOwner {        
        pauseEmergence = false;
    }   

    function sendTokenTeamAdvisor(address walletTeam) public onlyOwner {
        //test deadline to request token
        require(now >= tokensTeamBlockedTimestamp);
        require(walletTeam != 0x0);       
        
        uint256 amount = 240000000 * (10 ** decimals);
        
        //send tokens 
        balances[contractAddress] = 0;
        balances[walletTeam] = balances[walletTeam].add(amount);       
        
        emit Transfer(contractAddress, walletTeam, amount);
    }

    function burn(uint256 _value) public whenNotPaused {
        require(_value > 0);

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        emit Burn(burner, _value);
    }   
    
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"awardsReservations","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenToSale","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"manuallyAssignTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"pauseEmergence","outputs":[{"name":"","type":"bool"}],"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":"bounty","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"walletETH","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"icoEndTimestampStage","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensTeamBlockedTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenSale","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setPauseEmergence","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[],"name":"setUnPauseEmergence","outputs":[],"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":true,"inputs":[],"name":"icoStartTimestampStage","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"walletTeam","type":"address"}],"name":"sendTokenTeamAdvisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"},{"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"}]

6002805460a060020a60ff021916905560c0604052600860808190527f4c656178636f696e00000000000000000000000000000000000000000000000060a09081526200005091600491906200030b565b506040805180820190915260048082527f4c45415800000000000000000000000000000000000000000000000000000000602090920191825262000097916005916200030b565b50601260068190556b06765c793fa10079d000000060075560098054600160a060020a031916301790556000600d819055600e819055600f556127106010556011805460ff19169055635b590f009055635bd3aa7f601355635db4ddff6014553480156200010457600080fd5b5060028054600160a060020a03199081163317909155600880548216734b8353df6f3a0775c4a428453ecf5289867005c2179055600a80548216739eeb17dcc7494a40876b5e91a97ec7bdfd1eb83d179055600b805482167316f96c97487e27003ce1ce37d7c95ab3e11bd6fe179055600c8054909116739be9a6ba9bc24c87dbc97f01594e81ec4cfc5008179055600754620001ce90606490620001b990603264010000000062000669620002c582021704565b90640100000000620011c2620002f382021704565b600a54600160a060020a03166000908152600160205260409020556007546200020f90606490620001b990600f64010000000062000669620002c582021704565b600b54600160a060020a03166000908152600160205260409020556007546200025090606490620001b990600c64010000000062000669620002c582021704565b600954600160a060020a03166000908152600160205260409020556007546200029190606490620001b990601764010000000062000669620002c582021704565b600c54600160a060020a0390811660009081526001602052604080822093909355600a5490911681522054600f55620003b0565b6000828202831580620002e35750828482811515620002e057fe5b04145b1515620002ec57fe5b9392505050565b60008082848115156200030257fe5b04949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200034e57805160ff19168380011785556200037e565b828001600101855582156200037e579182015b828111156200037e57825182559160200191906001019062000361565b506200038c92915062000390565b5090565b620003ad91905b808211156200038c576000815560010162000397565b90565b61122580620003c06000396000f3006080604052600436106101b65763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304b4e7e5811461023557806306fdde0314610266578063095ea7b3146102f05780631067f3611461032857806318160ddd1461034f5780631d1ada901461036457806323b872dd1461038a5780632c4e722e146103b4578063313ce567146103c957806334fcf437146103de5780633f4ba83a146103f657806342966c681461040b578063518ab2a8146104235780635c975abb14610438578063661884631461044d57806370a082311461047157806379162aeb146104925780638456cb59146104a75780638da5cb5b146104bc578063943dfef1146104d157806395d89b41146104e65780639d0c1e6f146104fb578063a9059cbb14610510578063af8d5a4814610534578063b23096e914610549578063b94203101461055e578063c58684ab14610573578063c5c4744c14610588578063d73dd6231461059d578063d7eae6db146105c1578063dd62ed3e146105d6578063dee1cfd8146105fd578063df66fc1414610612578063f2fde38b14610633578063f6b4dfb414610654575b60115460009060ff16156101c957600080fd5b600034116101d657600080fd5b6012544210156101e557600080fd5b6013544211156101f457600080fd5b60105461020890349063ffffffff61066916565b90506102143382610694565b600e54610227903463ffffffff61079d16565b600e556102326107ac565b50005b34801561024157600080fd5b5061024a6107e8565b60408051600160a060020a039092168252519081900360200190f35b34801561027257600080fd5b5061027b6107f7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b557818101518382015260200161029d565b50505050905090810190601f1680156102e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fc57600080fd5b50610314600160a060020a0360043516602435610885565b604080519115158252519081900360200190f35b34801561033457600080fd5b5061033d610906565b60408051918252519081900360200190f35b34801561035b57600080fd5b5061033d61090c565b34801561037057600080fd5b50610388600160a060020a0360043516602435610912565b005b34801561039657600080fd5b50610314600160a060020a0360043581169060243516604435610947565b3480156103c057600080fd5b5061033d610a70565b3480156103d557600080fd5b5061033d610a76565b3480156103ea57600080fd5b50610388600435610a7c565b34801561040257600080fd5b50610388610aa5565b34801561041757600080fd5b50610388600435610b1d565b34801561042f57600080fd5b5061033d610bd7565b34801561044457600080fd5b50610314610bdd565b34801561045957600080fd5b50610314600160a060020a0360043516602435610bed565b34801561047d57600080fd5b5061033d600160a060020a0360043516610cfa565b34801561049e57600080fd5b50610314610d15565b3480156104b357600080fd5b50610388610d1e565b3480156104c857600080fd5b5061024a610d9b565b3480156104dd57600080fd5b5061024a610daa565b3480156104f257600080fd5b5061027b610db9565b34801561050757600080fd5b5061024a610e14565b34801561051c57600080fd5b50610314600160a060020a0360043516602435610e23565b34801561054057600080fd5b5061033d610ed8565b34801561055557600080fd5b5061033d610ede565b34801561056a57600080fd5b5061024a610ee4565b34801561057f57600080fd5b50610388610ef3565b34801561059457600080fd5b5061033d610f19565b3480156105a957600080fd5b50610314600160a060020a0360043516602435610f1f565b3480156105cd57600080fd5b50610388610fd2565b3480156105e257600080fd5b5061033d600160a060020a0360043581169060243516610ff5565b34801561060957600080fd5b5061033d61103b565b34801561061e57600080fd5b50610388600160a060020a0360043516611041565b34801561063f57600080fd5b50610388600160a060020a036004351661110c565b34801561066057600080fd5b5061024a6111a1565b6000828202831580610685575082848281151561068257fe5b04145b151561068d57fe5b9392505050565b600a54600160a060020a03166000908152600160205260408120548291906106c2908363ffffffff6111b016565b600a54600160a060020a0390811660009081526001602052604080822093909355908616815220546106fa908363ffffffff61079d16565b600160a060020a038516600090815260016020526040902055600d54610726908363ffffffff61079d16565b600d819055600f54101561076857600d54600f546107499163ffffffff6111b016565b600d54600f819055909150610764908263ffffffff61079d16565b6007555b604080518381529051600160a060020a038616916000916000805160206111da8339815191529181900360200190a350505050565b60008282018381101561068d57fe5b600854604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156107e5573d6000803e3d6000fd5b50565b600c54600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b505050505081565b60025460009060a060020a900460ff161561089f57600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600f5481565b60075481565b600254600160a060020a0316331461092957600080fd5b600754600d541061093957600080fd5b6109438282610694565b5050565b600254600090819060a060020a900460ff161561096357600080fd5b600160a060020a038416151561097857600080fd5b50600160a060020a038416600081815260036020908152604080832033845282528083205493835260019091529020546109b8908463ffffffff6111b016565b600160a060020a0380871660009081526001602052604080822093909355908616815220546109ed908463ffffffff61079d16565b600160a060020a038516600090815260016020526040902055610a16818463ffffffff6111b016565b600160a060020a03808716600081815260036020908152604080832033845282529182902094909455805187815290519288169391926000805160206111da833981519152929181900390910190a3506001949350505050565b60105481565b60065481565b600254600160a060020a03163314610a9357600080fd5b60008111610aa057600080fd5b601055565b600254600160a060020a03163314610abc57600080fd5b60025460a060020a900460ff161515610ad457600080fd5b6002805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60025460009060a060020a900460ff1615610b3757600080fd5b60008211610b4457600080fd5b5033600081815260016020526040902054610b65908363ffffffff6111b016565b600160a060020a038216600090815260016020526040902055600754610b91908363ffffffff6111b016565b600755604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600d5481565b60025460a060020a900460ff1681565b600254600090819060a060020a900460ff1615610c0957600080fd5b50336000908152600360209081526040808320600160a060020a038716845290915290205480831115610c5f57336000908152600360209081526040808320600160a060020a0388168452909152812055610c94565b610c6f818463ffffffff6111b016565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60115460ff1681565b600254600160a060020a03163314610d3557600080fd5b60025460a060020a900460ff1615610d4c57600080fd5b6002805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600254600160a060020a031681565b600b54600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b600854600160a060020a031681565b6000600160a060020a0383161515610e3a57600080fd5b33600090815260016020526040902054610e5a908363ffffffff6111b016565b3360009081526001602052604080822092909255600160a060020a03851681522054610e8c908363ffffffff61079d16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206111da8339815191529281900390910190a350600192915050565b60135481565b60145481565b600a54600160a060020a031681565b600254600160a060020a03163314610f0a57600080fd5b6011805460ff19166001179055565b600e5481565b60025460009060a060020a900460ff1615610f3957600080fd5b336000908152600360209081526040808320600160a060020a0387168452909152902054610f6d908363ffffffff61079d16565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600254600160a060020a03163314610fe957600080fd5b6011805460ff19169055565b60025460009060a060020a900460ff161561100f57600080fd5b50600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60125481565b600254600090600160a060020a0316331461105b57600080fd5b60145442101561106a57600080fd5b600160a060020a038216151561107f57600080fd5b50600654600954600160a060020a0390811660009081526001602052604080822082905591841681522054600a9190910a630e4e1c0002906110c1908261079d565b600160a060020a03808416600081815260016020908152604091829020949094556009548151868152915192949316926000805160206111da83398151915292918290030190a35050565b600254600160a060020a0316331461112357600080fd5b600160a060020a038116151561113857600080fd5b600254604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600954600160a060020a031681565b6000828211156111bc57fe5b50900390565b60008082848115156111d057fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f647c3728f2bc0985cc7d3f22d63511bccad642aff3282ba6c035af27dca29e30029

Deployed Bytecode

0x6080604052600436106101b65763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166304b4e7e5811461023557806306fdde0314610266578063095ea7b3146102f05780631067f3611461032857806318160ddd1461034f5780631d1ada901461036457806323b872dd1461038a5780632c4e722e146103b4578063313ce567146103c957806334fcf437146103de5780633f4ba83a146103f657806342966c681461040b578063518ab2a8146104235780635c975abb14610438578063661884631461044d57806370a082311461047157806379162aeb146104925780638456cb59146104a75780638da5cb5b146104bc578063943dfef1146104d157806395d89b41146104e65780639d0c1e6f146104fb578063a9059cbb14610510578063af8d5a4814610534578063b23096e914610549578063b94203101461055e578063c58684ab14610573578063c5c4744c14610588578063d73dd6231461059d578063d7eae6db146105c1578063dd62ed3e146105d6578063dee1cfd8146105fd578063df66fc1414610612578063f2fde38b14610633578063f6b4dfb414610654575b60115460009060ff16156101c957600080fd5b600034116101d657600080fd5b6012544210156101e557600080fd5b6013544211156101f457600080fd5b60105461020890349063ffffffff61066916565b90506102143382610694565b600e54610227903463ffffffff61079d16565b600e556102326107ac565b50005b34801561024157600080fd5b5061024a6107e8565b60408051600160a060020a039092168252519081900360200190f35b34801561027257600080fd5b5061027b6107f7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b557818101518382015260200161029d565b50505050905090810190601f1680156102e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fc57600080fd5b50610314600160a060020a0360043516602435610885565b604080519115158252519081900360200190f35b34801561033457600080fd5b5061033d610906565b60408051918252519081900360200190f35b34801561035b57600080fd5b5061033d61090c565b34801561037057600080fd5b50610388600160a060020a0360043516602435610912565b005b34801561039657600080fd5b50610314600160a060020a0360043581169060243516604435610947565b3480156103c057600080fd5b5061033d610a70565b3480156103d557600080fd5b5061033d610a76565b3480156103ea57600080fd5b50610388600435610a7c565b34801561040257600080fd5b50610388610aa5565b34801561041757600080fd5b50610388600435610b1d565b34801561042f57600080fd5b5061033d610bd7565b34801561044457600080fd5b50610314610bdd565b34801561045957600080fd5b50610314600160a060020a0360043516602435610bed565b34801561047d57600080fd5b5061033d600160a060020a0360043516610cfa565b34801561049e57600080fd5b50610314610d15565b3480156104b357600080fd5b50610388610d1e565b3480156104c857600080fd5b5061024a610d9b565b3480156104dd57600080fd5b5061024a610daa565b3480156104f257600080fd5b5061027b610db9565b34801561050757600080fd5b5061024a610e14565b34801561051c57600080fd5b50610314600160a060020a0360043516602435610e23565b34801561054057600080fd5b5061033d610ed8565b34801561055557600080fd5b5061033d610ede565b34801561056a57600080fd5b5061024a610ee4565b34801561057f57600080fd5b50610388610ef3565b34801561059457600080fd5b5061033d610f19565b3480156105a957600080fd5b50610314600160a060020a0360043516602435610f1f565b3480156105cd57600080fd5b50610388610fd2565b3480156105e257600080fd5b5061033d600160a060020a0360043581169060243516610ff5565b34801561060957600080fd5b5061033d61103b565b34801561061e57600080fd5b50610388600160a060020a0360043516611041565b34801561063f57600080fd5b50610388600160a060020a036004351661110c565b34801561066057600080fd5b5061024a6111a1565b6000828202831580610685575082848281151561068257fe5b04145b151561068d57fe5b9392505050565b600a54600160a060020a03166000908152600160205260408120548291906106c2908363ffffffff6111b016565b600a54600160a060020a0390811660009081526001602052604080822093909355908616815220546106fa908363ffffffff61079d16565b600160a060020a038516600090815260016020526040902055600d54610726908363ffffffff61079d16565b600d819055600f54101561076857600d54600f546107499163ffffffff6111b016565b600d54600f819055909150610764908263ffffffff61079d16565b6007555b604080518381529051600160a060020a038616916000916000805160206111da8339815191529181900360200190a350505050565b60008282018381101561068d57fe5b600854604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156107e5573d6000803e3d6000fd5b50565b600c54600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b505050505081565b60025460009060a060020a900460ff161561089f57600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600f5481565b60075481565b600254600160a060020a0316331461092957600080fd5b600754600d541061093957600080fd5b6109438282610694565b5050565b600254600090819060a060020a900460ff161561096357600080fd5b600160a060020a038416151561097857600080fd5b50600160a060020a038416600081815260036020908152604080832033845282528083205493835260019091529020546109b8908463ffffffff6111b016565b600160a060020a0380871660009081526001602052604080822093909355908616815220546109ed908463ffffffff61079d16565b600160a060020a038516600090815260016020526040902055610a16818463ffffffff6111b016565b600160a060020a03808716600081815260036020908152604080832033845282529182902094909455805187815290519288169391926000805160206111da833981519152929181900390910190a3506001949350505050565b60105481565b60065481565b600254600160a060020a03163314610a9357600080fd5b60008111610aa057600080fd5b601055565b600254600160a060020a03163314610abc57600080fd5b60025460a060020a900460ff161515610ad457600080fd5b6002805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60025460009060a060020a900460ff1615610b3757600080fd5b60008211610b4457600080fd5b5033600081815260016020526040902054610b65908363ffffffff6111b016565b600160a060020a038216600090815260016020526040902055600754610b91908363ffffffff6111b016565b600755604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600d5481565b60025460a060020a900460ff1681565b600254600090819060a060020a900460ff1615610c0957600080fd5b50336000908152600360209081526040808320600160a060020a038716845290915290205480831115610c5f57336000908152600360209081526040808320600160a060020a0388168452909152812055610c94565b610c6f818463ffffffff6111b016565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60115460ff1681565b600254600160a060020a03163314610d3557600080fd5b60025460a060020a900460ff1615610d4c57600080fd5b6002805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600254600160a060020a031681565b600b54600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561087d5780601f106108525761010080835404028352916020019161087d565b600854600160a060020a031681565b6000600160a060020a0383161515610e3a57600080fd5b33600090815260016020526040902054610e5a908363ffffffff6111b016565b3360009081526001602052604080822092909255600160a060020a03851681522054610e8c908363ffffffff61079d16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206111da8339815191529281900390910190a350600192915050565b60135481565b60145481565b600a54600160a060020a031681565b600254600160a060020a03163314610f0a57600080fd5b6011805460ff19166001179055565b600e5481565b60025460009060a060020a900460ff1615610f3957600080fd5b336000908152600360209081526040808320600160a060020a0387168452909152902054610f6d908363ffffffff61079d16565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600254600160a060020a03163314610fe957600080fd5b6011805460ff19169055565b60025460009060a060020a900460ff161561100f57600080fd5b50600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60125481565b600254600090600160a060020a0316331461105b57600080fd5b60145442101561106a57600080fd5b600160a060020a038216151561107f57600080fd5b50600654600954600160a060020a0390811660009081526001602052604080822082905591841681522054600a9190910a630e4e1c0002906110c1908261079d565b600160a060020a03808416600081815260016020908152604091829020949094556009548151868152915192949316926000805160206111da83398151915292918290030190a35050565b600254600160a060020a0316331461112357600080fd5b600160a060020a038116151561113857600080fd5b600254604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600954600160a060020a031681565b6000828211156111bc57fe5b50900390565b60008082848115156111d057fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f647c3728f2bc0985cc7d3f22d63511bccad642aff3282ba6c035af27dca29e30029

Swarm Source

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