ETH Price: $3,083.53 (-1.14%)
Gas: 2 Gwei

Contract

0x99C7a1705cF6B0F7de64e03BD1d7B861ac340E8e
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer183252082023-10-11 5:45:59273 days ago1697003159IN
0x99C7a170...1ac340E8e
0 ETH0.000273545.54987131
Transfer98853132020-04-16 19:15:491546 days ago1587064549IN
0x99C7a170...1ac340E8e
0 ETH0.000201425.4
Transfer97393362020-03-25 8:13:261568 days ago1585124006IN
0x99C7a170...1ac340E8e
0 ETH0.00011193
Transfer93086452020-01-19 0:49:171635 days ago1579394957IN
0x99C7a170...1ac340E8e
0 ETH0.000037271
Transfer93003252020-01-17 18:17:301636 days ago1579285050IN
0x99C7a170...1ac340E8e
0 ETH0.000074572
Transfer91711212019-12-27 14:22:371657 days ago1577456557IN
0x99C7a170...1ac340E8e
0 ETH0.000223726
Approve86904612019-10-06 19:42:341739 days ago1570390954IN
0x99C7a170...1ac340E8e
0 ETH0.00018154
Transfer85953852019-09-21 22:45:051754 days ago1569105905IN
0x99C7a170...1ac340E8e
0 ETH0.0007272114
Transfer85827692019-09-19 23:43:171756 days ago1568936597IN
0x99C7a170...1ac340E8e
0 ETH0.000281517.62
Transfer85118572019-09-08 22:12:151767 days ago1567980735IN
0x99C7a170...1ac340E8e
0 ETH0.000331929
Transfer85091792019-09-08 12:06:371767 days ago1567944397IN
0x99C7a170...1ac340E8e
0 ETH0.002129741
Transfer85052762019-09-07 21:24:341768 days ago1567891474IN
0x99C7a170...1ac340E8e
0 ETH0.000193955.25
Transfer84836212019-09-04 12:32:381771 days ago1567600358IN
0x99C7a170...1ac340E8e
0 ETH0.000277087.5
Transfer84795782019-09-03 21:17:531772 days ago1567545473IN
0x99C7a170...1ac340E8e
0 ETH0.000103554
Transfer84784532019-09-03 17:14:141772 days ago1567530854IN
0x99C7a170...1ac340E8e
0 ETH0.000155334
Transfer84381612019-08-28 10:39:581778 days ago1566988798IN
0x99C7a170...1ac340E8e
0 ETH0.0004248511.5
Transfer84381202019-08-28 10:29:171778 days ago1566988157IN
0x99C7a170...1ac340E8e
0 ETH0.000051941
Transfer84367662019-08-28 5:21:151778 days ago1566969675IN
0x99C7a170...1ac340E8e
0 ETH0.0004248511.5
Transfer83504022019-08-14 19:02:031792 days ago1565809323IN
0x99C7a170...1ac340E8e
0 ETH0.0003883310
Transfer83503852019-08-14 18:56:421792 days ago1565809002IN
0x99C7a170...1ac340E8e
0 ETH0.000155334
Transfer83170692019-08-09 15:01:511797 days ago1565362911IN
0x99C7a170...1ac340E8e
0 ETH0.0003700810
Transfer83164122019-08-09 12:36:401797 days ago1565354200IN
0x99C7a170...1ac340E8e
0 ETH0.0004248511.50000025
Transfer81866722019-07-20 9:11:201817 days ago1563613880IN
0x99C7a170...1ac340E8e
0 ETH0.000155643
Transfer81856212019-07-20 5:17:321817 days ago1563599852IN
0x99C7a170...1ac340E8e
0 ETH0.000147774
Transfer81739372019-07-18 9:43:561819 days ago1563443036IN
0x99C7a170...1ac340E8e
0 ETH0.000051881
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SponsyTokens

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-10-16
*/

pragma solidity ^0.4.16;

pragma solidity ^0.4.20;

