ETH Price: $3,152.14 (+1.05%)
Gas: 2 Gwei

Token

Streamity (STM)
 

Overview

Max Total Supply

180,000,000 STM

Holders

2,707 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,116.9000000000002095 STM

Value
$0.00
0xca63a1eae2face6eb858d30554da0363716489c9
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:
Streamity

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-02-08
*/

pragma solidity ^0.4.18;

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

library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || 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;
  }
}

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

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

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

}

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

  /**
   * @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) onlyOwner public {
    require(newOwner != address(0));
    owner = newOwner;
  }

}

contract Pausable is Ownable {

    event EPause();
    event EUnpause();

    bool public paused = true;

    modifier whenNotPaused()
    {
        require(!paused);
        _;
    }

    modifier whenPaused()
    {
        require(paused);
        _;
    }

    function pause() public onlyOwner
    {
        paused = true;
        EPause();
    }

    function pauseInternal() internal
    {
        paused = true;
        EPause();
    }

    function unpause() public onlyOwner
    {
        paused = false;
        EUnpause();
    }

    function isPaused() view public returns(bool) {
        return paused;
    }

    function unpauseInternal() internal
    {
        paused = false;
        EUnpause();
    }

}

contract StandardToken is ERC20, BasicToken {
  using SafeMath for uint256;
  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;
  }

}

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

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is PausableToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    require(_value <= balances[msg.sender]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    Burn(burner, _value);
  }
}

contract Streamity is BurnableToken {

    string public constant name = "Streamity";
    string public constant symbol = "STM";
    uint8 public constant decimals = 18;

    uint256 public constant INITIAL_SUPPLY = 180000000 ether;


    address public tokenOwner = 0x99395F3CFa72E30E1073E2DB4d716efCFa1a9b82;
    address public reserveFund = 0xC5fed49Be1F6c3949831a06472aC5AB271AF89BD; //18 600 000 STM
    address public advisersPartners = 0x5B5521E9D795CA083eF928A58393B8f7FF95e098; //3 720 000 STM
    address public teamWallet = 0x556dB38b73B97954960cA72580EbdAc89327808E; // 4 650 000 STM


    uint public timeLock = now + 1 years;

    function Streamity () public {
        totalSupply_ = INITIAL_SUPPLY;

        balances[tokenOwner] = INITIAL_SUPPLY;

        balances[this] = balances[tokenOwner].sub(23250000 ether); // for freezing
        balances[tokenOwner] = balances[tokenOwner].sub(23250000 ether);
        Transfer(tokenOwner, this, 23250000 ether);

        balances[reserveFund] = balances[tokenOwner].sub(18600000 ether);
        balances[tokenOwner] = balances[tokenOwner].sub(18600000 ether);
        Transfer(tokenOwner, reserveFund, 18600000 ether);

        balances[advisersPartners] = balances[tokenOwner].sub(3720000 ether);
        balances[tokenOwner] = balances[tokenOwner].sub(3720000 ether);
        Transfer(tokenOwner, advisersPartners, 3720000 ether);

        balances[teamWallet] = balances[tokenOwner].sub(4650000 ether);
        balances[tokenOwner] = balances[tokenOwner].sub(4650000 ether);
        Transfer(tokenOwner, teamWallet, 4650000 ether);
    }

    function sendTokens(address _to, uint _value) public onlyOwner {
        require(_to != address(0));
        require(_value <= balances[tokenOwner]);
        balances[tokenOwner] = balances[tokenOwner].sub(_value);
        balances[_to] = balances[_to].add(_value);
        Transfer(tokenOwner, _to, _value);
    }

    function unlockTeamTokens() public {
        require(now >= timeLock);

        uint amount = 23250000 ether;

        balances[this] = balances[this].sub(amount);
        balances[teamWallet] = balances[teamWallet].add(amount);
        Transfer(this, teamWallet, amount);
    }

}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"sendTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisersPartners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":true,"inputs":[],"name":"tokenOwner","outputs":[{"name":"","type":"address"}],"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":"isPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserveFund","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timeLock","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":"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":"unlockTeamTokens","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":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"EPause","type":"event"},{"anonymous":false,"inputs":[],"name":"EUnpause","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"}]

60606040526003805460a060020a60ff0219167401000000000000000000000000000000000000000017905560048054600160a060020a03199081167399395f3cfa72e30e1073e2db4d716efcfa1a9b821790915560058054821673c5fed49be1f6c3949831a06472ac5ab271af89bd179055600680548216735b5521e9d795ca083ef928a58393b8f7ff95e0981790556007805490911673556db38b73b97954960ca72580ebdac89327808e1790556301e1338042016008553415620000c557600080fd5b60038054600160a060020a03191633600160a060020a03908116919091179091556a94e47b8d68171534000000600181905560048054831660009081526020819052604080822093909355905490921682529020546200013f906a133b6106881c94df400000640100000000620004af810262000a6c1704565b600160a060020a0330811660009081526020819052604080822093909355600454909116815220546200018c906a133b6106881c94df40000064010000000062000a6c620004af82021704565b60048054600160a060020a03908116600090815260208190526040908190209390935590543082169291169060008051602062001423833981519152906a133b6106881c94df400000905190815260200160405180910390a3600454600160a060020a031660009081526020819052604090205462000225906a0f62b40539b0771900000064010000000062000a6c620004af82021704565b600554600160a060020a03908116600090815260208190526040808220939093556004549091168152205462000275906a0f62b40539b0771900000064010000000062000a6c620004af82021704565b60048054600160a060020a03908116600090815260208190526040908190209390935560055491549181169291169060008051602062001423833981519152906a0f62b40539b07719000000905190815260200160405180910390a3600454600160a060020a031660009081526020819052604090205462000311906a0313bd9aa5234b0500000064010000000062000a6c620004af82021704565b600654600160a060020a03908116600090815260208190526040808220939093556004549091168152205462000361906a0313bd9aa5234b0500000064010000000062000a6c620004af82021704565b60048054600160a060020a03908116600090815260208190526040908190209390935560065491549181169291169060008051602062001423833981519152906a0313bd9aa5234b05000000905190815260200160405180910390a3600454600160a060020a0316600090815260208190526040902054620003fd906a03d8ad014e6c1dc640000064010000000062000a6c620004af82021704565b600754600160a060020a0390811660009081526020819052604080822093909355600454909116815220546200044d906a03d8ad014e6c1dc640000064010000000062000a6c620004af82021704565b60048054600160a060020a03908116600090815260208190526040908190209390935560075491549181169291169060008051602062001423833981519152906a03d8ad014e6c1dc6400000905190815260200160405180910390a3620004c2565b600082821115620004bc57fe5b50900390565b610f5180620004d26000396000f3006060604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305ab421d811461015857806306fdde031461017c578063095ea7b31461020657806318160ddd1461023c57806323b872dd146102615780632ff2e9dc14610289578063313ce5671461029c5780633f4ba83a146102c557806342966c68146102d8578063451f0601146102ee578063599270441461031d5780635c975abb14610330578063661884631461034357806370a08231146103655780638456cb59146103845780638da5cb5b1461039757806395d89b41146103aa578063a3e67610146103bd578063a9059cbb146103d0578063b187bd26146103f2578063b7f92b7114610405578063d085835a14610418578063d73dd6231461042b578063dd62ed3e1461044d578063e2130d1e14610472578063f2fde38b14610485575b600080fd5b341561016357600080fd5b61017a600160a060020a03600435166024356104a4565b005b341561018757600080fd5b61018f6105aa565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101cb5780820151838201526020016101b3565b50505050905090810190601f1680156101f85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021157600080fd5b610228600160a060020a03600435166024356105e1565b604051901515815260200160405180910390f35b341561024757600080fd5b61024f61060c565b60405190815260200160405180910390f35b341561026c57600080fd5b610228600160a060020a0360043581169060243516604435610612565b341561029457600080fd5b61024f61063f565b34156102a757600080fd5b6102af61064e565b60405160ff909116815260200160405180910390f35b34156102d057600080fd5b61017a610653565b34156102e357600080fd5b61017a6004356106ba565b34156102f957600080fd5b610301610774565b604051600160a060020a03909116815260200160405180910390f35b341561032857600080fd5b610301610783565b341561033b57600080fd5b610228610792565b341561034e57600080fd5b610228600160a060020a03600435166024356107a2565b341561037057600080fd5b61024f600160a060020a03600435166107c6565b341561038f57600080fd5b61017a6107e1565b34156103a257600080fd5b61030161084e565b34156103b557600080fd5b61018f61085d565b34156103c857600080fd5b610301610894565b34156103db57600080fd5b610228600160a060020a03600435166024356108a3565b34156103fd57600080fd5b6102286108c7565b341561041057600080fd5b6103016108d7565b341561042357600080fd5b61024f6108e6565b341561043657600080fd5b610228600160a060020a03600435166024356108ec565b341561045857600080fd5b61024f600160a060020a0360043581169060243516610910565b341561047d57600080fd5b61017a61093b565b341561049057600080fd5b61017a600160a060020a0360043516610a0d565b60035433600160a060020a039081169116146104bf57600080fd5b600160a060020a03821615156104d457600080fd5b600454600160a060020a03166000908152602081905260409020548111156104fb57600080fd5b600454600160a060020a0316600090815260208190526040902054610526908263ffffffff610a6c16565b600454600160a060020a03908116600090815260208190526040808220939093559084168152205461055e908263ffffffff610a7e16565b600160a060020a0380841660008181526020819052604090819020939093556004549092911690600080516020610f068339815191529084905190815260200160405180910390a35050565b60408051908101604052600981527f53747265616d6974790000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156105fb57600080fd5b6106058383610a8d565b9392505050565b60015490565b60035460009060a060020a900460ff161561062c57600080fd5b610637848484610af9565b949350505050565b6a94e47b8d6817153400000081565b601281565b60035433600160a060020a0390811691161461066e57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f9b1d6b460eaa8350c2f15712231e94c803e08e072db0737a0efb84745848694060405160405180910390a1565b600160a060020a0333166000908152602081905260408120548211156106df57600080fd5b5033600160a060020a0381166000908152602081905260409020546107049083610a6c565b600160a060020a038216600090815260208190526040902055600154610730908363ffffffff610a6c16565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600654600160a060020a031681565b600754600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156107bc57600080fd5b6106058383610c67565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a039081169116146107fc57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fd2ef4ae6592c2a8f5d1c602eaa8a0685727b41b23509703db861621a9614813a60405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f53544d0000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a031681565b60035460009060a060020a900460ff16156108bd57600080fd5b6106058383610d61565b60035460a060020a900460ff1690565b600554600160a060020a031681565b60085481565b60035460009060a060020a900460ff161561090657600080fd5b6106058383610e61565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60085460009042101561094d57600080fd5b50600160a060020a0330166000908152602081905260409020546a133b6106881c94df40000090610984908263ffffffff610a6c16565b600160a060020a0330811660009081526020819052604080822093909355600754909116815220546109bc908263ffffffff610a7e16565b60078054600160a060020a03908116600090815260208190526040908190209390935590548116913090911690600080516020610f068339815191529084905190815260200160405180910390a350565b60035433600160a060020a03908116911614610a2857600080fd5b600160a060020a0381161515610a3d57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610a7857fe5b50900390565b60008282018381101561060557fe5b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610b1057600080fd5b600160a060020a038416600090815260208190526040902054821115610b3557600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b6857600080fd5b600160a060020a038416600090815260208190526040902054610b91908363ffffffff610a6c16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bc6908363ffffffff610a7e16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c0c908363ffffffff610a6c16565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610f068339815191529085905190815260200160405180910390a35060019392505050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610cc457600160a060020a033381166000908152600260209081526040808320938816835292905290812055610cfb565b610cd4818463ffffffff610a6c16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a0383161515610d7857600080fd5b600160a060020a033316600090815260208190526040902054821115610d9d57600080fd5b600160a060020a033316600090815260208190526040902054610dc6908363ffffffff610a6c16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610dfb908363ffffffff610a7e16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610f068339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610e99908363ffffffff610a7e16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820595a58216ca82a6759490d38f1394ef5e9ca6843d846d5251a843fca0d07c3200029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6060604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305ab421d811461015857806306fdde031461017c578063095ea7b31461020657806318160ddd1461023c57806323b872dd146102615780632ff2e9dc14610289578063313ce5671461029c5780633f4ba83a146102c557806342966c68146102d8578063451f0601146102ee578063599270441461031d5780635c975abb14610330578063661884631461034357806370a08231146103655780638456cb59146103845780638da5cb5b1461039757806395d89b41146103aa578063a3e67610146103bd578063a9059cbb146103d0578063b187bd26146103f2578063b7f92b7114610405578063d085835a14610418578063d73dd6231461042b578063dd62ed3e1461044d578063e2130d1e14610472578063f2fde38b14610485575b600080fd5b341561016357600080fd5b61017a600160a060020a03600435166024356104a4565b005b341561018757600080fd5b61018f6105aa565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101cb5780820151838201526020016101b3565b50505050905090810190601f1680156101f85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021157600080fd5b610228600160a060020a03600435166024356105e1565b604051901515815260200160405180910390f35b341561024757600080fd5b61024f61060c565b60405190815260200160405180910390f35b341561026c57600080fd5b610228600160a060020a0360043581169060243516604435610612565b341561029457600080fd5b61024f61063f565b34156102a757600080fd5b6102af61064e565b60405160ff909116815260200160405180910390f35b34156102d057600080fd5b61017a610653565b34156102e357600080fd5b61017a6004356106ba565b34156102f957600080fd5b610301610774565b604051600160a060020a03909116815260200160405180910390f35b341561032857600080fd5b610301610783565b341561033b57600080fd5b610228610792565b341561034e57600080fd5b610228600160a060020a03600435166024356107a2565b341561037057600080fd5b61024f600160a060020a03600435166107c6565b341561038f57600080fd5b61017a6107e1565b34156103a257600080fd5b61030161084e565b34156103b557600080fd5b61018f61085d565b34156103c857600080fd5b610301610894565b34156103db57600080fd5b610228600160a060020a03600435166024356108a3565b34156103fd57600080fd5b6102286108c7565b341561041057600080fd5b6103016108d7565b341561042357600080fd5b61024f6108e6565b341561043657600080fd5b610228600160a060020a03600435166024356108ec565b341561045857600080fd5b61024f600160a060020a0360043581169060243516610910565b341561047d57600080fd5b61017a61093b565b341561049057600080fd5b61017a600160a060020a0360043516610a0d565b60035433600160a060020a039081169116146104bf57600080fd5b600160a060020a03821615156104d457600080fd5b600454600160a060020a03166000908152602081905260409020548111156104fb57600080fd5b600454600160a060020a0316600090815260208190526040902054610526908263ffffffff610a6c16565b600454600160a060020a03908116600090815260208190526040808220939093559084168152205461055e908263ffffffff610a7e16565b600160a060020a0380841660008181526020819052604090819020939093556004549092911690600080516020610f068339815191529084905190815260200160405180910390a35050565b60408051908101604052600981527f53747265616d6974790000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156105fb57600080fd5b6106058383610a8d565b9392505050565b60015490565b60035460009060a060020a900460ff161561062c57600080fd5b610637848484610af9565b949350505050565b6a94e47b8d6817153400000081565b601281565b60035433600160a060020a0390811691161461066e57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f9b1d6b460eaa8350c2f15712231e94c803e08e072db0737a0efb84745848694060405160405180910390a1565b600160a060020a0333166000908152602081905260408120548211156106df57600080fd5b5033600160a060020a0381166000908152602081905260409020546107049083610a6c565b600160a060020a038216600090815260208190526040902055600154610730908363ffffffff610a6c16565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600654600160a060020a031681565b600754600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156107bc57600080fd5b6106058383610c67565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a039081169116146107fc57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fd2ef4ae6592c2a8f5d1c602eaa8a0685727b41b23509703db861621a9614813a60405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f53544d0000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a031681565b60035460009060a060020a900460ff16156108bd57600080fd5b6106058383610d61565b60035460a060020a900460ff1690565b600554600160a060020a031681565b60085481565b60035460009060a060020a900460ff161561090657600080fd5b6106058383610e61565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60085460009042101561094d57600080fd5b50600160a060020a0330166000908152602081905260409020546a133b6106881c94df40000090610984908263ffffffff610a6c16565b600160a060020a0330811660009081526020819052604080822093909355600754909116815220546109bc908263ffffffff610a7e16565b60078054600160a060020a03908116600090815260208190526040908190209390935590548116913090911690600080516020610f068339815191529084905190815260200160405180910390a350565b60035433600160a060020a03908116911614610a2857600080fd5b600160a060020a0381161515610a3d57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610a7857fe5b50900390565b60008282018381101561060557fe5b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610b1057600080fd5b600160a060020a038416600090815260208190526040902054821115610b3557600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b6857600080fd5b600160a060020a038416600090815260208190526040902054610b91908363ffffffff610a6c16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bc6908363ffffffff610a7e16565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610c0c908363ffffffff610a6c16565b600160a060020a0380861660008181526002602090815260408083203386168452909152908190209390935590851691600080516020610f068339815191529085905190815260200160405180910390a35060019392505050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610cc457600160a060020a033381166000908152600260209081526040808320938816835292905290812055610cfb565b610cd4818463ffffffff610a6c16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a0383161515610d7857600080fd5b600160a060020a033316600090815260208190526040902054821115610d9d57600080fd5b600160a060020a033316600090815260208190526040902054610dc6908363ffffffff610a6c16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610dfb908363ffffffff610a7e16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a0316600080516020610f068339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610e99908363ffffffff610a7e16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820595a58216ca82a6759490d38f1394ef5e9ca6843d846d5251a843fca0d07c3200029

Swarm Source

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