ETH Price: $3,103.06 (+1.16%)
Gas: 15 Gwei

Token

Gamblica Token (GMBC)
 

Overview

Max Total Supply

723,925,462.443199071333333333 GMBC

Holders

492

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
remedcu.eth
Balance
1,454,022.5078 GMBC

Value
$0.00
0x4c3d3505d34213751c4b4d621cb6bde7e664e222
Loading...
Loading
Loading...
Loading
Loading...
Loading

ICO Information

Project Sector : Entertainment
ICO Start Date : Mar 01, 2018
ICO End Date : Oct 01, 2018
Hard Cap : 40,000 ETH
Soft Cap : 4,000 ETH
ICO Price  : 0.0001 ETH
Country : Malta

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xB1361343...f5beb7cC8
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
GMBCToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.21;

// File: source\openzeppelin-solidity\contracts\math\SafeMath.sol

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

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    if (a == 0) {
      return 0;
    }
    c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return a / b;
  }

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

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

// File: source\openzeppelin-solidity\contracts\ownership\Ownable.sol

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() 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;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }
}

// File: source\openzeppelin-solidity\contracts\token\ERC20\ERC20Basic.sol

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

// File: source\openzeppelin-solidity\contracts\token\ERC20\BasicToken.sol

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

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

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

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

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

}

// File: source\openzeppelin-solidity\contracts\token\ERC20\ERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: source\openzeppelin-solidity\contracts\token\ERC20\StandardToken.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

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


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

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

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

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

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

// File: source\CappedMintableToken.sol

/**
 * @title Mintable token with an end-of-mint mechanism and token cap
 * Based on openzeppelin-solidity MintableToken & CappedToken
 */
contract CappedMintableToken is StandardToken, Ownable {
  using SafeMath for uint256;

  event Mint(address indexed to, uint256 amount);

  modifier canMint() {
    require(mintEnabled);
    _;
  }

  modifier onlyOwnerOrCrowdsale() {
    require(msg.sender == owner || msg.sender == crowdsale);
    _;
  }

  bool public mintEnabled;
  bool public transferEnabled;
  uint256 public cap;
  address public crowdsale;
  

	function setCrowdsale(address _crowdsale) public onlyOwner {
		crowdsale = _crowdsale;
	}

  function CappedMintableToken(uint256 _cap) public {    
    require(_cap > 0);

    mintEnabled = true;
    transferEnabled = false;
    cap = _cap;
  }

  /**
   * @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) onlyOwnerOrCrowdsale canMint public returns (bool) {
    require(totalSupply_.add(_amount) <= cap);
    require(_amount > 0);

    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(address(0), _to, _amount);
    return true;
  }

  
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(transferEnabled);

    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(transferEnabled);

    return super.transferFrom(_from, _to, _value);
  }
  
}

// File: source\GMBCTokenBuyable.sol

contract GMBCTokenBuyable is CappedMintableToken {  
  bool public payableEnabled; // payable function enabled
  uint256 public minPurchase; // minimum purchase in wei

  function () external payable {    
    buyTokens(msg.sender);
  }

  function setPayableEnabled(bool _payableEnabled) onlyOwner external {
    payableEnabled = _payableEnabled;
  }

  function setMinPurchase(uint256 _minPurchase) onlyOwner external {
    minPurchase = _minPurchase;
  }

  function buyTokens(address _beneficiary) public payable {
    require(payableEnabled);

    uint256 weiAmount = msg.value;
    require(_beneficiary != address(0));
    require(weiAmount >= minPurchase);

    // calculate token amount to be created
    uint256 tokens = getTokenAmount(weiAmount);
    mint(_beneficiary, tokens);
  }

  function getTokenAmount(uint256 _weiAmount) public view returns (uint256);

   /**
   * @dev Transfer all Ether held by the contract to the owner.
   */
  function claimEther(uint256 _weiAmount) external onlyOwner {    
    owner.transfer(_weiAmount);
  }
}

// File: source\openzeppelin-solidity\contracts\ownership\HasNoEther.sol

/**
 * @title Contracts that should not own Ether
 * @author Remco Bloemen <remco@2π.com>
 * @dev This tries to block incoming ether to prevent accidental loss of Ether. Should Ether end up
 * in the contract, it will allow the owner to reclaim this ether.
 * @notice Ether can still be sent to this contract by:
 * calling functions labeled `payable`
 * `selfdestruct(contract_address)`
 * mining directly to the contract address
 */
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() public 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 {
    owner.transfer(this.balance);
  }
}

