ETH Price: $2,637.74 (+7.73%)
Gas: 3 Gwei

Token

FLIP (FLP)
 

Overview

Max Total Supply

100,000,000 FLP

Holders

3,919 (0.00%)

Total Transfers

-

Market

Price

$0.01 @ 0.000003 ETH (-0.67%)

Onchain Market Cap

$795,763.00

Circulating Supply Market Cap

$448,221.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

FLIP CRYPTO-TOKEN FOR GAMERS FROM GAMING EXPERTS

Profitability / Loss

Since Initial Offer Price
:$5.85 99.86%

Market

Volume (24H):$310.15
Market Capitalization:$448,221.00
Circulating Supply:56,400,000.00 FLP
Market Data Source: Coinmarketcap

ICO Information

ICO Start Date : Dec 4, 2017
ICO End Date : Jan 29, 2018
Hard Cap : 12,000 ETH
Soft Cap : 6,500 ETH
Raised : $15,000,000
ICO Price  : $5.85
Country : USA

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FlipToken

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.15;

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

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

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

contract Ownable {
  address public owner;


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


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


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


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

}

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

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

contract Contactable is Ownable{

    string public contactInformation;

    /**
     * @dev Allows the owner to set a string with their contact information.
     * @param info The contact information to attach to the contract.
     */
    function setContactInformation(string info) onlyOwner public {
         contactInformation = info;
     }
}

contract HasNoEther is Ownable {

  /**
  * @dev Constructor that rejects incoming Ether
  * @dev The `payable` flag is added so we can access `msg.value` without compiler warning. If we
  * leave out payable, then Solidity will allow inheriting contracts to implement a payable
  * constructor. By doing it this way we prevent a payable constructor from working. Alternatively
  * we could use assembly to access msg.value.
  */
  function HasNoEther() payable {
    require(msg.value == 0);
  }

  /**
   * @dev Disallows direct send by settings a default function without the `payable` flag.
   */
  function() external {
  }

  /**
   * @dev Transfer all Ether held by the contract to the owner.
   */
  function reclaimEther() external onlyOwner {
    assert(owner.send(this.balance));
  }
}

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

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));

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

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

}

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 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 CanReclaimToken is Ownable {
  using SafeERC20 for ERC20Basic;

  /**
   * @dev Reclaim all ERC20Basic compatible tokens
   * @param token ERC20Basic The address of the token contract
   */
  function reclaimToken(ERC20Basic token) external onlyOwner {
    uint256 balance = token.balanceOf(this);
    token.safeTransfer(owner, balance);
  }

}

contract HasNoTokens is CanReclaimToken {

 /**
  * @dev Reject all ERC23 compatible tokens
  * @param from_ address The address that is transferring the tokens
  * @param value_ uint256 the amount of the specified token
  * @param data_ Bytes The data passed from the caller.
  */
  function tokenFallback(address from_, uint256 value_, bytes data_) external {
    revert();
  }

}

contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) allowed;


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

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

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

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

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

  function decreaseApproval (address _spender, uint _subtractedValue)
    returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(0x0, _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner public returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }
}

contract PausableToken is StandardToken, Pausable {

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

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

  function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }

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

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

contract FlipToken is Contactable, HasNoTokens, HasNoEther, MintableToken, PausableToken {

    string public constant name = "FLIP Token";
    string public constant symbol = "FLP";
    uint8 public constant decimals = 18;

    uint256 public constant ONE_TOKENS = (10 ** uint256(decimals));
    uint256 public constant MILLION_TOKENS = (10**6) * ONE_TOKENS;
    uint256 public constant TOTAL_TOKENS = 100 * MILLION_TOKENS;

    function FlipToken()
    Ownable()
    Contactable()
    HasNoTokens()
    HasNoEther()
    MintableToken()
    PausableToken()
    {
        contactInformation = 'https://tokensale.gameflip.com/';
    }

    // cap minting so that totalSupply <= TOTAL_TOKENS
    function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
        require(totalSupply.add(_amount) <= TOTAL_TOKENS);
        return super.mint(_to, _amount);
    }


    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) onlyOwner public {
        // do not allow self ownership
        require(newOwner != address(this));
        super.transferOwnership(newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ONE_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MILLION_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contactInformation","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"info","type":"string"}],"name":"setContactInformation","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"from_","type":"address"},{"name":"value_","type":"uint256"},{"name":"data_","type":"bytes"}],"name":"tokenFallback","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","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"}]

