ETH Price: $2,642.00 (+1.42%)

Token

COSBALL Token (COSB)
 

Overview

Max Total Supply

9,000,000,000 COSB

Holders

1,435

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.0000818 COSB

Value
$0.00
0xa612c9fcd511adbc5c1910f8cecaa1594bbe0667
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:
COSBALLToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-07-18
*/

pragma solidity 0.4.24;

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

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

// File: node_modules\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: node_modules\openzeppelin-solidity\contracts\token\ERC20\DetailedERC20.sol

/**
 * @title DetailedERC20 token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

  constructor(string _name, string _symbol, uint8 _decimals) public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
  }
}

// File: node_modules\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) {
    // 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;
  }
}

// File: node_modules\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) internal balances;

  uint256 internal 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(_value <= balances[msg.sender]);
    require(_to != address(0));

    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: node_modules\openzeppelin-solidity\contracts\token\ERC20\StandardToken.sol

/**
 * @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(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    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) {
    require(_value == 0 || (allowed[msg.sender][_spender] == 0));
    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;
  }

}

// File: node_modules\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.
   */
  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 relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

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

// File: contracts\COSBALLToken.sol

contract COSBALLToken is DetailedERC20, StandardToken, Ownable {
  string public name = "COSBALL Token";
  string public symbol = "COSB";
  uint8 public decimals = 18;
  uint public initialSupply = 9000000000 * 10 ** uint256(decimals);

  mapping (address => bool) public frozenAccount;
  event FrozenFunds(address target, bool frozen);
  
  constructor() DetailedERC20(name, symbol, decimals) public {
    totalSupply_ = initialSupply;
    balances[msg.sender] = totalSupply_;
    emit Transfer(address(0), owner, totalSupply_);
  }

  function transfer(address _to, uint256 _value) public returns (bool){
    _transfer(msg.sender, _to, _value);
  }

  function _transfer(address _from, address _to, uint _value) internal {
        require (_to != address(0));
        require (balances[_from] >= _value);               
        require (balances[_to].add(_value) >= balances[_to]); 
        require(!frozenAccount[_from]);                  
        require(!frozenAccount[_to]);                     
        balances[_from] = balances[_from].sub(_value); 
        balances[_to] = balances[_to].add(_value);        
        emit Transfer(_from, _to, _value);
  }

  function freezeAccount(address target, bool freeze) onlyOwner public {
        frozenAccount[target] = freeze;
        emit FrozenFunds(target, freeze);
  }
}

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":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"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":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","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":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","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"}]