/*
 * EIP-20 Standard Token Smart Contract Interface.
 * Copyright © 2016–2018 by ABDK Consulting.
 */
pragma solidity ^0.4.20;

/**
 * ERC-20 standard token interface, as defined
 * <a href="https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md">here</a>.
 */
contract Token {
  /**
   * Get total number of tokens in circulation.
   *
   * @return total number of tokens in circulation
   */
  function totalSupply () public view returns (uint256 supply);

  /**
   * Get number of tokens currently belonging to given owner.
   *
   * @param _owner address to get number of tokens currently belonging to the
   *        owner of
   * @return number of tokens currently belonging to the owner of given address
   */
  function balanceOf (address _owner) public view returns (uint256 balance);

  /**
   * Transfer given number of tokens from message sender to given recipient.
   *
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer to the owner of given address
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transfer (address _to, uint256 _value)
  public returns (bool success);

  /**
   * Transfer given number of tokens from given owner to given recipient.
   *
   * @param _from address to transfer tokens from the owner of
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer from given owner to given
   *        recipient
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transferFrom (address _from, address _to, uint256 _value)
  public returns (bool success);

  /**
   * Allow given spender to transfer given number of tokens from message sender.
   *
   * @param _spender address to allow the owner of to transfer tokens from
   *        message sender
   * @param _value number of tokens to allow to transfer
   * @return true if token transfer was successfully approved, false otherwise
   */
  function approve (address _spender, uint256 _value)
  public returns (bool success);

  /**
   * Tell how many tokens given spender is currently allowed to transfer from
   * given owner.
   *
   * @param _owner address to get number of tokens allowed to be transferred
   *        from the owner of
   * @param _spender address to get number of tokens allowed to be transferred
   *        by the owner of
   * @return number of tokens given spender is currently allowed to transfer
   *         from given owner
   */
  function allowance (address _owner, address _spender)
  public view returns (uint256 remaining);

  /**
   * Logged when tokens were transferred from one owner to another.
   *
   * @param _from address of the owner, tokens were transferred from
   * @param _to address of the owner, tokens were transferred to
   * @param _value number of tokens transferred
   */
  event Transfer (address indexed _from, address indexed _to, uint256 _value);

  /**
   * Logged when owner approved his tokens to be transferred by some spender.
   *
   * @param _owner owner who approved his tokens to be transferred
   * @param _spender spender who were allowed to transfer the tokens belonging
   *        to the owner
   * @param _value number of tokens belonging to the owner, approved to be
   *        transferred by the spender
   */
  event Approval (
    address indexed _owner, address indexed _spender, uint256 _value);
}
/*
 * Safe Math Smart Contract.  Copyright © 2016–2017 by ABDK Consulting.
 */
pragma solidity ^0.4.20;

/**
 * Provides methods to safely add, subtract and multiply uint256 numbers.
 */
contract SafeMath {
  uint256 constant private MAX_UINT256 =
    0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;

  /**
   * Add two uint256 values, throw in case of overflow.
   *
   * @param x first value to add
   * @param y second value to add
   * @return x + y
   */
  function safeAdd (uint256 x, uint256 y)
  pure internal
  returns (uint256 z) {
    assert (x <= MAX_UINT256 - y);
    return x + y;
  }

  /**
   * Subtract one uint256 value from another, throw in case of underflow.
   *
   * @param x value to subtract from
   * @param y value to subtract
   * @return x - y
   */
  function safeSub (uint256 x, uint256 y)
  pure internal
  returns (uint256 z) {
    assert (x >= y);
    return x - y;
  }

  /**
   * Multiply two uint256 values, throw in case of overflow.
   *
   * @param x first value to multiply
   * @param y second value to multiply
   * @return x * y
   */
  function safeMul (uint256 x, uint256 y)
  pure internal
  returns (uint256 z) {
    if (y == 0) return 0; // Prevent division by zero at the next line
    assert (x <= MAX_UINT256 / y);
    return x * y;
  }
}


/**
 * Abstract Token Smart Contract that could be used as a base contract for
 * ERC-20 token contracts.
 */
