Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 21152003 | 474 days ago | IN | 0 ETH | 0.00036982 | ||||
| Transfer | 20966196 | 500 days ago | IN | 0 ETH | 0.00118094 | ||||
| Transfer | 20957148 | 502 days ago | IN | 0 ETH | 0.00066644 | ||||
| Transfer | 17785636 | 946 days ago | IN | 0 ETH | 0.00252504 | ||||
| Transfer | 17779876 | 946 days ago | IN | 0 ETH | 0.00134429 | ||||
| Transfer | 17779860 | 946 days ago | IN | 0 ETH | 0.00146467 | ||||
| Transfer | 17779841 | 946 days ago | IN | 0 ETH | 0.00126866 | ||||
| Transfer | 17250815 | 1021 days ago | IN | 0 ETH | 0.00167405 | ||||
| Transfer | 17249431 | 1021 days ago | IN | 0 ETH | 0.00164489 | ||||
| Transfer | 17108166 | 1041 days ago | IN | 0 ETH | 0.00164656 | ||||
| Transfer | 16851075 | 1077 days ago | IN | 0 ETH | 0.00123942 | ||||
| Transfer | 16796527 | 1085 days ago | IN | 0 ETH | 0.00100582 | ||||
| Transfer | 16796511 | 1085 days ago | IN | 0 ETH | 0.00088022 | ||||
| Transfer | 16796484 | 1085 days ago | IN | 0 ETH | 0.00095548 | ||||
| Transfer | 16796463 | 1085 days ago | IN | 0 ETH | 0.0009467 | ||||
| Transfer | 16796450 | 1085 days ago | IN | 0 ETH | 0.00075385 | ||||
| Transfer | 16792451 | 1085 days ago | IN | 0 ETH | 0.00211842 | ||||
| Transfer | 15602616 | 1252 days ago | IN | 0 ETH | 0.0002064 | ||||
| Transfer | 14445354 | 1436 days ago | IN | 0 ETH | 0.00467653 | ||||
| Transfer | 13710732 | 1550 days ago | IN | 0 ETH | 0.01022716 | ||||
| Transfer | 13303066 | 1614 days ago | IN | 0 ETH | 0.00442365 | ||||
| Transfer | 11909728 | 1830 days ago | IN | 0 ETH | 0.00998156 | ||||
| Set Price | 9580188 | 2190 days ago | IN | 0 ETH | 0.00004235 | ||||
| Transfer | 9580123 | 2190 days ago | IN | 0 ETH | 0.00005514 | ||||
| Transfer Ownersh... | 8555919 | 2356 days ago | IN | 0 ETH | 0.00028525 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
IBC
Compiler Version
v0.5.11+commit.c082d0b4
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-09-15
*/
pragma solidity >=0.4.22 <0.6.0;
contract owned {
address payable public owner;
constructor() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address payable newOwner) onlyOwner public {
owner = newOwner;
}
}
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external; }
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 generates a public event on the blockchain that will notify clients
event Approval(address indexed _owner, address indexed _spender, 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
*/
constructor(
uint256 initialSupply,
string memory tokenName,
string memory 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 != address(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 returns (bool success) {
_transfer(msg.sender, _to, _value);
return true;
}
/**
* 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;
emit Approval(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 memory _extraData)
public
returns (bool success) {
tokenRecipient spender = tokenRecipient(_spender);
if (approve(_spender, _value)) {
spender.receiveApproval(msg.sender, _value, address(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 IBC is owned, TokenERC20 {
uint256 public buyPrice;
bool public isContractFrozen;
mapping (address => bool) public frozenAccount;
/* This generates a public event on the blockchain that will notify clients */
event FrozenFunds(address target, bool frozen);
event FrozenContract(bool frozen);
/* Initializes contract with initial supply tokens to the creator of the contract */
constructor(
uint256 initialSupply,
string memory tokenName,
string memory tokenSymbol
) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}
/* Internal transfer, only can be called by this contract */
function _transfer(address _from, address _to, uint _value) internal {
require (!isContractFrozen);
require (_to != address(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(address(0), address(this), mintedAmount);
emit Transfer(address(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 freezeContract(bool freeze) onlyOwner public {
isContractFrozen = freeze;
emit FrozenContract(freeze); // triggers network event
}
function setPrice(uint256 newBuyPrice) onlyOwner public {
buyPrice = newBuyPrice;
}
function () payable external {
require (buyPrice != 0); // don't allow purchases before price has
uint amount = msg.value * buyPrice; // calculates the amount
_transfer(address(this), msg.sender, amount); // makes the transfers
owner.transfer(msg.value);
}
function withdrawTokens(uint256 amount) onlyOwner public{
_transfer(address(this), owner, amount);
}
function kill() onlyOwner public{
selfdestruct(owner);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isContractFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"kill","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"freeze","type":"bool"}],"name":"freezeContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newBuyPrice","type":"uint256"}],"name":"setPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"frozenAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"frozen","type":"bool"}],"name":"FrozenContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","type":"event"}]Contract Creation Code
60806040526003805460ff191660121790553480156200001e57600080fd5b50604051620011ba380380620011ba833981810160405260608110156200004457600080fd5b8151602083018051604051929492938301929190846401000000008211156200006c57600080fd5b9083019060208201858111156200008257600080fd5b82516401000000008111828201881017156200009d57600080fd5b82525081516020918201929091019080838360005b83811015620000cc578181015183820152602001620000b2565b50505050905090810190601f168015620000fa5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011e57600080fd5b9083019060208201858111156200013457600080fd5b82516401000000008111828201881017156200014f57600080fd5b82525081516020918201929091019080838360005b838110156200017e57818101518382015260200162000164565b50505050905090810190601f168015620001ac5780820380516001836020036101000a031916815260200191505b506040908152600080546001600160a01b03191633908117825560035460ff16600a0a89026004819055908252600560209081529290912055855187945086935085925062000202916001919085019062000225565b5080516200021890600290602084019062000225565b50505050505050620002ca565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200026857805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002985782518255916020019190600101906200027b565b50620002a6929150620002aa565b5090565b620002c791905b80821115620002a65760008155600101620002b1565b90565b610ee080620002da6000396000f3fe6080604052600436106101405760003560e01c806379c65068116100b6578063a9059cbb1161006f578063a9059cbb146104dc578063b414d4b614610515578063cae9ca5114610548578063dd62ed3e14610610578063e724529c1461064b578063f2fde38b1461068657610140565b806379c65068146103e557806379cc67901461041e5780638620410b146104575780638da5cb5b1461046c57806391b7f5ed1461049d57806395d89b41146104c757610140565b8063313ce56711610108578063313ce567146102f0578063315a095d1461031b57806341c0e1b51461034757806342966c681461035c5780636b4c07891461038657806370a08231146103b257610140565b806306fdde031461019a578063095ea7b314610224578063131d28731461027157806318160ddd1461028657806323b872dd146102ad575b60075461014c57600080fd5b600754340261015c3033836106b9565b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610196573d6000803e3d6000fd5b5050005b3480156101a657600080fd5b506101af6107e0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e95781810151838201526020016101d1565b50505050905090810190601f1680156102165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023057600080fd5b5061025d6004803603604081101561024757600080fd5b506001600160a01b03813516906020013561086d565b604080519115158252519081900360200190f35b34801561027d57600080fd5b5061025d6108d3565b34801561029257600080fd5b5061029b6108dc565b60408051918252519081900360200190f35b3480156102b957600080fd5b5061025d600480360360608110156102d057600080fd5b506001600160a01b038135811691602081013590911690604001356108e2565b3480156102fc57600080fd5b50610305610952565b6040805160ff9092168252519081900360200190f35b34801561032757600080fd5b506103456004803603602081101561033e57600080fd5b503561095b565b005b34801561035357600080fd5b5061034561098d565b34801561036857600080fd5b5061025d6004803603602081101561037f57600080fd5b50356109b2565b34801561039257600080fd5b50610345600480360360208110156103a957600080fd5b50351515610a2a565b3480156103be57600080fd5b5061029b600480360360208110156103d557600080fd5b50356001600160a01b0316610a88565b3480156103f157600080fd5b506103456004803603604081101561040857600080fd5b506001600160a01b038135169060200135610a9a565b34801561042a57600080fd5b5061025d6004803603604081101561044157600080fd5b506001600160a01b038135169060200135610b50565b34801561046357600080fd5b5061029b610c21565b34801561047857600080fd5b50610481610c27565b604080516001600160a01b039092168252519081900360200190f35b3480156104a957600080fd5b50610345600480360360208110156104c057600080fd5b5035610c36565b3480156104d357600080fd5b506101af610c52565b3480156104e857600080fd5b5061025d600480360360408110156104ff57600080fd5b506001600160a01b038135169060200135610caa565b34801561052157600080fd5b5061025d6004803603602081101561053857600080fd5b50356001600160a01b0316610cc0565b34801561055457600080fd5b5061025d6004803603606081101561056b57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561059b57600080fd5b8201836020820111156105ad57600080fd5b803590602001918460018302840111640100000000831117156105cf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610cd5945050505050565b34801561061c57600080fd5b5061029b6004803603604081101561063357600080fd5b506001600160a01b0381358116916020013516610dda565b34801561065757600080fd5b506103456004803603604081101561066e57600080fd5b506001600160a01b0381351690602001351515610df7565b34801561069257600080fd5b50610345600480360360208110156106a957600080fd5b50356001600160a01b0316610e72565b60085460ff16156106c957600080fd5b6001600160a01b0382166106dc57600080fd5b6001600160a01b03831660009081526005602052604090205481111561070157600080fd5b6001600160a01b038216600090815260056020526040902054818101101561072857600080fd5b6001600160a01b03831660009081526009602052604090205460ff161561074e57600080fd5b6001600160a01b03821660009081526009602052604090205460ff161561077457600080fd5b6001600160a01b03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b505050505081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085460ff1681565b60045481565b6001600160a01b038316600090815260066020908152604080832033845290915281205482111561091257600080fd5b6001600160a01b03841660009081526006602090815260408083203384529091529020805483900390556109478484846106b9565b5060015b9392505050565b60035460ff1681565b6000546001600160a01b0316331461097257600080fd5b60005461098a9030906001600160a01b0316836106b9565b50565b6000546001600160a01b031633146109a457600080fd5b6000546001600160a01b0316ff5b336000908152600560205260408120548211156109ce57600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b6000546001600160a01b03163314610a4157600080fd5b6008805482151560ff19909116811790915560408051918252517f477721e94e6195635782eeafaad12680e1bb921582e2103a5cff656b0c32a1779181900360200190a150565b60056020526000908152604090205481565b6000546001600160a01b03163314610ab157600080fd5b6001600160a01b03821660009081526005602090815260408083208054850190556004805485019055805184815290513093927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a36040805182815290516001600160a01b0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216600090815260056020526040812054821115610b7557600080fd5b6001600160a01b0383166000908152600660209081526040808320338452909152902054821115610ba557600080fd5b6001600160a01b0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60075481565b6000546001600160a01b031681565b6000546001600160a01b03163314610c4d57600080fd5b600755565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156108655780601f1061083a57610100808354040283529160200191610865565b6000610cb73384846106b9565b50600192915050565b60096020526000908152604090205460ff1681565b600083610ce2818561086d565b15610dd257604051638f4ffcb160e01b815233600482018181526024830187905230604484018190526080606485019081528751608486015287516001600160a01b03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610d61578181015183820152602001610d49565b50505050905090810190601f168015610d8e5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610db057600080fd5b505af1158015610dc4573d6000803e3d6000fd5b50505050600191505061094b565b509392505050565b600660209081526000928352604080842090915290825290205481565b6000546001600160a01b03163314610e0e57600080fd5b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6000546001600160a01b03163314610e8957600080fd5b600080546001600160a01b0319166001600160a01b039290921691909117905556fea265627a7a72315820d63e83a4e198888ae649b974cf193421a2ef6e3a73338e92adfcaf7f74bb4c0c64736f6c634300050b0032000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001c496e7465726e6174696f6e616c20426974636f696e7320546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000034942430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101405760003560e01c806379c65068116100b6578063a9059cbb1161006f578063a9059cbb146104dc578063b414d4b614610515578063cae9ca5114610548578063dd62ed3e14610610578063e724529c1461064b578063f2fde38b1461068657610140565b806379c65068146103e557806379cc67901461041e5780638620410b146104575780638da5cb5b1461046c57806391b7f5ed1461049d57806395d89b41146104c757610140565b8063313ce56711610108578063313ce567146102f0578063315a095d1461031b57806341c0e1b51461034757806342966c681461035c5780636b4c07891461038657806370a08231146103b257610140565b806306fdde031461019a578063095ea7b314610224578063131d28731461027157806318160ddd1461028657806323b872dd146102ad575b60075461014c57600080fd5b600754340261015c3033836106b9565b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610196573d6000803e3d6000fd5b5050005b3480156101a657600080fd5b506101af6107e0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e95781810151838201526020016101d1565b50505050905090810190601f1680156102165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023057600080fd5b5061025d6004803603604081101561024757600080fd5b506001600160a01b03813516906020013561086d565b604080519115158252519081900360200190f35b34801561027d57600080fd5b5061025d6108d3565b34801561029257600080fd5b5061029b6108dc565b60408051918252519081900360200190f35b3480156102b957600080fd5b5061025d600480360360608110156102d057600080fd5b506001600160a01b038135811691602081013590911690604001356108e2565b3480156102fc57600080fd5b50610305610952565b6040805160ff9092168252519081900360200190f35b34801561032757600080fd5b506103456004803603602081101561033e57600080fd5b503561095b565b005b34801561035357600080fd5b5061034561098d565b34801561036857600080fd5b5061025d6004803603602081101561037f57600080fd5b50356109b2565b34801561039257600080fd5b50610345600480360360208110156103a957600080fd5b50351515610a2a565b3480156103be57600080fd5b5061029b600480360360208110156103d557600080fd5b50356001600160a01b0316610a88565b3480156103f157600080fd5b506103456004803603604081101561040857600080fd5b506001600160a01b038135169060200135610a9a565b34801561042a57600080fd5b5061025d6004803603604081101561044157600080fd5b506001600160a01b038135169060200135610b50565b34801561046357600080fd5b5061029b610c21565b34801561047857600080fd5b50610481610c27565b604080516001600160a01b039092168252519081900360200190f35b3480156104a957600080fd5b50610345600480360360208110156104c057600080fd5b5035610c36565b3480156104d357600080fd5b506101af610c52565b3480156104e857600080fd5b5061025d600480360360408110156104ff57600080fd5b506001600160a01b038135169060200135610caa565b34801561052157600080fd5b5061025d6004803603602081101561053857600080fd5b50356001600160a01b0316610cc0565b34801561055457600080fd5b5061025d6004803603606081101561056b57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561059b57600080fd5b8201836020820111156105ad57600080fd5b803590602001918460018302840111640100000000831117156105cf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610cd5945050505050565b34801561061c57600080fd5b5061029b6004803603604081101561063357600080fd5b506001600160a01b0381358116916020013516610dda565b34801561065757600080fd5b506103456004803603604081101561066e57600080fd5b506001600160a01b0381351690602001351515610df7565b34801561069257600080fd5b50610345600480360360208110156106a957600080fd5b50356001600160a01b0316610e72565b60085460ff16156106c957600080fd5b6001600160a01b0382166106dc57600080fd5b6001600160a01b03831660009081526005602052604090205481111561070157600080fd5b6001600160a01b038216600090815260056020526040902054818101101561072857600080fd5b6001600160a01b03831660009081526009602052604090205460ff161561074e57600080fd5b6001600160a01b03821660009081526009602052604090205460ff161561077457600080fd5b6001600160a01b03808416600081815260056020908152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b505050505081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085460ff1681565b60045481565b6001600160a01b038316600090815260066020908152604080832033845290915281205482111561091257600080fd5b6001600160a01b03841660009081526006602090815260408083203384529091529020805483900390556109478484846106b9565b5060015b9392505050565b60035460ff1681565b6000546001600160a01b0316331461097257600080fd5b60005461098a9030906001600160a01b0316836106b9565b50565b6000546001600160a01b031633146109a457600080fd5b6000546001600160a01b0316ff5b336000908152600560205260408120548211156109ce57600080fd5b3360008181526005602090815260409182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b6000546001600160a01b03163314610a4157600080fd5b6008805482151560ff19909116811790915560408051918252517f477721e94e6195635782eeafaad12680e1bb921582e2103a5cff656b0c32a1779181900360200190a150565b60056020526000908152604090205481565b6000546001600160a01b03163314610ab157600080fd5b6001600160a01b03821660009081526005602090815260408083208054850190556004805485019055805184815290513093927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a36040805182815290516001600160a01b0384169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216600090815260056020526040812054821115610b7557600080fd5b6001600160a01b0383166000908152600660209081526040808320338452909152902054821115610ba557600080fd5b6001600160a01b0383166000818152600560209081526040808320805487900390556006825280832033845282529182902080548690039055600480548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60075481565b6000546001600160a01b031681565b6000546001600160a01b03163314610c4d57600080fd5b600755565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156108655780601f1061083a57610100808354040283529160200191610865565b6000610cb73384846106b9565b50600192915050565b60096020526000908152604090205460ff1681565b600083610ce2818561086d565b15610dd257604051638f4ffcb160e01b815233600482018181526024830187905230604484018190526080606485019081528751608486015287516001600160a01b03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610d61578181015183820152602001610d49565b50505050905090810190601f168015610d8e5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610db057600080fd5b505af1158015610dc4573d6000803e3d6000fd5b50505050600191505061094b565b509392505050565b600660209081526000928352604080842090915290825290205481565b6000546001600160a01b03163314610e0e57600080fd5b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6000546001600160a01b03163314610e8957600080fd5b600080546001600160a01b0319166001600160a01b039290921691909117905556fea265627a7a72315820d63e83a4e198888ae649b974cf193421a2ef6e3a73338e92adfcaf7f74bb4c0c64736f6c634300050b0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001c496e7465726e6174696f6e616c20426974636f696e7320546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000034942430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 1000000000
Arg [1] : tokenName (string): International Bitcoins Token
Arg [2] : tokenSymbol (string): IBC
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [4] : 496e7465726e6174696f6e616c20426974636f696e7320546f6b656e00000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4942430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
6637:3210:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9349:8;;9340:23;;;;;;9467:8;;9455:9;:20;9527:44;9545:4;9552:10;9455:20;9527:9;:44::i;:::-;9611:5;;;:25;;-1:-1:-1;;;;;9611:5:0;;;;9626:9;9611:25;;;;;9626:9;;9611:25;:5;:25;9626:9;9611:5;:25;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9611:25:0;9300:344;6637:3210;565:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;565:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;565:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4220:225;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4220:225:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4220:225:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6710:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6710:28:0;;;:::i;723:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;723:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;3655:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3655:296:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3655:296:0;;;;;;;;;;;;;;;;;:::i;617:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;617:26:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9652:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9652:114:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9652:114:0;;:::i;:::-;;9774:70;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9774:70:0;;;:::i;5382:374::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5382:374:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5382:374:0;;:::i;9015:172::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9015:172:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9015:172:0;;;;:::i;806:45::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;806:45:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;806:45:0;-1:-1:-1;;;;;806:45:0;;:::i;8370:290::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8370:290:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8370:290:0;;;;;;;;:::i;6019:611::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6019:611:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6019:611:0;;;;;;;;:::i;6680:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6680:23:0;;;:::i;58:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;58:28:0;;;;;;;;;;;;;;9195:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9195:97:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9195:97:0;;:::i;590:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;590:20:0;;;:::i;3223:152::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3223:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3223:152:0;;;;;;;;:::i;6747:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6747:46:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6747:46:0;-1:-1:-1;;;;;6747:46:0;;:::i;4844:363::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4844:363:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;4844:363:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;4844:363:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;4844:363:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;4844:363:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;4844:363:0;;-1:-1:-1;4844:363:0;;-1:-1:-1;;;;;4844:363:0:i;858:66::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;858:66:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;858:66:0;;;;;;;;;;:::i;8846:161::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8846:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8846:161:0;;;;;;;;;;:::i;247:105::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;247:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;247:105:0;-1:-1:-1;;;;;247:105:0;;:::i;7325:848::-;7415:16;;;;7414:17;7405:27;;;;;;-1:-1:-1;;;;;7452:19:0;;7443:29;;;;;;-1:-1:-1;;;;;7572:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;7572:26:0;7563:36;;;;;;-1:-1:-1;;;;;7698:14:0;;;;;;:9;:14;;;;;;7671:23;;;:41;;7662:51;;;;;;-1:-1:-1;;;;;7759:20:0;;;;;;:13;:20;;;;;;;;7758:21;7750:30;;;;;;-1:-1:-1;;;;;7853:18:0;;;;;;:13;:18;;;;;;;;7852:19;7844:28;;;;;;-1:-1:-1;;;;;7941:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;8034:14;;;;;;;;;;:24;;;;;;8137:28;;;;;;;8034:14;;8137:28;;;;;;;;;;;7325:848;;;:::o;565:18::-;;;;;;;;;;;;;;;-1:-1:-1;;565:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4220:225::-;4331:10;4296:12;4321:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;4321:31:0;;;;;;;;;;;:40;;;4377:38;;;;;;;4296:12;;4321:31;;4331:10;;4377:38;;;;;;;;-1:-1:-1;4433:4:0;4220:225;;;;:::o;6710:28::-;;;;;;:::o;723:26::-;;;;:::o;3655:296::-;-1:-1:-1;;;;;3780:16:0;;3737:12;3780:16;;;:9;:16;;;;;;;;3797:10;3780:28;;;;;;;;3770:38;;;3762:47;;;;;;-1:-1:-1;;;;;3843:16:0;;;;;;:9;:16;;;;;;;;3860:10;3843:28;;;;;;;:38;;;;;;;3892:29;3853:5;3909:3;3875:6;3892:9;:29::i;:::-;-1:-1:-1;3939:4:0;3655:296;;;;;;:::o;617:26::-;;;;;;:::o;9652:114::-;213:5;;-1:-1:-1;;;;;213:5:0;199:10;:19;191:28;;;;;;9744:5;;9719:39;;9737:4;;-1:-1:-1;;;;;9744:5:0;9751:6;9719:9;:39::i;:::-;9652:114;:::o;9774:70::-;213:5;;-1:-1:-1;;;;;213:5:0;199:10;:19;191:28;;;;;;9830:5;;-1:-1:-1;;;;;9830:5:0;9817:19;5382:374;5471:10;5428:12;5461:21;;;:9;:21;;;;;;:31;-1:-1:-1;5461:31:0;5453:40;;;;;;5550:10;5540:21;;;;:9;:21;;;;;;;;;:31;;;;;;;5621:11;:21;;;;;;;5702:24;;;;;;;;;;;;;;;;;-1:-1:-1;5744:4:0;5382:374;;;:::o;9015:172::-;213:5;;-1:-1:-1;;;;;213:5:0;199:10;:19;191:28;;;;;;9080:16;:25;;;;;-1:-1:-1;;9080:25:0;;;;;;;;9121:22;;;;;;;;;;;;;;;;9015:172;:::o;806:45::-;;;;;;;;;;;;;:::o;8370:290::-;213:5;;-1:-1:-1;;;;;213:5:0;199:10;:19;191:28;;;;;;-1:-1:-1;;;;;8455:17:0;;;;;;:9;:17;;;;;;;;:33;;;;;;8499:11;:27;;;;;;8542:49;;;;;;;8571:4;;8455:17;8542:49;;;;;;;;8607:45;;;;;;;;-1:-1:-1;;;;;8607:45:0;;;8624:4;;8607:45;;;;;;;;;8370:290;;:::o;6019:611::-;-1:-1:-1;;;;;6117:16:0;;6084:12;6117:16;;;:9;:16;;;;;;:26;-1:-1:-1;6117:26:0;6109:35;;;;;;-1:-1:-1;;;;;6231:16:0;;;;;;:9;:16;;;;;;;;6248:10;6231:28;;;;;;;;6221:38;;;6213:47;;;;;;-1:-1:-1;;;;;6293:16:0;;;;;;:9;:16;;;;;;;;:26;;;;;;;6392:9;:16;;;;;6409:10;6392:28;;;;;;;;:38;;;;;;;6493:11;:21;;;;;;;6581:19;;;;;;;;;;;;;;;;;-1:-1:-1;6618:4:0;6019:611;;;;:::o;6680:23::-;;;;:::o;58:28::-;;;-1:-1:-1;;;;;58:28:0;;:::o;9195:97::-;213:5;;-1:-1:-1;;;;;213:5:0;199:10;:19;191:28;;;;;;9262:8;:22;9195:97::o;590:20::-;;;;;;;;;;;;;;-1:-1:-1;;590:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3223:152;3286:12;3311:34;3321:10;3333:3;3338:6;3311:9;:34::i;:::-;-1:-1:-1;3363:4:0;3223:152;;;;:::o;6747:46::-;;;;;;;;;;;;;;;:::o;4844:363::-;4961:12;5026:8;5050:25;5026:8;5068:6;5050:7;:25::i;:::-;5046:154;;;5092:70;;-1:-1:-1;;;5092:70:0;;5116:10;5092:70;;;;;;;;;;;;5144:4;5092:70;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5092:23:0;;;;;5116:10;5128:6;;5144:4;5151:10;;5092:70;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5092:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5092:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5092:70:0;;;;5184:4;5177:11;;;;;5046:154;4844:363;;;;;;:::o;858:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;8846:161::-;213:5;;-1:-1:-1;;;;;213:5:0;199:10;:19;191:28;;;;;;-1:-1:-1;;;;;8926:21:0;;;;;;:13;:21;;;;;;;;;:30;;-1:-1:-1;;8926:30:0;;;;;;;;;;8972:27;;;;;;;;;;;;;;;;;;;;;8846:161;;:::o;247:105::-;213:5;;-1:-1:-1;;;;;213:5:0;199:10;:19;191:28;;;;;;328:5;:16;;-1:-1:-1;;;;;;328:16:0;-1:-1:-1;;;;;328:16:0;;;;;;;;;;247:105::o
Swarm Source
bzzr://d63e83a4e198888ae649b974cf193421a2ef6e3a73338e92adfcaf7f74bb4c0c
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.