ETH Price: $2,627.01 (+7.29%)
Gas: 3 Gwei

Token

BYBIT TOKEN (BYBIT)
 

Overview

Max Total Supply

20,000,000 BYBIT

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
7.61520271 BYBIT

Value
$0.00
0xef8bc311aae60403c93aa3fb351ed6ab7b7165be
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:
BYBITToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-19
*/

pragma solidity ^0.4.24;


/**
 * @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) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    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;
  }
}


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * 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);
}



/**
 * @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];
  }

}

/**
 * @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
  );
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * 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,
    uint256 _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,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}


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

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


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

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

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}


/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }

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

/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
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 BYBITToken is PausableToken {

    string public name = "BYBIT TOKEN";
    string public symbol = "BYBIT";
    uint8 public decimals = 8;

    constructor() public {
        totalSupply_ = 20000000 * (10 ** uint256(decimals));
        balances[msg.sender] = totalSupply_;
        emit Transfer(address(0), msg.sender, totalSupply_);
    }

    function batchTransfer(address[] _to, uint256[] value) public whenNotPaused returns(bool success){
        require(_to.length == value.length);
        for( uint256 i = 0; i < _to.length; i++ ){
            transfer(_to[i],value[i]);
        }
        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":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address[]"},{"name":"value","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"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":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

6003805460a060020a60ff021916905560c0604052600b60808190527f425942495420544f4b454e00000000000000000000000000000000000000000060a090815261004e9160049190610120565b506040805180820190915260058082527f425942495400000000000000000000000000000000000000000000000000000060209092019182526100919181610120565b506006805460ff191660081790553480156100ab57600080fd5b506003805433600160a060020a0319909116811790915560065460ff16600a0a6301312d0002600181905560008281526020818152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36101bb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061016157805160ff191683800117855561018e565b8280016001018555821561018e579182015b8281111561018e578251825591602001919060010190610173565b5061019a92915061019e565b5090565b6101b891905b8082111561019a57600081556001016101a4565b90565b610cee806101ca6000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce567146102085780633f4ba83a146102335780635c975abb1461024a578063661884631461025f57806370a08231146102835780638456cb59146102a457806388d695b2146102b95780638da5cb5b1461034757806395d89b4114610378578063a9059cbb1461038d578063d73dd623146103b1578063dd62ed3e146103d5578063f2fde38b146103fc575b600080fd5b34801561010157600080fd5b5061010a61041d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356104ab565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6104d6565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104dc565b34801561021457600080fd5b5061021d610509565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b50610248610512565b005b34801561025657600080fd5b506101a361058a565b34801561026b57600080fd5b506101a3600160a060020a036004351660243561059a565b34801561028f57600080fd5b506101cc600160a060020a03600435166105be565b3480156102b057600080fd5b506102486105d9565b3480156102c557600080fd5b50604080516020600480358082013583810280860185019096528085526101a395369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506106569650505050505050565b34801561035357600080fd5b5061035c6106d8565b60408051600160a060020a039092168252519081900360200190f35b34801561038457600080fd5b5061010a6106e7565b34801561039957600080fd5b506101a3600160a060020a0360043516602435610742565b3480156103bd57600080fd5b506101a3600160a060020a0360043516602435610766565b3480156103e157600080fd5b506101cc600160a060020a036004358116906024351661078a565b34801561040857600080fd5b50610248600160a060020a03600435166107b5565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a35780601f10610478576101008083540402835291602001916104a3565b820191906000526020600020905b81548152906001019060200180831161048657829003601f168201915b505050505081565b60035460009060a060020a900460ff16156104c557600080fd5b6104cf83836107d8565b9392505050565b60015490565b60035460009060a060020a900460ff16156104f657600080fd5b61050184848461083e565b949350505050565b60065460ff1681565b600354600160a060020a0316331461052957600080fd5b60035460a060020a900460ff16151561054157600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156105b457600080fd5b6104cf83836109b5565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146105f057600080fd5b60035460a060020a900460ff161561060757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600090819060a060020a900460ff161561067257600080fd5b825184511461068057600080fd5b5060005b83518110156106ce576106c5848281518110151561069e57fe5b9060200190602002015184838151811015156106b657fe5b90602001906020020151610742565b50600101610684565b5060019392505050565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a35780601f10610478576101008083540402835291602001916104a3565b60035460009060a060020a900460ff161561075c57600080fd5b6104cf8383610aa5565b60035460009060a060020a900460ff161561078057600080fd5b6104cf8383610b86565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146107cc57600080fd5b6107d581610c1f565b50565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a038316151561085557600080fd5b600160a060020a03841660009081526020819052604090205482111561087a57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156108aa57600080fd5b600160a060020a0384166000908152602081905260409020546108d3908363ffffffff610c9d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610908908363ffffffff610caf16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461094a908363ffffffff610c9d16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a0a57336000908152600260209081526040808320600160a060020a0388168452909152812055610a3f565b610a1a818463ffffffff610c9d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610abc57600080fd5b33600090815260208190526040902054821115610ad857600080fd5b33600090815260208190526040902054610af8908363ffffffff610c9d16565b3360009081526020819052604080822092909255600160a060020a03851681522054610b2a908363ffffffff610caf16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610bba908363ffffffff610caf16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a0381161515610c3457600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610ca957fe5b50900390565b81810182811015610cbc57fe5b929150505600a165627a7a72305820af75b3e0220db2056b939183e0c8d77b54f74b1076b2b8d03ef185736716adaa0029

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce567146102085780633f4ba83a146102335780635c975abb1461024a578063661884631461025f57806370a08231146102835780638456cb59146102a457806388d695b2146102b95780638da5cb5b1461034757806395d89b4114610378578063a9059cbb1461038d578063d73dd623146103b1578063dd62ed3e146103d5578063f2fde38b146103fc575b600080fd5b34801561010157600080fd5b5061010a61041d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356104ab565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6104d6565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104dc565b34801561021457600080fd5b5061021d610509565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b50610248610512565b005b34801561025657600080fd5b506101a361058a565b34801561026b57600080fd5b506101a3600160a060020a036004351660243561059a565b34801561028f57600080fd5b506101cc600160a060020a03600435166105be565b3480156102b057600080fd5b506102486105d9565b3480156102c557600080fd5b50604080516020600480358082013583810280860185019096528085526101a395369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506106569650505050505050565b34801561035357600080fd5b5061035c6106d8565b60408051600160a060020a039092168252519081900360200190f35b34801561038457600080fd5b5061010a6106e7565b34801561039957600080fd5b506101a3600160a060020a0360043516602435610742565b3480156103bd57600080fd5b506101a3600160a060020a0360043516602435610766565b3480156103e157600080fd5b506101cc600160a060020a036004358116906024351661078a565b34801561040857600080fd5b50610248600160a060020a03600435166107b5565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a35780601f10610478576101008083540402835291602001916104a3565b820191906000526020600020905b81548152906001019060200180831161048657829003601f168201915b505050505081565b60035460009060a060020a900460ff16156104c557600080fd5b6104cf83836107d8565b9392505050565b60015490565b60035460009060a060020a900460ff16156104f657600080fd5b61050184848461083e565b949350505050565b60065460ff1681565b600354600160a060020a0316331461052957600080fd5b60035460a060020a900460ff16151561054157600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156105b457600080fd5b6104cf83836109b5565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146105f057600080fd5b60035460a060020a900460ff161561060757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600090819060a060020a900460ff161561067257600080fd5b825184511461068057600080fd5b5060005b83518110156106ce576106c5848281518110151561069e57fe5b9060200190602002015184838151811015156106b657fe5b90602001906020020151610742565b50600101610684565b5060019392505050565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a35780601f10610478576101008083540402835291602001916104a3565b60035460009060a060020a900460ff161561075c57600080fd5b6104cf8383610aa5565b60035460009060a060020a900460ff161561078057600080fd5b6104cf8383610b86565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146107cc57600080fd5b6107d581610c1f565b50565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a038316151561085557600080fd5b600160a060020a03841660009081526020819052604090205482111561087a57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156108aa57600080fd5b600160a060020a0384166000908152602081905260409020546108d3908363ffffffff610c9d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610908908363ffffffff610caf16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461094a908363ffffffff610c9d16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a0a57336000908152600260209081526040808320600160a060020a0388168452909152812055610a3f565b610a1a818463ffffffff610c9d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610abc57600080fd5b33600090815260208190526040902054821115610ad857600080fd5b33600090815260208190526040902054610af8908363ffffffff610c9d16565b3360009081526020819052604080822092909255600160a060020a03851681522054610b2a908363ffffffff610caf16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610bba908363ffffffff610caf16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a0381161515610c3457600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610ca957fe5b50900390565b81810182811015610cbc57fe5b929150505600a165627a7a72305820af75b3e0220db2056b939183e0c8d77b54f74b1076b2b8d03ef185736716adaa0029

Deployed Bytecode Sourcemap

10997:646:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11043:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11043:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11043:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10385:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10385:171:0;-1:-1:-1;;;;;10385:171:0;;;;;;;;;;;;;;;;;;;;;;;;;2121:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2121:85:0;;;;;;;;;;;;;;;;;;;;10181:198;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10181:198:0;-1:-1:-1;;;;;10181:198:0;;;;;;;;;;;;11121:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11121:25:0;;;;;;;;;;;;;;;;;;;;;;;9759:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9759:95:0;;;;;;9138:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9138:26:0;;;;10772:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10772:214:0;-1:-1:-1;;;;;10772:214:0;;;;;;;2905:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2905:101:0;-1:-1:-1;;;;;2905:101:0;;;;;9579:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9579:93:0;;;;11362:276;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11362:276:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11362:276:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11362:276:0;;;;-1:-1:-1;11362:276:0;-1:-1:-1;11362:276:0;;-1:-1:-1;11362:276:0;;;;;;;;;-1:-1:-1;11362:276:0;;-1:-1:-1;11362:276:0;;-1:-1:-1;;;;;;;11362:276:0;7888:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7888:20:0;;;;;;;;-1:-1:-1;;;;;7888:20:0;;;;;;;;;;;;;;11084:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11084:30:0;;;;10012:163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10012:163:0;-1:-1:-1;;;;;10012:163:0;;;;;;;10562:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10562:204:0;-1:-1:-1;;;;;10562:204:0;;;;;;;5814:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5814:162:0;-1:-1:-1;;;;;5814:162:0;;;;;;;;;;8517:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8517:105:0;-1:-1:-1;;;;;8517:105:0;;;;;11043:34;;;;;;;;;;;;;;;-1:-1:-1;;11043:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10385:171::-;9314:6;;10496:4;;-1:-1:-1;;;9314:6:0;;;;9313:7;9305:16;;;;;;10519:31;10533:8;10543:6;10519:13;:31::i;:::-;10512:38;10385:171;-1:-1:-1;;;10385:171:0:o;2121:85::-;2188:12;;2121:85;:::o;10181:198::-;9314:6;;10312:4;;-1:-1:-1;;;9314:6:0;;;;9313:7;9305:16;;;;;;10335:38;10354:5;10361:3;10366:6;10335:18;:38::i;:::-;10328:45;10181:198;-1:-1:-1;;;;10181:198:0:o;11121:25::-;;;;;;:::o;9759:95::-;8329:5;;-1:-1:-1;;;;;8329:5:0;8315:10;:19;8307:28;;;;;;9474:6;;-1:-1:-1;;;9474:6:0;;;;9466:15;;;;;;;;9813:6;:14;;-1:-1:-1;;9813:14:0;;;9839:9;;;;9822:5;;9839:9;9759:95::o;9138:26::-;;;-1:-1:-1;;;9138:26:0;;;;;:::o;10772:214::-;9314:6;;10899:12;;-1:-1:-1;;;9314:6:0;;;;9313:7;9305:16;;;;;;10930:50;10953:8;10963:16;10930:22;:50::i;2905:101::-;-1:-1:-1;;;;;2984:16:0;2961:7;2984:16;;;;;;;;;;;;2905:101::o;9579:93::-;8329:5;;-1:-1:-1;;;;;8329:5:0;8315:10;:19;8307:28;;;;;;9314:6;;-1:-1:-1;;;9314:6:0;;;;9313:7;9305:16;;;;;;9634:6;:13;;-1:-1:-1;;9634:13:0;-1:-1:-1;;;9634:13:0;;;9659:7;;;;9634:13;;9659:7;9579:93::o;11362:276::-;9314:6;;11446:12;;;;-1:-1:-1;;;9314:6:0;;;;9313:7;9305:16;;;;;;11492:12;;11478:10;;:26;11470:35;;;;;;-1:-1:-1;11533:1:0;11516:93;11540:3;:10;11536:1;:14;11516:93;;;11572:25;11581:3;11585:1;11581:6;;;;;;;;;;;;;;;;;;11588:5;11594:1;11588:8;;;;;;;;;;;;;;;;;;11572;:25::i;:::-;-1:-1:-1;11552:3:0;;11516:93;;;-1:-1:-1;11626:4:0;;11362:276;-1:-1:-1;;;11362:276:0:o;7888:20::-;;;-1:-1:-1;;;;;7888:20:0;;:::o;11084:30::-;;;;;;;;;;;;;;;-1:-1:-1;;11084:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10012:163;9314:6;;10119:4;;-1:-1:-1;;;9314:6:0;;;;9313:7;9305:16;;;;;;10142:27;10157:3;10162:6;10142:14;:27::i;10562:204::-;9314:6;;10684:12;;-1:-1:-1;;;9314:6:0;;;;9313:7;9305:16;;;;;;10715:45;10738:8;10748:11;10715:22;:45::i;5814:162::-;-1:-1:-1;;;;;5945:15:0;;;5919:7;5945:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5814:162::o;8517:105::-;8329:5;;-1:-1:-1;;;;;8329:5:0;8315:10;:19;8307:28;;;;;;8587:29;8606:9;8587:18;:29::i;:::-;8517:105;:::o;5295:192::-;5383:10;5362:4;5375:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5375:29:0;;;;;;;;;;;:38;;;5425;;;;;;;5362:4;;5375:29;;5383:10;;5425:38;;;;;;;;-1:-1:-1;5477:4:0;5295:192;;;;:::o;4179:487::-;4291:4;-1:-1:-1;;;;;4315:17:0;;;;4307:26;;;;;;-1:-1:-1;;;;;4358:15:0;;:8;:15;;;;;;;;;;;4348:25;;;4340:34;;;;;;-1:-1:-1;;;;;4399:14:0;;;;;;:7;:14;;;;;;;;4414:10;4399:26;;;;;;;;4389:36;;;4381:45;;;;;;-1:-1:-1;;;;;4453:15:0;;:8;:15;;;;;;;;;;;:27;;4473:6;4453:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4435:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4503:13;;;;;;;:25;;4521:6;4503:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4487:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4564:14;;;;;:7;:14;;;;;4579:10;4564:26;;;;;;;:38;;4595:6;4564:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4535:14:0;;;;;;;:7;:14;;;;;;;;4550:10;4535:26;;;;;;;;:67;;;;4614:28;;;;;;;;;;;4535:14;;4614:28;;;;;;;;;;;-1:-1:-1;4656:4:0;4179:487;;;;;:::o;7214:446::-;7368:10;7325:4;7360:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7360:29:0;;;;;;;;;;7400:27;;;7396:168;;;7446:10;7470:1;7438:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7438:29:0;;;;;;;;;:33;7396:168;;;7526:30;:8;7539:16;7526:30;:12;:30;:::i;:::-;7502:10;7494:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7494:29:0;;;;;;;;;:62;7396:168;7584:10;7606:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7575:61:0;;7606:29;;;;;;;;;;;7575:61;;;;;;;;;7584:10;7575:61;;;;;;;;;;;-1:-1:-1;7650:4:0;;7214:446;-1:-1:-1;;;7214:446:0:o;2367:329::-;2430:4;-1:-1:-1;;;;;2451:17:0;;;;2443:26;;;;;;2503:10;2494:8;:20;;;;;;;;;;;2484:30;;;2476:39;;;;;;2556:10;2547:8;:20;;;;;;;;;;;:32;;2572:6;2547:32;:24;:32;:::i;:::-;2533:10;2524:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2602:13:0;;;;;;:25;;2620:6;2602:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2586:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2639:33;;;;;;;2586:13;;2648:10;;2639:33;;;;;;;;;;-1:-1:-1;2686:4:0;2367:329;;;;:::o;6439:307::-;6610:10;6545:4;6602:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6602:29:0;;;;;;;;;;:46;;6636:11;6602:46;:33;:46;:::i;:::-;6569:10;6561:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6561:29:0;;;;;;;;;;;;:88;;;6661:61;;;;;;6561:29;;6661:61;;;;;;;;;;;-1:-1:-1;6736:4:0;6439:307;;;;:::o;8763:175::-;-1:-1:-1;;;;;8834:23:0;;;;8826:32;;;;;;8891:5;;8870:38;;-1:-1:-1;;;;;8870:38:0;;;;8891:5;;8870:38;;8891:5;;8870:38;8915:5;:17;;-1:-1:-1;;8915:17:0;-1:-1:-1;;;;;8915:17:0;;;;;;;;;;8763:175::o;1080:113::-;1138:7;1161:6;;;;1154:14;;;;-1:-1:-1;1182:5:0;;;1080:113::o;1260:127::-;1340:5;;;1359:6;;;;1352:14;;;;1260:127;;;;:::o

Swarm Source

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