ERC-20
Overview
Max Total Supply
1,000,000,000 F5d
Holders
74
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 Source Code Verified (Exact Match)
Contract Name:
Fomo5d
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-12 */ pragma solidity ^0.4.18; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract Fomo5d { // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the strongly suggested default, avoid changing it uint256 public totalSupply; mapping(address=>bool) public frozenAccount; uint256 public rate = 20000 ;//1 ether=how many tokens uint256 public amount; address public owner; bool public fundOnContract=true; bool public contractStart=true; bool public exchangeStart=true; // This creates an array with all balances mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; // This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); /** * Constrctor function * * Initializes contract with initial supply tokens to the creator of the contract */ modifier onlyOwner{ if(msg.sender != owner){ revert(); }else{ _; } } function transferOwner(address newOwner) public onlyOwner{ owner = newOwner; } function Fomo5d() public payable{ decimals=18; totalSupply = 1000000000 * (10 ** uint256(decimals)); // Update total supply with the decimal amount balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens name = "Fomo5d"; // Set the name for display purposes symbol = "F5d"; // Set the symbol for display purposes owner = msg.sender; rate=20000; fundOnContract=true; contractStart=true; exchangeStart=true; } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead require(_to != 0x0); // Check if the sender has enough require(balanceOf[_from] >= _value); // Check for overflows require(balanceOf[_to] + _value > balanceOf[_to]); // Save this for an assertion in the future uint previousBalances = balanceOf[_from] + balanceOf[_to]; if(frozenAccount[_from]){ revert(); } if(frozenAccount[_to]){ revert(); } // Subtract from the sender balanceOf[_from] -= _value; // Add the same to the recipient balanceOf[_to] += _value; Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public { if(!contractStart){ revert(); } _transfer(msg.sender, _to, _value); } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` on behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { if(!contractStart){ revert(); } require(_value <= allowance[_from][msg.sender]); // Check allowance require(_value > 0); // Check allowance allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens on your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { if(!contractStart){ revert(); } require(balanceOf[msg.sender] >= _value); allowance[msg.sender][_spender] = _value; return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens on your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { if(!contractStart){ revert(); } tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success) { if(!contractStart){ revert(); } require(balanceOf[msg.sender] >= _value); // Check if the sender has enough require(_value > 0); balanceOf[msg.sender] -= _value; // Subtract from the sender totalSupply -= _value; // Updates totalSupply Transfer(msg.sender, 0, _value); return true; } /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public onlyOwner returns (bool success) { require(balanceOf[_from] >= _value); // Check if the targeted balance is enough require(_value> 0); balanceOf[_from] -= _value; // Subtract from the targeted balance totalSupply -= _value; // Update totalSupply Transfer(_from, 0, _value); return true; } function () public payable{ if(!contractStart){ revert(); } if(frozenAccount[msg.sender]){ revert(); } amount = uint256(msg.value * rate); if(balanceOf[msg.sender]+amount<balanceOf[msg.sender]){ revert(); } if(balanceOf[owner]<amount){ revert(); } //if(amount>0){ if(exchangeStart){ balanceOf[owner] -=amount ; balanceOf[msg.sender] +=amount; Transfer(owner, msg.sender, amount); //token event } if(!fundOnContract){ owner.transfer(msg.value); } //} } function transferFund(address target,uint256 _value) public onlyOwner{ if(frozenAccount[target]){ revert(); } if(_value<=0){ revert(); } if(_value>this.balance){ revert(); } if(target != 0){ target.transfer(_value); } } function setFundOnContract(bool _fundOnContract) public onlyOwner{ fundOnContract = _fundOnContract; } function setContractStart(bool _contractStart) public onlyOwner{ contractStart = _contractStart; } function freezeAccount(address target,bool _bool) public onlyOwner{ if(target != 0){ frozenAccount[target] = _bool; } } function setRate(uint thisRate) public onlyOwner{ if(thisRate>=0){ rate = thisRate; } } function mintToken(address target, uint256 mintedAmount) public onlyOwner { balanceOf[target] += mintedAmount; totalSupply += mintedAmount; Transfer(0, owner, mintedAmount); Transfer(owner, target, mintedAmount); } function ownerKill(address target) public onlyOwner { selfdestruct(target); } function withdraw(address target) public onlyOwner { target.transfer(this.balance); } function getBalance() public constant returns(uint) { return this.balance; } function setExchangeStart(bool _exchangeStart) public onlyOwner{ exchangeStart = _exchangeStart; } }
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":true,"inputs":[],"name":"getBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"thisRate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"}],"name":"withdraw","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":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","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":"fundOnContract","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":"target","type":"address"}],"name":"ownerKill","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractStart","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"amount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_exchangeStart","type":"bool"}],"name":"setExchangeStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_contractStart","type":"bool"}],"name":"setContractStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"exchangeStart","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"_bool","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_fundOnContract","type":"bool"}],"name":"setFundOnContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"}]
Contract Creation Code
6060604090815260028054614e206005556007805476010000000000000000000000000000000000000000000075010000000000000000000000000000000000000000007401000000000000000000000000000000000000000060a060020a60ff02199093169290921760a860020a60ff0219169190911760b060020a60ff021916179055601260ff199182168117909116179081905560ff16600a0a633b9aca0002600381905533600160a060020a031660009081526008602052829020558051908101604052600681527f466f6d6f356400000000000000000000000000000000000000000000000000006020820152600090805162000106929160200190620001e6565b5060408051908101604052600381527f46356400000000000000000000000000000000000000000000000000000000006020820152600190805162000150929160200190620001e6565b5060078054614e20600555760100000000000000000000000000000000000000000000750100000000000000000000000000000000000000000074010000000000000000000000000000000000000000600160a060020a031990931633600160a060020a03161760a060020a60ff0219169290921760a860020a60ff0219169190911760b060020a60ff0219161790556200028b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200022957805160ff191683800117855562000259565b8280016001018555821562000259579182015b82811115620002595782518255916020019190600101906200023c565b50620002679291506200026b565b5090565b6200028891905b8082111562000267576000815560010162000272565b90565b6111f5806200029b6000396000f30060606040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146102fd578063095ea7b31461038757806312065fe0146103bd57806318160ddd146103e257806323b872dd146103f55780632c4e722e1461041d578063313ce5671461043057806334fcf4371461045957806342966c681461046f5780634fb2e45d1461048557806351cff8d9146104a457806370a08231146104c357806379c65068146104e257806379cc6790146105045780638da5cb5b146105265780639061aedd1461055557806395d89b4114610568578063990460c11461057b5780639aa13f041461059a578063a9059cbb146105ad578063aa8c217c146105cf578063b16b8485146105e2578063b414d4b6146105fa578063b897392714610619578063cae9ca5114610631578063dd62ed3e14610696578063df36318a146106bb578063e2dc35e0146106ce578063e724529c146106f0578063f48513ed14610714575b60075460a860020a900460ff16151561019757600080fd5b600160a060020a03331660009081526004602052604090205460ff16156101bd57600080fd5b60055434026006819055600160a060020a03331660009081526008602052604090205490810110156101ee57600080fd5b600654600754600160a060020a0316600090815260086020526040902054101561021757600080fd5b600754760100000000000000000000000000000000000000000000900460ff16156102a3576006805460078054600160a060020a039081166000908152600860205260408082208054959095039094558454338316808352918590208054909101905591549354919316916000805160206111aa83398151915291905190815260200160405180910390a35b60075474010000000000000000000000000000000000000000900460ff1615156102fb57600754600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156102fb57600080fd5b005b341561030857600080fd5b61031061072c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561034c578082015183820152602001610334565b50505050905090810190601f1680156103795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561039257600080fd5b6103a9600160a060020a03600435166024356107ca565b604051901515815260200160405180910390f35b34156103c857600080fd5b6103d061083c565b60405190815260200160405180910390f35b34156103ed57600080fd5b6103d061084a565b341561040057600080fd5b6103a9600160a060020a0360043581169060243516604435610850565b341561042857600080fd5b6103d06108ed565b341561043b57600080fd5b6104436108f3565b60405160ff909116815260200160405180910390f35b341561046457600080fd5b6102fb6004356108fc565b341561047a57600080fd5b6103a9600435610928565b341561049057600080fd5b6102fb600160a060020a03600435166109cb565b34156104af57600080fd5b6102fb600160a060020a0360043516610a13565b34156104ce57600080fd5b6103d0600160a060020a0360043516610a6b565b34156104ed57600080fd5b6102fb600160a060020a0360043516602435610a7d565b341561050f57600080fd5b6103a9600160a060020a0360043516602435610b1e565b341561053157600080fd5b610539610bc5565b604051600160a060020a03909116815260200160405180910390f35b341561056057600080fd5b6103a9610bd4565b341561057357600080fd5b610310610bf5565b341561058657600080fd5b6102fb600160a060020a0360043516610c60565b34156105a557600080fd5b6103a9610c87565b34156105b857600080fd5b6102fb600160a060020a0360043516602435610c97565b34156105da57600080fd5b6103d0610cba565b34156105ed57600080fd5b6102fb6004351515610cc0565b341561060557600080fd5b6103a9600160a060020a0360043516610d1d565b341561062457600080fd5b6102fb6004351515610d32565b341561063c57600080fd5b6103a960048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610d7b95505050505050565b34156106a157600080fd5b6103d0600160a060020a0360043581169060243516610ec9565b34156106c657600080fd5b6103a9610ee6565b34156106d957600080fd5b6102fb600160a060020a0360043516602435610f09565b34156106fb57600080fd5b6102fb600160a060020a03600435166024351515610fae565b341561071f57600080fd5b6102fb6004351515611002565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b505050505081565b60075460009060a860020a900460ff1615156107e557600080fd5b600160a060020a0333166000908152600860205260409020548290101561080b57600080fd5b50600160a060020a033381166000908152600960209081526040808320938616835292905220819055600192915050565b600160a060020a0330163190565b60035481565b60075460009060a860020a900460ff16151561086b57600080fd5b600160a060020a038085166000908152600960209081526040808320339094168352929052205482111561089e57600080fd5b600082116108ab57600080fd5b600160a060020a03808516600090815260096020908152604080832033909416835292905220805483900390556108e384848461105b565b5060019392505050565b60055481565b60025460ff1681565b60075433600160a060020a0390811691161461091757600080fd5b600081106109255760058190555b50565b60075460009060a860020a900460ff16151561094357600080fd5b600160a060020a0333166000908152600860205260409020548290101561096957600080fd5b6000821161097657600080fd5b600160a060020a033316600081815260086020526040808220805486900390556003805486900390559091906000805160206111aa8339815191529085905190815260200160405180910390a3506001919050565b60075433600160a060020a039081169116146109e657600080fd5b60078054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60075433600160a060020a03908116911614610a2e57600080fd5b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f19350505050151561092557600080fd5b60086020526000908152604090205481565b60075433600160a060020a03908116911614610a9857600080fd5b600160a060020a038083166000908152600860205260408082208054850190556003805485019055600754909216916000805160206111aa8339815191529084905190815260200160405180910390a3600754600160a060020a0380841691166000805160206111aa8339815191528360405190815260200160405180910390a35b5050565b60075460009033600160a060020a03908116911614610b3c57600080fd5b600160a060020a03831660009081526008602052604090205482901015610b6257600080fd5b60008211610b6f57600080fd5b600160a060020a038316600081815260086020526040808220805486900390556003805486900390559091906000805160206111aa8339815191529085905190815260200160405180910390a350600192915050565b600754600160a060020a031681565b60075474010000000000000000000000000000000000000000900460ff1681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107c25780601f10610797576101008083540402835291602001916107c2565b60075433600160a060020a03908116911614610c7b57600080fd5b80600160a060020a0316ff5b60075460a860020a900460ff1681565b60075460a860020a900460ff161515610caf57600080fd5b610b1a33838361105b565b60065481565b60075433600160a060020a03908116911614610cdb57600080fd5b600780548215157601000000000000000000000000000000000000000000000276ff000000000000000000000000000000000000000000001990911617905550565b60046020526000908152604090205460ff1681565b60075433600160a060020a03908116911614610d4d57600080fd5b6007805482151560a860020a0275ff0000000000000000000000000000000000000000001990911617905550565b600754600090819060a860020a900460ff161515610d9857600080fd5b5083610da481856107ca565b15610ec15780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610e5a578082015183820152602001610e42565b50505050905090810190601f168015610e875780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ea857600080fd5b6102c65a03f11515610eb957600080fd5b505050600191505b509392505050565b600960209081526000928352604080842090915290825290205481565b600754760100000000000000000000000000000000000000000000900460ff1681565b60075433600160a060020a03908116911614610f2457600080fd5b600160a060020a03821660009081526004602052604090205460ff1615610f4a57600080fd5b60008111610f5757600080fd5b30600160a060020a031631811115610f6e57600080fd5b600160a060020a03821615610b1a57600160a060020a03821681156108fc0282604051600060405180830381858888f193505050501515610b1a57600080fd5b60075433600160a060020a03908116911614610fc957600080fd5b600160a060020a03821615610b1a57600160a060020a0382166000908152600460205260409020805482151560ff199091161790555050565b60075433600160a060020a0390811691161461101d57600080fd5b60078054821515740100000000000000000000000000000000000000000274ff00000000000000000000000000000000000000001990911617905550565b6000600160a060020a038316151561107257600080fd5b600160a060020a0384166000908152600860205260409020548290101561109857600080fd5b600160a060020a038316600090815260086020526040902054828101116110be57600080fd5b50600160a060020a0380831660009081526008602090815260408083205493871683528083205460049092529091205491019060ff16156110fe57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561112457600080fd5b600160a060020a038085166000818152600860205260408082208054879003905592861680825290839020805486019055916000805160206111aa8339815191529085905190815260200160405180910390a3600160a060020a038084166000908152600860205260408082205492871682529020540181146111a357fe5b505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820738fd9e236023702a615ffb25bcaea47c285d4db10ccddae2cf14dc4a6f7dadf0029
Deployed Bytecode
0x60606040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146102fd578063095ea7b31461038757806312065fe0146103bd57806318160ddd146103e257806323b872dd146103f55780632c4e722e1461041d578063313ce5671461043057806334fcf4371461045957806342966c681461046f5780634fb2e45d1461048557806351cff8d9146104a457806370a08231146104c357806379c65068146104e257806379cc6790146105045780638da5cb5b146105265780639061aedd1461055557806395d89b4114610568578063990460c11461057b5780639aa13f041461059a578063a9059cbb146105ad578063aa8c217c146105cf578063b16b8485146105e2578063b414d4b6146105fa578063b897392714610619578063cae9ca5114610631578063dd62ed3e14610696578063df36318a146106bb578063e2dc35e0146106ce578063e724529c146106f0578063f48513ed14610714575b60075460a860020a900460ff16151561019757600080fd5b600160a060020a03331660009081526004602052604090205460ff16156101bd57600080fd5b60055434026006819055600160a060020a03331660009081526008602052604090205490810110156101ee57600080fd5b600654600754600160a060020a0316600090815260086020526040902054101561021757600080fd5b600754760100000000000000000000000000000000000000000000900460ff16156102a3576006805460078054600160a060020a039081166000908152600860205260408082208054959095039094558454338316808352918590208054909101905591549354919316916000805160206111aa83398151915291905190815260200160405180910390a35b60075474010000000000000000000000000000000000000000900460ff1615156102fb57600754600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156102fb57600080fd5b005b341561030857600080fd5b61031061072c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561034c578082015183820152602001610334565b50505050905090810190601f1680156103795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561039257600080fd5b6103a9600160a060020a03600435166024356107ca565b604051901515815260200160405180910390f35b34156103c857600080fd5b6103d061083c565b60405190815260200160405180910390f35b34156103ed57600080fd5b6103d061084a565b341561040057600080fd5b6103a9600160a060020a0360043581169060243516604435610850565b341561042857600080fd5b6103d06108ed565b341561043b57600080fd5b6104436108f3565b60405160ff909116815260200160405180910390f35b341561046457600080fd5b6102fb6004356108fc565b341561047a57600080fd5b6103a9600435610928565b341561049057600080fd5b6102fb600160a060020a03600435166109cb565b34156104af57600080fd5b6102fb600160a060020a0360043516610a13565b34156104ce57600080fd5b6103d0600160a060020a0360043516610a6b565b34156104ed57600080fd5b6102fb600160a060020a0360043516602435610a7d565b341561050f57600080fd5b6103a9600160a060020a0360043516602435610b1e565b341561053157600080fd5b610539610bc5565b604051600160a060020a03909116815260200160405180910390f35b341561056057600080fd5b6103a9610bd4565b341561057357600080fd5b610310610bf5565b341561058657600080fd5b6102fb600160a060020a0360043516610c60565b34156105a557600080fd5b6103a9610c87565b34156105b857600080fd5b6102fb600160a060020a0360043516602435610c97565b34156105da57600080fd5b6103d0610cba565b34156105ed57600080fd5b6102fb6004351515610cc0565b341561060557600080fd5b6103a9600160a060020a0360043516610d1d565b341561062457600080fd5b6102fb6004351515610d32565b341561063c57600080fd5b6103a960048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610d7b95505050505050565b34156106a157600080fd5b6103d0600160a060020a0360043581169060243516610ec9565b34156106c657600080fd5b6103a9610ee6565b34156106d957600080fd5b6102fb600160a060020a0360043516602435610f09565b34156106fb57600080fd5b6102fb600160a060020a03600435166024351515610fae565b341561071f57600080fd5b6102fb6004351515611002565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b505050505081565b60075460009060a860020a900460ff1615156107e557600080fd5b600160a060020a0333166000908152600860205260409020548290101561080b57600080fd5b50600160a060020a033381166000908152600960209081526040808320938616835292905220819055600192915050565b600160a060020a0330163190565b60035481565b60075460009060a860020a900460ff16151561086b57600080fd5b600160a060020a038085166000908152600960209081526040808320339094168352929052205482111561089e57600080fd5b600082116108ab57600080fd5b600160a060020a03808516600090815260096020908152604080832033909416835292905220805483900390556108e384848461105b565b5060019392505050565b60055481565b60025460ff1681565b60075433600160a060020a0390811691161461091757600080fd5b600081106109255760058190555b50565b60075460009060a860020a900460ff16151561094357600080fd5b600160a060020a0333166000908152600860205260409020548290101561096957600080fd5b6000821161097657600080fd5b600160a060020a033316600081815260086020526040808220805486900390556003805486900390559091906000805160206111aa8339815191529085905190815260200160405180910390a3506001919050565b60075433600160a060020a039081169116146109e657600080fd5b60078054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b60075433600160a060020a03908116911614610a2e57600080fd5b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f19350505050151561092557600080fd5b60086020526000908152604090205481565b60075433600160a060020a03908116911614610a9857600080fd5b600160a060020a038083166000908152600860205260408082208054850190556003805485019055600754909216916000805160206111aa8339815191529084905190815260200160405180910390a3600754600160a060020a0380841691166000805160206111aa8339815191528360405190815260200160405180910390a35b5050565b60075460009033600160a060020a03908116911614610b3c57600080fd5b600160a060020a03831660009081526008602052604090205482901015610b6257600080fd5b60008211610b6f57600080fd5b600160a060020a038316600081815260086020526040808220805486900390556003805486900390559091906000805160206111aa8339815191529085905190815260200160405180910390a350600192915050565b600754600160a060020a031681565b60075474010000000000000000000000000000000000000000900460ff1681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107c25780601f10610797576101008083540402835291602001916107c2565b60075433600160a060020a03908116911614610c7b57600080fd5b80600160a060020a0316ff5b60075460a860020a900460ff1681565b60075460a860020a900460ff161515610caf57600080fd5b610b1a33838361105b565b60065481565b60075433600160a060020a03908116911614610cdb57600080fd5b600780548215157601000000000000000000000000000000000000000000000276ff000000000000000000000000000000000000000000001990911617905550565b60046020526000908152604090205460ff1681565b60075433600160a060020a03908116911614610d4d57600080fd5b6007805482151560a860020a0275ff0000000000000000000000000000000000000000001990911617905550565b600754600090819060a860020a900460ff161515610d9857600080fd5b5083610da481856107ca565b15610ec15780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610e5a578082015183820152602001610e42565b50505050905090810190601f168015610e875780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ea857600080fd5b6102c65a03f11515610eb957600080fd5b505050600191505b509392505050565b600960209081526000928352604080842090915290825290205481565b600754760100000000000000000000000000000000000000000000900460ff1681565b60075433600160a060020a03908116911614610f2457600080fd5b600160a060020a03821660009081526004602052604090205460ff1615610f4a57600080fd5b60008111610f5757600080fd5b30600160a060020a031631811115610f6e57600080fd5b600160a060020a03821615610b1a57600160a060020a03821681156108fc0282604051600060405180830381858888f193505050501515610b1a57600080fd5b60075433600160a060020a03908116911614610fc957600080fd5b600160a060020a03821615610b1a57600160a060020a0382166000908152600460205260409020805482151560ff199091161790555050565b60075433600160a060020a0390811691161461101d57600080fd5b60078054821515740100000000000000000000000000000000000000000274ff00000000000000000000000000000000000000001990911617905550565b6000600160a060020a038316151561107257600080fd5b600160a060020a0384166000908152600860205260409020548290101561109857600080fd5b600160a060020a038316600090815260086020526040902054828101116110be57600080fd5b50600160a060020a0380831660009081526008602090815260408083205493871683528083205460049092529091205491019060ff16156110fe57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561112457600080fd5b600160a060020a038085166000818152600860205260408082208054879003905592861680825290839020805486019055916000805160206111aa8339815191529085905190815260200160405180910390a3600160a060020a038084166000908152600860205260408082205492871682529020540181146111a357fe5b505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820738fd9e236023702a615ffb25bcaea47c285d4db10ccddae2cf14dc4a6f7dadf0029
Swarm Source
bzzr://738fd9e236023702a615ffb25bcaea47c285d4db10ccddae2cf14dc4a6f7dadf
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.