ERC-20
Overview
Max Total Supply
1,000,000,000 Pony
Holders
328
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,797.138164 PonyValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PonyToken
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-08-30 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { 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; } } // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // ---------------------------------------------------------------------------- contract ERC20Interface { function totalSupply() public constant returns (uint); function balanceOf(address tokenOwner) public constant returns (uint balance); function allowance(address tokenOwner, address spender) public constant returns (uint remaining); function transfer(address to, uint tokens) public returns (bool success); function approve(address spender, uint tokens) public returns (bool success); function transferFrom(address from, address to, uint tokens) public returns (bool success); event Transfer(address indexed from, address indexed to, uint tokens); event Approval(address indexed tokenOwner, address indexed spender, uint tokens); } // ---------------------------------------------------------------------------- // Contract function to receive approval and execute function in one call // // Borrowed from MiniMeToken // ---------------------------------------------------------------------------- contract ApproveAndCallFallBack { function receiveApproval(address from, uint256 tokens, address token, bytes data) public; } // ---------------------------------------------------------------------------- // Owned contract // ---------------------------------------------------------------------------- contract Owned { address public owner; address public newOwner; event OwnershipTransferred(address indexed _from, address indexed _to); function Owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address _newOwner) public onlyOwner { newOwner = _newOwner; } function acceptOwnership() public { require(msg.sender == newOwner); emit OwnershipTransferred(owner, newOwner); owner = newOwner; newOwner = address(0); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Owned { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyOwner whenNotPaused { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyOwner whenPaused { paused = false; emit Unpause(); } } // ---------------------------------------------------------------------------- // ERC20 Token, with the addition of symbol, name and decimals and an // initial fixed supply // ---------------------------------------------------------------------------- contract PonyToken is ERC20Interface, Pausable { using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint public _totalSupply; uint public _currentSupply; mapping(address => bool) _protect; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; event Burn(address indexed burner, uint256 value); /** ------------------------------------------------------------------------ * Constructor * ------------------------------------------------------------------------ */ function PonyToken() public { symbol = "Pony"; name = "Platform of Open Nodes Integrated"; decimals = 18; _totalSupply = 1000000000 * 10**uint256(decimals); emit Transfer(address(0), owner, _totalSupply); } // check user in protect modifier whenNotInProtect(){ require(_protect[msg.sender] == false); _; } // protect account function accountProtect(address _account) public onlyOwner{ require(_account != 0); _protect[_account] = true; } // unprotect account function accountUnProtect(address _account) public onlyOwner{ require(_account != 0); _protect[_account] = false; } /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public whenNotInProtect{ _burn(msg.sender, _value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param _account The account whose tokens will be burnt. * @param _amount The amount that will be burnt. */ function _burn(address _account, uint256 _amount) internal { require(_account != 0); require(_amount <= balances[_account]); require(_totalSupply > _amount); _totalSupply = _totalSupply.sub(_amount); balances[_account] = balances[_account].sub(_amount); emit Transfer(_account, address(0), _amount); emit Burn(_account, _amount); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param _from address The address which you want to send tokens from * @param _value uint256 The amount of token to be burned */ function burnFrom(address _from, uint256 _value) public { _burnFrom(_from, _value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal _burn function. * @param _account The account whose tokens will be burnt. * @param _amount The amount that will be burnt. */ function _burnFrom(address _account, uint256 _amount) internal { require(_amount <= allowed[_account][msg.sender]); allowed[_account][msg.sender] = allowed[_account][msg.sender].sub(_amount); _burn(_account, _amount); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply; } // ------------------------------------------------------------------------ // Current supply // ------------------------------------------------------------------------ function currentSupply() public constant returns (uint) { return _currentSupply; } // ------------------------------------------------------------------------ // Get the token balance for account `tokenOwner` // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant returns (uint balance) { return balances[tokenOwner]; } // ------------------------------------------------------------------------ // Transfer the balance from token owner's account to `to` account // - Owner's account must have sufficient balance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transfer(address to, uint tokens) public whenNotPaused whenNotInProtect returns (bool success) { balances[msg.sender] = balances[msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(msg.sender, to, tokens); return true; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account // // recommends that there are no checks for the approval double-spend attack // as this should be implemented in user interfaces // ------------------------------------------------------------------------ function approve(address spender, uint tokens) public whenNotPaused whenNotInProtect returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } // ------------------------------------------------------------------------ // Transfer `tokens` from the `from` account to the `to` account // // The calling account must already have sufficient tokens approve(...)-d // for spending from the `from` account and // - From account must have sufficient balance to transfer // - Spender must have sufficient allowance to transfer // - 0 value transfers are allowed // ------------------------------------------------------------------------ function transferFrom(address from, address to, uint tokens) public whenNotPaused returns (bool success) { balances[from] = balances[from].sub(tokens); allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens); balances[to] = balances[to].add(tokens); emit Transfer(from, to, tokens); return true; } // ------------------------------------------------------------------------ // Returns the amount of tokens approved by the owner that can be // transferred to the spender's account // ------------------------------------------------------------------------ function allowance(address tokenOwner, address spender) public constant returns (uint remaining) { return allowed[tokenOwner][spender]; } // ------------------------------------------------------------------------ // Token owner can approve for `spender` to transferFrom(...) `tokens` // from the token owner's account. The `spender` contract function // `receiveApproval(...)` is then executed // ------------------------------------------------------------------------ function approveAndCall(address spender, uint tokens, bytes data) public whenNotPaused returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public payable { revert(); } // @dev increase GDB's current supply function increaseSupply (uint256 _value, address _to) onlyOwner whenNotPaused external { require(_value + _currentSupply < _totalSupply); _currentSupply = _currentSupply.add(_value); balances[_to] = balances[_to].add(_value); emit Transfer(address(0x0), _to, _value); } /** * Transfer `tokens` from the `msg.sender` account to the `_receivers` accounts */ function batchTransfer(address[] _receivers, uint256 _value) public whenNotPaused whenNotInProtect returns (uint256) { uint cnt = _receivers.length; uint256 amount = uint256(cnt) .mul(_value); require(cnt > 0 && cnt <= 20); require(_value > 0 && balances[msg.sender] >= amount); require(amount >= _value); balances[msg.sender] = balances[msg.sender].sub(amount); for (uint i = 0; i < cnt; i++) { balances[_receivers[i]] = balances[_receivers[i]].add(_value); } emit Transfer(msg.sender, address(0), amount); return amount; } } contract TokenTimelock { ERC20Interface public token; // beneficiary of tokens after they are released address public beneficiary; // timestamp when token release is enabled uint256 public releaseTime; constructor(ERC20Interface _token, address _beneficiary, uint256 _releaseTime) public { // solium-disable-next-line security/no-block-members require(_releaseTime > block.timestamp); token = _token; beneficiary = _beneficiary; releaseTime = _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public { // solium-disable-next-line security/no-block-members require(block.timestamp >= releaseTime); uint256 amount = token.balanceOf(address(this)); require(amount > 0); token.transfer(beneficiary, amount); } }
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":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"},{"name":"_to","type":"address"}],"name":"increaseSupply","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":"tokens","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":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"accountProtect","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentSupply","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":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_receivers","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"batchTransfer","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_currentSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"accountUnProtect","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040526001805460a060020a60ff02191690553480156200002157600080fd5b5060008054600160a060020a031916331790556040805180820190915260048082527f506f6e790000000000000000000000000000000000000000000000000000000060209092019182526200007a9160029162000156565b506040805160608101825260218082527f506c6174666f726d206f66204f70656e204e6f64657320496e74656772617465602083019081527f64000000000000000000000000000000000000000000000000000000000000009290930191909152620000e99160039162000156565b506004805460ff191660121790819055633b9aca0060ff91909116600a0a026005819055600080546040805193845251600160a060020a03909116927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a3620001fb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019957805160ff1916838001178555620001c9565b82800160010185558215620001c9579182015b82811115620001c9578251825591602001919060010190620001ac565b50620001d7929150620001db565b5090565b620001f891905b80821115620001d75760008155600101620001e2565b90565b611216806200020b6000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e2578063124fc7e01461021a57806318160ddd1461024057806323b872dd14610267578063313ce567146102915780633eaaf86b146102bc5780633f4ba83a146102d157806342966c68146102e65780635c975abb146102fe5780635fb9b8981461031357806370a0823114610334578063771282f61461035557806379ba50971461036a57806379cc67901461037f57806383f12fec146103a35780638456cb59146103fa5780638da5cb5b1461040f57806395d89b4114610440578063a4fefad614610455578063a9059cbb1461046a578063cae9ca511461048e578063d4ee1d90146104f7578063dd62ed3e1461050c578063f2fde38b14610533578063f3e1859414610554575b600080fd5b34801561016457600080fd5b5061016d610575565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610603565b604080519115158252519081900360200190f35b34801561022657600080fd5b5061023e600435600160a060020a03602435166106a2565b005b34801561024c57600080fd5b50610255610767565b60408051918252519081900360200190f35b34801561027357600080fd5b50610206600160a060020a036004358116906024351660443561076d565b34801561029d57600080fd5b506102a6610880565b6040805160ff9092168252519081900360200190f35b3480156102c857600080fd5b50610255610889565b3480156102dd57600080fd5b5061023e61088f565b3480156102f257600080fd5b5061023e600435610907565b34801561030a57600080fd5b50610206610931565b34801561031f57600080fd5b5061023e600160a060020a0360043516610941565b34801561034057600080fd5b50610255600160a060020a0360043516610991565b34801561036157600080fd5b506102556109ac565b34801561037657600080fd5b5061023e6109b2565b34801561038b57600080fd5b5061023e600160a060020a0360043516602435610a3a565b3480156103af57600080fd5b5060408051602060048035808201358381028086018501909652808552610255953695939460249493850192918291850190849080828437509497505093359450610a489350505050565b34801561040657600080fd5b5061023e610bdd565b34801561041b57600080fd5b50610424610c5a565b60408051600160a060020a039092168252519081900360200190f35b34801561044c57600080fd5b5061016d610c69565b34801561046157600080fd5b50610255610cc1565b34801561047657600080fd5b50610206600160a060020a0360043516602435610cc7565b34801561049a57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610206948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610d9c9650505050505050565b34801561050357600080fd5b50610424610f18565b34801561051857600080fd5b50610255600160a060020a0360043581169060243516610f27565b34801561053f57600080fd5b5061023e600160a060020a0360043516610f52565b34801561056057600080fd5b5061023e600160a060020a0360043516610f98565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105fb5780601f106105d0576101008083540402835291602001916105fb565b820191906000526020600020905b8154815290600101906020018083116105de57829003601f168201915b505050505081565b60015460009060a060020a900460ff161561061d57600080fd5b3360009081526007602052604090205460ff161561063a57600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600054600160a060020a031633146106b957600080fd5b60015460a060020a900460ff16156106d057600080fd5b6005546006548301106106e257600080fd5b6006546106f5908363ffffffff610fe516565b600655600160a060020a038116600090815260086020526040902054610721908363ffffffff610fe516565b600160a060020a03821660008181526008602090815260408083209490945583518681529351929391926000805160206111cb8339815191529281900390910190a35050565b60055490565b60015460009060a060020a900460ff161561078757600080fd5b600160a060020a0384166000908152600860205260409020546107b0908363ffffffff610ff216565b600160a060020a03851660009081526008602090815260408083209390935560098152828220338352905220546107ed908363ffffffff610ff216565b600160a060020a038086166000908152600960209081526040808320338452825280832094909455918616815260089091522054610831908363ffffffff610fe516565b600160a060020a0380851660008181526008602090815260409182902094909455805186815290519193928816926000805160206111cb83398151915292918290030190a35060019392505050565b60045460ff1681565b60055481565b600054600160a060020a031633146108a657600080fd5b60015460a060020a900460ff1615156108be57600080fd5b6001805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b3360009081526007602052604090205460ff161561092457600080fd5b61092e3382611004565b50565b60015460a060020a900460ff1681565b600054600160a060020a0316331461095857600080fd5b600160a060020a038116151561096d57600080fd5b600160a060020a03166000908152600760205260409020805460ff19166001179055565b600160a060020a031660009081526008602052604090205490565b60065490565b600154600160a060020a031633146109c957600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b610a44828261110f565b5050565b60015460009081908190819060a060020a900460ff1615610a6857600080fd5b3360009081526007602052604090205460ff1615610a8557600080fd5b85519250610a99838663ffffffff6111a116565b9150600083118015610aac575060148311155b1515610ab757600080fd5b600085118015610ad65750336000908152600860205260409020548211155b1515610ae157600080fd5b84821015610aee57600080fd5b33600090815260086020526040902054610b0e908363ffffffff610ff216565b3360009081526008602052604081209190915590505b82811015610bae57610b7185600860008985815181101515610b4257fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610fe516565b600860008884815181101515610b8357fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055600101610b24565b60408051838152905160009133916000805160206111cb8339815191529181900360200190a350949350505050565b600054600160a060020a03163314610bf457600080fd5b60015460a060020a900460ff1615610c0b57600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105fb5780601f106105d0576101008083540402835291602001916105fb565b60065481565b60015460009060a060020a900460ff1615610ce157600080fd5b3360009081526007602052604090205460ff1615610cfe57600080fd5b33600090815260086020526040902054610d1e908363ffffffff610ff216565b3360009081526008602052604080822092909255600160a060020a03851681522054610d50908363ffffffff610fe516565b600160a060020a0384166000818152600860209081526040918290209390935580518581529051919233926000805160206111cb8339815191529281900390910190a350600192915050565b60015460009060a060020a900460ff1615610db657600080fd5b336000818152600960209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015610ea7578181015183820152602001610e8f565b50505050905090810190601f168015610ed45780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610ef657600080fd5b505af1158015610f0a573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600054600160a060020a03163314610f6957600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610faf57600080fd5b600160a060020a0381161515610fc457600080fd5b600160a060020a03166000908152600760205260409020805460ff19169055565b8181018281101561069c57fe5b600082821115610ffe57fe5b50900390565b600160a060020a038216151561101957600080fd5b600160a060020a03821660009081526008602052604090205481111561103e57600080fd5b600554811061104c57600080fd5b60055461105f908263ffffffff610ff216565b600555600160a060020a03821660009081526008602052604090205461108b908263ffffffff610ff216565b600160a060020a0383166000818152600860209081526040808320949094558351858152935191936000805160206111cb833981519152929081900390910190a3604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a038216600090815260096020908152604080832033845290915290205481111561113f57600080fd5b600160a060020a0382166000908152600960209081526040808320338452909152902054611173908263ffffffff610ff216565b600160a060020a0383166000908152600960209081526040808320338452909152902055610a448282611004565b60008215156111b25750600061069c565b508181028183828115156111c257fe5b041461069c57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f168be0b05434c45a8b9e94d2c8dcd2eff0e93682811b3a73171c8de3a9709bc0029
Deployed Bytecode
0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e2578063124fc7e01461021a57806318160ddd1461024057806323b872dd14610267578063313ce567146102915780633eaaf86b146102bc5780633f4ba83a146102d157806342966c68146102e65780635c975abb146102fe5780635fb9b8981461031357806370a0823114610334578063771282f61461035557806379ba50971461036a57806379cc67901461037f57806383f12fec146103a35780638456cb59146103fa5780638da5cb5b1461040f57806395d89b4114610440578063a4fefad614610455578063a9059cbb1461046a578063cae9ca511461048e578063d4ee1d90146104f7578063dd62ed3e1461050c578063f2fde38b14610533578063f3e1859414610554575b600080fd5b34801561016457600080fd5b5061016d610575565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610603565b604080519115158252519081900360200190f35b34801561022657600080fd5b5061023e600435600160a060020a03602435166106a2565b005b34801561024c57600080fd5b50610255610767565b60408051918252519081900360200190f35b34801561027357600080fd5b50610206600160a060020a036004358116906024351660443561076d565b34801561029d57600080fd5b506102a6610880565b6040805160ff9092168252519081900360200190f35b3480156102c857600080fd5b50610255610889565b3480156102dd57600080fd5b5061023e61088f565b3480156102f257600080fd5b5061023e600435610907565b34801561030a57600080fd5b50610206610931565b34801561031f57600080fd5b5061023e600160a060020a0360043516610941565b34801561034057600080fd5b50610255600160a060020a0360043516610991565b34801561036157600080fd5b506102556109ac565b34801561037657600080fd5b5061023e6109b2565b34801561038b57600080fd5b5061023e600160a060020a0360043516602435610a3a565b3480156103af57600080fd5b5060408051602060048035808201358381028086018501909652808552610255953695939460249493850192918291850190849080828437509497505093359450610a489350505050565b34801561040657600080fd5b5061023e610bdd565b34801561041b57600080fd5b50610424610c5a565b60408051600160a060020a039092168252519081900360200190f35b34801561044c57600080fd5b5061016d610c69565b34801561046157600080fd5b50610255610cc1565b34801561047657600080fd5b50610206600160a060020a0360043516602435610cc7565b34801561049a57600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610206948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610d9c9650505050505050565b34801561050357600080fd5b50610424610f18565b34801561051857600080fd5b50610255600160a060020a0360043581169060243516610f27565b34801561053f57600080fd5b5061023e600160a060020a0360043516610f52565b34801561056057600080fd5b5061023e600160a060020a0360043516610f98565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105fb5780601f106105d0576101008083540402835291602001916105fb565b820191906000526020600020905b8154815290600101906020018083116105de57829003601f168201915b505050505081565b60015460009060a060020a900460ff161561061d57600080fd5b3360009081526007602052604090205460ff161561063a57600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600054600160a060020a031633146106b957600080fd5b60015460a060020a900460ff16156106d057600080fd5b6005546006548301106106e257600080fd5b6006546106f5908363ffffffff610fe516565b600655600160a060020a038116600090815260086020526040902054610721908363ffffffff610fe516565b600160a060020a03821660008181526008602090815260408083209490945583518681529351929391926000805160206111cb8339815191529281900390910190a35050565b60055490565b60015460009060a060020a900460ff161561078757600080fd5b600160a060020a0384166000908152600860205260409020546107b0908363ffffffff610ff216565b600160a060020a03851660009081526008602090815260408083209390935560098152828220338352905220546107ed908363ffffffff610ff216565b600160a060020a038086166000908152600960209081526040808320338452825280832094909455918616815260089091522054610831908363ffffffff610fe516565b600160a060020a0380851660008181526008602090815260409182902094909455805186815290519193928816926000805160206111cb83398151915292918290030190a35060019392505050565b60045460ff1681565b60055481565b600054600160a060020a031633146108a657600080fd5b60015460a060020a900460ff1615156108be57600080fd5b6001805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b3360009081526007602052604090205460ff161561092457600080fd5b61092e3382611004565b50565b60015460a060020a900460ff1681565b600054600160a060020a0316331461095857600080fd5b600160a060020a038116151561096d57600080fd5b600160a060020a03166000908152600760205260409020805460ff19166001179055565b600160a060020a031660009081526008602052604090205490565b60065490565b600154600160a060020a031633146109c957600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b610a44828261110f565b5050565b60015460009081908190819060a060020a900460ff1615610a6857600080fd5b3360009081526007602052604090205460ff1615610a8557600080fd5b85519250610a99838663ffffffff6111a116565b9150600083118015610aac575060148311155b1515610ab757600080fd5b600085118015610ad65750336000908152600860205260409020548211155b1515610ae157600080fd5b84821015610aee57600080fd5b33600090815260086020526040902054610b0e908363ffffffff610ff216565b3360009081526008602052604081209190915590505b82811015610bae57610b7185600860008985815181101515610b4257fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610fe516565b600860008884815181101515610b8357fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055600101610b24565b60408051838152905160009133916000805160206111cb8339815191529181900360200190a350949350505050565b600054600160a060020a03163314610bf457600080fd5b60015460a060020a900460ff1615610c0b57600080fd5b6001805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105fb5780601f106105d0576101008083540402835291602001916105fb565b60065481565b60015460009060a060020a900460ff1615610ce157600080fd5b3360009081526007602052604090205460ff1615610cfe57600080fd5b33600090815260086020526040902054610d1e908363ffffffff610ff216565b3360009081526008602052604080822092909255600160a060020a03851681522054610d50908363ffffffff610fe516565b600160a060020a0384166000818152600860209081526040918290209390935580518581529051919233926000805160206111cb8339815191529281900390910190a350600192915050565b60015460009060a060020a900460ff1615610db657600080fd5b336000818152600960209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a36040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018690523060448401819052608060648501908152865160848601528651600160a060020a038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b83811015610ea7578181015183820152602001610e8f565b50505050905090810190601f168015610ed45780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610ef657600080fd5b505af1158015610f0a573d6000803e3d6000fd5b506001979650505050505050565b600154600160a060020a031681565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600054600160a060020a03163314610f6957600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610faf57600080fd5b600160a060020a0381161515610fc457600080fd5b600160a060020a03166000908152600760205260409020805460ff19169055565b8181018281101561069c57fe5b600082821115610ffe57fe5b50900390565b600160a060020a038216151561101957600080fd5b600160a060020a03821660009081526008602052604090205481111561103e57600080fd5b600554811061104c57600080fd5b60055461105f908263ffffffff610ff216565b600555600160a060020a03821660009081526008602052604090205461108b908263ffffffff610ff216565b600160a060020a0383166000818152600860209081526040808320949094558351858152935191936000805160206111cb833981519152929081900390910190a3604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a038216600090815260096020908152604080832033845290915290205481111561113f57600080fd5b600160a060020a0382166000908152600960209081526040808320338452909152902054611173908263ffffffff610ff216565b600160a060020a0383166000908152600960209081526040808320338452909152902055610a448282611004565b60008215156111b25750600061069c565b508181028183828115156111c257fe5b041461069c57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f168be0b05434c45a8b9e94d2c8dcd2eff0e93682811b3a73171c8de3a9709bc0029
Swarm Source
bzzr://f168be0b05434c45a8b9e94d2c8dcd2eff0e93682811b3a73171c8de3a9709bc
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.