ETH Price: $3,258.57 (-0.50%)
Gas: 2 Gwei

Token

Papyrus Prototype (PRP)
 

Overview

Max Total Supply

6,249,999.999999999999999997 PRP

Holders

1,776

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3 PRP

Value
$0.00
0xf5511810b12de57e9257c3003c01a516fe2fc118
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:
PapyrusPrototypeToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-11-23
*/

pragma solidity ^0.4.17;


/// @title SafeMath
/// @dev Math operations with safety checks that throw on error.
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(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;
  }
}


/// @title ERC20 interface
/// @dev Full ERC20 interface described at https://github.com/ethereum/EIPs/issues/20.
contract ERC20 {

  // EVENTS

  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);

  // PUBLIC FUNCTIONS

  function transfer(address _to, uint256 _value) public returns (bool);
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool);
  function approve(address _spender, uint256 _value) public returns (bool);
  function balanceOf(address _owner) public constant returns (uint256);
  function allowance(address _owner, address _spender) public constant returns (uint256);

  // FIELDS

  uint256 public totalSupply;
}


/// @title Standard ERC20 token
/// @dev Implementation of the basic standard token.
contract StandardToken is ERC20 {
  using SafeMath for uint256;

  // PUBLIC FUNCTIONS

  /// @dev Transfers tokens to a specified address.
  /// @param _to The address which you want to transfer to.
  /// @param _value The amount of tokens to be transferred.
  /// @return A boolean that indicates if the operation was successful.
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }
  
  /// @dev Transfers tokens from one address to another.
  /// @param _from The address which you want to send tokens from.
  /// @param _to The address which you want to transfer to.
  /// @param _value The amount of tokens to be transferred.
  /// @return A boolean that indicates if the operation was successful.
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowances[_from][msg.sender]);
    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /// @dev Approves the specified 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 tokens.
  /// @param _value The amount of tokens to be spent.
  /// @return A boolean that indicates if the operation was successful.
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowances[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /// @dev Gets the balance of the specified address.
  /// @param _owner The address to query the balance of.
  /// @return An uint256 representing the amount owned by the specified address.
  function balanceOf(address _owner) public constant returns (uint256) {
    return balances[_owner];
  }

  /// @dev Function to check the amount of tokens that an owner allowances to a spender.
  /// @param _owner The address which owns tokens.
  /// @param _spender The address which will spend tokens.
  /// @return A uint256 specifying the amount of tokens still available for the spender.
  function allowance(address _owner, address _spender) public constant returns (uint256) {
    return allowances[_owner][_spender];
  }

  // FIELDS

  mapping (address => uint256) balances;
  mapping (address => mapping (address => uint256)) allowances;
}


/// @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 {

  // EVENTS

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

  // PUBLIC FUNCTIONS

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

  /// @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));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

  // MODIFIERS

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

  // FIELDS

  address public owner;
}


