ETH Price: $3,086.15 (-6.92%)
 

Overview

Max Total Supply

506,223,124.9671660684468 MEXC

Holders

189

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,195,500 MEXC

Value
$0.00
0x9e672527dfb7c236986e8ddd3c6457406a9f1d04
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MEXCToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

/**
 *
 * MIT License
 *
 * Copyright (c) 2018, MEXC Program Developers & OpenZeppelin Project.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */
pragma solidity ^0.4.17;

library SafeMath {
  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;
  }

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

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

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

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 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() 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));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }
}

contract Destructible is Ownable {

  function Destructible() public payable { }

  /**
   * @dev Transfers the current balance to the owner and terminates the contract.
   */
  function destroy() onlyOwner public {
    selfdestruct(owner);
  }

  function destroyAndSend(address _recipient) onlyOwner public {
    selfdestruct(_recipient);
  }
}

contract ERC20Basic {
  uint256 public totalSupply;
  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 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);
}

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

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);
    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 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);
    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);
    }
    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(address(0), _to, _amount);
    return true;
  }

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

contract MEXCToken is MintableToken, Destructible  {

  string  public name = 'MEX Care Token';
  string  public symbol = 'MEXC';
  uint8   public decimals = 18;
  uint256 public maxSupply = 1714285714 ether;    // max allowable minting.
  bool    public transferDisabled = true;         // disable transfer init.

  event Confiscate(address indexed offender, uint256 value);

  // empty constructor
  function MEXCToken() public {}

  /*
   * the real reason for quarantined addresses are for those who are
   * mistakenly sent the MEXC tokens to the wrong address. We can disable
   * the usage of the MEXC tokens here.
   */
  mapping(address => bool) quarantined;           // quarantined addresses
  mapping(address => bool) gratuity;              // locked addresses for owners

  modifier canTransfer() {
    if (msg.sender == owner) {
      _;
    } else {
      require(!transferDisabled);
      require(quarantined[msg.sender] == false);  // default bool is false
      require(gratuity[msg.sender] == false);     // default bool is false
      _;
    }
  }

  /*
   * Allow the transfer of token to happen once listed on exchangers
   */
  function allowTransfers() onlyOwner public returns (bool) {
    transferDisabled = false;
    return true;
  }

  function disallowTransfers() onlyOwner public returns (bool) {
    transferDisabled = true;
    return true;
  }

  function quarantineAddress(address _addr) onlyOwner public returns (bool) {
    quarantined[_addr] = true;
    return true;
  }

  function unQuarantineAddress(address _addr) onlyOwner public returns (bool) {
    quarantined[_addr] = false;
    return true;
  }

  function lockAddress(address _addr) onlyOwner public returns (bool) {
    gratuity[_addr] = true;
    return true;
  }

  function unlockAddress(address _addr) onlyOwner public returns (bool) {
    gratuity[_addr] = false;
    return true;
  }

  /**
   * This is confiscate the money that is sent to the wrong address accidentally.
   * the confiscated value can then be transferred to the righful owner. This is
   * especially important during ICO where some are *still* using Exchanger wallet
   * address, instead of their personal address.
   */
  function confiscate(address _offender) onlyOwner public returns (bool) {
    uint256 all = balances[_offender];
    require(all > 0);
    
    balances[_offender] = balances[_offender].sub(all);
    balances[msg.sender] = balances[msg.sender].add(all);
    Confiscate(_offender, all);
    return true;
  }

  /*
   * @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) {
    require(totalSupply <= maxSupply);
    return super.mint(_to, _amount);
  }

  /**
  * @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) canTransfer public returns (bool) {
    return super.transfer(_to, _value);
  }

  /**
   * @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) canTransfer public returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  /**
   * @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) canTransfer public returns (bool) {
    return super.approve(_spender, _value);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"unQuarantineAddress","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":"disallowTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"allowTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"lockAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_offender","type":"address"}],"name":"confiscate","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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"quarantineAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"destroy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferDisabled","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":"_addr","type":"address"}],"name":"unlockAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","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"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"}],"name":"destroyAndSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"offender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Confiscate","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"}]

606060409081526003805460a060020a60ff02191690558051908101604052600e81527f4d4558204361726520546f6b656e000000000000000000000000000000000000602082015260049080516200005d92916020019062000101565b5060408051908101604052600481527f4d4558430000000000000000000000000000000000000000000000000000000060208201526005908051620000a792916020019062000101565b506006805460ff199081166012179091556b058a061ec4dc1559a70800006007556008805490911660011790553415620000e057600080fd5b60038054600160a060020a03191633600160a060020a0316179055620001a6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014457805160ff191683800117855562000174565b8280016001018555821562000174579182015b828111156200017457825182559160200191906001019062000157565b506200018292915062000186565b5090565b620001a391905b808211156200018257600081556001016200018d565b90565b61127280620001b66000396000f30060606040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016357806306fdde031461018a578063095ea7b314610214578063121e81221461023657806318160ddd14610255578063212c81571461027a5780632185810b1461028d57806323b872dd146102a0578063313ce567146102c857806334a90d02146102f157806340c10f191461031057806344f252a014610332578063661884631461035157806370a08231146103735780637d64bcb4146103925780637e42be1a146103a557806383197ef0146103c4578063892dfdf6146103d95780638da5cb5b146103ec57806395d89b411461041b578063a9059cbb1461042e578063b7eb5e0a14610450578063d5abeb011461046f578063d73dd62314610482578063dd62ed3e146104a4578063f2fde38b146104c9578063f5074f41146104e8575b600080fd5b341561016e57600080fd5b610176610507565b604051901515815260200160405180910390f35b341561019557600080fd5b61019d610517565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d95780820151838201526020016101c1565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021f57600080fd5b610176600160a060020a03600435166024356105b5565b341561024157600080fd5b610176600160a060020a036004351661064f565b341561026057600080fd5b610268610692565b60405190815260200160405180910390f35b341561028557600080fd5b610176610698565b341561029857600080fd5b6101766106ca565b34156102ab57600080fd5b610176600160a060020a03600435811690602435166044356106f8565b34156102d357600080fd5b6102db610795565b60405160ff909116815260200160405180910390f35b34156102fc57600080fd5b610176600160a060020a036004351661079e565b341561031b57600080fd5b610176600160a060020a03600435166024356107e5565b341561033d57600080fd5b610176600160a060020a0360043516610835565b341561035c57600080fd5b610176600160a060020a0360043516602435610938565b341561037e57600080fd5b610268600160a060020a0360043516610a32565b341561039d57600080fd5b610176610a4d565b34156103b057600080fd5b610176600160a060020a0360043516610ad8565b34156103cf57600080fd5b6103d7610b1f565b005b34156103e457600080fd5b610176610b48565b34156103f757600080fd5b6103ff610b51565b604051600160a060020a03909116815260200160405180910390f35b341561042657600080fd5b61019d610b60565b341561043957600080fd5b610176600160a060020a0360043516602435610bcb565b341561045b57600080fd5b610176600160a060020a0360043516610c55565b341561047a57600080fd5b610268610c98565b341561048d57600080fd5b610176600160a060020a0360043516602435610c9e565b34156104af57600080fd5b610268600160a060020a0360043581169060243516610d42565b34156104d457600080fd5b6103d7600160a060020a0360043516610d6d565b34156104f357600080fd5b6103d7600160a060020a0360043516610e08565b60035460a060020a900460ff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b505050505081565b60035460009033600160a060020a03908116911614156105e0576105d98383610e2f565b9050610649565b60085460ff16156105f057600080fd5b600160a060020a03331660009081526009602052604090205460ff161561061657600080fd5b600160a060020a0333166000908152600a602052604090205460ff161561063c57600080fd5b6106468383610e2f565b90505b92915050565b60035460009033600160a060020a0390811691161461066d57600080fd5b50600160a060020a03166000908152600960205260409020805460ff19169055600190565b60005481565b60035460009033600160a060020a039081169116146106b657600080fd5b506008805460ff1916600190811790915590565b60035460009033600160a060020a039081169116146106e857600080fd5b506008805460ff19169055600190565b60035460009033600160a060020a03908116911614156107245761071d848484610e9b565b905061078e565b60085460ff161561073457600080fd5b600160a060020a03331660009081526009602052604090205460ff161561075a57600080fd5b600160a060020a0333166000908152600a602052604090205460ff161561078057600080fd5b61078b848484610e9b565b90505b9392505050565b60065460ff1681565b60035460009033600160a060020a039081169116146107bc57600080fd5b50600160a060020a03166000908152600a60205260409020805460ff1916600190811790915590565b60035460009033600160a060020a0390811691161461080357600080fd5b60035460a060020a900460ff161561081a57600080fd5b600754600054111561082b57600080fd5b610646838361101d565b600354600090819033600160a060020a0390811691161461085557600080fd5b50600160a060020a03821660009081526001602052604081205490811161087b57600080fd5b600160a060020a0383166000908152600160205260409020546108a4908263ffffffff61112a16565b600160a060020a038085166000908152600160205260408082209390935533909116815220546108da908263ffffffff61113c16565b600160a060020a0333811660009081526001602052604090819020929092558416907f81ccb678f2c1ba2d46abedd3960e55fc3e9637021da4d383c834c4b91a64ccc19083905190815260200160405180910390a250600192915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561099557600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109cc565b6109a5818463ffffffff61112a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a03908116911614610a6b57600080fd5b60035460a060020a900460ff1615610a8257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035460009033600160a060020a03908116911614610af657600080fd5b50600160a060020a03166000908152600960205260409020805460ff1916600190811790915590565b60035433600160a060020a03908116911614610b3a57600080fd5b600354600160a060020a0316ff5b60085460ff1681565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105ad5780601f10610582576101008083540402835291602001916105ad565b60035460009033600160a060020a0390811691161415610bef576105d9838361114b565b60085460ff1615610bff57600080fd5b600160a060020a03331660009081526009602052604090205460ff1615610c2557600080fd5b600160a060020a0333166000908152600a602052604090205460ff1615610c4b57600080fd5b610646838361114b565b60035460009033600160a060020a03908116911614610c7357600080fd5b50600160a060020a03166000908152600a60205260409020805460ff19169055600190565b60075481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610cd6908363ffffffff61113c16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610d8857600080fd5b600160a060020a0381161515610d9d57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035433600160a060020a03908116911614610e2357600080fd5b80600160a060020a0316ff5b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610eb257600080fd5b600160a060020a038416600090815260016020526040902054821115610ed757600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610f0a57600080fd5b600160a060020a038416600090815260016020526040902054610f33908363ffffffff61112a16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610f68908363ffffffff61113c16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610fb0908363ffffffff61112a16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035460009033600160a060020a0390811691161461103b57600080fd5b60035460a060020a900460ff161561105257600080fd5b600054611065908363ffffffff61113c16565b6000908155600160a060020a038416815260016020526040902054611090908363ffffffff61113c16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60008282111561113657fe5b50900390565b60008282018381101561078e57fe5b6000600160a060020a038316151561116257600080fd5b600160a060020a03331660009081526001602052604090205482111561118757600080fd5b600160a060020a0333166000908152600160205260409020546111b0908363ffffffff61112a16565b600160a060020a0333811660009081526001602052604080822093909355908516815220546111e5908363ffffffff61113c16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001929150505600a165627a7a72305820278ecc3e1b466ec7e9f5dfc6afed99fccbcd71af8485897705a1762c042298f00029

Deployed Bytecode

0x60606040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016357806306fdde031461018a578063095ea7b314610214578063121e81221461023657806318160ddd14610255578063212c81571461027a5780632185810b1461028d57806323b872dd146102a0578063313ce567146102c857806334a90d02146102f157806340c10f191461031057806344f252a014610332578063661884631461035157806370a08231146103735780637d64bcb4146103925780637e42be1a146103a557806383197ef0146103c4578063892dfdf6146103d95780638da5cb5b146103ec57806395d89b411461041b578063a9059cbb1461042e578063b7eb5e0a14610450578063d5abeb011461046f578063d73dd62314610482578063dd62ed3e146104a4578063f2fde38b146104c9578063f5074f41146104e8575b600080fd5b341561016e57600080fd5b610176610507565b604051901515815260200160405180910390f35b341561019557600080fd5b61019d610517565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d95780820151838201526020016101c1565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021f57600080fd5b610176600160a060020a03600435166024356105b5565b341561024157600080fd5b610176600160a060020a036004351661064f565b341561026057600080fd5b610268610692565b60405190815260200160405180910390f35b341561028557600080fd5b610176610698565b341561029857600080fd5b6101766106ca565b34156102ab57600080fd5b610176600160a060020a03600435811690602435166044356106f8565b34156102d357600080fd5b6102db610795565b60405160ff909116815260200160405180910390f35b34156102fc57600080fd5b610176600160a060020a036004351661079e565b341561031b57600080fd5b610176600160a060020a03600435166024356107e5565b341561033d57600080fd5b610176600160a060020a0360043516610835565b341561035c57600080fd5b610176600160a060020a0360043516602435610938565b341561037e57600080fd5b610268600160a060020a0360043516610a32565b341561039d57600080fd5b610176610a4d565b34156103b057600080fd5b610176600160a060020a0360043516610ad8565b34156103cf57600080fd5b6103d7610b1f565b005b34156103e457600080fd5b610176610b48565b34156103f757600080fd5b6103ff610b51565b604051600160a060020a03909116815260200160405180910390f35b341561042657600080fd5b61019d610b60565b341561043957600080fd5b610176600160a060020a0360043516602435610bcb565b341561045b57600080fd5b610176600160a060020a0360043516610c55565b341561047a57600080fd5b610268610c98565b341561048d57600080fd5b610176600160a060020a0360043516602435610c9e565b34156104af57600080fd5b610268600160a060020a0360043581169060243516610d42565b34156104d457600080fd5b6103d7600160a060020a0360043516610d6d565b34156104f357600080fd5b6103d7600160a060020a0360043516610e08565b60035460a060020a900460ff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b505050505081565b60035460009033600160a060020a03908116911614156105e0576105d98383610e2f565b9050610649565b60085460ff16156105f057600080fd5b600160a060020a03331660009081526009602052604090205460ff161561061657600080fd5b600160a060020a0333166000908152600a602052604090205460ff161561063c57600080fd5b6106468383610e2f565b90505b92915050565b60035460009033600160a060020a0390811691161461066d57600080fd5b50600160a060020a03166000908152600960205260409020805460ff19169055600190565b60005481565b60035460009033600160a060020a039081169116146106b657600080fd5b506008805460ff1916600190811790915590565b60035460009033600160a060020a039081169116146106e857600080fd5b506008805460ff19169055600190565b60035460009033600160a060020a03908116911614156107245761071d848484610e9b565b905061078e565b60085460ff161561073457600080fd5b600160a060020a03331660009081526009602052604090205460ff161561075a57600080fd5b600160a060020a0333166000908152600a602052604090205460ff161561078057600080fd5b61078b848484610e9b565b90505b9392505050565b60065460ff1681565b60035460009033600160a060020a039081169116146107bc57600080fd5b50600160a060020a03166000908152600a60205260409020805460ff1916600190811790915590565b60035460009033600160a060020a0390811691161461080357600080fd5b60035460a060020a900460ff161561081a57600080fd5b600754600054111561082b57600080fd5b610646838361101d565b600354600090819033600160a060020a0390811691161461085557600080fd5b50600160a060020a03821660009081526001602052604081205490811161087b57600080fd5b600160a060020a0383166000908152600160205260409020546108a4908263ffffffff61112a16565b600160a060020a038085166000908152600160205260408082209390935533909116815220546108da908263ffffffff61113c16565b600160a060020a0333811660009081526001602052604090819020929092558416907f81ccb678f2c1ba2d46abedd3960e55fc3e9637021da4d383c834c4b91a64ccc19083905190815260200160405180910390a250600192915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561099557600160a060020a0333811660009081526002602090815260408083209388168352929052908120556109cc565b6109a5818463ffffffff61112a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a03908116911614610a6b57600080fd5b60035460a060020a900460ff1615610a8257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035460009033600160a060020a03908116911614610af657600080fd5b50600160a060020a03166000908152600960205260409020805460ff1916600190811790915590565b60035433600160a060020a03908116911614610b3a57600080fd5b600354600160a060020a0316ff5b60085460ff1681565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105ad5780601f10610582576101008083540402835291602001916105ad565b60035460009033600160a060020a0390811691161415610bef576105d9838361114b565b60085460ff1615610bff57600080fd5b600160a060020a03331660009081526009602052604090205460ff1615610c2557600080fd5b600160a060020a0333166000908152600a602052604090205460ff1615610c4b57600080fd5b610646838361114b565b60035460009033600160a060020a03908116911614610c7357600080fd5b50600160a060020a03166000908152600a60205260409020805460ff19169055600190565b60075481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610cd6908363ffffffff61113c16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610d8857600080fd5b600160a060020a0381161515610d9d57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035433600160a060020a03908116911614610e2357600080fd5b80600160a060020a0316ff5b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610eb257600080fd5b600160a060020a038416600090815260016020526040902054821115610ed757600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610f0a57600080fd5b600160a060020a038416600090815260016020526040902054610f33908363ffffffff61112a16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610f68908363ffffffff61113c16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610fb0908363ffffffff61112a16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035460009033600160a060020a0390811691161461103b57600080fd5b60035460a060020a900460ff161561105257600080fd5b600054611065908363ffffffff61113c16565b6000908155600160a060020a038416815260016020526040902054611090908363ffffffff61113c16565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60008282111561113657fe5b50900390565b60008282018381101561078e57fe5b6000600160a060020a038316151561116257600080fd5b600160a060020a03331660009081526001602052604090205482111561118757600080fd5b600160a060020a0333166000908152600160205260409020546111b0908363ffffffff61112a16565b600160a060020a0333811660009081526001602052604080822093909355908516815220546111e5908363ffffffff61113c16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001929150505600a165627a7a72305820278ecc3e1b466ec7e9f5dfc6afed99fccbcd71af8485897705a1762c042298f00029

Swarm Source

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