60606040526005805461ffff1916905534156200001b57600080fd5b5b5b5b60038054600160a060020a03191633600160a060020a03161790555b34156200004657600080fd5b5b60408051908101604052601f81527f68747470733a2f2f746f6b656e73616c652e67616d65666c69702e636f6d2f00602082015260049080516200009092916020019062000098565b505b62000142565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000db57805160ff19168380011785556200010b565b828001600101855582156200010b579182015b828111156200010b578251825591602001919060010190620000ee565b5b506200011a9291506200011e565b5090565b6200013f91905b808211156200011a576000815560010162000125565b5090565b90565b61141180620001526000396000f300606060405236156101435763ffffffff60e060020a60003504166305d2035b811461015257806306fdde0314610179578063095ea7b3146102045780630b7abf771461023a57806316ed2ae41461025f57806317ffc3201461028457806318160ddd146102a557806323b872dd146102ca578063313ce56714610306578063323df8791461032f57806336f7ab5e146103545780633f4ba83a146103df57806340c10f19146103f45780635c975abb1461042a578063661884631461045157806370a08231146104875780637d64bcb4146104b85780638456cb59146104df5780638da5cb5b146104f457806395d89b41146105235780639f727c27146105ae578063a9059cbb146105c3578063b967a52e146105f9578063c0ee0b8a1461064c578063d73dd6231461067d578063dd62ed3e146106b3578063f2fde38b146106ea575b341561014e57600080fd5b5b5b005b341561015d57600080fd5b61016561070b565b604051901515815260200160405180910390f35b341561018457600080fd5b61018c610714565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020f57600080fd5b610165600160a060020a036004351660243561074b565b604051901515815260200160405180910390f35b341561024557600080fd5b61024d610777565b60405190815260200160405180910390f35b341561026a57600080fd5b61024d610786565b60405190815260200160405180910390f35b341561028f57600080fd5b61014e600160a060020a0360043516610792565b005b34156102b057600080fd5b61024d61084a565b60405190815260200160405180910390f35b34156102d557600080fd5b610165600160a060020a0360043581169060243516604435610850565b604051901515815260200160405180910390f35b341561031157600080fd5b61031961087e565b60405160ff909116815260200160405180910390f35b341561033a57600080fd5b61024d610883565b60405190815260200160405180910390f35b341561035f57600080fd5b61018c610891565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103ea57600080fd5b61014e61092f565b005b34156103ff57600080fd5b610165600160a060020a036004351660243561099c565b604051901515815260200160405180910390f35b341561043557600080fd5b610165610a0a565b604051901515815260200160405180910390f35b341561045c57600080fd5b610165600160a060020a0360043516602435610a18565b604051901515815260200160405180910390f35b341561049257600080fd5b61024d600160a060020a0360043516610a44565b60405190815260200160405180910390f35b34156104c357600080fd5b610165610a63565b604051901515815260200160405180910390f35b34156104ea57600080fd5b61014e610ac2565b005b34156104ff57600080fd5b610507610b32565b604051600160a060020a03909116815260200160405180910390f35b341561052e57600080fd5b61018c610b41565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105b957600080fd5b61014e610b78565b005b34156105ce57600080fd5b610165600160a060020a0360043516602435610bcd565b604051901515815260200160405180910390f35b341561060457600080fd5b61014e60046024813581810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610bf995505050505050565b005b341561065757600080fd5b61014e60048035600160a060020a0316906024803591604435918201910135610c2d565b005b341561068857600080fd5b610165600160a060020a0360043516602435610c38565b604051901515815260200160405180910390f35b34156106be57600080fd5b61024d600160a060020a0360043581169060243516610c64565b60405190815260200160405180910390f35b34156106f557600080fd5b61014e600160a060020a0360043516610c91565b005b60055460ff1681565b60408051908101604052600a81527f464c495020546f6b656e00000000000000000000000000000000000000000000602082015281565b600554600090610100900460ff161561076357600080fd5b61076d8383610cdb565b90505b5b92915050565b6a52b7d2dcc80cd2e400000081565b670de0b6b3a764000081565b60035460009033600160a060020a039081169116146107b057600080fd5b81600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561080757600080fd5b6102c65a03f1151561081857600080fd5b50505060405180516003549092506108449150600160a060020a0384811691168363ffffffff610d4816565b5b5b5050565b60005481565b600554600090610100900460ff161561086857600080fd5b610873848484610dce565b90505b5b9392505050565b601281565b69d3c21bcecceda100000081565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b505050505081565b60035433600160a060020a0390811691161461094a57600080fd5b600554610100900460ff16151561096057600080fd5b6005805461ff00191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035460009033600160a060020a039081169116146109ba57600080fd5b60055460ff16156109ca57600080fd5b6000546a52b7d2dcc80cd2e4000000906109ea908463ffffffff610efa16565b11156109f557600080fd5b61076d8383610f14565b90505b5b5b92915050565b600554610100900460ff1681565b600554600090610100900460ff1615610a3057600080fd5b61076d838361101d565b90505b5b92915050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610a8157600080fd5b6005805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b60035433600160a060020a03908116911614610add57600080fd5b600554610100900460ff1615610af257600080fd5b6005805461ff0019166101001790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60408051908101604052600381527f464c500000000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a03908116911614610b9357600080fd5b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561099857fe5b5b5b565b600554600090610100900460ff1615610be557600080fd5b61076d8383611119565b90505b5b92915050565b60035433600160a060020a03908116911614610c1457600080fd5b6004818051610844929160200190611345565b505b5b50565b600080fd5b50505050565b600554600090610100900460ff1615610c5057600080fd5b61076d83836111f0565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610cac57600080fd5b30600160a060020a031681600160a060020a031614151515610ccd57600080fd5b610c2981611295565b5b5b50565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610da557600080fd5b6102c65a03f11515610db657600080fd5b505050604051805190501515610dc857fe5b5b505050565b600080600160a060020a0384161515610de657600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610e2c908463ffffffff61132e16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610e61908463ffffffff610efa16565b600160a060020a038516600090815260016020526040902055610e8a818463ffffffff61132e16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600082820183811015610f0957fe5b8091505b5092915050565b60035460009033600160a060020a03908116911614610f3257600080fd5b60055460ff1615610f4257600080fd5b600054610f55908363ffffffff610efa16565b6000908155600160a060020a038416815260016020526040902054610f80908363ffffffff610efa16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060015b5b5b92915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561107a57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556110b1565b61108a818463ffffffff61132e16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b6000600160a060020a038316151561113057600080fd5b600160a060020a033316600090815260016020526040902054611159908363ffffffff61132e16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461118e908363ffffffff610efa16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054611228908363ffffffff610efa16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b60035433600160a060020a039081169116146112b057600080fd5b600160a060020a03811615156112c557600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561133a57fe5b508082035b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061138657805160ff19168380011785556113b3565b828001600101855582156113b3579182015b828111156113b3578251825591602001919060010190611398565b5b506113c09291506113c4565b5090565b610abe91905b808211156113c057600081556001016113ca565b5090565b905600a165627a7a723058203c70eb07cf191a84ad7197c39835a72bbf7dc938ace48c95c45cb4bbb9845aaa0029