60c0604052600d60808190527f434f5342414c4c20546f6b656e0000000000000000000000000000000000000060a09081526200004091600791906200029a565b506040805180820190915260048082527f434f534200000000000000000000000000000000000000000000000000000000602090920191825262000087916008916200029a565b5060098054601260ff19909116179081905560ff16600a90810a640218711a00029055348015620000b757600080fd5b506007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620001425780601f10620001165761010080835404028352916020019162000142565b820191906000526020600020905b8154815290600101906020018083116200012457829003601f168201915b505060088054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815295509193509150830182828015620001d45780601f10620001a857610100808354040283529160200191620001d4565b820191906000526020600020905b815481529060010190602001808311620001b657829003601f168201915b5050600954855160ff9091169350620001f792506000915060208601906200029a565b5081516200020d9060019060208501906200029a565b506002805460ff191660ff9290921691909117905550506006805433600160a060020a031990911681178255600a5460048190556000918252600360209081526040808420839055935484519283529351600160a060020a03909416937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36200033f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002dd57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030d578251825591602001919060010190620002f0565b506200031b9291506200031f565b5090565b6200033c91905b808211156200031b576000815560010162000326565b90565b610c21806200034f6000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce56714610208578063378dc3dc14610233578063661884631461024857806370a082311461026c578063715018a61461028d5780638da5cb5b146102a457806395d89b41146102d5578063a9059cbb146102ea578063b414d4b61461030e578063d73dd6231461032f578063dd62ed3e14610353578063e724529c1461037a578063f2fde38b146103a0575b600080fd5b34801561010157600080fd5b5061010a6103c1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561044f565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6104f2565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104f8565b34801561021457600080fd5b5061021d61066f565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101cc610678565b34801561025457600080fd5b506101a3600160a060020a036004351660243561067e565b34801561027857600080fd5b506101cc600160a060020a036004351661076d565b34801561029957600080fd5b506102a2610788565b005b3480156102b057600080fd5b506102b96107f6565b60408051600160a060020a039092168252519081900360200190f35b3480156102e157600080fd5b5061010a610805565b3480156102f657600080fd5b506101a3600160a060020a0360043516602435610860565b34801561031a57600080fd5b506101a3600160a060020a036004351661086d565b34801561033b57600080fd5b506101a3600160a060020a0360043516602435610882565b34801561035f57600080fd5b506101cc600160a060020a036004358116906024351661091b565b34801561038657600080fd5b506102a2600160a060020a03600435166024351515610946565b3480156103ac57600080fd5b506102a2600160a060020a03600435166109c1565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104475780601f1061041c57610100808354040283529160200191610447565b820191906000526020600020905b81548152906001019060200180831161042a57829003601f168201915b505050505081565b600081158061047f5750336000908152600560209081526040808320600160a060020a0387168452909152902054155b151561048a57600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045490565b600160a060020a03831660009081526003602052604081205482111561051d57600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561054d57600080fd5b600160a060020a038316151561056257600080fd5b600160a060020a03841660009081526003602052604090205461058b908363ffffffff6109e416565b600160a060020a0380861660009081526003602052604080822093909355908516815220546105c0908363ffffffff6109f616565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610604908363ffffffff6109e416565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60095460ff1681565b600a5481565b336000908152600560209081526040808320600160a060020a03861684529091528120548083106106d257336000908152600560209081526040808320600160a060020a0388168452909152812055610707565b6106e2818463ffffffff6109e416565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a0316331461079f57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104475780601f1061041c57610100808354040283529160200191610447565b60006104ec338484610a03565b600b6020526000908152604090205460ff1681565b336000908152600560209081526040808320600160a060020a03861684529091528120546108b6908363ffffffff6109f616565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600654600160a060020a0316331461095d57600080fd5b600160a060020a0382166000818152600b6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600654600160a060020a031633146109d857600080fd5b6109e181610b77565b50565b6000828211156109f057fe5b50900390565b818101828110156104ec57fe5b600160a060020a0382161515610a1857600080fd5b600160a060020a038316600090815260036020526040902054811115610a3d57600080fd5b600160a060020a038216600090815260036020526040902054610a66818363ffffffff6109f616565b1015610a7157600080fd5b600160a060020a0383166000908152600b602052604090205460ff1615610a9757600080fd5b600160a060020a0382166000908152600b602052604090205460ff1615610abd57600080fd5b600160a060020a038316600090815260036020526040902054610ae6908263ffffffff6109e416565b600160a060020a038085166000908152600360205260408082209390935590841681522054610b1b908263ffffffff6109f616565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600160a060020a0381161515610b8c57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582001c28ac7b75b1b338a688aab7ca8122ec41362384e5288f53e1c37b395407cd90029

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce56714610208578063378dc3dc14610233578063661884631461024857806370a082311461026c578063715018a61461028d5780638da5cb5b146102a457806395d89b41146102d5578063a9059cbb146102ea578063b414d4b61461030e578063d73dd6231461032f578063dd62ed3e14610353578063e724529c1461037a578063f2fde38b146103a0575b600080fd5b34801561010157600080fd5b5061010a6103c1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561044f565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6104f2565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104f8565b34801561021457600080fd5b5061021d61066f565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101cc610678565b34801561025457600080fd5b506101a3600160a060020a036004351660243561067e565b34801561027857600080fd5b506101cc600160a060020a036004351661076d565b34801561029957600080fd5b506102a2610788565b005b3480156102b057600080fd5b506102b96107f6565b60408051600160a060020a039092168252519081900360200190f35b3480156102e157600080fd5b5061010a610805565b3480156102f657600080fd5b506101a3600160a060020a0360043516602435610860565b34801561031a57600080fd5b506101a3600160a060020a036004351661086d565b34801561033b57600080fd5b506101a3600160a060020a0360043516602435610882565b34801561035f57600080fd5b506101cc600160a060020a036004358116906024351661091b565b34801561038657600080fd5b506102a2600160a060020a03600435166024351515610946565b3480156103ac57600080fd5b506102a2600160a060020a03600435166109c1565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104475780601f1061041c57610100808354040283529160200191610447565b820191906000526020600020905b81548152906001019060200180831161042a57829003601f168201915b505050505081565b600081158061047f5750336000908152600560209081526040808320600160a060020a0387168452909152902054155b151561048a57600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045490565b600160a060020a03831660009081526003602052604081205482111561051d57600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561054d57600080fd5b600160a060020a038316151561056257600080fd5b600160a060020a03841660009081526003602052604090205461058b908363ffffffff6109e416565b600160a060020a0380861660009081526003602052604080822093909355908516815220546105c0908363ffffffff6109f616565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610604908363ffffffff6109e416565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60095460ff1681565b600a5481565b336000908152600560209081526040808320600160a060020a03861684529091528120548083106106d257336000908152600560209081526040808320600160a060020a0388168452909152812055610707565b6106e2818463ffffffff6109e416565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a0316331461079f57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104475780601f1061041c57610100808354040283529160200191610447565b60006104ec338484610a03565b600b6020526000908152604090205460ff1681565b336000908152600560209081526040808320600160a060020a03861684529091528120546108b6908363ffffffff6109f616565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600654600160a060020a0316331461095d57600080fd5b600160a060020a0382166000818152600b6020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600654600160a060020a031633146109d857600080fd5b6109e181610b77565b50565b6000828211156109f057fe5b50900390565b818101828110156104ec57fe5b600160a060020a0382161515610a1857600080fd5b600160a060020a038316600090815260036020526040902054811115610a3d57600080fd5b600160a060020a038216600090815260036020526040902054610a66818363ffffffff6109f616565b1015610a7157600080fd5b600160a060020a0383166000908152600b602052604090205460ff1615610a9757600080fd5b600160a060020a0382166000908152600b602052604090205460ff1615610abd57600080fd5b600160a060020a038316600090815260036020526040902054610ae6908263ffffffff6109e416565b600160a060020a038085166000908152600360205260408082209390935590841681522054610b1b908263ffffffff6109f616565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600160a060020a0381161515610b8c57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582001c28ac7b75b1b338a688aab7ca8122ec41362384e5288f53e1c37b395407cd90029

