Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Retail
Overview
Max Total Supply
35,000,000,000 AGVC
Holders
1,890 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,415,025.267606061318660756 AGVCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AgaveCoin
Compiler Version
v0.5.2+commit.1df8f40c
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-02-18 */ pragma solidity ^0.5.2; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 _a, uint256 _b) internal pure returns (uint256) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (_a == 0) { return 0; } uint256 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 c; } /** * @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); uint256 c = _a - _b; return c; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 _a, uint256 _b) internal pure returns (uint256) { uint256 c = _a + _b; assert(c >= _a); return c; } } contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) public onlyOwner { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) public view returns (uint256); function transfer(address _to, uint256 _value) public returns (bool); function approve(address _spender, uint256 _value) public returns (bool); function transferFrom(address _from, address _to, uint256 _value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/issues/20 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) balances; mapping (address => mapping (address => uint256)) internal allowed; mapping (address => bool) public frozenAccount; event FrozenFunds(address target, bool frozen); uint256 totalSupply_; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance( address _owner, address _spender ) public view returns (uint256) { return allowed[_owner][_spender]; } function freezeAccount(address target, bool freeze) onlyOwner public { frozenAccount[target] = freeze; emit FrozenFunds(target, freeze); } /** * @dev Transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_value <= balances[msg.sender]); require(_to != address(0)); require(!frozenAccount[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); require(_to != address(0)); require(!frozenAccount[msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint256 _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint256 _subtractedValue ) public returns (bool) { uint256 oldValue = allowed[msg.sender][_spender]; if (_subtractedValue >= oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); totalSupply_ = totalSupply_.sub(value); balances[account] = balances[account].sub(value); emit Transfer(account, address(0), value); } function _burnFrom(address account, uint256 value) internal { _burn(account, value); approve(account, allowed[account][msg.sender].sub(value)); } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract ERC20Burnable is StandardToken { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The account whose tokens will be burned. * @param value uint256 The amount of token to be burned. */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } } contract AgaveCoin is Ownable, ERC20Burnable { using SafeMath for uint256; string public name = "AgaveCoin"; string public symbol = "AGVC"; uint public decimals = 18; uint public INITIAL_SUPPLY = 35000 * (10**6) * (10 ** uint256(decimals)) ; // 35 Billion /// The owner of this address: address public ICOAddress = 0xFd167447Fb1A5E10b962F9c89c857f83bfFEB5D4; /// The owner of this address: address public AgaveCoinOperations = 0x88Ea9058d99DEf4182f4b356Ad178AdCF8e5D784; uint256 ICOAddressTokens = 25550 * (10**6) * (10**uint256(decimals)); uint256 AgaveCoinOperationsTokens = 9450 * (10**6) * (10**uint256(decimals)); constructor () public { totalSupply_ = INITIAL_SUPPLY; balances[ICOAddress] = ICOAddressTokens; //Partners balances[AgaveCoinOperations] = AgaveCoinOperationsTokens; //Team and Advisers balances[msg.sender] = INITIAL_SUPPLY - ICOAddressTokens - AgaveCoinOperationsTokens; } //////////////// owner only functions below /// @notice To transfer token contract ownership /// @param _newOwner The address of the new owner of this contract function transferOwnership(address _newOwner) public onlyOwner { balances[_newOwner] = balances[owner]; balances[owner] = 0; Ownable.transferOwnership(_newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"AgaveCoinOperations","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","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":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ICOAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60c0604052600960808190527f4167617665436f696e000000000000000000000000000000000000000000000060a090815261003e9160059190610173565b506040805180820190915260048082527f4147564300000000000000000000000000000000000000000000000000000000602090920191825261008391600691610173565b5060126007556b71175249d9818853b800000060085560098054600160a060020a031990811673fd167447fb1a5e10b962f9c89c857f83bffeb5d417909155600a80549091167388ea9058d99def4182f4b356ad178adcf8e5d7841790556b528e76f359a8cc7a8e000000600b556b1e88db567fd8bbd92a000000600c5534801561010d57600080fd5b5060008054600160a060020a03191633908117825560088054600455600b8054600954600160a060020a0390811686526001602052604080872092909255600c54600a54909116865281862081905591549254938552909320910391909103905561020e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101b457805160ff19168380011785556101e1565b828001600101855582156101e1579182015b828111156101e15782518255916020019190600101906101c6565b506101ed9291506101f1565b5090565b61020b91905b808211156101ed57600081556001016101f7565b90565b610d908061021d6000396000f3fe608060405234801561001057600080fd5b5060043610610154576000357c010000000000000000000000000000000000000000000000000000000090048063715018a6116100d5578063b414d4b611610099578063b414d4b61461037b578063d2f1f189146103a1578063d73dd623146103a9578063dd62ed3e146103d5578063e724529c14610403578063f2fde38b1461043157610154565b8063715018a61461030b57806379cc6790146103135780638da5cb5b1461033f57806395d89b4114610347578063a9059cbb1461034f57610154565b80632ff2e9dc1161011c5780632ff2e9dc1461028a578063313ce5671461029257806342966c681461029a57806366188463146102b957806370a08231146102e557610154565b8063038407cb1461015957806306fdde031461017d578063095ea7b3146101fa57806318160ddd1461023a57806323b872dd14610254575b600080fd5b610161610457565b60408051600160a060020a039092168252519081900360200190f35b610185610466565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bf5781810151838201526020016101a7565b50505050905090810190601f1680156101ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102266004803603604081101561021057600080fd5b50600160a060020a0381351690602001356104f4565b604080519115158252519081900360200190f35b61024261055a565b60408051918252519081900360200190f35b6102266004803603606081101561026a57600080fd5b50600160a060020a03813581169160208101359091169060400135610560565b6102426106f4565b6102426106fa565b6102b7600480360360208110156102b057600080fd5b5035610700565b005b610226600480360360408110156102cf57600080fd5b50600160a060020a03813516906020013561070d565b610242600480360360208110156102fb57600080fd5b5035600160a060020a03166107fc565b6102b7610817565b6102b76004803603604081101561032957600080fd5b50600160a060020a038135169060200135610883565b610161610891565b6101856108a0565b6102266004803603604081101561036557600080fd5b50600160a060020a0381351690602001356108fb565b6102266004803603602081101561039157600080fd5b5035600160a060020a03166109f9565b610161610a0e565b610226600480360360408110156103bf57600080fd5b50600160a060020a038135169060200135610a1d565b610242600480360360408110156103eb57600080fd5b50600160a060020a0381358116916020013516610ab6565b6102b76004803603604081101561041957600080fd5b50600160a060020a0381351690602001351515610ae1565b6102b76004803603602081101561044757600080fd5b5035600160a060020a0316610b5c565b600a54600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b600160a060020a03831660009081526001602052604081205482111561058557600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156105b557600080fd5b600160a060020a03831615156105ca57600080fd5b3360009081526003602052604090205460ff16156105e757600080fd5b600160a060020a038416600090815260016020526040902054610610908363ffffffff610bab16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610645908363ffffffff610bbd16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610689908363ffffffff610bab16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60085481565b60075481565b61070a3382610bd3565b50565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061076157336000908152600260209081526040808320600160a060020a0388168452909152812055610796565b610771818463ffffffff610bab16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600054600160a060020a0316331461082e57600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b61088d8282610c7e565b5050565b600054600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b3360009081526001602052604081205482111561091757600080fd5b600160a060020a038316151561092c57600080fd5b3360009081526003602052604090205460ff161561094957600080fd5b33600090815260016020526040902054610969908363ffffffff610bab16565b3360009081526001602052604080822092909255600160a060020a0385168152205461099b908363ffffffff610bbd16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60036020526000908152604090205460ff1681565b600954600160a060020a031681565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a51908363ffffffff610bbd16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600054600160a060020a03163314610af857600080fd5b600160a060020a038216600081815260036020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a03163314610b7357600080fd5b60008054600160a060020a03908116825260016020526040808320548483168452818420558254909116825281205561070a81610ccc565b600082821115610bb757fe5b50900390565b600082820183811015610bcc57fe5b9392505050565b600160a060020a0382161515610be857600080fd5b600454610bfb908263ffffffff610bab16565b600455600160a060020a038216600090815260016020526040902054610c27908263ffffffff610bab16565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610c888282610bd3565b600160a060020a0382166000908152600260209081526040808320338452909152902054610cc7908390610cc2908463ffffffff610bab16565b6104f4565b505050565b600054600160a060020a03163314610ce357600080fd5b61070a81600160a060020a0381161515610cfc57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039290921691909117905556fea165627a7a7230582079423b408f13529f5fb51f219bc2dbedf46ff3419f5510e4645e7c3b60f60fff0029
Deployed Bytecode
0x608060405234801561001057600080fd5b5060043610610154576000357c010000000000000000000000000000000000000000000000000000000090048063715018a6116100d5578063b414d4b611610099578063b414d4b61461037b578063d2f1f189146103a1578063d73dd623146103a9578063dd62ed3e146103d5578063e724529c14610403578063f2fde38b1461043157610154565b8063715018a61461030b57806379cc6790146103135780638da5cb5b1461033f57806395d89b4114610347578063a9059cbb1461034f57610154565b80632ff2e9dc1161011c5780632ff2e9dc1461028a578063313ce5671461029257806342966c681461029a57806366188463146102b957806370a08231146102e557610154565b8063038407cb1461015957806306fdde031461017d578063095ea7b3146101fa57806318160ddd1461023a57806323b872dd14610254575b600080fd5b610161610457565b60408051600160a060020a039092168252519081900360200190f35b610185610466565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bf5781810151838201526020016101a7565b50505050905090810190601f1680156101ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102266004803603604081101561021057600080fd5b50600160a060020a0381351690602001356104f4565b604080519115158252519081900360200190f35b61024261055a565b60408051918252519081900360200190f35b6102266004803603606081101561026a57600080fd5b50600160a060020a03813581169160208101359091169060400135610560565b6102426106f4565b6102426106fa565b6102b7600480360360208110156102b057600080fd5b5035610700565b005b610226600480360360408110156102cf57600080fd5b50600160a060020a03813516906020013561070d565b610242600480360360208110156102fb57600080fd5b5035600160a060020a03166107fc565b6102b7610817565b6102b76004803603604081101561032957600080fd5b50600160a060020a038135169060200135610883565b610161610891565b6101856108a0565b6102266004803603604081101561036557600080fd5b50600160a060020a0381351690602001356108fb565b6102266004803603602081101561039157600080fd5b5035600160a060020a03166109f9565b610161610a0e565b610226600480360360408110156103bf57600080fd5b50600160a060020a038135169060200135610a1d565b610242600480360360408110156103eb57600080fd5b50600160a060020a0381358116916020013516610ab6565b6102b76004803603604081101561041957600080fd5b50600160a060020a0381351690602001351515610ae1565b6102b76004803603602081101561044757600080fd5b5035600160a060020a0316610b5c565b600a54600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b600160a060020a03831660009081526001602052604081205482111561058557600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156105b557600080fd5b600160a060020a03831615156105ca57600080fd5b3360009081526003602052604090205460ff16156105e757600080fd5b600160a060020a038416600090815260016020526040902054610610908363ffffffff610bab16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610645908363ffffffff610bbd16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610689908363ffffffff610bab16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60085481565b60075481565b61070a3382610bd3565b50565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061076157336000908152600260209081526040808320600160a060020a0388168452909152812055610796565b610771818463ffffffff610bab16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600054600160a060020a0316331461082e57600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b61088d8282610c7e565b5050565b600054600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104ec5780601f106104c1576101008083540402835291602001916104ec565b3360009081526001602052604081205482111561091757600080fd5b600160a060020a038316151561092c57600080fd5b3360009081526003602052604090205460ff161561094957600080fd5b33600090815260016020526040902054610969908363ffffffff610bab16565b3360009081526001602052604080822092909255600160a060020a0385168152205461099b908363ffffffff610bbd16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60036020526000908152604090205460ff1681565b600954600160a060020a031681565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a51908363ffffffff610bbd16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600054600160a060020a03163314610af857600080fd5b600160a060020a038216600081815260036020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600054600160a060020a03163314610b7357600080fd5b60008054600160a060020a03908116825260016020526040808320548483168452818420558254909116825281205561070a81610ccc565b600082821115610bb757fe5b50900390565b600082820183811015610bcc57fe5b9392505050565b600160a060020a0382161515610be857600080fd5b600454610bfb908263ffffffff610bab16565b600455600160a060020a038216600090815260016020526040902054610c27908263ffffffff610bab16565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610c888282610bd3565b600160a060020a0382166000908152600260209081526040808320338452909152902054610cc7908390610cc2908463ffffffff610bab16565b6104f4565b505050565b600054600160a060020a03163314610ce357600080fd5b61070a81600160a060020a0381161515610cfc57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039290921691909117905556fea165627a7a7230582079423b408f13529f5fb51f219bc2dbedf46ff3419f5510e4645e7c3b60f60fff0029
Swarm Source
bzzr://79423b408f13529f5fb51f219bc2dbedf46ff3419f5510e4645e7c3b60f60fff
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.