Deployed Bytecode

0x606060405236156101435763ffffffff60e060020a60003504166305d2035b811461015257806306fdde0314610179578063095ea7b3146102045780630b7abf771461023a57806316ed2ae41461025f57806317ffc3201461028457806318160ddd146102a557806323b872dd146102ca578063313ce56714610306578063323df8791461032f57806336f7ab5e146103545780633f4ba83a146103df57806340c10f19146103f45780635c975abb1461042a578063661884631461045157806370a08231146104875780637d64bcb4146104b85780638456cb59146104df5780638da5cb5b146104f457806395d89b41146105235780639f727c27146105ae578063a9059cbb146105c3578063b967a52e146105f9578063c0ee0b8a1461064c578063d73dd6231461067d578063dd62ed3e146106b3578063f2fde38b146106ea575b341561014e57600080fd5b5b5b005b341561015d57600080fd5b61016561070b565b604051901515815260200160405180910390f35b341561018457600080fd5b61018c610714565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020f57600080fd5b610165600160a060020a036004351660243561074b565b604051901515815260200160405180910390f35b341561024557600080fd5b61024d610777565b60405190815260200160405180910390f35b341561026a57600080fd5b61024d610786565b60405190815260200160405180910390f35b341561028f57600080fd5b61014e600160a060020a0360043516610792565b005b34156102b057600080fd5b61024d61084a565b60405190815260200160405180910390f35b34156102d557600080fd5b610165600160a060020a0360043581169060243516604435610850565b604051901515815260200160405180910390f35b341561031157600080fd5b61031961087e565b60405160ff909116815260200160405180910390f35b341561033a57600080fd5b61024d610883565b60405190815260200160405180910390f35b341561035f57600080fd5b61018c610891565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103ea57600080fd5b61014e61092f565b005b34156103ff57600080fd5b610165600160a060020a036004351660243561099c565b604051901515815260200160405180910390f35b341561043557600080fd5b610165610a0a565b604051901515815260200160405180910390f35b341561045c57600080fd5b610165600160a060020a0360043516602435610a18565b604051901515815260200160405180910390f35b341561049257600080fd5b61024d600160a060020a0360043516610a44565b60405190815260200160405180910390f35b34156104c357600080fd5b610165610a63565b604051901515815260200160405180910390f35b34156104ea57600080fd5b61014e610ac2565b005b34156104ff57600080fd5b610507610b32565b604051600160a060020a03909116815260200160405180910390f35b341561052e57600080fd5b61018c610b41565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105b957600080fd5b61014e610b78565b005b34156105ce57600080fd5b610165600160a060020a0360043516602435610bcd565b604051901515815260200160405180910390f35b341561060457600080fd5b61014e60046024813581810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610bf995505050505050565b005b341561065757600080fd5b61014e60048035600160a060020a0316906024803591604435918201910135610c2d565b005b341561068857600080fd5b610165600160a060020a0360043516602435610c38565b604051901515815260200160405180910390f35b34156106be57600080fd5b61024d600160a060020a0360043581169060243516610c64565b60405190815260200160405180910390f35b34156106f557600080fd5b61014e600160a060020a0360043516610c91565b005b60055460ff1681565b60408051908101604052600a81527f464c495020546f6b656e00000000000000000000000000000000000000000000602082015281565b600554600090610100900460ff161561076357600080fd5b61076d8383610cdb565b90505b5b92915050565b6a52b7d2dcc80cd2e400000081565b670de0b6b3a764000081565b60035460009033600160a060020a039081169116146107b057600080fd5b81600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561080757600080fd5b6102c65a03f1151561081857600080fd5b50505060405180516003549092506108449150600160a060020a0384811691168363ffffffff610d4816565b5b5b5050565b60005481565b600554600090610100900460ff161561086857600080fd5b610873848484610dce565b90505b5b9392505050565b601281565b69d3c21bcecceda100000081565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b505050505081565b60035433600160a060020a0390811691161461094a57600080fd5b600554610100900460ff16151561096057600080fd5b6005805461ff00191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035460009033600160a060020a039081169116146109ba57600080fd5b60055460ff16156109ca57600080fd5b6000546a52b7d2dcc80cd2e4000000906109ea908463ffffffff610efa16565b11156109f557600080fd5b61076d8383610f14565b90505b5b5b92915050565b600554610100900460ff1681565b600554600090610100900460ff1615610a3057600080fd5b61076d838361101d565b90505b5b92915050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610a8157600080fd5b6005805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b60035433600160a060020a03908116911614610add57600080fd5b600554610100900460ff1615610af257600080fd5b6005805461ff0019166101001790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60408051908101604052600381527f464c500000000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a03908116911614610b9357600080fd5b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561099857fe5b5b5b565b600554600090610100900460ff1615610be557600080fd5b61076d8383611119565b90505b5b92915050565b60035433600160a060020a03908116911614610c1457600080fd5b6004818051610844929160200190611345565b505b5b50565b600080fd5b50505050565b600554600090610100900460ff1615610c5057600080fd5b61076d83836111f0565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610cac57600080fd5b30600160a060020a031681600160a060020a031614151515610ccd57600080fd5b610c2981611295565b5b5b50565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610da557600080fd5b6102c65a03f11515610db657600080fd5b505050604051805190501515610dc857fe5b5b505050565b600080600160a060020a0384161515610de657600080fd5b50600160a060020a03808516600081815260026020908152604080832033909516835293815283822054928252600190529190912054610e2c908463ffffffff61132e16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610e61908463ffffffff610efa16565b600160a060020a038516600090815260016020526040902055610e8a818463ffffffff61132e16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600082820183811015610f0957fe5b8091505b5092915050565b60035460009033600160a060020a03908116911614610f3257600080fd5b60055460ff1615610f4257600080fd5b600054610f55908363ffffffff610efa16565b6000908155600160a060020a038416815260016020526040902054610f80908363ffffffff610efa16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060015b5b5b92915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561107a57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556110b1565b61108a818463ffffffff61132e16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b6000600160a060020a038316151561113057600080fd5b600160a060020a033316600090815260016020526040902054611159908363ffffffff61132e16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461118e908363ffffffff610efa16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054611228908363ffffffff610efa16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b60035433600160a060020a039081169116146112b057600080fd5b600160a060020a03811615156112c557600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282111561133a57fe5b508082035b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061138657805160ff19168380011785556113b3565b828001600101855582156113b3579182015b828111156113b3578251825591602001919060010190611398565b5b506113c09291506113c4565b5090565b610abe91905b808211156113c057600081556001016113ca565b5090565b905600a165627a7a723058203c70eb07cf191a84ad7197c39835a72bbf7dc938ace48c95c45cb4bbb9845aaa0029

Swarm Source

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