/// @title Papyrus Prototype Token (PRP) smart contract.
contract PapyrusPrototypeToken is StandardToken, Ownable {

  // EVENTS

  event Mint(address indexed to, uint256 amount, uint256 priceUsd);
  event MintFinished();
  event Burn(address indexed burner, uint256 amount);
  event TransferableChanged(bool transferable);

  // PUBLIC FUNCTIONS

  // If ether is sent to this address, send it back
  function() public { revert(); }

  // Check transfer ability and sender address before transfer
  function transfer(address _to, uint256 _value) canTransfer public returns (bool) {
    return super.transfer(_to, _value);
  }

  // Check transfer ability and sender address before transfer
  function transferFrom(address _from, address _to, uint256 _value) canTransfer public returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  /// @dev Function to mint tokens.
  /// @param _to The address that will receive the minted tokens.
  /// @param _amount The amount of tokens to mint.
  /// @param _priceUsd The price of minted token at moment of purchase in USD with 18 decimals.
  /// @return A boolean that indicates if the operation was successful.
  function mint(address _to, uint256 _amount, uint256 _priceUsd) onlyOwner canMint public returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    if (_priceUsd != 0) {
      uint256 amountUsd = _amount.mul(_priceUsd).div(10**18);
      totalCollected = totalCollected.add(amountUsd);
    }
    Mint(_to, _amount, _priceUsd);
    Transfer(0x0, _to, _amount);
    return true;
  }

  /// @dev Function to stop minting new tokens.
  /// @return A boolean that indicates if the operation was successful.
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }

  /// @dev Burns a specific amount of tokens.
  /// @param _value The amount of token to be burned.
  function burn(uint256 _value) public {
    require(_value > 0);
    require(_value <= balances[msg.sender]);
    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply = totalSupply.sub(_value);
    totalBurned = totalBurned.add(_value);
    Burn(burner, _value);
  }

  /// @dev Change ability to transfer tokens by users.
  /// @return A boolean that indicates if the operation was successful.
  function setTransferable(bool _transferable) onlyOwner public returns (bool) {
    require(transferable != _transferable);
    transferable = _transferable;
    TransferableChanged(transferable);
    return true;
  }

  // MODIFIERS

  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  modifier canTransfer() {
    require(transferable || msg.sender == owner);
    _;
  }

  // FIELDS

  // Standard fields used to describe the token
  string public name = "Papyrus Prototype Token";
  string public symbol = "PRP";
  string public version = "H0.1";
  uint8 public decimals = 18;

  // At the start of the token existence token is not transferable
  bool public transferable = false;

  // Will be set to true when minting tokens will be finished
  bool public mintingFinished = false;

  // Amount of burned tokens
  uint256 public totalBurned;

  // Amount of USD (with 18 decimals) collected during sale phase
  uint256 public totalCollected;
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_priceUsd","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"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":"_transferable","type":"bool"}],"name":"setTransferable","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalBurned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"totalCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"priceUsd","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"transferable","type":"bool"}],"name":"TransferableChanged","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":"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"}]