contract AbstractToken is Token, SafeMath {
  /**
   * Create new Abstract Token contract.
   */
  function AbstractToken () public {
    // Do nothing
  }

  /**
   * Get number of tokens currently belonging to given owner.
   *
   * @param _owner address to get number of tokens currently belonging to the
   *        owner of
   * @return number of tokens currently belonging to the owner of given address
   */
  function balanceOf (address _owner) public view returns (uint256 balance) {
    return accounts [_owner];
  }

  /**
   * Transfer given number of tokens from message sender to given recipient.
   *
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer to the owner of given address
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transfer (address _to, uint256 _value)
  public returns (bool success) {
    uint256 fromBalance = accounts [msg.sender];
    if (fromBalance < _value) return false;
    if (_value > 0 && msg.sender != _to) {
      accounts [msg.sender] = safeSub (fromBalance, _value);
      accounts [_to] = safeAdd (accounts [_to], _value);
    }
    Transfer (msg.sender, _to, _value);
    return true;
  }

  /**
   * Transfer given number of tokens from given owner to given recipient.
   *
   * @param _from address to transfer tokens from the owner of
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer from given owner to given
   *        recipient
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transferFrom (address _from, address _to, uint256 _value)
  public returns (bool success) {
    uint256 spenderAllowance = allowances [_from][msg.sender];
    if (spenderAllowance < _value) return false;
    uint256 fromBalance = accounts [_from];
    if (fromBalance < _value) return false;

    allowances [_from][msg.sender] =
      safeSub (spenderAllowance, _value);

    if (_value > 0 && _from != _to) {
      accounts [_from] = safeSub (fromBalance, _value);
      accounts [_to] = safeAdd (accounts [_to], _value);
    }
    Transfer (_from, _to, _value);
    return true;
  }

  /**
   * Allow given spender to transfer given number of tokens from message sender.
   *
   * @param _spender address to allow the owner of to transfer tokens from
   *        message sender
   * @param _value number of tokens to allow to transfer
   * @return true if token transfer was successfully approved, false otherwise
   */
  function approve (address _spender, uint256 _value)
  public returns (bool success) {
    allowances [msg.sender][_spender] = _value;
    Approval (msg.sender, _spender, _value);

    return true;
  }

  /**
   * Tell how many tokens given spender is currently allowed to transfer from
   * given owner.
   *
   * @param _owner address to get number of tokens allowed to be transferred
   *        from the owner of
   * @param _spender address to get number of tokens allowed to be transferred
   *        by the owner of
   * @return number of tokens given spender is currently allowed to transfer
   *         from given owner
   */
  function allowance (address _owner, address _spender)
  public view returns (uint256 remaining) {
    return allowances [_owner][_spender];
  }

  /**
   * Mapping from addresses of token holders to the numbers of tokens belonging
   * to these token holders.
   */
  mapping (address => uint256) internal accounts;

  /**
   * Mapping from addresses of token holders to the mapping of addresses of
   * spenders to the allowances set by these token holders to these spenders.
   */
  mapping (address => mapping (address => uint256)) internal allowances;
}


/**
 * Sponsy token smart contract.
 */
