ERC-20
Overview
Max Total Supply
303,843,731.927957173854486876 HLT
Holders
2,140
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HyperLootToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-07 */ pragma solidity 0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ 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 a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; address public pendingOwner; address public manager; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Modifier throws if called by any account other than the pendingOwner. */ modifier onlyPendingOwner() { require(msg.sender == pendingOwner); _; } constructor() public { owner = msg.sender; } /** * @dev Allows the current owner to set the pendingOwner address. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { pendingOwner = newOwner; } /** * @dev Allows the pendingOwner address to finalize the transfer. */ function claimOwnership() public onlyPendingOwner { emit OwnershipTransferred(owner, pendingOwner); owner = pendingOwner; pendingOwner = address(0); } /** * @dev Sets the manager address. * @param _manager The manager address. */ function setManager(address _manager) public onlyOwner { require(_manager != address(0)); manager = _manager; } } contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); 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 allowance(address who, address spender) public view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed who, address indexed spender, uint256 value); } contract HyperLootToken is ERC20, Ownable { using SafeMath for uint256; uint256 internal totalSupply_; uint8 public decimals = 18; uint256 public MAX_TOTAL_SUPPLY = uint256(1000000000) * uint256(10) ** decimals; mapping(address => uint256) internal balances; mapping(address => mapping (address => uint256)) internal allowed; string public name = "HyperLoot"; string public symbol = "HLT"; event Mint(address indexed _to, uint _amount); modifier canMint() { require(msg.sender == manager); require(totalSupply() <= MAX_TOTAL_SUPPLY); _; } /** * @dev Reclaim all ERC20Basic compatible tokens * @param token ERC20B The address of the token contract */ function reclaimToken(ERC20 token) external onlyOwner { uint256 balance = token.balanceOf(this); token.transfer(owner, balance); } /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev max total number of tokens */ function getMaxTotalSupply() public view returns (uint256) { return MAX_TOTAL_SUPPLY; } /** * @dev Gets the balance of the specified address. * @param _who The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _who) public view returns (uint256 balance) { return balances[_who]; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); 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 amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _who address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _who, address _spender) public view returns (uint256) { return allowed[_who][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) public canMint returns (bool) { require(_amount > 0); require(_to != address(0)); totalSupply_ = totalSupply_.add(_amount); require(totalSupply_ <= MAX_TOTAL_SUPPLY); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"token","type":"address"}],"name":"reclaimToken","outputs":[],"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":true,"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"manager","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getMaxTotalSupply","outputs":[{"name":"","type":"uint256"}],"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":"_who","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_manager","type":"address"}],"name":"setManager","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_who","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Mint","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":"who","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60048054601260ff19909116179081905560ff16600a0a633b9aca000260055560c0604052600960808190527f48797065724c6f6f74000000000000000000000000000000000000000000000060a090815261005e91600891906100bb565b506040805180820190915260038082527f484c54000000000000000000000000000000000000000000000000000000000060209092019182526100a3916009916100bb565b5060008054600160a060020a03191633179055610156565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100fc57805160ff1916838001178555610129565b82800160010185558215610129579182015b8281111561012957825182559160200191906001019061010e565b50610135929150610139565b5090565b61015391905b80821115610135576000815560010161013f565b90565b610e0d806101656000396000f30060806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806317ffc320146101e357806318160ddd1461020657806323b872dd1461022d578063313ce5671461025757806333039d3d1461028257806340c10f1914610297578063481c6a75146102bb5780634e71e0c8146102ec5780635db30bb114610301578063661884631461031657806370a082311461033a5780638da5cb5b1461035b57806395d89b4114610370578063a9059cbb14610385578063d0ebdbe7146103a9578063d73dd623146103ca578063dd62ed3e146103ee578063e30c397814610415578063f2fde38b1461042a575b600080fd5b34801561012d57600080fd5b5061013661044b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101cf600160a060020a03600435166024356104d9565b604080519115158252519081900360200190f35b3480156101ef57600080fd5b50610204600160a060020a036004351661053f565b005b34801561021257600080fd5b5061021b610688565b60408051918252519081900360200190f35b34801561023957600080fd5b506101cf600160a060020a036004358116906024351660443561068e565b34801561026357600080fd5b5061026c610807565b6040805160ff9092168252519081900360200190f35b34801561028e57600080fd5b5061021b610810565b3480156102a357600080fd5b506101cf600160a060020a0360043516602435610816565b3480156102c757600080fd5b506102d0610953565b60408051600160a060020a039092168252519081900360200190f35b3480156102f857600080fd5b50610204610962565b34801561030d57600080fd5b5061021b6109ea565b34801561032257600080fd5b506101cf600160a060020a03600435166024356109f0565b34801561034657600080fd5b5061021b600160a060020a0360043516610ae0565b34801561036757600080fd5b506102d0610afb565b34801561037c57600080fd5b50610136610b0a565b34801561039157600080fd5b506101cf600160a060020a0360043516602435610b65565b3480156103b557600080fd5b50610204600160a060020a0360043516610c48565b3480156103d657600080fd5b506101cf600160a060020a0360043516602435610ca3565b3480156103fa57600080fd5b5061021b600160a060020a0360043581169060243516610d3c565b34801561042157600080fd5b506102d0610d67565b34801561043657600080fd5b50610204600160a060020a0360043516610d76565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60008054600160a060020a0316331461055757600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156105b857600080fd5b505af11580156105cc573d6000803e3d6000fd5b505050506040513d60208110156105e257600080fd5b505160008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519394509085169263a9059cbb92604480840193602093929083900390910190829087803b15801561065857600080fd5b505af115801561066c573d6000803e3d6000fd5b505050506040513d602081101561068257600080fd5b50505050565b60035490565b6000600160a060020a03831615156106a557600080fd5b600160a060020a0384166000908152600660205260409020548211156106ca57600080fd5b600160a060020a03841660009081526007602090815260408083203384529091529020548211156106fa57600080fd5b600160a060020a038416600090815260066020526040902054610723908363ffffffff610dbc16565b600160a060020a038086166000908152600660205260408082209390935590851681522054610758908363ffffffff610dce16565b600160a060020a03808516600090815260066020908152604080832094909455918716815260078252828120338252909152205461079c908363ffffffff610dbc16565b600160a060020a03808616600081815260076020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60045460ff1681565b60055481565b600254600090600160a060020a0316331461083057600080fd5b60055461083b610688565b111561084657600080fd5b6000821161085357600080fd5b600160a060020a038316151561086857600080fd5b60035461087b908363ffffffff610dce16565b6003819055600554101561088e57600080fd5b600160a060020a0383166000908152600660205260409020546108b7908363ffffffff610dce16565b600160a060020a038416600081815260066020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600254600160a060020a031681565b600154600160a060020a0316331461097957600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60055490565b336000908152600760209081526040808320600160a060020a038616845290915281205480831115610a4557336000908152600760209081526040808320600160a060020a0388168452909152812055610a7a565b610a55818463ffffffff610dbc16565b336000908152600760209081526040808320600160a060020a03891684529091529020555b336000818152600760209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526006602052604090205490565b600054600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104d15780601f106104a6576101008083540402835291602001916104d1565b6000600160a060020a0383161515610b7c57600080fd5b33600090815260066020526040902054821115610b9857600080fd5b33600090815260066020526040902054610bb8908363ffffffff610dbc16565b3360009081526006602052604080822092909255600160a060020a03851681522054610bea908363ffffffff610dce16565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600054600160a060020a03163314610c5f57600080fd5b600160a060020a0381161515610c7457600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000908152600760209081526040808320600160a060020a0386168452909152812054610cd7908363ffffffff610dce16565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600154600160a060020a031681565b600054600160a060020a03163314610d8d57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610dc857fe5b50900390565b81810182811015610ddb57fe5b929150505600a165627a7a72305820358ad9e2b43af4d94114e7c41af84ca0d08853ad10857e4e524750b819de8d4d0029
Deployed Bytecode
0x60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab57806317ffc320146101e357806318160ddd1461020657806323b872dd1461022d578063313ce5671461025757806333039d3d1461028257806340c10f1914610297578063481c6a75146102bb5780634e71e0c8146102ec5780635db30bb114610301578063661884631461031657806370a082311461033a5780638da5cb5b1461035b57806395d89b4114610370578063a9059cbb14610385578063d0ebdbe7146103a9578063d73dd623146103ca578063dd62ed3e146103ee578063e30c397814610415578063f2fde38b1461042a575b600080fd5b34801561012d57600080fd5b5061013661044b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101cf600160a060020a03600435166024356104d9565b604080519115158252519081900360200190f35b3480156101ef57600080fd5b50610204600160a060020a036004351661053f565b005b34801561021257600080fd5b5061021b610688565b60408051918252519081900360200190f35b34801561023957600080fd5b506101cf600160a060020a036004358116906024351660443561068e565b34801561026357600080fd5b5061026c610807565b6040805160ff9092168252519081900360200190f35b34801561028e57600080fd5b5061021b610810565b3480156102a357600080fd5b506101cf600160a060020a0360043516602435610816565b3480156102c757600080fd5b506102d0610953565b60408051600160a060020a039092168252519081900360200190f35b3480156102f857600080fd5b50610204610962565b34801561030d57600080fd5b5061021b6109ea565b34801561032257600080fd5b506101cf600160a060020a03600435166024356109f0565b34801561034657600080fd5b5061021b600160a060020a0360043516610ae0565b34801561036757600080fd5b506102d0610afb565b34801561037c57600080fd5b50610136610b0a565b34801561039157600080fd5b506101cf600160a060020a0360043516602435610b65565b3480156103b557600080fd5b50610204600160a060020a0360043516610c48565b3480156103d657600080fd5b506101cf600160a060020a0360043516602435610ca3565b3480156103fa57600080fd5b5061021b600160a060020a0360043581169060243516610d3c565b34801561042157600080fd5b506102d0610d67565b34801561043657600080fd5b50610204600160a060020a0360043516610d76565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60008054600160a060020a0316331461055757600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156105b857600080fd5b505af11580156105cc573d6000803e3d6000fd5b505050506040513d60208110156105e257600080fd5b505160008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519394509085169263a9059cbb92604480840193602093929083900390910190829087803b15801561065857600080fd5b505af115801561066c573d6000803e3d6000fd5b505050506040513d602081101561068257600080fd5b50505050565b60035490565b6000600160a060020a03831615156106a557600080fd5b600160a060020a0384166000908152600660205260409020548211156106ca57600080fd5b600160a060020a03841660009081526007602090815260408083203384529091529020548211156106fa57600080fd5b600160a060020a038416600090815260066020526040902054610723908363ffffffff610dbc16565b600160a060020a038086166000908152600660205260408082209390935590851681522054610758908363ffffffff610dce16565b600160a060020a03808516600090815260066020908152604080832094909455918716815260078252828120338252909152205461079c908363ffffffff610dbc16565b600160a060020a03808616600081815260076020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60045460ff1681565b60055481565b600254600090600160a060020a0316331461083057600080fd5b60055461083b610688565b111561084657600080fd5b6000821161085357600080fd5b600160a060020a038316151561086857600080fd5b60035461087b908363ffffffff610dce16565b6003819055600554101561088e57600080fd5b600160a060020a0383166000908152600660205260409020546108b7908363ffffffff610dce16565b600160a060020a038416600081815260066020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b600254600160a060020a031681565b600154600160a060020a0316331461097957600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60055490565b336000908152600760209081526040808320600160a060020a038616845290915281205480831115610a4557336000908152600760209081526040808320600160a060020a0388168452909152812055610a7a565b610a55818463ffffffff610dbc16565b336000908152600760209081526040808320600160a060020a03891684529091529020555b336000818152600760209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526006602052604090205490565b600054600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104d15780601f106104a6576101008083540402835291602001916104d1565b6000600160a060020a0383161515610b7c57600080fd5b33600090815260066020526040902054821115610b9857600080fd5b33600090815260066020526040902054610bb8908363ffffffff610dbc16565b3360009081526006602052604080822092909255600160a060020a03851681522054610bea908363ffffffff610dce16565b600160a060020a0384166000818152600660209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600054600160a060020a03163314610c5f57600080fd5b600160a060020a0381161515610c7457600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000908152600760209081526040808320600160a060020a0386168452909152812054610cd7908363ffffffff610dce16565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600154600160a060020a031681565b600054600160a060020a03163314610d8d57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610dc857fe5b50900390565b81810182811015610ddb57fe5b929150505600a165627a7a72305820358ad9e2b43af4d94114e7c41af84ca0d08853ad10857e4e524750b819de8d4d0029
Swarm Source
bzzr://358ad9e2b43af4d94114e7c41af84ca0d08853ad10857e4e524750b819de8d4d
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.