// File: source\GMBCToken.sol

contract GMBCToken is GMBCTokenBuyable {
	using SafeMath for uint256;

	string public constant name = "Gamblica Token";
	string public constant symbol = "GMBC";
	uint8 public constant decimals = 18;

	bool public finalized = false;
	uint8 public bonus = 0;				// bonus value in % (0 - 100)
	uint256 public basePrice = 10000;	// base GMBC per 1 ETH

	/**
	 * GMBCToken
	 * https://gamblica.com 
	 * Official Gamblica Coin (Token)
	 */
	function GMBCToken() public 
		CappedMintableToken( 600000000 * (10 ** uint256(decimals)) ) // 60%, 40% will be minted on finalize
	{}

	/**
	 * Sets current bonus (%)
	 */
	function setBonus(uint8 _bonus) onlyOwnerOrCrowdsale external {		
		require(_bonus >= 0 && _bonus <= 100);
		bonus = _bonus;
	}

	function setBasePrice(uint256 _basePrice) onlyOwner external {
		require(_basePrice > 0);
		basePrice = _basePrice;
	}

	/**
	 * Returns token amount for wei investment
	 */
	function getTokenAmount(uint256 _weiAmount) public view returns (uint256) {		
		require(decimals == 18);
		uint256 gmbc = _weiAmount.mul(basePrice);
		return gmbc.add(gmbc.mul(bonus).div(100));
	}

	/**
		Performs the final stage of the token sale, 
		mints additional 40% of token fund,
		transfers minted tokens to an external fund
		(20% game fund, 10% team, 5% advisory board, 3% bounty, 2% founders)
	*/
	function finalize(address _fund) public onlyOwner returns (bool) {
		require(!finalized);		
		require(_fund != address(0));

		uint256 amount = totalSupply_.mul(4).div(6);	// +40% 

		totalSupply_ = totalSupply_.add(amount);
    	balances[_fund] = balances[_fund].add(amount);
    	emit Mint(_fund, amount);
    	emit Transfer(address(0), _fund, amount);
    
		mintEnabled = false;
		transferEnabled = true;
		finalized = true;

		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":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minPurchase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_crowdsale","type":"address"}],"name":"setCrowdsale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_weiAmount","type":"uint256"}],"name":"claimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_fund","type":"address"}],"name":"finalize","outputs":[{"name":"","type":"bool"}],"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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonus","outputs":[{"name":"","type":"uint8"}],"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":true,"inputs":[],"name":"crowdsale","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_payableEnabled","type":"bool"}],"name":"setPayableEnabled","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"payableEnabled","outputs":[{"name":"","type":"bool"}],"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":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_weiAmount","type":"uint256"}],"name":"getTokenAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basePrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"_basePrice","type":"uint256"}],"name":"setBasePrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_bonus","type":"uint8"}],"name":"setBonus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_minPurchase","type":"uint256"}],"name":"setMinPurchase","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60606040526007805461ffff19169055612710600855341561002057600080fd5b60038054600160a060020a03191633600160a060020a03161790556b01f04ef12cb04cf1580000006003805460a860020a60ff021960a060020a60ff021990911674010000000000000000000000000000000000000000171690556004556112ac8061008d6000396000f3006060604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101ab578063095ea7b31461023557806318160ddd1461026b57806323b872dd14610290578063313ce567146102b857806333b5b62e146102e1578063355274ea146102f457806340c10f1914610307578063483a20b21461032957806349407a44146103485780634cd412d51461035e5780634ef39b7514610371578063661884631461039057806370a08231146103b2578063715018a6146103d157806375b4d78c146103e45780638da5cb5b146103f757806395d89b41146104265780639c1e03a014610439578063a2ea80f91461044c578063a8c89c5b14610464578063a9059cbb14610477578063b3f05b9714610499578063c2507ac1146104ac578063c7876ea4146104c2578063d1239730146104d5578063d73dd623146104e8578063dd62ed3e1461050a578063de4b32621461052f578063e6ed474614610545578063e8307d001461055e578063ec8ac4d814610574578063f2fde38b14610588575b6101a9336105a7565b005b34156101b657600080fd5b6101be610606565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fa5780820151838201526020016101e2565b50505050905090810190601f1680156102275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024057600080fd5b610257600160a060020a036004351660243561063d565b604051901515815260200160405180910390f35b341561027657600080fd5b61027e6106aa565b60405190815260200160405180910390f35b341561029b57600080fd5b610257600160a060020a03600435811690602435166044356106b0565b34156102c357600080fd5b6102cb6106f0565b60405160ff909116815260200160405180910390f35b34156102ec57600080fd5b61027e6106f5565b34156102ff57600080fd5b61027e6106fb565b341561031257600080fd5b610257600160a060020a0360043516602435610701565b341561033457600080fd5b6101a9600160a060020a0360043516610847565b341561035357600080fd5b6101a9600435610891565b341561036957600080fd5b6102576108e2565b341561037c57600080fd5b610257600160a060020a0360043516610904565b341561039b57600080fd5b610257600160a060020a0360043516602435610a80565b34156103bd57600080fd5b61027e600160a060020a0360043516610b7a565b34156103dc57600080fd5b6101a9610b95565b34156103ef57600080fd5b6102cb610c07565b341561040257600080fd5b61040a610c15565b604051600160a060020a03909116815260200160405180910390f35b341561043157600080fd5b6101be610c24565b341561044457600080fd5b61040a610c5b565b341561045757600080fd5b6101a96004351515610c6a565b341561046f57600080fd5b610257610cb4565b341561048257600080fd5b610257600160a060020a0360043516602435610cc4565b34156104a457600080fd5b610257610d02565b34156104b757600080fd5b61027e600435610d0b565b34156104cd57600080fd5b61027e610d53565b34156104e057600080fd5b610257610d59565b34156104f357600080fd5b610257600160a060020a0360043516602435610d69565b341561051557600080fd5b61027e600160a060020a0360043581169060243516610e0d565b341561053a57600080fd5b6101a9600435610e38565b341561055057600080fd5b6101a960ff60043516610e65565b341561056957600080fd5b6101a9600435610eda565b6101a9600160a060020a03600435166105a7565b341561059357600080fd5b6101a9600160a060020a0360043516610efa565b600554600090819060a060020a900460ff1615156105c457600080fd5b349150600160a060020a03831615156105dc57600080fd5b6006548210156105eb57600080fd5b6105f482610d0b565b90506106008382610701565b50505050565b60408051908101604052600e81527f47616d626c69636120546f6b656e000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015490565b6003546000907501000000000000000000000000000000000000000000900460ff1615156106dd57600080fd5b6106e8848484610f95565b949350505050565b601281565b60065481565b60045481565b60035460009033600160a060020a039081169116148061072f575060055433600160a060020a039081169116145b151561073a57600080fd5b60035460a060020a900460ff16151561075257600080fd5b600454600154610768908463ffffffff61110316565b111561077357600080fd5b6000821161078057600080fd5b600154610793908363ffffffff61110316565b600155600160a060020a0383166000908152602081905260409020546107bf908363ffffffff61110316565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660006000805160206112618339815191528460405190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461086257600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035433600160a060020a039081169116146108ac57600080fd5b600354600160a060020a031681156108fc0282604051600060405180830381858888f1935050505015156108df57600080fd5b50565b6003547501000000000000000000000000000000000000000000900460ff1681565b600354600090819033600160a060020a0390811691161461092457600080fd5b60075460ff161561093457600080fd5b600160a060020a038316151561094957600080fd5b6109706006610964600460015461111090919063ffffffff16565b9063ffffffff61113916565b600154909150610986908263ffffffff61110316565b600155600160a060020a0383166000908152602081905260409020546109b2908263ffffffff61110316565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859083905190815260200160405180910390a2600160a060020a03831660006000805160206112618339815191528360405190815260200160405180910390a36003805475ffff0000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556007805460ff19166001908117909155915050919050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610add57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610b14565b610aed818463ffffffff61114e16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a03908116911614610bb057600080fd5b600354600160a060020a03167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754610100900460ff1681565b600354600160a060020a031681565b60408051908101604052600481527f474d424300000000000000000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b60035433600160a060020a03908116911614610c8557600080fd5b6005805491151560a060020a0274ff000000000000000000000000000000000000000019909216919091179055565b60055460a060020a900460ff1681565b6003546000907501000000000000000000000000000000000000000000900460ff161515610cf157600080fd5b610cfb8383611160565b9392505050565b60075460ff1681565b600080600854610d2290849063ffffffff61111016565b600754909150610cfb90610d4690606490610964908590610100900460ff16611110565b829063ffffffff61110316565b60085481565b60035460a060020a900460ff1681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610da1908363ffffffff61110316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610e5357600080fd5b60008111610e6057600080fd5b600855565b60035433600160a060020a0390811691161480610e90575060055433600160a060020a039081169116145b1515610e9b57600080fd5b60008160ff1610158015610eb3575060648160ff1611155b1515610ebe57600080fd5b6007805460ff9092166101000261ff0019909216919091179055565b60035433600160a060020a03908116911614610ef557600080fd5b600655565b60035433600160a060020a03908116911614610f1557600080fd5b600160a060020a0381161515610f2a57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0383161515610fac57600080fd5b600160a060020a038416600090815260208190526040902054821115610fd157600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561100457600080fd5b600160a060020a03841660009081526020819052604090205461102d908363ffffffff61114e16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611062908363ffffffff61110316565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546110a8908363ffffffff61114e16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206112618339815191529085905190815260200160405180910390a35060019392505050565b818101828110156106a457fe5b6000821515611121575060006106a4565b5081810281838281151561113157fe5b04146106a457fe5b6000818381151561114657fe5b049392505050565b60008282111561115a57fe5b50900390565b6000600160a060020a038316151561117757600080fd5b600160a060020a03331660009081526020819052604090205482111561119c57600080fd5b600160a060020a0333166000908152602081905260409020546111c5908363ffffffff61114e16565b600160a060020a0333811660009081526020819052604080822093909355908516815220546111fa908363ffffffff61110316565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206112618339815191528460405190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209009736039ee2ac9b5c4134dec1b6d0177301ea7d06586965006b71212e783f00029

