ETH Price: $3,480.47 (+2.13%)
Gas: 8 Gwei

Token

DOG: The Anti-Scam Reward Token (DOG)
 

Overview

Max Total Supply

75,000,000 DOG

Holders

35,715

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
250 DOG

Value
$0.00
0x1f6150ffdccedc28c14cbf8be78c22eeb8801c5f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x46426a20...7653529Ea
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
DOGToken

Compiler Version
v0.4.19+commit.c4cbbb05

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.19;

/**
 * @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.
   */
  function Ownable() {
    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));
    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;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    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);
        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);
        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 Aprove 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;
        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);
        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);
        }
        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 DOGToken is StandardToken {
  using SafeMath for uint256;

  string constant public name = 'DOG: The Anti-Scam Reward Token';
  string constant public symbol = 'DOG';
  uint constant public decimals = 18;
  uint256 public totalSupply;
  uint256 public maxSupply;

  /* Contructor function to set maxSupply*/
  function DOGToken(uint256 _maxSupply){
    maxSupply = _maxSupply.mul(10**decimals);
  }

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

60606040526001805460a060020a60ff0219169055341561001f57600080fd5b604051602080610def8339810160405280805160018054600160a060020a03191633600160a060020a03161790559150610070905081670de0b6b3a76400006401000000006100798102610cec1704565b600555506100a4565b6000828202831580610095575082848281151561009257fe5b04145b151561009d57fe5b9392505050565b610d3c806100b36000396000f3006060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d657806323b872dd146101fb57806327e235e314610223578063313ce567146102425780633f4ba83a146102555780635c6581651461026a5780635c975abb1461028f57806366188463146102a257806370a08231146102c45780638456cb59146102e35780638da5cb5b146102f657806395d89b4114610325578063a0712d6814610338578063a9059cbb1461034e578063d5abeb0114610370578063d73dd62314610383578063dd62ed3e146103a5578063f2fde38b146103ca575b600080fd5b341561012157600080fd5b6101296103e9565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016557808201518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ab57600080fd5b6101c2600160a060020a0360043516602435610420565b604051901515815260200160405180910390f35b34156101e157600080fd5b6101e96104d3565b60405190815260200160405180910390f35b341561020657600080fd5b6101c2600160a060020a03600435811690602435166044356104d9565b341561022e57600080fd5b6101e9600160a060020a0360043516610681565b341561024d57600080fd5b6101e9610693565b341561026057600080fd5b610268610698565b005b341561027557600080fd5b6101e9600160a060020a0360043581169060243516610717565b341561029a57600080fd5b6101c2610734565b34156102ad57600080fd5b6101c2600160a060020a0360043516602435610744565b34156102cf57600080fd5b6101e9600160a060020a0360043516610859565b34156102ee57600080fd5b610268610874565b341561030157600080fd5b6103096108f8565b604051600160a060020a03909116815260200160405180910390f35b341561033057600080fd5b610129610907565b341561034357600080fd5b6101c260043561093e565b341561035957600080fd5b6101c2600160a060020a0360043516602435610a16565b341561037b57600080fd5b6101e9610b3c565b341561038e57600080fd5b6101c2600160a060020a0360043516602435610b42565b34156103b057600080fd5b6101e9600160a060020a0360043581169060243516610bfe565b34156103d557600080fd5b610268600160a060020a0360043516610c29565b60408051908101604052601f81527f444f473a2054686520416e74692d5363616d2052657761726420546f6b656e00602082015281565b60015460009060a060020a900460ff161561043a57600080fd5b600160a060020a033381166000908152600360209081526040808320938716835292905220541561046a57600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60045481565b60015460009060a060020a900460ff16156104f357600080fd5b600160a060020a0384166000908152600260205260409020548290108015906105435750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156105685750600160a060020a038316600090815260026020526040902054828101115b151561057357600080fd5b600160a060020a03831660009081526002602052604090205461059c908363ffffffff610cc416565b600160a060020a0380851660009081526002602052604080822093909355908616815220546105d1908363ffffffff610cda16565b600160a060020a0380861660009081526002602090815260408083209490945560038152838220339093168252919091522054610614908363ffffffff610cda16565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60026020526000908152604090205481565b601281565b60015433600160a060020a039081169116146106b357600080fd5b60015460a060020a900460ff1615156106cb57600080fd5b6001805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600360209081526000928352604080842090915290825290205481565b60015460a060020a900460ff1681565b600154600090819060a060020a900460ff161561076057600080fd5b50600160a060020a03338116600090815260036020908152604080832093871683529290522054808311156107bc57600160a060020a0333811660009081526003602090815260408083209388168352929052908120556107f3565b6107cc818463ffffffff610cda16565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60015433600160a060020a0390811691161461088f57600080fd5b60015460a060020a900460ff16156108a657600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600154600160a060020a031681565b60408051908101604052600381527f444f470000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a0390811691161461095c57600080fd5b60045461096f908363ffffffff610cc416565b600554101561097d57600080fd5b600454610990908363ffffffff610cc416565b600455600160a060020a0333166000908152600260205260409020546109bc908363ffffffff610cc416565b600160a060020a0333166000818152600260205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001919050565b60015460009060a060020a900460ff1615610a3057600080fd5b600160a060020a033316600090815260026020526040902054829010801590610a725750600160a060020a038316600090815260026020526040902054828101115b1515610a7d57600080fd5b600160a060020a033316600090815260026020526040902054610aa6908363ffffffff610cda16565b600160a060020a033381166000908152600260205260408082209390935590851681522054610adb908363ffffffff610cc416565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60055481565b60015460009060a060020a900460ff1615610b5c57600080fd5b600160a060020a03338116600090815260036020908152604080832093871683529290522054610b92908363ffffffff610cc416565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610c4457600080fd5b600160a060020a0381161515610c5957600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610cd357fe5b9392505050565b600082821115610ce657fe5b50900390565b6000828202831580610d085750828482811515610d0557fe5b04145b1515610cd357fe00a165627a7a72305820c622bca275a3c46577e977024d5ab26ee6b8523c887a85ed86ce4656dff1b6310029000000000000000000000000000000000000000000000000000000003b9aca00

Deployed Bytecode

0x6060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d657806323b872dd146101fb57806327e235e314610223578063313ce567146102425780633f4ba83a146102555780635c6581651461026a5780635c975abb1461028f57806366188463146102a257806370a08231146102c45780638456cb59146102e35780638da5cb5b146102f657806395d89b4114610325578063a0712d6814610338578063a9059cbb1461034e578063d5abeb0114610370578063d73dd62314610383578063dd62ed3e146103a5578063f2fde38b146103ca575b600080fd5b341561012157600080fd5b6101296103e9565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016557808201518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ab57600080fd5b6101c2600160a060020a0360043516602435610420565b604051901515815260200160405180910390f35b34156101e157600080fd5b6101e96104d3565b60405190815260200160405180910390f35b341561020657600080fd5b6101c2600160a060020a03600435811690602435166044356104d9565b341561022e57600080fd5b6101e9600160a060020a0360043516610681565b341561024d57600080fd5b6101e9610693565b341561026057600080fd5b610268610698565b005b341561027557600080fd5b6101e9600160a060020a0360043581169060243516610717565b341561029a57600080fd5b6101c2610734565b34156102ad57600080fd5b6101c2600160a060020a0360043516602435610744565b34156102cf57600080fd5b6101e9600160a060020a0360043516610859565b34156102ee57600080fd5b610268610874565b341561030157600080fd5b6103096108f8565b604051600160a060020a03909116815260200160405180910390f35b341561033057600080fd5b610129610907565b341561034357600080fd5b6101c260043561093e565b341561035957600080fd5b6101c2600160a060020a0360043516602435610a16565b341561037b57600080fd5b6101e9610b3c565b341561038e57600080fd5b6101c2600160a060020a0360043516602435610b42565b34156103b057600080fd5b6101e9600160a060020a0360043581169060243516610bfe565b34156103d557600080fd5b610268600160a060020a0360043516610c29565b60408051908101604052601f81527f444f473a2054686520416e74692d5363616d2052657761726420546f6b656e00602082015281565b60015460009060a060020a900460ff161561043a57600080fd5b600160a060020a033381166000908152600360209081526040808320938716835292905220541561046a57600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60045481565b60015460009060a060020a900460ff16156104f357600080fd5b600160a060020a0384166000908152600260205260409020548290108015906105435750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156105685750600160a060020a038316600090815260026020526040902054828101115b151561057357600080fd5b600160a060020a03831660009081526002602052604090205461059c908363ffffffff610cc416565b600160a060020a0380851660009081526002602052604080822093909355908616815220546105d1908363ffffffff610cda16565b600160a060020a0380861660009081526002602090815260408083209490945560038152838220339093168252919091522054610614908363ffffffff610cda16565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60026020526000908152604090205481565b601281565b60015433600160a060020a039081169116146106b357600080fd5b60015460a060020a900460ff1615156106cb57600080fd5b6001805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600360209081526000928352604080842090915290825290205481565b60015460a060020a900460ff1681565b600154600090819060a060020a900460ff161561076057600080fd5b50600160a060020a03338116600090815260036020908152604080832093871683529290522054808311156107bc57600160a060020a0333811660009081526003602090815260408083209388168352929052908120556107f3565b6107cc818463ffffffff610cda16565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b60015433600160a060020a0390811691161461088f57600080fd5b60015460a060020a900460ff16156108a657600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600154600160a060020a031681565b60408051908101604052600381527f444f470000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a0390811691161461095c57600080fd5b60045461096f908363ffffffff610cc416565b600554101561097d57600080fd5b600454610990908363ffffffff610cc416565b600455600160a060020a0333166000908152600260205260409020546109bc908363ffffffff610cc416565b600160a060020a0333166000818152600260205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a3506001919050565b60015460009060a060020a900460ff1615610a3057600080fd5b600160a060020a033316600090815260026020526040902054829010801590610a725750600160a060020a038316600090815260026020526040902054828101115b1515610a7d57600080fd5b600160a060020a033316600090815260026020526040902054610aa6908363ffffffff610cda16565b600160a060020a033381166000908152600260205260408082209390935590851681522054610adb908363ffffffff610cc416565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60055481565b60015460009060a060020a900460ff1615610b5c57600080fd5b600160a060020a03338116600090815260036020908152604080832093871683529290522054610b92908363ffffffff610cc416565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610c4457600080fd5b600160a060020a0381161515610c5957600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082820183811015610cd357fe5b9392505050565b600082821115610ce657fe5b50900390565b6000828202831580610d085750828482811515610d0557fe5b04145b1515610cd357fe00a165627a7a72305820c622bca275a3c46577e977024d5ab26ee6b8523c887a85ed86ce4656dff1b6310029

Swarm Source

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