Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 44,331 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 21653769 | 420 days ago | IN | 0 ETH | 0.00058151 | ||||
| Transfer | 21650159 | 421 days ago | IN | 0 ETH | 0.00051733 | ||||
| Transfer | 21517661 | 439 days ago | IN | 0 ETH | 0.00041113 | ||||
| Transfer | 21451122 | 448 days ago | IN | 0 ETH | 0.00051323 | ||||
| Transfer | 10698531 | 2032 days ago | IN | 0 ETH | 0.00824356 | ||||
| Transfer | 10698451 | 2032 days ago | IN | 0 ETH | 0.00549571 | ||||
| Transfer | 10698424 | 2032 days ago | IN | 0 ETH | 0.005373 | ||||
| Transfer | 10531633 | 2058 days ago | IN | 0 ETH | 0.00238872 | ||||
| Transfer | 10531596 | 2058 days ago | IN | 0 ETH | 0.00238944 | ||||
| Transfer | 10419817 | 2075 days ago | IN | 0 ETH | 0.00159248 | ||||
| Transfer | 10419817 | 2075 days ago | IN | 0 ETH | 0.00159296 | ||||
| Transfer | 10418825 | 2075 days ago | IN | 0 ETH | 0.00542876 | ||||
| Transfer | 10400539 | 2078 days ago | IN | 0 ETH | 0.00123454 | ||||
| Transfer | 10366190 | 2084 days ago | IN | 0 ETH | 0.0025495 | ||||
| Transfer | 10365697 | 2084 days ago | IN | 0 ETH | 0.0025495 | ||||
| Transfer | 10364551 | 2084 days ago | IN | 0 ETH | 0.00191926 | ||||
| Transfer | 10361564 | 2084 days ago | IN | 0 ETH | 0.00187229 | ||||
| Transfer | 10361551 | 2084 days ago | IN | 0 ETH | 0.00183245 | ||||
| Transfer | 10302832 | 2093 days ago | IN | 0 ETH | 0.00159296 | ||||
| Transfer | 10205909 | 2108 days ago | IN | 0 ETH | 0.00123491 | ||||
| Transfer | 10192077 | 2110 days ago | IN | 0 ETH | 0.00095606 | ||||
| Transfer | 10192077 | 2110 days ago | IN | 0 ETH | 0.00075688 | ||||
| Transfer | 10192077 | 2110 days ago | IN | 0 ETH | 0.00067721 | ||||
| Transfer | 10185568 | 2111 days ago | IN | 0 ETH | 0.00107524 | ||||
| Transfer | 10185354 | 2112 days ago | IN | 0 ETH | 0.00107524 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AGC
Compiler Version
v0.4.21+commit.dfe3193c
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-07-02
*/
pragma solidity ^0.4.21;
interface tokenRecipient {
function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external;
}
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) onlyOwner public {
owner = newOwner;
}
}
contract TokenERC20 {
// 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;
// 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);
// This notifies clients about the amount burnt
event Burn(address indexed from, uint256 value);
/**
* Constrctor function
*
* Initializes contract with initial supply tokens to the creator of the contract
*/
function TokenERC20( uint256 initialSupply, string tokenName, string tokenSymbol ) public {
totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount
balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens
name = tokenName; // Set the name for display purposes
symbol = tokenSymbol; // Set the symbol for display purposes
}
/**
* 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];
// Subtract from the sender
balanceOf[_from] -= _value;
// Add the same to the recipient
balanceOf[_to] += _value;
emit 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 {
_transfer(msg.sender, _to, _value);
}
/**
* Transfer tokens from other address
*
* Send `_value` tokens to `_to` in 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) {
require(_value <= allowance[_from][msg.sender]); // 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 in 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) {
allowance[msg.sender][_spender] = _value;
return true;
}
/**
* Set allowance for other address and notify
*
* Allows `_spender` to spend no more than `_value` tokens in 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) {
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) {
require(balanceOf[msg.sender] >= _value); // Check if the sender has enough
balanceOf[msg.sender] -= _value; // Subtract from the sender
totalSupply -= _value; // Updates totalSupply
emit Burn(msg.sender, _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 returns (bool success) {
require(balanceOf[_from] >= _value); // Check if the targeted balance is enough
require(_value <= allowance[_from][msg.sender]); // Check allowance
balanceOf[_from] -= _value; // Subtract from the targeted balance
allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance
totalSupply -= _value; // Update totalSupply
emit Burn(_from, _value);
return true;
}
}
contract AGC is owned, TokenERC20 {
uint256 public sellPrice;
uint256 public buyPrice;
mapping (address => bool) public frozenAccount;
/* This generates a public event on the blockchain that will notify clients */
event FrozenFunds(address target, bool frozen);
/* Initializes contract with initial supply tokens to the creator of the contract */
function AGC() TokenERC20(29000000, "AdGroupCoin", "AGC") public {
}
/* Internal transfer, only can be called by this contract */
function _transfer(address _from, address _to, uint _value) internal {
require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead
require (balanceOf[_from] > _value); // Check if the sender has enough
require (balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
require(!frozenAccount[_from]); // Check if sender is frozen
require(!frozenAccount[_to]); // Check if recipient is frozen
balanceOf[_from] -= _value; // Subtract from the sender
balanceOf[_to] += _value; // Add the same to the recipient
emit Transfer(_from, _to, _value);
}
/// @notice Create `mintedAmount` tokens and send it to `target`
/// @param target Address to receive the tokens
/// @param mintedAmount the amount of tokens it will receive
function mintToken(address target, uint256 mintedAmount) onlyOwner public {
balanceOf[target] += mintedAmount;
totalSupply += mintedAmount;
emit Transfer(0, this, mintedAmount);
emit Transfer(this, target, mintedAmount);
}
/// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
/// @param target Address to be frozen
/// @param freeze either to freeze it or not
function freezeAccount(address target, bool freeze) onlyOwner public {
frozenAccount[target] = freeze;
emit FrozenFunds(target, freeze);
}
function OwnerTransfer(address _from, address _to, uint256 _value) onlyOwner public {
_transfer(_from, _to, _value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"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":"_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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"OwnerTransfer","outputs":[],"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":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":"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]Contract Creation Code
60606040526003805460ff19166012179055341561001c57600080fd5b6301ba8140604080519081016040908152600b82527f416447726f7570436f696e00000000000000000000000000000000000000000060208301528051908101604090815260038083527f414743000000000000000000000000000000000000000000000000000000000060208085019190915260008054600160a060020a03191633600160a060020a03169081178255925460ff16600a0a870260048190559281526005909152919091205560018280516100dc9291602001906100f9565b5060028180516100f09291602001906100f9565b50505050610194565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013a57805160ff1916838001178555610167565b82800160010185558215610167579182015b8281111561016757825182559160200191906001019061014c565b50610173929150610177565b5090565b61019191905b80821115610173576000815560010161017d565b90565b610c30806101a36000396000f3006060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d657806323b872dd146101fb578063313ce5671461022357806342966c681461024c5780634b7503341461026257806370a082311461027557806379c650681461029457806379cc6790146102b85780638620410b146102da5780638da5cb5b146102ed57806395d89b411461031c578063a9059cbb1461032f578063b414d4b614610351578063cae9ca5114610370578063d30796a2146103d5578063dd62ed3e146103fd578063e724529c14610422578063f2fde38b14610446575b600080fd5b341561012157600080fd5b610129610465565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016557808201518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ab57600080fd5b6101c2600160a060020a0360043516602435610503565b604051901515815260200160405180910390f35b34156101e157600080fd5b6101e9610533565b60405190815260200160405180910390f35b341561020657600080fd5b6101c2600160a060020a0360043581169060243516604435610539565b341561022e57600080fd5b6102366105b0565b60405160ff909116815260200160405180910390f35b341561025757600080fd5b6101c26004356105b9565b341561026d57600080fd5b6101e9610644565b341561028057600080fd5b6101e9600160a060020a036004351661064a565b341561029f57600080fd5b6102b6600160a060020a036004351660243561065c565b005b34156102c357600080fd5b6101c2600160a060020a0360043516602435610722565b34156102e557600080fd5b6101e96107fe565b34156102f857600080fd5b610300610804565b604051600160a060020a03909116815260200160405180910390f35b341561032757600080fd5b610129610813565b341561033a57600080fd5b6102b6600160a060020a036004351660243561087e565b341561035c57600080fd5b6101c2600160a060020a036004351661088d565b341561037b57600080fd5b6101c260048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506108a295505050505050565b34156103e057600080fd5b6102b6600160a060020a03600435811690602435166044356109d0565b341561040857600080fd5b6101e9600160a060020a03600435811690602435166109fb565b341561042d57600080fd5b6102b6600160a060020a03600435166024351515610a18565b341561045157600080fd5b6102b6600160a060020a0360043516610aa4565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fb5780601f106104d0576101008083540402835291602001916104fb565b820191906000526020600020905b8154815290600101906020018083116104de57829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a0380841660009081526006602090815260408083203390941683529290529081205482111561056e57600080fd5b600160a060020a03808516600090815260066020908152604080832033909416835292905220805483900390556105a6848484610aee565b5060019392505050565b60035460ff1681565b600160a060020a033316600090815260056020526040812054829010156105df57600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b60075481565b60056020526000908152604090205481565b60005433600160a060020a0390811691161461067757600080fd5b600160a060020a03808316600090815260056020526040808220805485019055600480548501905530909216917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a381600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600160a060020a0382166000908152600560205260408120548290101561074857600080fd5b600160a060020a038084166000908152600660209081526040808320339094168352929052205482111561077b57600080fd5b600160a060020a038084166000818152600560209081526040808320805488900390556006825280832033909516835293905282902080548590039055600480548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b60085481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fb5780601f106104d0576101008083540402835291602001916104fb565b610889338383610aee565b5050565b60096020526000908152604090205460ff1681565b6000836108af8185610503565b156109c85780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561096557808201518382015260200161094d565b50505050905090810190601f1680156109925780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15156109b357600080fd5b5af115156109c057600080fd5b505050600191505b509392505050565b60005433600160a060020a039081169116146109eb57600080fd5b6109f6838383610aee565b505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610a3357600080fd5b600160a060020a03821660009081526009602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610abf57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610b0357600080fd5b600160a060020a038316600090815260056020526040902054819011610b2857600080fd5b600160a060020a03821660009081526005602052604090205481810111610b4e57600080fd5b600160a060020a03831660009081526009602052604090205460ff1615610b7457600080fd5b600160a060020a03821660009081526009602052604090205460ff1615610b9a57600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a7230582054e90571515694ce26d35e141cf90d54c83bf3ec5497f41366fc47a3e3e380c00029
Deployed Bytecode
0x6060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d657806323b872dd146101fb578063313ce5671461022357806342966c681461024c5780634b7503341461026257806370a082311461027557806379c650681461029457806379cc6790146102b85780638620410b146102da5780638da5cb5b146102ed57806395d89b411461031c578063a9059cbb1461032f578063b414d4b614610351578063cae9ca5114610370578063d30796a2146103d5578063dd62ed3e146103fd578063e724529c14610422578063f2fde38b14610446575b600080fd5b341561012157600080fd5b610129610465565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016557808201518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ab57600080fd5b6101c2600160a060020a0360043516602435610503565b604051901515815260200160405180910390f35b34156101e157600080fd5b6101e9610533565b60405190815260200160405180910390f35b341561020657600080fd5b6101c2600160a060020a0360043581169060243516604435610539565b341561022e57600080fd5b6102366105b0565b60405160ff909116815260200160405180910390f35b341561025757600080fd5b6101c26004356105b9565b341561026d57600080fd5b6101e9610644565b341561028057600080fd5b6101e9600160a060020a036004351661064a565b341561029f57600080fd5b6102b6600160a060020a036004351660243561065c565b005b34156102c357600080fd5b6101c2600160a060020a0360043516602435610722565b34156102e557600080fd5b6101e96107fe565b34156102f857600080fd5b610300610804565b604051600160a060020a03909116815260200160405180910390f35b341561032757600080fd5b610129610813565b341561033a57600080fd5b6102b6600160a060020a036004351660243561087e565b341561035c57600080fd5b6101c2600160a060020a036004351661088d565b341561037b57600080fd5b6101c260048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506108a295505050505050565b34156103e057600080fd5b6102b6600160a060020a03600435811690602435166044356109d0565b341561040857600080fd5b6101e9600160a060020a03600435811690602435166109fb565b341561042d57600080fd5b6102b6600160a060020a03600435166024351515610a18565b341561045157600080fd5b6102b6600160a060020a0360043516610aa4565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fb5780601f106104d0576101008083540402835291602001916104fb565b820191906000526020600020905b8154815290600101906020018083116104de57829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a0380841660009081526006602090815260408083203390941683529290529081205482111561056e57600080fd5b600160a060020a03808516600090815260066020908152604080832033909416835292905220805483900390556105a6848484610aee565b5060019392505050565b60035460ff1681565b600160a060020a033316600090815260056020526040812054829010156105df57600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b60075481565b60056020526000908152604090205481565b60005433600160a060020a0390811691161461067757600080fd5b600160a060020a03808316600090815260056020526040808220805485019055600480548501905530909216917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a381600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600160a060020a0382166000908152600560205260408120548290101561074857600080fd5b600160a060020a038084166000908152600660209081526040808320339094168352929052205482111561077b57600080fd5b600160a060020a038084166000818152600560209081526040808320805488900390556006825280832033909516835293905282902080548590039055600480548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b60085481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fb5780601f106104d0576101008083540402835291602001916104fb565b610889338383610aee565b5050565b60096020526000908152604090205460ff1681565b6000836108af8185610503565b156109c85780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561096557808201518382015260200161094d565b50505050905090810190601f1680156109925780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15156109b357600080fd5b5af115156109c057600080fd5b505050600191505b509392505050565b60005433600160a060020a039081169116146109eb57600080fd5b6109f6838383610aee565b505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610a3357600080fd5b600160a060020a03821660009081526009602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610abf57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610b0357600080fd5b600160a060020a038316600090815260056020526040902054819011610b2857600080fd5b600160a060020a03821660009081526005602052604090205481810111610b4e57600080fd5b600160a060020a03831660009081526009602052604090205460ff1615610b7457600080fd5b600160a060020a03821660009081526009602052604090205460ff1615610b9a57600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a7230582054e90571515694ce26d35e141cf90d54c83bf3ec5497f41366fc47a3e3e380c00029
Swarm Source
bzzr://54e90571515694ce26d35e141cf90d54c83bf3ec5497f41366fc47a3e3e380c0
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.