Deployed Bytecode Sourcemap

10619:1359:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10687:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10687:36: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;10687:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6337:259;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6337:259:0;-1:-1:-1;;;;;6337:259:0;;;;;;;;;;;;;;;;;;;;;;;;;3573:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3573:85:0;;;;;;;;;;;;;;;;;;;;5221:487;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5221:487:0;-1:-1:-1;;;;;5221:487:0;;;;;;;;;;;;10762:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10762:26:0;;;;;;;;;;;;;;;;;;;;;;;10793:64;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10793:64:0;;;;8323:447;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8323:447:0;-1:-1:-1;;;;;8323:447:0;;;;;;;4357:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4357:101:0;-1:-1:-1;;;;;4357:101:0;;;;;9870:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9870:114:0;;;;;;9075:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9075:20:0;;;;;;;;-1:-1:-1;;;;;9075:20:0;;;;;;;;;;;;;;10728:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10728:29:0;;;;11171:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11171:115:0;-1:-1:-1;;;;;11171:115:0;;;;;;;10864:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10864:46:0;-1:-1:-1;;;;;10864:46:0;;;;;7548:307;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7548:307:0;-1:-1:-1;;;;;7548:307:0;;;;;;;6923:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6923:162:0;-1:-1:-1;;;;;6923:162:0;;;;;;;;;;11816:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11816:159:0;-1:-1:-1;;;;;11816:159:0;;;;;;;;;10152:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10152:105:0;-1:-1:-1;;;;;10152:105:0;;;;;10687:36;;;;;;;;;;;;;;;-1:-1:-1;;10687:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6337:259::-;6404:4;6425:11;;;:51;;-1:-1:-1;6449:10:0;6441:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6441:29:0;;;;;;;;;;:34;6425:51;6417:60;;;;;;;;6492:10;6484:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6484:29:0;;;;;;;;;;;;:38;;;6534;;;;;;;6484:29;;6492:10;6534:38;;;;;;;;;;;-1:-1:-1;6586:4:0;6337:259;;;;;:::o;3573:85::-;3640:12;;3573:85;:::o;5221:487::-;-1:-1:-1;;;;;5367:15:0;;5333:4;5367:15;;;:8;:15;;;;;;5357:25;;;5349:34;;;;;;-1:-1:-1;;;;;5408:14:0;;;;;;:7;:14;;;;;;;;5423:10;5408:26;;;;;;;;5398:36;;;5390:45;;;;;;-1:-1:-1;;;;;5450:17:0;;;;5442:26;;;;;;-1:-1:-1;;;;;5495:15:0;;;;;;:8;:15;;;;;;:27;;5515:6;5495:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5477:15:0;;;;;;;:8;:15;;;;;;:45;;;;5545:13;;;;;;;:25;;5563:6;5545:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5529:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;5606:14;;;;;:7;:14;;;;;5621:10;5606:26;;;;;;;:38;;5637:6;5606:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5577:14:0;;;;;;;:7;:14;;;;;;;;5592:10;5577:26;;;;;;;;:67;;;;5656:28;;;;;;;;;;;5577:14;;5656:28;;;;;;;;;;;-1:-1:-1;5698:4:0;5221:487;;;;;:::o;10762:26::-;;;;;;:::o;10793:64::-;;;;:::o;8323:447::-;8477:10;8434:4;8469:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8469:29:0;;;;;;;;;;8509:28;;;8505:169;;8556:10;8580:1;8548:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8548:29:0;;;;;;;;;:33;8505:169;;;8636:30;:8;8649:16;8636:30;:12;:30;:::i;:::-;8612:10;8604:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8604:29:0;;;;;;;;;:62;8505:169;8694:10;8716:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8685:61:0;;8716:29;;;;;;;;;;;8685:61;;;;;;;;;8694:10;8685:61;;;;;;;;;;;-1:-1:-1;8760:4:0;;8323:447;-1:-1:-1;;;8323:447:0:o;4357:101::-;-1:-1:-1;;;;;4436:16:0;4413:7;4436:16;;;:8;:16;;;;;;;4357:101::o;9870:114::-;9578:5;;-1:-1:-1;;;;;9578:5:0;9564:10;:19;9556:28;;;;;;9947:5;;9928:25;;-1:-1:-1;;;;;9947:5:0;;;;9928:25;;9947:5;;9928:25;9960:5;:18;;-1:-1:-1;;9960:18:0;;;9870:114::o;9075:20::-;;;-1:-1:-1;;;;;9075:20:0;;:::o;10728:29::-;;;;;;;;;;;;;;;-1:-1:-1;;10728:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11171:115;11234:4;11246:34;11256:10;11268:3;11273:6;11246:9;:34::i;10864:46::-;;;;;;;;;;;;;;;:::o;7548:307::-;7719:10;7654:4;7711:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7711:29:0;;;;;;;;;;:46;;7745:11;7711:46;:33;:46;:::i;:::-;7678:10;7670:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7670:29:0;;;;;;;;;;;;:88;;;7770:61;;;;;;7670:29;;7770:61;;;;;;;;;;;-1:-1:-1;7845:4:0;7548:307;;;;:::o;6923:162::-;-1:-1:-1;;;;;7054:15:0;;;7028:7;7054:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6923:162::o;11816:159::-;9578:5;;-1:-1:-1;;;;;9578:5:0;9564:10;:19;9556:28;;;;;;-1:-1:-1;;;;;11896:21:0;;;;;;:13;:21;;;;;;;;;:30;;-1:-1:-1;;11896:30:0;;;;;;;;;;11942:27;;;;;;;;;;;;;;;;;;;;;11816:159;;:::o;10152:105::-;9578:5;;-1:-1:-1;;;;;9578:5:0;9564:10;:19;9556:28;;;;;;10222:29;10241:9;10222:18;:29::i;:::-;10152:105;:::o;2851:119::-;2911:7;2934:8;;;;2927:16;;;;-1:-1:-1;2957:7:0;;;2851:119::o;3037:132::-;3119:7;;;3140;;;;3133:15;;;11292:518;-1:-1:-1;;;;;11381:17:0;;;;11372:27;;;;;;-1:-1:-1;;;;;11419:15:0;;;;;;:8;:15;;;;;;:25;-1:-1:-1;11419:25:0;11410:35;;;;;;-1:-1:-1;;;;;11509:13:0;;;;;;:8;:13;;;;;;11480:25;11509:13;11498:6;11480:25;:17;:25;:::i;:::-;:42;;11471:52;;;;;;-1:-1:-1;;;;;11544:20:0;;;;;;:13;:20;;;;;;;;11543:21;11535:30;;;;;;-1:-1:-1;;;;;11603:18:0;;;;;;:13;:18;;;;;;;;11602:19;11594:28;;;;;;-1:-1:-1;;;;;11672:15:0;;;;;;:8;:15;;;;;;:27;;11692:6;11672:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;11654:15:0;;;;;;;:8;:15;;;;;;:45;;;;11727:13;;;;;;;:25;;11745:6;11727:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;11711:13:0;;;;;;;:8;:13;;;;;;;;;:41;;;;11776:28;;;;;;;11711:13;;11776:28;;;;;;;;;;;;;11292:518;;;:::o;10398:175::-;-1:-1:-1;;;;;10469:23:0;;;;10461:32;;;;;;10526:5;;10505:38;;-1:-1:-1;;;;;10505:38:0;;;;10526:5;;10505:38;;10526:5;;10505:38;10550:5;:17;;-1:-1:-1;;10550:17:0;-1:-1:-1;;;;;10550:17:0;;;;;;;;;;10398:175::o

Swarm Source

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