ETH Price: $3,809.09 (+0.64%)
Gas: 11 Gwei

Token

XPToken.io (XPT)
 

Overview

Max Total Supply

200,000,000 XPT

Holders

1,202 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
Nexo: Deployer 2
Balance
2 XPT

Value
$0.00
0xed212a4a2e82d5ee0d62f70b5dee2f5ee0f10c5d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

XPToken is based on the concept of De-Centralized Finance (DeFi) to make the system easily accessible and user friendly. XPToken introduce a different type of mining pools which allow XPT holders to earn XPT by joining staking pool in XPToken.io

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 XPT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XPToken

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-05-06
*/

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

pragma solidity 0.5.7;

library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 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 c;
    }

    /**
    * @dev Substracts 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) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

contract Ownable {

    address public owner;
    bool public stopped = false;

    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;
    }

    /** 
    * Stop ICO/Contract
    */
    function stop() onlyOwner public{
        stopped = true;
    }

    /** 
    * Start ICO/Contract
    */
    function start() onlyOwner public{
        stopped = false;
    }

    /** 
    Validate if ICO/Contract running
    */
    modifier isRunning {
        assert (!stopped);
        _;
    }
    /**
     * Remove contract code/data from blockchain
    */
    function close() onlyOwner public{
        selfdestruct(msg.sender);  // `owner` is the owners address
    }
}

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);
}

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]);

        // 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 view returns (uint256 balance) {
        return balances[_owner];
    }

    /**
   * @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 != address(0));
    totalSupply_ = totalSupply_.add(value);
    balances[account] = balances[account].add(value);
    emit Transfer(address(0), account, value);
  }

}

contract BurnableToken is BasicToken, Ownable {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public onlyOwner{
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

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

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);
}

library SafeERC20 {

    function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
        assert(token.transfer(to, value));
    }
    function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
        assert(token.transferFrom(from, to, value));
    }
    function safeApprove(ERC20 token, address spender, uint256 value) internal {
        assert(token.approve(spender, value));
    }
}

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 ERC20 Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is BasicToken, Ownable {
    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint( address to, uint256 value ) public onlyOwner returns (bool){
      _mint(to, value);
      return true;
    }
  }

contract XPToken is StandardToken, BurnableToken, ERC20Mintable {

    using SafeMath for uint;

    string constant public symbol = "XPT";
    string constant public name = "XPToken.io";

    uint8 constant public decimals = 8;
    uint256 public constant decimalFactor = 10 ** uint256(decimals);
    uint256 public constant INITIAL_SUPPLY = 200000000 * decimalFactor;

    constructor() public {
        totalSupply_ = INITIAL_SUPPLY;
        //InitialDistribution
        preSale(msg.sender,totalSupply_);
    }

    function preSale(address _address, uint _amount) internal returns (bool) {
        balances[_address] = _amount;
        emit Transfer(address(0x0), _address, _amount);
    }

    
    function transfer(address _to, uint256 _value) isRunning public returns (bool) {
        super.transfer(_to, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) isRunning public returns (bool) {
        super.transferFrom(_from, _to, _value);
        return true;
    }
    
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"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":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","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":false,"inputs":[],"name":"close","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"decimalFactor","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"start","outputs":[],"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":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":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"}]

608060405260038054600160a01b60ff021916905534801561002057600080fd5b50600380546001600160a01b0319163390811790915566470de4df8200006001819055610054919061005a602090811b901c565b506100b0565b6001600160a01b0382166000818152602081815260408083208590558051858152905192939284927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a392915050565b610c5b806100bf6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806366188463116100b857806395d89b411161007c57806395d89b4114610350578063a9059cbb14610358578063be9a655514610384578063d73dd6231461038c578063dd62ed3e146103b8578063f2fde38b146103e657610137565b806366188463146102ca5780636d6a6a4d146102f657806370a08231146102fe57806375f12b21146103245780638da5cb5b1461032c57610137565b80632ff2e9dc116100ff5780632ff2e9dc14610253578063313ce5671461025b57806340c10f191461027957806342966c68146102a557806343d726d6146102c257610137565b806306fdde031461013c57806307da68f5146101b9578063095ea7b3146101c357806318160ddd1461020357806323b872dd1461021d575b600080fd5b61014461040c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c1610435565b005b6101ef600480360360408110156101d957600080fd5b506001600160a01b038135169060200135610464565b604080519115158252519081900360200190f35b61020b6104ca565b60408051918252519081900360200190f35b6101ef6004803603606081101561023357600080fd5b506001600160a01b038135811691602081013590911690604001356104d0565b61020b6104fd565b610263610508565b6040805160ff9092168252519081900360200190f35b6101ef6004803603604081101561028f57600080fd5b506001600160a01b03813516906020013561050d565b6101c1600480360360208110156102bb57600080fd5b503561053a565b6101c16105ff565b6101ef600480360360408110156102e057600080fd5b506001600160a01b038135169060200135610619565b61020b610709565b61020b6004803603602081101561031457600080fd5b50356001600160a01b0316610711565b6101ef61072c565b61033461073c565b604080516001600160a01b039092168252519081900360200190f35b61014461074b565b6101ef6004803603604081101561036e57600080fd5b506001600160a01b03813516906020013561076d565b6101c1610798565b6101ef600480360360408110156103a257600080fd5b506001600160a01b0381351690602001356107c1565b61020b600480360360408110156103ce57600080fd5b506001600160a01b038135811691602001351661085a565b6101c1600480360360208110156103fc57600080fd5b50356001600160a01b0316610885565b6040518060400160405280600a8152602001600160b01b695850546f6b656e2e696f0281525081565b6003546001600160a01b0316331461044c57600080fd5b60038054600160a01b60ff021916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff16156104e757fe5b6104f284848461090b565b506001949350505050565b66470de4df82000081565b600881565b6003546000906001600160a01b0316331461052757600080fd5b6105318383610a80565b50600192915050565b6003546001600160a01b0316331461055157600080fd5b3360009081526020819052604090205481111561056d57600080fd5b3360008181526020819052604090205461058d908363ffffffff610b2816565b6001600160a01b0382166000908152602081905260409020556001546105b9908363ffffffff610b2816565b6001556040805183815290516001600160a01b038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b6003546001600160a01b0316331461061657600080fd5b33ff5b3360009081526002602090815260408083206001600160a01b03861684529091528120548083111561066e573360009081526002602090815260408083206001600160a01b03881684529091528120556106a3565b61067e818463ffffffff610b2816565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6305f5e10081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b604051806040016040528060038152602001600160ea1b621614150281525081565b600354600090600160a01b900460ff161561078457fe5b61078e8383610b3a565b5060019392505050565b6003546001600160a01b031633146107af57600080fd5b60038054600160a01b60ff0219169055565b3360009081526002602090815260408083206001600160a01b03861684529091528120546107f5908363ffffffff610c1916565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461089c57600080fd5b6001600160a01b0381166108af57600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03831661092057600080fd5b6001600160a01b03841660009081526020819052604090205482111561094557600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561097557600080fd5b6001600160a01b03841660009081526020819052604090205461099e908363ffffffff610b2816565b6001600160a01b0380861660009081526020819052604080822093909355908516815220546109d3908363ffffffff610c1916565b6001600160a01b03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610a15908363ffffffff610b2816565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6001600160a01b038216610a9357600080fd5b600154610aa6908263ffffffff610c1916565b6001556001600160a01b038216600090815260208190526040902054610ad2908263ffffffff610c1916565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115610b3457fe5b50900390565b60006001600160a01b038316610b4f57600080fd5b33600090815260208190526040902054821115610b6b57600080fd5b33600090815260208190526040902054610b8b908363ffffffff610b2816565b33600090815260208190526040808220929092556001600160a01b03851681522054610bbd908363ffffffff610c1916565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610c2857fe5b939250505056fea165627a7a723058206aefe1d0fb624545ebb8d69f20468c9e98f43d501220d64a872927ee011a5c320029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806366188463116100b857806395d89b411161007c57806395d89b4114610350578063a9059cbb14610358578063be9a655514610384578063d73dd6231461038c578063dd62ed3e146103b8578063f2fde38b146103e657610137565b806366188463146102ca5780636d6a6a4d146102f657806370a08231146102fe57806375f12b21146103245780638da5cb5b1461032c57610137565b80632ff2e9dc116100ff5780632ff2e9dc14610253578063313ce5671461025b57806340c10f191461027957806342966c68146102a557806343d726d6146102c257610137565b806306fdde031461013c57806307da68f5146101b9578063095ea7b3146101c357806318160ddd1461020357806323b872dd1461021d575b600080fd5b61014461040c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c1610435565b005b6101ef600480360360408110156101d957600080fd5b506001600160a01b038135169060200135610464565b604080519115158252519081900360200190f35b61020b6104ca565b60408051918252519081900360200190f35b6101ef6004803603606081101561023357600080fd5b506001600160a01b038135811691602081013590911690604001356104d0565b61020b6104fd565b610263610508565b6040805160ff9092168252519081900360200190f35b6101ef6004803603604081101561028f57600080fd5b506001600160a01b03813516906020013561050d565b6101c1600480360360208110156102bb57600080fd5b503561053a565b6101c16105ff565b6101ef600480360360408110156102e057600080fd5b506001600160a01b038135169060200135610619565b61020b610709565b61020b6004803603602081101561031457600080fd5b50356001600160a01b0316610711565b6101ef61072c565b61033461073c565b604080516001600160a01b039092168252519081900360200190f35b61014461074b565b6101ef6004803603604081101561036e57600080fd5b506001600160a01b03813516906020013561076d565b6101c1610798565b6101ef600480360360408110156103a257600080fd5b506001600160a01b0381351690602001356107c1565b61020b600480360360408110156103ce57600080fd5b506001600160a01b038135811691602001351661085a565b6101c1600480360360208110156103fc57600080fd5b50356001600160a01b0316610885565b6040518060400160405280600a8152602001600160b01b695850546f6b656e2e696f0281525081565b6003546001600160a01b0316331461044c57600080fd5b60038054600160a01b60ff021916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff16156104e757fe5b6104f284848461090b565b506001949350505050565b66470de4df82000081565b600881565b6003546000906001600160a01b0316331461052757600080fd5b6105318383610a80565b50600192915050565b6003546001600160a01b0316331461055157600080fd5b3360009081526020819052604090205481111561056d57600080fd5b3360008181526020819052604090205461058d908363ffffffff610b2816565b6001600160a01b0382166000908152602081905260409020556001546105b9908363ffffffff610b2816565b6001556040805183815290516001600160a01b038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b6003546001600160a01b0316331461061657600080fd5b33ff5b3360009081526002602090815260408083206001600160a01b03861684529091528120548083111561066e573360009081526002602090815260408083206001600160a01b03881684529091528120556106a3565b61067e818463ffffffff610b2816565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6305f5e10081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b604051806040016040528060038152602001600160ea1b621614150281525081565b600354600090600160a01b900460ff161561078457fe5b61078e8383610b3a565b5060019392505050565b6003546001600160a01b031633146107af57600080fd5b60038054600160a01b60ff0219169055565b3360009081526002602090815260408083206001600160a01b03861684529091528120546107f5908363ffffffff610c1916565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461089c57600080fd5b6001600160a01b0381166108af57600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03831661092057600080fd5b6001600160a01b03841660009081526020819052604090205482111561094557600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561097557600080fd5b6001600160a01b03841660009081526020819052604090205461099e908363ffffffff610b2816565b6001600160a01b0380861660009081526020819052604080822093909355908516815220546109d3908363ffffffff610c1916565b6001600160a01b03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610a15908363ffffffff610b2816565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6001600160a01b038216610a9357600080fd5b600154610aa6908263ffffffff610c1916565b6001556001600160a01b038216600090815260208190526040902054610ad2908263ffffffff610c1916565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115610b3457fe5b50900390565b60006001600160a01b038316610b4f57600080fd5b33600090815260208190526040902054821115610b6b57600080fd5b33600090815260208190526040902054610b8b908363ffffffff610b2816565b33600090815260208190526040808220929092556001600160a01b03851681522054610bbd908363ffffffff610c1916565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610c2857fe5b939250505056fea165627a7a723058206aefe1d0fb624545ebb8d69f20468c9e98f43d501220d64a872927ee011a5c320029

Deployed Bytecode Sourcemap

10876:1069:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10876:1069:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11025:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;11025:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2224:65;;;:::i;:::-;;7970:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7970:206:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3248:91;;;:::i;:::-;;;;;;;;;;;;;;;;11759:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11759:177:0;;;;;;;;;;;;;;;;;:::i;11187:66::-;;;:::i;11076:34::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10740:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10740:127:0;;;;;;;;:::i;5100:469::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5100:469:0;;:::i;2612:110::-;;;:::i;9918:450::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9918:450:0;;;;;;;;:::i;11117:63::-;;;:::i;4156:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4156:115:0;-1:-1:-1;;;;;4156:115:0;;:::i;1318:27::-;;;:::i;1291:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1291:20:0;;;;;;;;;;;;;;10981:37;;;:::i;11604:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11604:147:0;;;;;;;;:::i;2341:67::-;;;:::i;9142:280::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9142:280:0;;;;;;;;:::i;8517:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8517:134:0;;;;;;;;;;:::i;1981:192::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1981:192:0;-1:-1:-1;;;;;1981:192:0;;:::i;11025:42::-;;;;;;;;;;;;;;-1:-1:-1;;;;;11025:42:0;;;;:::o;2224:65::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;2267:7;:14;;-1:-1:-1;;;;;;2267:14:0;-1:-1:-1;;;2267:14:0;;;2224:65::o;7970:206::-;8062:10;8037:4;8054:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8054:29:0;;;;;;;;;;;:38;;;8108;;;;;;;8037:4;;8054:29;;8062:10;;8108:38;;;;;;;;-1:-1:-1;8164:4:0;7970:206;;;;:::o;3248:91::-;3319:12;;3248:91;:::o;11759:177::-;2511:7;;11851:4;;-1:-1:-1;;;2511:7:0;;;;2510:8;2502:17;;;;11868:38;11887:5;11894:3;11899:6;11868:18;:38::i;:::-;-1:-1:-1;11924:4:0;;11759:177;-1:-1:-1;;;;11759:177:0:o;11187:66::-;11228:25;11187:66;:::o;11076:34::-;11109:1;11076:34;:::o;10740:127::-;1778:5;;10809:4;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;10823:16;10829:2;10833:5;10823;:16::i;:::-;-1:-1:-1;10855:4:0;10740:127;;;;:::o;5100:469::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;5184:10;5175:8;:20;;;;;;;;;;;5165:30;;;5157:39;;;;;;5407:10;5390:14;5447:16;;;;;;;;;;;:28;;5468:6;5447:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;5428:16:0;;:8;:16;;;;;;;;;;:47;5501:12;;:24;;5518:6;5501:24;:16;:24;:::i;:::-;5486:12;:39;5541:20;;;;;;;;-1:-1:-1;;;;;5541:20:0;;;;;;;;;;;;;1795:1;5100:469;:::o;2612:110::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;2669:10;2656:24;9918:450;10042:10;10001:4;10034:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10034:29:0;;;;;;;;;;10078:27;;;10074:188;;;10130:10;10154:1;10122:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10122:29:0;;;;;;;;;:33;10074:188;;;10220:30;:8;10233:16;10220:30;:12;:30;:::i;:::-;10196:10;10188:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10188:29:0;;;;;;;;;:62;10074:188;10286:10;10308:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10277:61:0;;10308:29;;;;;;;;;;;10277:61;;;;;;;;;10286:10;10277:61;;;;;;;;;;;-1:-1:-1;10356:4:0;;9918:450;-1:-1:-1;;;9918:450:0:o;11117:63::-;11157:23;11117:63;:::o;4156:115::-;-1:-1:-1;;;;;4247:16:0;4212:15;4247:16;;;;;;;;;;;;4156:115::o;1318:27::-;;;-1:-1:-1;;;1318:27:0;;;;;:::o;1291:20::-;;;-1:-1:-1;;;;;1291:20:0;;:::o;10981:37::-;;;;;;;;;;;;;;-1:-1:-1;;;;;10981:37:0;;;;:::o;11604:147::-;2511:7;;11677:4;;-1:-1:-1;;;2511:7:0;;;;2510:8;2502:17;;;;11694:27;11709:3;11714:6;11694:14;:27::i;:::-;-1:-1:-1;11739:4:0;;11604:147;-1:-1:-1;;;11604:147:0:o;2341:67::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;2385:7;:15;;-1:-1:-1;;;;;;2385:15:0;;;2341:67::o;9142:280::-;9277:10;9220:4;9269:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9269:29:0;;;;;;;;;;:46;;9303:11;9269:46;:33;:46;:::i;:::-;9245:10;9237:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9237:29:0;;;;;;;;;;;;:78;;;9331:61;;;;;;9237:29;;9331:61;;;;;;;;;;;-1:-1:-1;9410:4:0;9142:280;;;;:::o;8517:134::-;-1:-1:-1;;;;;8618:15:0;;;8591:7;8618:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;8517:134::o;1981:192::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;-1:-1:-1;;;;;2062:22:0;;2054:31;;;;;;2122:5;;2101:37;;-1:-1:-1;;;;;2101:37:0;;;;2122:5;;2101:37;;2122:5;;2101:37;2149:5;:16;;-1:-1:-1;;;;;;2149:16:0;-1:-1:-1;;;;;2149:16:0;;;;;;;;;;1981:192::o;6825:488::-;6907:4;-1:-1:-1;;;;;6932:17:0;;6924:26;;;;;;-1:-1:-1;;;;;6979:15:0;;:8;:15;;;;;;;;;;;6969:25;;;6961:34;;;;;;-1:-1:-1;;;;;7024:14:0;;;;;;:7;:14;;;;;;;;7039:10;7024:26;;;;;;;;7014:36;;;7006:45;;;;;;-1:-1:-1;;;;;7082:15:0;;:8;:15;;;;;;;;;;;:27;;7102:6;7082:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;7064:15:0;;;:8;:15;;;;;;;;;;;:45;;;;7136:13;;;;;;;:25;;7154:6;7136:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;7120:13:0;;;:8;:13;;;;;;;;;;;:41;;;;7201:14;;;;;:7;:14;;;;;7216:10;7201:26;;;;;;;:38;;7232:6;7201:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;7172:14:0;;;;;;;:7;:14;;;;;;;;7187:10;7172:26;;;;;;;;:67;;;;7255:28;;;;;;;;;;;7172:14;;7255:28;;;;;;;;;;;-1:-1:-1;7301:4:0;6825:488;;;;;:::o;4609:247::-;-1:-1:-1;;;;;4680:21:0;;4672:30;;;;;;4724:12;;:23;;4741:5;4724:23;:16;:23;:::i;:::-;4709:12;:38;-1:-1:-1;;;;;4774:17:0;;:8;:17;;;;;;;;;;;:28;;4796:5;4774:28;:21;:28;:::i;:::-;-1:-1:-1;;;;;4754:17:0;;:8;:17;;;;;;;;;;;:48;;;;4814:36;;;;;;;4754:17;;:8;;4814:36;;;;;;;;;;4609:247;;:::o;913:123::-;971:7;1003:1;998;:6;;991:14;;;;-1:-1:-1;1023:5:0;;;913:123::o;3512:423::-;3575:4;-1:-1:-1;;;;;3600:17:0;;3592:26;;;;;;3656:10;3647:8;:20;;;;;;;;;;;3637:30;;;3629:39;;;;;;3781:10;3772:8;:20;;;;;;;;;;;:32;;3797:6;3772:32;:24;:32;:::i;:::-;3758:10;3749:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3831:13:0;;;;;;:25;;3849:6;3831:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3815:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3872:33;;;;;;;3815:13;;3881:10;;3872:33;;;;;;;;;;-1:-1:-1;3923:4:0;3512:423;;;;:::o;1111:147::-;1169:7;1201:5;;;1224:6;;;;1217:14;;;;1249:1;1111:147;-1:-1:-1;;;1111:147:0:o

Swarm Source

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