Deployed Bytecode

0x6060604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101ab578063095ea7b31461023557806318160ddd1461026b57806323b872dd14610290578063313ce567146102b857806333b5b62e146102e1578063355274ea146102f457806340c10f1914610307578063483a20b21461032957806349407a44146103485780634cd412d51461035e5780634ef39b7514610371578063661884631461039057806370a08231146103b2578063715018a6146103d157806375b4d78c146103e45780638da5cb5b146103f757806395d89b41146104265780639c1e03a014610439578063a2ea80f91461044c578063a8c89c5b14610464578063a9059cbb14610477578063b3f05b9714610499578063c2507ac1146104ac578063c7876ea4146104c2578063d1239730146104d5578063d73dd623146104e8578063dd62ed3e1461050a578063de4b32621461052f578063e6ed474614610545578063e8307d001461055e578063ec8ac4d814610574578063f2fde38b14610588575b6101a9336105a7565b005b34156101b657600080fd5b6101be610606565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fa5780820151838201526020016101e2565b50505050905090810190601f1680156102275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024057600080fd5b610257600160a060020a036004351660243561063d565b604051901515815260200160405180910390f35b341561027657600080fd5b61027e6106aa565b60405190815260200160405180910390f35b341561029b57600080fd5b610257600160a060020a03600435811690602435166044356106b0565b34156102c357600080fd5b6102cb6106f0565b60405160ff909116815260200160405180910390f35b34156102ec57600080fd5b61027e6106f5565b34156102ff57600080fd5b61027e6106fb565b341561031257600080fd5b610257600160a060020a0360043516602435610701565b341561033457600080fd5b6101a9600160a060020a0360043516610847565b341561035357600080fd5b6101a9600435610891565b341561036957600080fd5b6102576108e2565b341561037c57600080fd5b610257600160a060020a0360043516610904565b341561039b57600080fd5b610257600160a060020a0360043516602435610a80565b34156103bd57600080fd5b61027e600160a060020a0360043516610b7a565b34156103dc57600080fd5b6101a9610b95565b34156103ef57600080fd5b6102cb610c07565b341561040257600080fd5b61040a610c15565b604051600160a060020a03909116815260200160405180910390f35b341561043157600080fd5b6101be610c24565b341561044457600080fd5b61040a610c5b565b341561045757600080fd5b6101a96004351515610c6a565b341561046f57600080fd5b610257610cb4565b341561048257600080fd5b610257600160a060020a0360043516602435610cc4565b34156104a457600080fd5b610257610d02565b34156104b757600080fd5b61027e600435610d0b565b34156104cd57600080fd5b61027e610d53565b34156104e057600080fd5b610257610d59565b34156104f357600080fd5b610257600160a060020a0360043516602435610d69565b341561051557600080fd5b61027e600160a060020a0360043581169060243516610e0d565b341561053a57600080fd5b6101a9600435610e38565b341561055057600080fd5b6101a960ff60043516610e65565b341561056957600080fd5b6101a9600435610eda565b6101a9600160a060020a03600435166105a7565b341561059357600080fd5b6101a9600160a060020a0360043516610efa565b600554600090819060a060020a900460ff1615156105c457600080fd5b349150600160a060020a03831615156105dc57600080fd5b6006548210156105eb57600080fd5b6105f482610d0b565b90506106008382610701565b50505050565b60408051908101604052600e81527f47616d626c69636120546f6b656e000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015490565b6003546000907501000000000000000000000000000000000000000000900460ff1615156106dd57600080fd5b6106e8848484610f95565b949350505050565b601281565b60065481565b60045481565b60035460009033600160a060020a039081169116148061072f575060055433600160a060020a039081169116145b151561073a57600080fd5b60035460a060020a900460ff16151561075257600080fd5b600454600154610768908463ffffffff61110316565b111561077357600080fd5b6000821161078057600080fd5b600154610793908363ffffffff61110316565b600155600160a060020a0383166000908152602081905260409020546107bf908363ffffffff61110316565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660006000805160206112618339815191528460405190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461086257600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035433600160a060020a039081169116146108ac57600080fd5b600354600160a060020a031681156108fc0282604051600060405180830381858888f1935050505015156108df57600080fd5b50565b6003547501000000000000000000000000000000000000000000900460ff1681565b600354600090819033600160a060020a0390811691161461092457600080fd5b60075460ff161561093457600080fd5b600160a060020a038316151561094957600080fd5b6109706006610964600460015461111090919063ffffffff16565b9063ffffffff61113916565b600154909150610986908263ffffffff61110316565b600155600160a060020a0383166000908152602081905260409020546109b2908263ffffffff61110316565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859083905190815260200160405180910390a2600160a060020a03831660006000805160206112618339815191528360405190815260200160405180910390a36003805475ffff0000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556007805460ff19166001908117909155915050919050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610add57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610b14565b610aed818463ffffffff61114e16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a03908116911614610bb057600080fd5b600354600160a060020a03167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600754610100900460ff1681565b600354600160a060020a031681565b60408051908101604052600481527f474d424300000000000000000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b60035433600160a060020a03908116911614610c8557600080fd5b6005805491151560a060020a0274ff000000000000000000000000000000000000000019909216919091179055565b60055460a060020a900460ff1681565b6003546000907501000000000000000000000000000000000000000000900460ff161515610cf157600080fd5b610cfb8383611160565b9392505050565b60075460ff1681565b600080600854610d2290849063ffffffff61111016565b600754909150610cfb90610d4690606490610964908590610100900460ff16611110565b829063ffffffff61110316565b60085481565b60035460a060020a900460ff1681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610da1908363ffffffff61110316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610e5357600080fd5b60008111610e6057600080fd5b600855565b60035433600160a060020a0390811691161480610e90575060055433600160a060020a039081169116145b1515610e9b57600080fd5b60008160ff1610158015610eb3575060648160ff1611155b1515610ebe57600080fd5b6007805460ff9092166101000261ff0019909216919091179055565b60035433600160a060020a03908116911614610ef557600080fd5b600655565b60035433600160a060020a03908116911614610f1557600080fd5b600160a060020a0381161515610f2a57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0383161515610fac57600080fd5b600160a060020a038416600090815260208190526040902054821115610fd157600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561100457600080fd5b600160a060020a03841660009081526020819052604090205461102d908363ffffffff61114e16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611062908363ffffffff61110316565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546110a8908363ffffffff61114e16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206112618339815191529085905190815260200160405180910390a35060019392505050565b818101828110156106a457fe5b6000821515611121575060006106a4565b5081810281838281151561113157fe5b04146106a457fe5b6000818381151561114657fe5b049392505050565b60008282111561115a57fe5b50900390565b6000600160a060020a038316151561117757600080fd5b600160a060020a03331660009081526020819052604090205482111561119c57600080fd5b600160a060020a0333166000908152602081905260409020546111c5908363ffffffff61114e16565b600160a060020a0333811660009081526020819052604080822093909355908516815220546111fa908363ffffffff61110316565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206112618339815191528460405190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209009736039ee2ac9b5c4134dec1b6d0177301ea7d06586965006b71212e783f00029

Swarm Source

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