606060405260408051908101604052601781527f506170797275732050726f746f7479706520546f6b656e0000000000000000006020820152600490805161004b929160200190610111565b5060408051908101604052600381527f505250000000000000000000000000000000000000000000000000000000000060208201526005908051610093929160200190610111565b5060408051908101604052600481527f48302e3100000000000000000000000000000000000000000000000000000000602082015260069080516100db929160200190610111565b5060078054601260ff199091161762ffff001916905560038054600160a060020a03191633600160a060020a03161790556101ac565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015257805160ff191683800117855561017f565b8280016001018555821561017f579182015b8281111561017f578251825591602001919060010190610164565b5061018b92915061018f565b5090565b6101a991905b8082111561018b5760008155600101610195565b90565b610ddb806101bb6000396000f3006060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012157806306fdde0314610148578063095ea7b3146101d2578063156e29f6146101f457806318160ddd1461021957806323b872dd1461023e578063313ce5671461026657806342966c681461028f57806354fd4d50146102a757806370a08231146102ba5780637d64bcb4146102d95780638da5cb5b146102ec57806392ff0d311461031b57806395d89b411461032e5780639cd2370714610341578063a9059cbb14610359578063d89135cd1461037b578063dd62ed3e1461038e578063e29eb836146103b3578063f2fde38b146103c6575b341561011c57600080fd5b600080fd5b341561012c57600080fd5b6101346103e5565b604051901515815260200160405180910390f35b341561015357600080fd5b61015b6103f4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019757808201518382015260200161017f565b50505050905090810190601f1680156101c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101dd57600080fd5b610134600160a060020a0360043516602435610492565b34156101ff57600080fd5b610134600160a060020a03600435166024356044356104fe565b341561022457600080fd5b61022c610661565b60405190815260200160405180910390f35b341561024957600080fd5b610134600160a060020a0360043581169060243516604435610667565b341561027157600080fd5b6102796106ac565b60405160ff909116815260200160405180910390f35b341561029a57600080fd5b6102a56004356106b5565b005b34156102b257600080fd5b61015b610794565b34156102c557600080fd5b61022c600160a060020a03600435166107ff565b34156102e457600080fd5b61013461081a565b34156102f757600080fd5b6102ff610891565b604051600160a060020a03909116815260200160405180910390f35b341561032657600080fd5b6101346108a0565b341561033957600080fd5b61015b6108ae565b341561034c57600080fd5b6101346004351515610919565b341561036457600080fd5b610134600160a060020a03600435166024356109af565b341561038657600080fd5b61022c6109f2565b341561039957600080fd5b61022c600160a060020a03600435811690602435166109f8565b34156103be57600080fd5b61022c610a23565b34156103d157600080fd5b6102a5600160a060020a0360043516610a29565b60075462010000900460ff1681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600354600090819033600160a060020a0390811691161461051e57600080fd5b60075462010000900460ff161561053457600080fd5b600054610547908563ffffffff610ac416565b6000908155600160a060020a038616815260016020526040902054610572908563ffffffff610ac416565b600160a060020a03861660009081526001602052604090205582156105d3576105b9670de0b6b3a76400006105ad868663ffffffff610ade16565b9063ffffffff610b0916565b6009549091506105cf908263ffffffff610ac416565b6009555b84600160a060020a03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f858560405191825260208201526040908101905180910390a284600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3506001949350505050565b60005481565b600754600090610100900460ff168061068e575060035433600160a060020a039081169116145b151561069957600080fd5b6106a4848484610b20565b949350505050565b60075460ff1681565b60008082116106c357600080fd5b600160a060020a0333166000908152600160205260409020548211156106e857600080fd5b5033600160a060020a03811660009081526001602052604090205461070d9083610ca2565b600160a060020a0382166000908152600160205260408120919091555461073a908363ffffffff610ca216565b600055600854610750908363ffffffff610ac416565b600855600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048a5780601f1061045f5761010080835404028352916020019161048a565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461083857600080fd5b60075462010000900460ff161561084e57600080fd5b6007805462ff00001916620100001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b600754610100900460ff1681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048a5780601f1061045f5761010080835404028352916020019161048a565b60035460009033600160a060020a0390811691161461093757600080fd5b60075460ff610100909104161515821515141561095357600080fd5b6007805461ff001916610100841515810291909117918290557f6488c20eb299903c41aa1b53c3ad5a3140aca395935e57cc52c1cc8dae8d9e179160ff91900416604051901515815260200160405180910390a1506001919050565b600754600090610100900460ff16806109d6575060035433600160a060020a039081169116145b15156109e157600080fd5b6109eb8383610cb4565b9392505050565b60085481565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60095481565b60035433600160a060020a03908116911614610a4457600080fd5b600160a060020a0381161515610a5957600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610ad357fe5b8091505b5092915050565b600080831515610af15760009150610ad7565b50828202828482811515610b0157fe5b0414610ad357fe5b6000808284811515610b1757fe5b04949350505050565b6000600160a060020a0383161515610b3757600080fd5b600160a060020a038416600090815260016020526040902054821115610b5c57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b8f57600080fd5b600160a060020a038416600090815260016020526040902054610bb8908363ffffffff610ca216565b600160a060020a038086166000908152600160205260408082209390935590851681522054610bed908363ffffffff610ac416565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610c35908363ffffffff610ca216565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600082821115610cae57fe5b50900390565b6000600160a060020a0383161515610ccb57600080fd5b600160a060020a033316600090815260016020526040902054821115610cf057600080fd5b600160a060020a033316600090815260016020526040902054610d19908363ffffffff610ca216565b600160a060020a033381166000908152600160205260408082209390935590851681522054610d4e908363ffffffff610ac416565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001929150505600a165627a7a72305820b03bce624aa211283f00edf594925f192a279d8dabb179efe6f93d1f7662b1d80029

Deployed Bytecode

