ETH Price: $3,407.47 (-1.61%)
Gas: 12 Gwei

Token

SPRING Token (SPRING)
 

Overview

Max Total Supply

10,000,000,000 SPRING

Holders

3,105 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-0.01%)

Onchain Market Cap

$3,313,093.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,531 SPRING

Value
$0.51 ( ~0.000149671070575444 Eth) [0.0000%]
0x85b2b25bcb79a4945c1d7ad5e773f4af5b7167c3
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:
SPRINGToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.24;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract Ownable {
  address public owner;


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


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


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


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) onlyOwner public {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

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

  bool public paused = false;


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

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

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

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

contract StandardToken is ERC20,Pausable {
    using SafeMath for uint256;

    mapping (address => uint256) public balances;
    mapping (address => mapping (address => uint256)) public allowed;

    /**
    * @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) whenNotPaused returns (bool success) {
        require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @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 amout of tokens to be transfered
    */
    function transferFrom(address _from, address _to, uint256 _value) whenNotPaused returns (bool success) {
        require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]);
        balances[_to] = balances[_to].add(_value);
        balances[_from] = balances[_from].sub(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _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) constant returns (uint256 balance) {
        return balances[_owner];
    }

    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    * This only works when the allowance is 0. Cannot be used to change allowance.
    * https://github.com/ethereum/EIPs/issues/738#issuecomment-336277632
    * @param _spender The address which will spend the funds.
    * @param _value The amount of tokens to be spent.
    */
    function approve(address _spender, uint256 _value) whenNotPaused returns (bool success) {
        require(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 specifing the amount of tokens still available for the spender.
    */
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    /**
     * To increment allowed value is better to use this function.
     * From MonolithDAO Token.sol
     */
    function increaseApproval(address _spender, uint _addedValue) whenNotPaused public returns (bool) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval(address _spender, uint _subtractedValue) whenNotPaused 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);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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


/* Contract class to mint tokens and transfer */
contract SPRINGToken is StandardToken {
  using SafeMath for uint256;

  string constant public name = 'SPRING Token';
  string constant public symbol = 'SPRING';
  uint constant public decimals = 18;
  uint256 public totalSupply;
  uint256 public maxSupply;

  /* Constructor function to set maxSupply*/
  constructor(uint256 _maxSupply) public {
    maxSupply = _maxSupply;
  }

  /**
 * @dev Function to mint tokens
 * @param _amount The amount of tokens to mint.
 * @return A boolean that indicates if the operation was successful.
 */
  function mint(uint256 _amount) onlyOwner public returns (bool) {
    require (maxSupply >= (totalSupply.add(_amount)));
    totalSupply = totalSupply.add(_amount);
    balances[msg.sender] = balances[msg.sender].add(_amount);
    emit Transfer(address(0), msg.sender, _amount);
    return true;
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"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":"","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":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_maxSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526001805460a060020a60ff021916905534801561002057600080fd5b50604051602080610d31833981016040525160018054600160a060020a03191633179055600555610cdb806100566000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff57806327e235e314610229578063313ce5671461024a5780633f4ba83a1461025f5780635c658165146102765780635c975abb1461029d57806366188463146102b257806370a08231146102d65780638456cb59146102f75780638da5cb5b1461030c57806395d89b411461033d578063a0712d6814610352578063a9059cbb1461036a578063d5abeb011461038e578063d73dd623146103a3578063dd62ed3e146103c7578063f2fde38b146103ee575b600080fd5b34801561012257600080fd5b5061012b61040f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a0360043516602435610446565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed6104f5565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a03600435811690602435166044356104fb565b34801561023557600080fd5b506101ed600160a060020a0360043516610696565b34801561025657600080fd5b506101ed6106a8565b34801561026b57600080fd5b506102746106ad565b005b34801561028257600080fd5b506101ed600160a060020a0360043581169060243516610725565b3480156102a957600080fd5b506101c4610742565b3480156102be57600080fd5b506101c4600160a060020a0360043516602435610752565b3480156102e257600080fd5b506101ed600160a060020a036004351661085f565b34801561030357600080fd5b5061027461087a565b34801561031857600080fd5b506103216108f7565b60408051600160a060020a039092168252519081900360200190f35b34801561034957600080fd5b5061012b610906565b34801561035e57600080fd5b506101c460043561093d565b34801561037657600080fd5b506101c4600160a060020a0360043516602435610a01565b34801561039a57600080fd5b506101ed610b0e565b3480156103af57600080fd5b506101c4600160a060020a0360043516602435610b14565b3480156103d357600080fd5b506101ed600160a060020a0360043581169060243516610bc7565b3480156103fa57600080fd5b50610274600160a060020a0360043516610bf2565b60408051808201909152600c81527f535052494e4720546f6b656e0000000000000000000000000000000000000000602082015281565b60015460009060a060020a900460ff161561046057600080fd5b336000908152600360209081526040808320600160a060020a03871684529091529020541561048e57600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60045481565b60015460009060a060020a900460ff161561051557600080fd5b600160a060020a03841660009081526002602052604090205482118015906105605750600160a060020a03841660009081526003602090815260408083203384529091529020548211155b80156105855750600160a060020a038316600090815260026020526040902054828101115b151561059057600080fd5b600160a060020a0383166000908152600260205260409020546105b9908363ffffffff610c8716565b600160a060020a0380851660009081526002602052604080822093909355908616815220546105ee908363ffffffff610c9d16565b600160a060020a038516600090815260026020908152604080832093909355600381528282203383529052205461062b908363ffffffff610c9d16565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60026020526000908152604090205481565b601281565b600154600160a060020a031633146106c457600080fd5b60015460a060020a900460ff1615156106dc57600080fd5b6001805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600360209081526000928352604080842090915290825290205481565b60015460a060020a900460ff1681565b600154600090819060a060020a900460ff161561076e57600080fd5b50336000908152600360209081526040808320600160a060020a0387168452909152902054808311156107c457336000908152600360209081526040808320600160a060020a03881684529091528120556107f9565b6107d4818463ffffffff610c9d16565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a0316331461089157600080fd5b60015460a060020a900460ff16156108a857600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600154600160a060020a031681565b60408051808201909152600681527f535052494e470000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a0316331461095757600080fd5b60045461096a908363ffffffff610c8716565b600554101561097857600080fd5b60045461098b908363ffffffff610c8716565b600455336000908152600260205260409020546109ae908363ffffffff610c8716565b3360008181526002602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001919050565b60015460009060a060020a900460ff1615610a1b57600080fd5b336000908152600260205260409020548211801590610a535750600160a060020a038316600090815260026020526040902054828101115b1515610a5e57600080fd5b33600090815260026020526040902054610a7e908363ffffffff610c9d16565b3360009081526002602052604080822092909255600160a060020a03851681522054610ab0908363ffffffff610c8716565b600160a060020a0384166000818152600260209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60055481565b60015460009060a060020a900460ff1615610b2e57600080fd5b336000908152600360209081526040808320600160a060020a0387168452909152902054610b62908363ffffffff610c8716565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600154600160a060020a03163314610c0957600080fd5b600160a060020a0381161515610c1e57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610c9657fe5b9392505050565b600082821115610ca957fe5b509003905600a165627a7a7230582092d63085d433f8d7d9af7a8bcaa5e0f71b97e226bb47797571aa9c919e6704e800290000000000000000000000000000000000000000204fce5e3e25026110000000

Deployed Bytecode

0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff57806327e235e314610229578063313ce5671461024a5780633f4ba83a1461025f5780635c658165146102765780635c975abb1461029d57806366188463146102b257806370a08231146102d65780638456cb59146102f75780638da5cb5b1461030c57806395d89b411461033d578063a0712d6814610352578063a9059cbb1461036a578063d5abeb011461038e578063d73dd623146103a3578063dd62ed3e146103c7578063f2fde38b146103ee575b600080fd5b34801561012257600080fd5b5061012b61040f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a0360043516602435610446565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed6104f5565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a03600435811690602435166044356104fb565b34801561023557600080fd5b506101ed600160a060020a0360043516610696565b34801561025657600080fd5b506101ed6106a8565b34801561026b57600080fd5b506102746106ad565b005b34801561028257600080fd5b506101ed600160a060020a0360043581169060243516610725565b3480156102a957600080fd5b506101c4610742565b3480156102be57600080fd5b506101c4600160a060020a0360043516602435610752565b3480156102e257600080fd5b506101ed600160a060020a036004351661085f565b34801561030357600080fd5b5061027461087a565b34801561031857600080fd5b506103216108f7565b60408051600160a060020a039092168252519081900360200190f35b34801561034957600080fd5b5061012b610906565b34801561035e57600080fd5b506101c460043561093d565b34801561037657600080fd5b506101c4600160a060020a0360043516602435610a01565b34801561039a57600080fd5b506101ed610b0e565b3480156103af57600080fd5b506101c4600160a060020a0360043516602435610b14565b3480156103d357600080fd5b506101ed600160a060020a0360043581169060243516610bc7565b3480156103fa57600080fd5b50610274600160a060020a0360043516610bf2565b60408051808201909152600c81527f535052494e4720546f6b656e0000000000000000000000000000000000000000602082015281565b60015460009060a060020a900460ff161561046057600080fd5b336000908152600360209081526040808320600160a060020a03871684529091529020541561048e57600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60045481565b60015460009060a060020a900460ff161561051557600080fd5b600160a060020a03841660009081526002602052604090205482118015906105605750600160a060020a03841660009081526003602090815260408083203384529091529020548211155b80156105855750600160a060020a038316600090815260026020526040902054828101115b151561059057600080fd5b600160a060020a0383166000908152600260205260409020546105b9908363ffffffff610c8716565b600160a060020a0380851660009081526002602052604080822093909355908616815220546105ee908363ffffffff610c9d16565b600160a060020a038516600090815260026020908152604080832093909355600381528282203383529052205461062b908363ffffffff610c9d16565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60026020526000908152604090205481565b601281565b600154600160a060020a031633146106c457600080fd5b60015460a060020a900460ff1615156106dc57600080fd5b6001805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600360209081526000928352604080842090915290825290205481565b60015460a060020a900460ff1681565b600154600090819060a060020a900460ff161561076e57600080fd5b50336000908152600360209081526040808320600160a060020a0387168452909152902054808311156107c457336000908152600360209081526040808320600160a060020a03881684529091528120556107f9565b6107d4818463ffffffff610c9d16565b336000908152600360209081526040808320600160a060020a03891684529091529020555b336000818152600360209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a0316331461089157600080fd5b60015460a060020a900460ff16156108a857600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600154600160a060020a031681565b60408051808201909152600681527f535052494e470000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a0316331461095757600080fd5b60045461096a908363ffffffff610c8716565b600554101561097857600080fd5b60045461098b908363ffffffff610c8716565b600455336000908152600260205260409020546109ae908363ffffffff610c8716565b3360008181526002602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001919050565b60015460009060a060020a900460ff1615610a1b57600080fd5b336000908152600260205260409020548211801590610a535750600160a060020a038316600090815260026020526040902054828101115b1515610a5e57600080fd5b33600090815260026020526040902054610a7e908363ffffffff610c9d16565b3360009081526002602052604080822092909255600160a060020a03851681522054610ab0908363ffffffff610c8716565b600160a060020a0384166000818152600260209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60055481565b60015460009060a060020a900460ff1615610b2e57600080fd5b336000908152600360209081526040808320600160a060020a0387168452909152902054610b62908363ffffffff610c8716565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600154600160a060020a03163314610c0957600080fd5b600160a060020a0381161515610c1e57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610c9657fe5b9392505050565b600082821115610ca957fe5b509003905600a165627a7a7230582092d63085d433f8d7d9af7a8bcaa5e0f71b97e226bb47797571aa9c919e6704e80029

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

0000000000000000000000000000000000000000204fce5e3e25026110000000

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 10000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000204fce5e3e25026110000000


Swarm Source

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