contract SponsyTokens is AbstractToken {
  /**
   * Address of the owner of this smart contract.
   */
  address private owner;

  /**
   * Total number of tokens in circulation.
   */
  uint256 tokenCount;

  /**
   * True if tokens transfers are currently frozen, false otherwise.
   */
  bool frozen = false;

  /**
   * Create new Sponsy token smart contract, with given number of tokens issued
   * and given to msg.sender, and make msg.sender the owner of this smart
   * contract.
   *
   * @param _tokenCount number of tokens to issue and give to msg.sender
   */
  function SponsyTokens (uint256 _tokenCount) public {
    owner = msg.sender;
    tokenCount = _tokenCount;
    accounts [msg.sender] = _tokenCount;
  }

  /**
   * Get total number of tokens in circulation.
   *
   * @return total number of tokens in circulation
   */
  function totalSupply () public view returns (uint256 supply) {
    return tokenCount;
  }

  /**
   * Get name of this token.
   *
   * @return name of this token
   */
  function name () public pure returns (string result) {
    return "Sponsy Token";
  }

  /**
   * Get symbol of this token.
   *
   * @return symbol of this token
   */
  function symbol () public pure returns (string result) {
    return "SPONS";
  }

  /**
   * Get number of decimals for this token.
   *
   * @return number of decimals for this token
   */
  function decimals () public pure returns (uint8 result) {
    return 6;
  }

  /**
   * Transfer given number of tokens from message sender to given recipient.
   *
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer to the owner of given address
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transfer (address _to, uint256 _value)
    public returns (bool success) {
    if (frozen) return false;
    else return AbstractToken.transfer (_to, _value);
  }

  /**
   * Transfer given number of tokens from given owner to given recipient.
   *
   * @param _from address to transfer tokens from the owner of
   * @param _to address to transfer tokens to the owner of
   * @param _value number of tokens to transfer from given owner to given
   *        recipient
   * @return true if tokens were transferred successfully, false otherwise
   */
  function transferFrom (address _from, address _to, uint256 _value)
    public returns (bool success) {
    if (frozen) return false;
    else return AbstractToken.transferFrom (_from, _to, _value);
  }

  /**
   * Change how many tokens given spender is allowed to transfer from message
   * spender.  In order to prevent double spending of allowance, this method
   * receives assumed current allowance value as an argument.  If actual
   * allowance differs from an assumed one, this method just returns false.
   *
   * @param _spender address to allow the owner of to transfer tokens from
   *        message sender
   * @param _currentValue assumed number of tokens currently allowed to be
   *        transferred
   * @param _newValue number of tokens to allow to transfer
   * @return true if token transfer was successfully approved, false otherwise
   */
  function approve (address _spender, uint256 _currentValue, uint256 _newValue)
    public returns (bool success) {
    if (allowance (msg.sender, _spender) == _currentValue)
      return approve (_spender, _newValue);
    else return false;
  }

  /**
   * Burn given number of tokens belonging to message sender.
   *
   * @param _value number of tokens to burn
   * @return true on success, false on error
   */
  function burnTokens (uint256 _value) public returns (bool success) {
    if (_value > accounts [msg.sender]) return false;
    else if (_value > 0) {
      accounts [msg.sender] = safeSub (accounts [msg.sender], _value);
      tokenCount = safeSub (tokenCount, _value);

      Transfer (msg.sender, address (0), _value);
      return true;
    } else return true;
  }

  /**
   * Set new owner for the smart contract.
   * May only be called by smart contract owner.
   *
   * @param _newOwner address of new owner of the smart contract
   */
  function setOwner (address _newOwner) public {
    require (msg.sender == owner);

    owner = _newOwner;
  }

  /**
   * Freeze token transfers.
   * May only be called by smart contract owner.
   */
  function freezeTransfers () public {
    require (msg.sender == owner);

    if (!frozen) {
      frozen = true;
      Freeze ();
    }
  }

  /**
   * Unfreeze token transfers.
   * May only be called by smart contract owner.
   */
  function unfreezeTransfers () public {
    require (msg.sender == owner);

    if (frozen) {
      frozen = false;
      Unfreeze ();
    }
  }

  /**
   * Logged when token transfers were frozen.
   */
  event Freeze ();

  /**
   * Logged when token transfers were unfrozen.
   */
  event Unfreeze ();
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"freezeTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"result","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"supply","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"result","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[],"name":"unfreezeTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_currentValue","type":"uint256"},{"name":"_newValue","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnTokens","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":true,"inputs":[],"name":"symbol","outputs":[{"name":"result","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_tokenCount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[],"name":"Unfreeze","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"},{"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"}]

60806040526004805460ff1916905534801561001a57600080fd5b50604051602080610959833981016040908152905160028054600160a060020a0319163390811790915560038290556000908152602081905291909120556108f2806100676000396000f3006080604052600436106100cf5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630150246081146100d457806306fdde03146100eb578063095ea7b31461017557806313af4035146101ad57806318160ddd146101ce57806323b872dd146101f5578063313ce5671461021f57806331c420d41461024a578063426a84931461025f5780636d1b229d1461028657806370a082311461029e57806395d89b41146102bf578063a9059cbb146102d4578063dd62ed3e146102f8575b600080fd5b3480156100e057600080fd5b506100e961031f565b005b3480156100f757600080fd5b5061010061037b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013a578181015183820152602001610122565b50505050905090810190601f1680156101675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018157600080fd5b50610199600160a060020a03600435166024356103b2565b604080519115158252519081900360200190f35b3480156101b957600080fd5b506100e9600160a060020a0360043516610419565b3480156101da57600080fd5b506101e361045f565b60408051918252519081900360200190f35b34801561020157600080fd5b50610199600160a060020a0360043581169060243516604435610465565b34801561022b57600080fd5b50610234610490565b6040805160ff9092168252519081900360200190f35b34801561025657600080fd5b506100e9610495565b34801561026b57600080fd5b50610199600160a060020a03600435166024356044356104ec565b34801561029257600080fd5b50610199600435610511565b3480156102aa57600080fd5b506101e3600160a060020a03600435166105bc565b3480156102cb57600080fd5b506101006105d7565b3480156102e057600080fd5b50610199600160a060020a036004351660243561060e565b34801561030457600080fd5b506101e3600160a060020a0360043581169060243516610635565b600254600160a060020a0316331461033657600080fd5b60045460ff161515610379576004805460ff191660011790556040517f615acbaede366d76a8b8cb2a9ada6a71495f0786513d71aa97aaf0c3910b78de90600090a15b565b60408051808201909152600c81527f53706f6e737920546f6b656e0000000000000000000000000000000000000000602082015290565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600254600160a060020a0316331461043057600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035490565b60045460009060ff161561047b57506000610489565b610486848484610660565b90505b9392505050565b600690565b600254600160a060020a031633146104ac57600080fd5b60045460ff1615610379576004805460ff191690556040517f2f05ba71d0df11bf5fa562a6569d70c4f80da84284badbe015ce1456063d0ded90600090a1565b6000826104f93386610635565b14156105095761048684836103b2565b506000610489565b33600090815260208190526040812054821115610530575060006105b7565b60008211156105b3573360009081526020819052604090205461055390836107c3565b3360009081526020819052604090205560035461057090836107c3565b60035560408051838152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060016105b7565b5060015b919050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600581527f53504f4e53000000000000000000000000000000000000000000000000000000602082015290565b60045460009060ff161561062457506000610413565b61062e83836107d5565b9050610413565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383166000908152600160209081526040808320338452909152812054818382101561069657600092506107ba565b50600160a060020a038516600090815260208190526040902054838110156106c157600092506107ba565b6106cb82856107c3565b600160a060020a038716600090815260016020908152604080832033845290915281209190915584118015610712575084600160a060020a031686600160a060020a031614155b1561076a5761072181856107c3565b600160a060020a03808816600090815260208190526040808220939093559087168152205461075090856108b0565b600160a060020a0386166000908152602081905260409020555b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a3600192505b50509392505050565b6000818310156107cf57fe5b50900390565b33600090815260208190526040812054828110156107f657600091506108a9565b60008311801561080f575033600160a060020a03851614155b156108645761081e81846107c3565b3360009081526020819052604080822092909255600160a060020a0386168152205461084a90846108b0565b600160a060020a0385166000908152602081905260409020555b604080518481529051600160a060020a0386169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600191505b5092915050565b60006000198290038311156108c157fe5b5001905600a165627a7a723058201aa9eff516aad5cacc53c9d203596fda9ec68d8667c363fff969630c516a073d002900000000000000000000000000000000000000000000000000038d7ea4c68000

Deployed Bytecode

0x6080604052600436106100cf5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630150246081146100d457806306fdde03146100eb578063095ea7b31461017557806313af4035146101ad57806318160ddd146101ce57806323b872dd146101f5578063313ce5671461021f57806331c420d41461024a578063426a84931461025f5780636d1b229d1461028657806370a082311461029e57806395d89b41146102bf578063a9059cbb146102d4578063dd62ed3e146102f8575b600080fd5b3480156100e057600080fd5b506100e961031f565b005b3480156100f757600080fd5b5061010061037b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013a578181015183820152602001610122565b50505050905090810190601f1680156101675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018157600080fd5b50610199600160a060020a03600435166024356103b2565b604080519115158252519081900360200190f35b3480156101b957600080fd5b506100e9600160a060020a0360043516610419565b3480156101da57600080fd5b506101e361045f565b60408051918252519081900360200190f35b34801561020157600080fd5b50610199600160a060020a0360043581169060243516604435610465565b34801561022b57600080fd5b50610234610490565b6040805160ff9092168252519081900360200190f35b34801561025657600080fd5b506100e9610495565b34801561026b57600080fd5b50610199600160a060020a03600435166024356044356104ec565b34801561029257600080fd5b50610199600435610511565b3480156102aa57600080fd5b506101e3600160a060020a03600435166105bc565b3480156102cb57600080fd5b506101006105d7565b3480156102e057600080fd5b50610199600160a060020a036004351660243561060e565b34801561030457600080fd5b506101e3600160a060020a0360043581169060243516610635565b600254600160a060020a0316331461033657600080fd5b60045460ff161515610379576004805460ff191660011790556040517f615acbaede366d76a8b8cb2a9ada6a71495f0786513d71aa97aaf0c3910b78de90600090a15b565b60408051808201909152600c81527f53706f6e737920546f6b656e0000000000000000000000000000000000000000602082015290565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b600254600160a060020a0316331461043057600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035490565b60045460009060ff161561047b57506000610489565b610486848484610660565b90505b9392505050565b600690565b600254600160a060020a031633146104ac57600080fd5b60045460ff1615610379576004805460ff191690556040517f2f05ba71d0df11bf5fa562a6569d70c4f80da84284badbe015ce1456063d0ded90600090a1565b6000826104f93386610635565b14156105095761048684836103b2565b506000610489565b33600090815260208190526040812054821115610530575060006105b7565b60008211156105b3573360009081526020819052604090205461055390836107c3565b3360009081526020819052604090205560035461057090836107c3565b60035560408051838152905160009133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060016105b7565b5060015b919050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600581527f53504f4e53000000000000000000000000000000000000000000000000000000602082015290565b60045460009060ff161561062457506000610413565b61062e83836107d5565b9050610413565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383166000908152600160209081526040808320338452909152812054818382101561069657600092506107ba565b50600160a060020a038516600090815260208190526040902054838110156106c157600092506107ba565b6106cb82856107c3565b600160a060020a038716600090815260016020908152604080832033845290915281209190915584118015610712575084600160a060020a031686600160a060020a031614155b1561076a5761072181856107c3565b600160a060020a03808816600090815260208190526040808220939093559087168152205461075090856108b0565b600160a060020a0386166000908152602081905260409020555b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a3600192505b50509392505050565b6000818310156107cf57fe5b50900390565b33600090815260208190526040812054828110156107f657600091506108a9565b60008311801561080f575033600160a060020a03851614155b156108645761081e81846107c3565b3360009081526020819052604080822092909255600160a060020a0386168152205461084a90846108b0565b600160a060020a0385166000908152602081905260409020555b604080518481529051600160a060020a0386169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600191505b5092915050565b60006000198290038311156108c157fe5b5001905600a165627a7a723058201aa9eff516aad5cacc53c9d203596fda9ec68d8667c363fff969630c516a073d0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000038d7ea4c68000

-----Decoded View---------------
Arg [0] : _tokenCount (uint256): 1000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000038d7ea4c68000


Swarm Source

bzzr://1aa9eff516aad5cacc53c9d203596fda9ec68d8667c363fff969630c516a073d

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.