0x6060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012157806306fdde0314610148578063095ea7b3146101d2578063156e29f6146101f457806318160ddd1461021957806323b872dd1461023e578063313ce5671461026657806342966c681461028f57806354fd4d50146102a757806370a08231146102ba5780637d64bcb4146102d95780638da5cb5b146102ec57806392ff0d311461031b57806395d89b411461032e5780639cd2370714610341578063a9059cbb14610359578063d89135cd1461037b578063dd62ed3e1461038e578063e29eb836146103b3578063f2fde38b146103c6575b341561011c57600080fd5b600080fd5b341561012c57600080fd5b6101346103e5565b604051901515815260200160405180910390f35b341561015357600080fd5b61015b6103f4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019757808201518382015260200161017f565b50505050905090810190601f1680156101c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101dd57600080fd5b610134600160a060020a0360043516602435610492565b34156101ff57600080fd5b610134600160a060020a03600435166024356044356104fe565b341561022457600080fd5b61022c610661565b60405190815260200160405180910390f35b341561024957600080fd5b610134600160a060020a0360043581169060243516604435610667565b341561027157600080fd5b6102796106ac565b60405160ff909116815260200160405180910390f35b341561029a57600080fd5b6102a56004356106b5565b005b34156102b257600080fd5b61015b610794565b34156102c557600080fd5b61022c600160a060020a03600435166107ff565b34156102e457600080fd5b61013461081a565b34156102f757600080fd5b6102ff610891565b604051600160a060020a03909116815260200160405180910390f35b341561032657600080fd5b6101346108a0565b341561033957600080fd5b61015b6108ae565b341561034c57600080fd5b6101346004351515610919565b341561036457600080fd5b610134600160a060020a03600435166024356109af565b341561038657600080fd5b61022c6109f2565b341561039957600080fd5b61022c600160a060020a03600435811690602435166109f8565b34156103be57600080fd5b61022c610a23565b34156103d157600080fd5b6102a5600160a060020a0360043516610a29565b60075462010000900460ff1681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600354600090819033600160a060020a0390811691161461051e57600080fd5b60075462010000900460ff161561053457600080fd5b600054610547908563ffffffff610ac416565b6000908155600160a060020a038616815260016020526040902054610572908563ffffffff610ac416565b600160a060020a03861660009081526001602052604090205582156105d3576105b9670de0b6b3a76400006105ad868663ffffffff610ade16565b9063ffffffff610b0916565b6009549091506105cf908263ffffffff610ac416565b6009555b84600160a060020a03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f858560405191825260208201526040908101905180910390a284600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3506001949350505050565b60005481565b600754600090610100900460ff168061068e575060035433600160a060020a039081169116145b151561069957600080fd5b6106a4848484610b20565b949350505050565b60075460ff1681565b60008082116106c357600080fd5b600160a060020a0333166000908152600160205260409020548211156106e857600080fd5b5033600160a060020a03811660009081526001602052604090205461070d9083610ca2565b600160a060020a0382166000908152600160205260408120919091555461073a908363ffffffff610ca216565b600055600854610750908363ffffffff610ac416565b600855600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048a5780601f1061045f5761010080835404028352916020019161048a565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461083857600080fd5b60075462010000900460ff161561084e57600080fd5b6007805462ff00001916620100001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b600754610100900460ff1681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561048a5780601f1061045f5761010080835404028352916020019161048a565b60035460009033600160a060020a0390811691161461093757600080fd5b60075460ff610100909104161515821515141561095357600080fd5b6007805461ff001916610100841515810291909117918290557f6488c20eb299903c41aa1b53c3ad5a3140aca395935e57cc52c1cc8dae8d9e179160ff91900416604051901515815260200160405180910390a1506001919050565b600754600090610100900460ff16806109d6575060035433600160a060020a039081169116145b15156109e157600080fd5b6109eb8383610cb4565b9392505050565b60085481565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60095481565b60035433600160a060020a03908116911614610a4457600080fd5b600160a060020a0381161515610a5957600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610ad357fe5b8091505b5092915050565b600080831515610af15760009150610ad7565b50828202828482811515610b0157fe5b0414610ad357fe5b6000808284811515610b1757fe5b04949350505050565b6000600160a060020a0383161515610b3757600080fd5b600160a060020a038416600090815260016020526040902054821115610b5c57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b8f57600080fd5b600160a060020a038416600090815260016020526040902054610bb8908363ffffffff610ca216565b600160a060020a038086166000908152600160205260408082209390935590851681522054610bed908363ffffffff610ac416565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610c35908363ffffffff610ca216565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600082821115610cae57fe5b50900390565b6000600160a060020a0383161515610ccb57600080fd5b600160a060020a033316600090815260016020526040902054821115610cf057600080fd5b600160a060020a033316600090815260016020526040902054610d19908363ffffffff610ca216565b600160a060020a033381166000908152600160205260408082209390935590851681522054610d4e908363ffffffff610ac416565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001929150505600a165627a7a72305820b03bce624aa211283f00edf594925f192a279d8dabb179efe6f93d1f7662b1d80029

Swarm Source

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