ERC-20
Overview
Max Total Supply
97.443168822928340901 AMPLBNT
Holders
9
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 |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x9FD952F6...5FaF20743 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
SmartToken
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-11-20 */ pragma solidity ^0.4.24; // File: contracts/token/interfaces/IERC20Token.sol /* ERC20 Standard Token interface */ contract IERC20Token { // these functions aren't abstract since the compiler emits automatically generated getter functions as external function name() public view returns (string) {} function symbol() public view returns (string) {} function decimals() public view returns (uint8) {} function totalSupply() public view returns (uint256) {} function balanceOf(address _owner) public view returns (uint256) { _owner; } function allowance(address _owner, address _spender) public view returns (uint256) { _owner; _spender; } function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); function approve(address _spender, uint256 _value) public returns (bool success); } // File: contracts/utility/Utils.sol /* Utilities & Common Modifiers */ contract Utils { /** constructor */ constructor() public { } // verifies that an amount is greater than zero modifier greaterThanZero(uint256 _amount) { require(_amount > 0); _; } // validates an address - currently only checks that it isn't null modifier validAddress(address _address) { require(_address != address(0)); _; } // verifies that the address is different than this contract address modifier notThis(address _address) { require(_address != address(this)); _; } // Overflow protected math functions /** @dev returns the sum of _x and _y, asserts if the calculation overflows @param _x value 1 @param _y value 2 @return sum */ function safeAdd(uint256 _x, uint256 _y) internal pure returns (uint256) { uint256 z = _x + _y; assert(z >= _x); return z; } /** @dev returns the difference of _x minus _y, asserts if the subtraction results in a negative number @param _x minuend @param _y subtrahend @return difference */ function safeSub(uint256 _x, uint256 _y) internal pure returns (uint256) { assert(_x >= _y); return _x - _y; } /** @dev returns the product of multiplying _x by _y, asserts if the calculation overflows @param _x factor 1 @param _y factor 2 @return product */ function safeMul(uint256 _x, uint256 _y) internal pure returns (uint256) { uint256 z = _x * _y; assert(_x == 0 || z / _x == _y); return z; } } // File: contracts/token/ERC20Token.sol /** ERC20 Standard Token implementation */ contract ERC20Token is IERC20Token, Utils { string public standard = 'Token 0.1'; string public name = ''; string public symbol = ''; uint8 public decimals = 0; uint256 public totalSupply = 0; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); /** @dev constructor @param _name token name @param _symbol token symbol @param _decimals decimal points, for display purposes */ constructor(string _name, string _symbol, uint8 _decimals) public { require(bytes(_name).length > 0 && bytes(_symbol).length > 0); // validate input name = _name; symbol = _symbol; decimals = _decimals; } /** @dev send coins throws on any error rather then return a false flag to minimize user errors @param _to target address @param _value transfer amount @return true if the transfer was successful, false if it wasn't */ function transfer(address _to, uint256 _value) public validAddress(_to) returns (bool success) { balanceOf[msg.sender] = safeSub(balanceOf[msg.sender], _value); balanceOf[_to] = safeAdd(balanceOf[_to], _value); emit Transfer(msg.sender, _to, _value); return true; } /** @dev an account/contract attempts to get the coins throws on any error rather then return a false flag to minimize user errors @param _from source address @param _to target address @param _value transfer amount @return true if the transfer was successful, false if it wasn't */ function transferFrom(address _from, address _to, uint256 _value) public validAddress(_from) validAddress(_to) returns (bool success) { allowance[_from][msg.sender] = safeSub(allowance[_from][msg.sender], _value); balanceOf[_from] = safeSub(balanceOf[_from], _value); balanceOf[_to] = safeAdd(balanceOf[_to], _value); emit Transfer(_from, _to, _value); return true; } /** @dev allow another account/contract to spend some tokens on your behalf throws on any error rather then return a false flag to minimize user errors also, to minimize the risk of the approve/transferFrom attack vector (see https://docs.google.com/document/d/1YLPtQxZu1UAvO9cZ1O2RPXBbT0mooh4DYKjA_jp-RLM/), approve has to be called twice in 2 separate transactions - once to change the allowance to 0 and secondly to change it to the new allowance value @param _spender approved address @param _value allowance amount @return true if the approval was successful, false if it wasn't */ function approve(address _spender, uint256 _value) public validAddress(_spender) returns (bool success) { // if the allowance isn't 0, it can only be updated to 0 to prevent an allowance change immediately after withdrawal require(_value == 0 || allowance[msg.sender][_spender] == 0); allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } } // File: contracts/utility/interfaces/IOwned.sol /* Owned contract interface */ contract IOwned { // this function isn't abstract since the compiler emits automatically generated getter functions as external function owner() public view returns (address) {} function transferOwnership(address _newOwner) public; function acceptOwnership() public; } // File: contracts/token/interfaces/ISmartToken.sol /* Smart Token interface */ contract ISmartToken is IOwned, IERC20Token { function disableTransfers(bool _disable) public; function issue(address _to, uint256 _amount) public; function destroy(address _from, uint256 _amount) public; } // File: contracts/utility/Owned.sol /* Provides support and utilities for contract ownership */ contract Owned is IOwned { address public owner; address public newOwner; event OwnerUpdate(address indexed _prevOwner, address indexed _newOwner); /** @dev constructor */ constructor() public { owner = msg.sender; } // allows execution by the owner only modifier ownerOnly { require(msg.sender == owner); _; } /** @dev allows transferring the contract ownership the new owner still needs to accept the transfer can only be called by the contract owner @param _newOwner new contract owner */ function transferOwnership(address _newOwner) public ownerOnly { require(_newOwner != owner); newOwner = _newOwner; } /** @dev used by a new owner to accept an ownership transfer */ function acceptOwnership() public { require(msg.sender == newOwner); emit OwnerUpdate(owner, newOwner); owner = newOwner; newOwner = address(0); } } // File: contracts/utility/interfaces/ITokenHolder.sol /* Token Holder interface */ contract ITokenHolder is IOwned { function withdrawTokens(IERC20Token _token, address _to, uint256 _amount) public; } // File: contracts/utility/TokenHolder.sol /* We consider every contract to be a 'token holder' since it's currently not possible for a contract to deny receiving tokens. The TokenHolder's contract sole purpose is to provide a safety mechanism that allows the owner to send tokens that were sent to the contract by mistake back to their sender. */ contract TokenHolder is ITokenHolder, Owned, Utils { /** @dev constructor */ constructor() public { } /** @dev withdraws tokens held by the contract and sends them to an account can only be called by the owner @param _token ERC20 token contract address @param _to account to receive the new amount @param _amount amount to withdraw */ function withdrawTokens(IERC20Token _token, address _to, uint256 _amount) public ownerOnly validAddress(_token) validAddress(_to) notThis(_to) { assert(_token.transfer(_to, _amount)); } } // File: contracts/token/SmartToken.sol /* Smart Token v0.3 'Owned' is specified here for readability reasons */ contract SmartToken is ISmartToken, Owned, ERC20Token, TokenHolder { string public version = '0.3'; bool public transfersEnabled = true; // true if transfer/transferFrom are enabled, false if not // triggered when a smart token is deployed - the _token address is defined for forward compatibility, in case we want to trigger the event from a factory event NewSmartToken(address _token); // triggered when the total supply is increased event Issuance(uint256 _amount); // triggered when the total supply is decreased event Destruction(uint256 _amount); /** @dev constructor @param _name token name @param _symbol token short symbol, minimum 1 character @param _decimals for display purposes only */ constructor(string _name, string _symbol, uint8 _decimals) public ERC20Token(_name, _symbol, _decimals) { emit NewSmartToken(address(this)); } // allows execution only when transfers aren't disabled modifier transfersAllowed { assert(transfersEnabled); _; } /** @dev disables/enables transfers can only be called by the contract owner @param _disable true to disable transfers, false to enable them */ function disableTransfers(bool _disable) public ownerOnly { transfersEnabled = !_disable; } /** @dev increases the token supply and sends the new tokens to an account can only be called by the contract owner @param _to account to receive the new amount @param _amount amount to increase the supply by */ function issue(address _to, uint256 _amount) public ownerOnly validAddress(_to) notThis(_to) { totalSupply = safeAdd(totalSupply, _amount); balanceOf[_to] = safeAdd(balanceOf[_to], _amount); emit Issuance(_amount); emit Transfer(this, _to, _amount); } /** @dev removes tokens from an account and decreases the token supply can be called by the contract owner to destroy tokens from any account or by any holder to destroy tokens from his/her own account @param _from account to remove the amount from @param _amount amount to decrease the supply by */ function destroy(address _from, uint256 _amount) public { require(msg.sender == _from || msg.sender == owner); // validate input balanceOf[_from] = safeSub(balanceOf[_from], _amount); totalSupply = safeSub(totalSupply, _amount); emit Transfer(_from, this, _amount); emit Destruction(_amount); } // ERC20 standard method overrides with some extra functionality /** @dev send coins throws on any error rather then return a false flag to minimize user errors in addition to the standard checks, the function throws if transfers are disabled @param _to target address @param _value transfer amount @return true if the transfer was successful, false if it wasn't */ function transfer(address _to, uint256 _value) public transfersAllowed returns (bool success) { assert(super.transfer(_to, _value)); return true; } /** @dev an account/contract attempts to get the coins throws on any error rather then return a false flag to minimize user errors in addition to the standard checks, the function throws if transfers are disabled @param _from source address @param _to target address @param _value transfer amount @return true if the transfer was successful, false if it wasn't */ function transferFrom(address _from, address _to, uint256 _value) public transfersAllowed returns (bool success) { assert(super.transferFrom(_from, _to, _value)); 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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_disable","type":"bool"}],"name":"disableTransfers","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":"success","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":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"issue","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":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroy","outputs":[],"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":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","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"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_token","type":"address"}],"name":"NewSmartToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Issuance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Destruction","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_prevOwner","type":"address"},{"indexed":true,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"}]
Contract Creation Code
60c0604052600960808190527f546f6b656e20302e31000000000000000000000000000000000000000000000060a0908152620000409160029190620001d6565b506040805160208101918290526000908190526200006191600391620001d6565b506040805160208101918290526000908190526200008291600491620001d6565b506005805460ff1916905560006006556040805180820190915260038082527f302e3300000000000000000000000000000000000000000000000000000000006020909201918252620000d891600991620001d6565b50600a805460ff19166001179055348015620000f357600080fd5b5060405162000ff038038062000ff0833981016040908152815160208301519183015160008054600160a060020a0319163317815591840180519094939093019290918491849184911180156200014b575060008251115b15156200015757600080fd5b82516200016c906003906020860190620001d6565b50815162000182906004906020850190620001d6565b506005805460ff90921660ff1990921691909117905550506040805130815290517ff4cd1f8571e8d9c97ffcb81558807ab73f9803d54de5da6a0420593c82a4a9f09181900360200190a15050506200027b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200021957805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002495782518255916020019190600101906200022c565b50620002579291506200025b565b5090565b6200027891905b8082111562000257576000815560010162000262565b90565b610d65806200028b6000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a05780631608f18f146101d857806318160ddd146101f457806323b872dd1461021b578063313ce5671461024557806354fd4d50146102705780635a3b7e42146102855780635e35359e1461029a57806370a08231146102c457806379ba5097146102e5578063867904b4146102fa5780638da5cb5b1461031e57806395d89b411461034f578063a24835d114610364578063a9059cbb14610388578063bef97c87146103ac578063d4ee1d90146103c1578063dd62ed3e146103d6578063f2fde38b146103fd575b600080fd5b34801561012257600080fd5b5061012b61041e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a03600435166024356104ac565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101f26004351515610565565b005b34801561020057600080fd5b5061020961058e565b60408051918252519081900360200190f35b34801561022757600080fd5b506101c4600160a060020a0360043581169060243516604435610594565b34801561025157600080fd5b5061025a6105c2565b6040805160ff9092168252519081900360200190f35b34801561027c57600080fd5b5061012b6105cb565b34801561029157600080fd5b5061012b610626565b3480156102a657600080fd5b506101f2600160a060020a036004358116906024351660443561067e565b3480156102d057600080fd5b50610209600160a060020a0360043516610790565b3480156102f157600080fd5b506101f26107a2565b34801561030657600080fd5b506101f2600160a060020a036004351660243561082a565b34801561032a57600080fd5b50610333610926565b60408051600160a060020a039092168252519081900360200190f35b34801561035b57600080fd5b5061012b610935565b34801561037057600080fd5b506101f2600160a060020a0360043516602435610990565b34801561039457600080fd5b506101c4600160a060020a0360043516602435610a6d565b3480156103b857600080fd5b506101c4610a99565b3480156103cd57600080fd5b50610333610aa2565b3480156103e257600080fd5b50610209600160a060020a0360043581169060243516610ab1565b34801561040957600080fd5b506101f2600160a060020a0360043516610ace565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b820191906000526020600020905b81548152906001019060200180831161048757829003601f168201915b505050505081565b600082600160a060020a03811615156104c457600080fd5b8215806104f25750336000908152600860209081526040808320600160a060020a0388168452909152902054155b15156104fd57600080fd5b336000818152600860209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600054600160a060020a0316331461057c57600080fd5b600a805460ff19169115919091179055565b60065481565b600a5460009060ff1615156105a557fe5b6105b0848484610b2f565b15156105b857fe5b5060019392505050565b60055460ff1681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b600054600160a060020a0316331461069557600080fd5b82600160a060020a03811615156106ab57600080fd5b82600160a060020a03811615156106c157600080fd5b83600160a060020a0381163014156106d857600080fd5b85600160a060020a031663a9059cbb86866040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801561075457600080fd5b505af1158015610768573d6000803e3d6000fd5b505050506040513d602081101561077e57600080fd5b5051151561078857fe5b505050505050565b60076020526000908152604090205481565b600154600160a060020a031633146107b957600080fd5b60015460008054604051600160a060020a0393841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a0316331461084157600080fd5b81600160a060020a038116151561085757600080fd5b82600160a060020a03811630141561086e57600080fd5b61087a60065484610c46565b600655600160a060020a0384166000908152600760205260409020546108a09084610c46565b600160a060020a03851660009081526007602090815260409182902092909255805185815290517f9386c90217c323f58030f9dadcbc938f807a940f4ff41cd4cead9562f5da7dc3929181900390910190a1604080518481529051600160a060020a038616913091600080516020610d1a8339815191529181900360200190a350505050565b600054600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b33600160a060020a03831614806109b15750600054600160a060020a031633145b15156109bc57600080fd5b600160a060020a0382166000908152600760205260409020546109df9082610c5c565b600160a060020a038316600090815260076020526040902055600654610a059082610c5c565b6006556040805182815290513091600160a060020a03851691600080516020610d1a8339815191529181900360200190a36040805182815290517f9a1b418bc061a5d80270261562e6986a35d995f8051145f277be16103abd34539181900360200190a15050565b600a5460009060ff161515610a7e57fe5b610a888383610c6e565b1515610a9057fe5b50600192915050565b600a5460ff1681565b600154600160a060020a031681565b600860209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610ae557600080fd5b600054600160a060020a0382811691161415610b0057600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600083600160a060020a0381161515610b4757600080fd5b83600160a060020a0381161515610b5d57600080fd5b600160a060020a0386166000908152600860209081526040808320338452909152902054610b8b9085610c5c565b600160a060020a038716600081815260086020908152604080832033845282528083209490945591815260079091522054610bc69085610c5c565b600160a060020a038088166000908152600760205260408082209390935590871681522054610bf59085610c46565b600160a060020a0380871660008181526007602090815260409182902094909455805188815290519193928a1692600080516020610d1a83398151915292918290030190a350600195945050505050565b600082820183811015610c5557fe5b9392505050565b600081831015610c6857fe5b50900390565b600082600160a060020a0381161515610c8657600080fd5b33600090815260076020526040902054610ca09084610c5c565b3360009081526007602052604080822092909255600160a060020a03861681522054610ccc9084610c46565b600160a060020a038516600081815260076020908152604091829020939093558051868152905191923392600080516020610d1a8339815191529281900390910190a350600193925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820dd0aaf077e5c8eb9cfd0c66e2fd15cb6c057dc49204320223f129c7ed98503b90029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000013454d434f424e542052656c617920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007454d434f424e5400000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a05780631608f18f146101d857806318160ddd146101f457806323b872dd1461021b578063313ce5671461024557806354fd4d50146102705780635a3b7e42146102855780635e35359e1461029a57806370a08231146102c457806379ba5097146102e5578063867904b4146102fa5780638da5cb5b1461031e57806395d89b411461034f578063a24835d114610364578063a9059cbb14610388578063bef97c87146103ac578063d4ee1d90146103c1578063dd62ed3e146103d6578063f2fde38b146103fd575b600080fd5b34801561012257600080fd5b5061012b61041e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a03600435166024356104ac565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101f26004351515610565565b005b34801561020057600080fd5b5061020961058e565b60408051918252519081900360200190f35b34801561022757600080fd5b506101c4600160a060020a0360043581169060243516604435610594565b34801561025157600080fd5b5061025a6105c2565b6040805160ff9092168252519081900360200190f35b34801561027c57600080fd5b5061012b6105cb565b34801561029157600080fd5b5061012b610626565b3480156102a657600080fd5b506101f2600160a060020a036004358116906024351660443561067e565b3480156102d057600080fd5b50610209600160a060020a0360043516610790565b3480156102f157600080fd5b506101f26107a2565b34801561030657600080fd5b506101f2600160a060020a036004351660243561082a565b34801561032a57600080fd5b50610333610926565b60408051600160a060020a039092168252519081900360200190f35b34801561035b57600080fd5b5061012b610935565b34801561037057600080fd5b506101f2600160a060020a0360043516602435610990565b34801561039457600080fd5b506101c4600160a060020a0360043516602435610a6d565b3480156103b857600080fd5b506101c4610a99565b3480156103cd57600080fd5b50610333610aa2565b3480156103e257600080fd5b50610209600160a060020a0360043581169060243516610ab1565b34801561040957600080fd5b506101f2600160a060020a0360043516610ace565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b820191906000526020600020905b81548152906001019060200180831161048757829003601f168201915b505050505081565b600082600160a060020a03811615156104c457600080fd5b8215806104f25750336000908152600860209081526040808320600160a060020a0388168452909152902054155b15156104fd57600080fd5b336000818152600860209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600054600160a060020a0316331461057c57600080fd5b600a805460ff19169115919091179055565b60065481565b600a5460009060ff1615156105a557fe5b6105b0848484610b2f565b15156105b857fe5b5060019392505050565b60055460ff1681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b600054600160a060020a0316331461069557600080fd5b82600160a060020a03811615156106ab57600080fd5b82600160a060020a03811615156106c157600080fd5b83600160a060020a0381163014156106d857600080fd5b85600160a060020a031663a9059cbb86866040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801561075457600080fd5b505af1158015610768573d6000803e3d6000fd5b505050506040513d602081101561077e57600080fd5b5051151561078857fe5b505050505050565b60076020526000908152604090205481565b600154600160a060020a031633146107b957600080fd5b60015460008054604051600160a060020a0393841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a0316331461084157600080fd5b81600160a060020a038116151561085757600080fd5b82600160a060020a03811630141561086e57600080fd5b61087a60065484610c46565b600655600160a060020a0384166000908152600760205260409020546108a09084610c46565b600160a060020a03851660009081526007602090815260409182902092909255805185815290517f9386c90217c323f58030f9dadcbc938f807a940f4ff41cd4cead9562f5da7dc3929181900390910190a1604080518481529051600160a060020a038616913091600080516020610d1a8339815191529181900360200190a350505050565b600054600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b33600160a060020a03831614806109b15750600054600160a060020a031633145b15156109bc57600080fd5b600160a060020a0382166000908152600760205260409020546109df9082610c5c565b600160a060020a038316600090815260076020526040902055600654610a059082610c5c565b6006556040805182815290513091600160a060020a03851691600080516020610d1a8339815191529181900360200190a36040805182815290517f9a1b418bc061a5d80270261562e6986a35d995f8051145f277be16103abd34539181900360200190a15050565b600a5460009060ff161515610a7e57fe5b610a888383610c6e565b1515610a9057fe5b50600192915050565b600a5460ff1681565b600154600160a060020a031681565b600860209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610ae557600080fd5b600054600160a060020a0382811691161415610b0057600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600083600160a060020a0381161515610b4757600080fd5b83600160a060020a0381161515610b5d57600080fd5b600160a060020a0386166000908152600860209081526040808320338452909152902054610b8b9085610c5c565b600160a060020a038716600081815260086020908152604080832033845282528083209490945591815260079091522054610bc69085610c5c565b600160a060020a038088166000908152600760205260408082209390935590871681522054610bf59085610c46565b600160a060020a0380871660008181526007602090815260409182902094909455805188815290519193928a1692600080516020610d1a83398151915292918290030190a350600195945050505050565b600082820183811015610c5557fe5b9392505050565b600081831015610c6857fe5b50900390565b600082600160a060020a0381161515610c8657600080fd5b33600090815260076020526040902054610ca09084610c5c565b3360009081526007602052604080822092909255600160a060020a03861681522054610ccc9084610c46565b600160a060020a038516600081815260076020908152604091829020939093558051868152905191923392600080516020610d1a8339815191529281900390910190a350600193925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820dd0aaf077e5c8eb9cfd0c66e2fd15cb6c057dc49204320223f129c7ed98503b90029
Swarm Source
bzzr://dd0aaf077e5c8eb9cfd0c66e2fd15cb6c057dc49204320223f129c7ed98503b9
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.