Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 771 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 9284061 | 2238 days ago | IN | 0 ETH | 0.00037901 | ||||
| Transfer | 9284050 | 2238 days ago | IN | 0 ETH | 0.00037367 | ||||
| Transfer | 8343261 | 2392 days ago | IN | 0 ETH | 0.00022626 | ||||
| Transfer | 8231136 | 2410 days ago | IN | 0 ETH | 0.00011323 | ||||
| Transfer | 8231126 | 2410 days ago | IN | 0 ETH | 0.00026323 | ||||
| Transfer | 8214001 | 2412 days ago | IN | 0 ETH | 0.00075292 | ||||
| Transfer | 8065243 | 2435 days ago | IN | 0 ETH | 0.00063175 | ||||
| Transfer | 7996392 | 2446 days ago | IN | 0 ETH | 0.00022549 | ||||
| Transfer | 7996382 | 2446 days ago | IN | 0 ETH | 0.00022549 | ||||
| Transfer | 7877587 | 2465 days ago | IN | 0 ETH | 0.00023175 | ||||
| Transfer | 7858283 | 2468 days ago | IN | 0 ETH | 0.00022582 | ||||
| Transfer | 7854361 | 2468 days ago | IN | 0 ETH | 0.00073614 | ||||
| Transfer | 7853940 | 2468 days ago | IN | 0 ETH | 0.00073704 | ||||
| Transfer | 7820439 | 2474 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7820429 | 2474 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7820360 | 2474 days ago | IN | 0 ETH | 0.00049561 | ||||
| Transfer | 7814573 | 2475 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7814551 | 2475 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7814272 | 2475 days ago | IN | 0 ETH | 0.00063762 | ||||
| Transfer | 7814144 | 2475 days ago | IN | 0 ETH | 0.0005271 | ||||
| Transfer | 7814105 | 2475 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7814073 | 2475 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7814045 | 2475 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7814002 | 2475 days ago | IN | 0 ETH | 0.00037646 | ||||
| Transfer | 7813965 | 2475 days ago | IN | 0 ETH | 0.00037646 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ICOTH
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-07-05
*/
pragma solidity ^0.4.23;
contract ERC20 {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
function allowance(address owner, address spender) public view returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
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 transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
/**
* @title ERC827 interface, an extension of ERC20 token standard
*
* @dev Interface of a ERC827 token, following the ERC20 standard with extra
* @dev methods to transfer value and data and execute calls in transfers and
* @dev approvals.
*/
contract ERC827 is ERC20 {
function approveAndCall(address _spender, uint256 _value, bytes _data) public payable returns (bool);
function transferAndCall(address _to, uint256 _value, bytes _data) public payable returns (bool);
function transferFromAndCall(address _from, address _to, uint256 _value, bytes _data) public payable returns (bool);
}
/**
* @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 c) {
if (a == 0) {
return 0;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return a / b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
c = a + b;
assert(c >= a);
return c;
}
}
/**
* @title Standard ERC20 token
*
*/
contract ERC20Token is ERC20 {
using SafeMath for uint256;
mapping(address => mapping(address => uint256)) internal allowed;
mapping(address => uint256) balances;
uint256 totalSupply_;
/**
* @dev total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @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(_to != address(0));
require(_value <= balances[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 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 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(_to != address(0));
require(_value <= balances[_from]);
require(_value <= allowed[_from][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 Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* @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];
}
/**
* @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)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
*/
function increaseApproval(address _spender, uint _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, uint _subtractedValue) public returns (bool) {
uint 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;
}
}
/**
* @title ERC827, an extension of ERC20 token standard
*
* @dev Implementation the ERC827, following the ERC20 standard with extra
* @dev methods to transfer value and data and execute calls in transfers and
* @dev approvals.
*
* @dev Uses OpenZeppelin StandardToken.
*/
contract ERC827Token is ERC827, ERC20Token {
/**
* @dev Addition to ERC20 token methods. It allows to
* @dev approve the transfer of value and execute a call with the sent data.
*
* @dev Beware that changing an allowance with this method brings the risk that
* @dev someone may use both the old and the new allowance by unfortunate
* @dev transaction ordering. One possible solution to mitigate this race condition
* @dev is to first reduce the spender's allowance to 0 and set the desired value
* @dev afterwards:
* @dev https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* @param _spender The address that will spend the funds.
* @param _value The amount of tokens to be spent.
* @param _data ABI-encoded contract call to call `_to` address.
*
* @return true if the call function was executed successfully
*/
function approveAndCall(address _spender, uint256 _value, bytes _data) public payable returns (bool) {
require(_spender != address(this));
super.approve(_spender, _value);
// solium-disable-next-line security/no-call-value
require(_spender.call.value(msg.value)(_data));
return true;
}
/**
* @dev Addition to ERC20 token methods. Transfer tokens to a specified
* @dev address and execute a call with the sent data on the same transaction
*
* @param _to address The address which you want to transfer to
* @param _value uint256 the amout of tokens to be transfered
* @param _data ABI-encoded contract call to call `_to` address.
*
* @return true if the call function was executed successfully
*/
function transferAndCall(address _to, uint256 _value, bytes _data) public payable returns (bool) {
require(_to != address(this));
super.transfer(_to, _value);
require(_to.call.value(msg.value)(_data));
return true;
}
/**
* @dev Addition to ERC20 token methods. Transfer tokens from one address to
* @dev another and make a contract call on the same transaction
*
* @param _from The address which you want to send tokens from
* @param _to The address which you want to transfer to
* @param _value The amout of tokens to be transferred
* @param _data ABI-encoded contract call to call `_to` address.
*
* @return true if the call function was executed successfully
*/
function transferFromAndCall(address _from, address _to, uint256 _value, bytes _data) public payable returns (bool) {
require(_to != address(this));
super.transferFrom(_from, _to, _value);
require(_to.call.value(msg.value)(_data));
return true;
}
/**
* @dev Addition to StandardToken methods. Increase the amount of tokens that
* @dev an owner allowed to a spender and execute a call with the sent data.
*
* @dev approve should be called when allowed[_spender] == 0. To increment
* @dev allowed value is better to use this function to avoid 2 calls (and wait until
* @dev the first transaction is mined)
* @dev From MonolithDAO Token.sol
*
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
* @param _data ABI-encoded contract call to call `_spender` address.
*/
function increaseApprovalAndCall(address _spender, uint _addedValue, bytes _data) public payable returns (bool) {
require(_spender != address(this));
super.increaseApproval(_spender, _addedValue);
require(_spender.call.value(msg.value)(_data));
return true;
}
/**
* @dev Addition to StandardToken methods. Decrease the amount of tokens that
* @dev an owner allowed to a spender and execute a call with the sent data.
*
* @dev approve should be called when allowed[_spender] == 0. To decrement
* @dev allowed value is better to use this function to avoid 2 calls (and wait until
* @dev the first transaction is mined)
* @dev From MonolithDAO Token.sol
*
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
* @param _data ABI-encoded contract call to call `_spender` address.
*/
function decreaseApprovalAndCall(address _spender, uint _subtractedValue, bytes _data) public payable returns (bool) {
require(_spender != address(this));
super.decreaseApproval(_spender, _subtractedValue);
require(_spender.call.value(msg.value)(_data));
return true;
}
}
/**
* @title Burnable and Pause Token
* @dev StandardToken modified with pausable transfers.
*/
contract PauseBurnableERC827Token is ERC827Token, Ownable {
using SafeMath for uint256;
event Pause();
event Unpause();
event PauseOperatorTransferred(address indexed previousOperator, address indexed newOperator);
event Burn(address indexed burner, uint256 value);
bool public paused = false;
address public pauseOperator;
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyPauseOperator() {
require(msg.sender == pauseOperator || msg.sender == owner);
_;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(paused);
_;
}
/**
* @dev The constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() public {
pauseOperator = msg.sender;
}
/**
* @dev called by the operator to set the new operator to pause the token
*/
function transferPauseOperator(address newPauseOperator) onlyPauseOperator public {
require(newPauseOperator != address(0));
emit PauseOperatorTransferred(pauseOperator, newPauseOperator);
pauseOperator = newPauseOperator;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyPauseOperator whenNotPaused public {
paused = true;
emit Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyPauseOperator whenPaused public {
paused = false;
emit Unpause();
}
function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transferFrom(_from, _to, _value);
}
function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
return super.approve(_spender, _value);
}
function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
return super.increaseApproval(_spender, _addedValue);
}
function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseApproval(_spender, _subtractedValue);
}
/**
* @dev Burns a specific amount of tokens.
* @param _value The amount of token to be burned.
*/
function burn(uint256 _value) public whenNotPaused {
_burn(msg.sender, _value);
}
function _burn(address _who, uint256 _value) internal {
require(_value <= balances[_who]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_who] = balances[_who].sub(_value);
// Subtract from the sender
totalSupply_ = totalSupply_.sub(_value);
emit Burn(_who, _value);
emit Transfer(_who, address(0), _value);
}
/**
* @dev Burns a specific amount of tokens from the target address and decrements allowance
* @param _from address The address which you want to send tokens from
* @param _value uint256 The amount of token to be burned
*/
function burnFrom(address _from, uint256 _value) public whenNotPaused {
require(_value <= allowed[_from][msg.sender]);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
_burn(_from, _value);
}
}
contract ICOTH is PauseBurnableERC827Token {
string public constant name = "ICOTH";
string public constant symbol = "i";
uint8 public constant decimals = 18;
uint256 public constant INITIAL_SUPPLY = 10000000000 * (10 ** uint256(decimals));
/**
* @dev Constructor that gives msg.sender all of existing tokens.
*/
constructor() public {
totalSupply_ = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
emit Transfer(0x0, msg.sender, INITIAL_SUPPLY);
}
function batchTransfer(address[] _tos, uint256 _value) public whenNotPaused returns (bool) {
uint256 all = _value.mul(_tos.length);
require(balances[msg.sender] >= all);
for (uint i = 0; i < _tos.length; i++) {
require(_tos[i] != address(0));
require(_tos[i] != msg.sender);
balances[_tos[i]] = balances[_tos[i]].add(_value);
emit Transfer(msg.sender, _tos[i], _value);
}
balances[msg.sender] = balances[msg.sender].sub(all);
return true;
}
function multiTransfer(address[] _tos, uint256[] _values) public whenNotPaused returns (bool) {
require(_tos.length == _values.length);
uint256 all = 0;
for (uint i = 0; i < _tos.length; i++) {
require(_tos[i] != address(0));
require(_tos[i] != msg.sender);
all = all.add(_values[i]);
balances[_tos[i]] = balances[_tos[i]].add(_values[i]);
emit Transfer(msg.sender, _tos[i], _values[i]);
}
balances[msg.sender] = balances[msg.sender].sub(all);
return true;
}
}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":"","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":"_tos","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"multiTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pauseOperator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","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":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tos","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"increaseApprovalAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"decreaseApprovalAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","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":"newPauseOperator","type":"address"}],"name":"transferPauseOperator","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOperator","type":"address"},{"indexed":true,"name":"newOperator","type":"address"}],"name":"PauseOperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","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"}]Contract Creation Code
60806040526003805460a060020a60ff021916905534801561002057600080fd5b506003805433600160a060020a0319918216811790925560048054909116821790556b204fce5e3e250261100000006002819055600082815260016020908152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36116f4806100aa6000396000f3006080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f857806318160ddd146102305780631e89d5451461025757806323b872dd146102e55780632ff2e9dc1461030f578063313ce567146103245780633f4ba83a1461034f5780634000aea01461036657806342966c68146103c25780634afdcbde146103da5780635c975abb1461040b578063661884631461042057806370a082311461044457806379cc67901461046557806383f12fec146104895780638456cb59146104e05780638da5cb5b146104f557806390db623f1461050a57806395d89b4114610566578063a9059cbb1461057b578063c1d34b891461059f578063cae9ca5114610601578063cb3993be1461065d578063d73dd623146106b9578063dd62ed3e146106dd578063de223f6314610704578063f2fde38b14610725575b600080fd5b34801561017a57600080fd5b50610183610746565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a036004351660243561077d565b604080519115158252519081900360200190f35b34801561023c57600080fd5b506102456107aa565b60408051918252519081900360200190f35b34801561026357600080fd5b506040805160206004803580820135838102808601850190965280855261021c95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506107b09650505050505050565b3480156102f157600080fd5b5061021c600160a060020a03600435811690602435166044356109b2565b34801561031b57600080fd5b506102456109df565b34801561033057600080fd5b506103396109ef565b6040805160ff9092168252519081900360200190f35b34801561035b57600080fd5b506103646109f4565b005b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a839650505050505050565b3480156103ce57600080fd5b50610364600435610b33565b3480156103e657600080fd5b506103ef610b57565b60408051600160a060020a039092168252519081900360200190f35b34801561041757600080fd5b5061021c610b66565b34801561042c57600080fd5b5061021c600160a060020a0360043516602435610b76565b34801561045057600080fd5b50610245600160a060020a0360043516610b9a565b34801561047157600080fd5b50610364600160a060020a0360043516602435610bb5565b34801561049557600080fd5b506040805160206004803580820135838102808601850190965280855261021c953695939460249493850192918291850190849080828437509497505093359450610c5c9350505050565b3480156104ec57600080fd5b50610364610db9565b34801561050157600080fd5b506103ef610e4d565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e5c9650505050505050565b34801561057257600080fd5b50610183610e7e565b34801561058757600080fd5b5061021c600160a060020a0360043516602435610eb5565b604080516020601f60643560048181013592830184900484028501840190955281845261021c94600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610ed99650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610f8b9650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610fad9650505050505050565b3480156106c557600080fd5b5061021c600160a060020a0360043516602435610fcf565b3480156106e957600080fd5b50610245600160a060020a0360043581169060243516610ff3565b34801561071057600080fd5b50610364600160a060020a036004351661101c565b34801561073157600080fd5b50610364600160a060020a03600435166110c8565b60408051808201909152600581527f49434f5448000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561079757600080fd5b6107a1838361115d565b90505b92915050565b60025490565b6003546000908190819060a060020a900460ff16156107ce57600080fd5b83518551146107dc57600080fd5b5060009050805b84518110156109735784516000908690839081106107fd57fe5b60209081029091010151600160a060020a0316141561081b57600080fd5b8451339086908390811061082b57fe5b60209081029091010151600160a060020a0316141561084957600080fd5b610871848281518110151561085a57fe5b60209081029091010151839063ffffffff6111c116565b91506108cf848281518110151561088457fe5b906020019060200201516001600088858151811015156108a057fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff6111c116565b6001600087848151811015156108e157fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055845185908290811061091257fe5b90602001906020020151600160a060020a031633600160a060020a03166000805160206116a9833981519152868481518110151561094c57fe5b906020019060200201516040518082815260200191505060405180910390a36001016107e3565b33600090815260016020526040902054610993908363ffffffff6111ce16565b3360009081526001602081905260409091209190915595945050505050565b60035460009060a060020a900460ff16156109cc57600080fd5b6109d78484846111e0565b949350505050565b6b204fce5e3e2502611000000081565b601281565b600454600160a060020a0316331480610a175750600354600160a060020a031633145b1515610a2257600080fd5b60035460a060020a900460ff161515610a3a57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600160a060020a038416301415610a9b57600080fd5b610aa58484611342565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610adc578181015183820152602001610ac4565b50505050905090810190601f168015610b095780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610b2957600080fd5b5060019392505050565b60035460a060020a900460ff1615610b4a57600080fd5b610b543382611413565b50565b600454600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610b9057600080fd5b6107a18383611502565b600160a060020a031660009081526001602052604090205490565b60035460a060020a900460ff1615610bcc57600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054811115610bfa57600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054610c2c908263ffffffff6111ce16565b600160a060020a038316600090815260208181526040808320338452909152902055610c588282611413565b5050565b6003546000908190819060a060020a900460ff1615610c7a57600080fd5b8451610c8d90859063ffffffff6115ea16565b33600090815260016020526040902054909250821115610cac57600080fd5b5060005b8451811015610973578451600090869083908110610cca57fe5b60209081029091010151600160a060020a03161415610ce857600080fd5b84513390869083908110610cf857fe5b60209081029091010151600160a060020a03161415610d1657600080fd5b610d2c846001600088858151811015156108a057fe5b600160008784815181101515610d3e57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110610d6f57fe5b90602001906020020151600160a060020a031633600160a060020a03166000805160206116a9833981519152866040518082815260200191505060405180910390a3600101610cb0565b600454600160a060020a0316331480610ddc5750600354600160a060020a031633145b1515610de757600080fd5b60035460a060020a900460ff1615610dfe57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6000600160a060020a038416301415610e7457600080fd5b610aa58484611613565b60408051808201909152600181527f6900000000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610ecf57600080fd5b6107a18383611342565b6000600160a060020a038416301415610ef157600080fd5b610efc8585856111e0565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610f33578181015183820152602001610f1b565b50505050905090810190601f168015610f605780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610f8057600080fd5b506001949350505050565b6000600160a060020a038416301415610fa357600080fd5b610aa5848461115d565b6000600160a060020a038416301415610fc557600080fd5b610aa58484611502565b60035460009060a060020a900460ff1615610fe957600080fd5b6107a18383611613565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600454600160a060020a031633148061103f5750600354600160a060020a031633145b151561104a57600080fd5b600160a060020a038116151561105f57600080fd5b600454604051600160a060020a038084169216907f5705a19d157bea12552e53720dc7b75b73ea8b883da95f4af3b3b3bfbeab9b2790600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600160a060020a031633146110df57600080fd5b600160a060020a03811615156110f457600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b33600081815260208181526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b818101828110156107a457fe5b6000828211156111da57fe5b50900390565b6000600160a060020a03831615156111f757600080fd5b600160a060020a03841660009081526001602052604090205482111561121c57600080fd5b600160a060020a03841660009081526020818152604080832033845290915290205482111561124a57600080fd5b600160a060020a038416600090815260016020526040902054611273908363ffffffff6111ce16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546112a8908363ffffffff6111c116565b600160a060020a03808516600090815260016020908152604080832094909455918716815280825282812033825290915220546112eb908363ffffffff6111ce16565b600160a060020a0380861660008181526020818152604080832033845282529182902094909455805186815290519287169391926000805160206116a9833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561135957600080fd5b3360009081526001602052604090205482111561137557600080fd5b33600090815260016020526040902054611395908363ffffffff6111ce16565b3360009081526001602052604080822092909255600160a060020a038516815220546113c7908363ffffffff6111c116565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206116a98339815191529281900390910190a350600192915050565b600160a060020a03821660009081526001602052604090205481111561143857600080fd5b600160a060020a038216600090815260016020526040902054611461908263ffffffff6111ce16565b600160a060020a03831660009081526001602052604090205560025461148d908263ffffffff6111ce16565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206116a98339815191529181900360200190a35050565b33600090815260208181526040808320600160a060020a0386168452909152812054808311156115535733600090815260208181526040808320600160a060020a0388168452909152812055611586565b611563818463ffffffff6111ce16565b33600090815260208181526040808320600160a060020a03891684529091529020555b33600081815260208181526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008215156115fb575060006107a4565b5081810281838281151561160b57fe5b04146107a457fe5b33600090815260208181526040808320600160a060020a0386168452909152812054611645908363ffffffff6111c116565b33600081815260208181526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582045ca3fca39771046566120bc4b458eb8ef6af88fb7ef9e70cc5b9cec6f8f12210029
Deployed Bytecode
0x6080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f857806318160ddd146102305780631e89d5451461025757806323b872dd146102e55780632ff2e9dc1461030f578063313ce567146103245780633f4ba83a1461034f5780634000aea01461036657806342966c68146103c25780634afdcbde146103da5780635c975abb1461040b578063661884631461042057806370a082311461044457806379cc67901461046557806383f12fec146104895780638456cb59146104e05780638da5cb5b146104f557806390db623f1461050a57806395d89b4114610566578063a9059cbb1461057b578063c1d34b891461059f578063cae9ca5114610601578063cb3993be1461065d578063d73dd623146106b9578063dd62ed3e146106dd578063de223f6314610704578063f2fde38b14610725575b600080fd5b34801561017a57600080fd5b50610183610746565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a036004351660243561077d565b604080519115158252519081900360200190f35b34801561023c57600080fd5b506102456107aa565b60408051918252519081900360200190f35b34801561026357600080fd5b506040805160206004803580820135838102808601850190965280855261021c95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506107b09650505050505050565b3480156102f157600080fd5b5061021c600160a060020a03600435811690602435166044356109b2565b34801561031b57600080fd5b506102456109df565b34801561033057600080fd5b506103396109ef565b6040805160ff9092168252519081900360200190f35b34801561035b57600080fd5b506103646109f4565b005b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a839650505050505050565b3480156103ce57600080fd5b50610364600435610b33565b3480156103e657600080fd5b506103ef610b57565b60408051600160a060020a039092168252519081900360200190f35b34801561041757600080fd5b5061021c610b66565b34801561042c57600080fd5b5061021c600160a060020a0360043516602435610b76565b34801561045057600080fd5b50610245600160a060020a0360043516610b9a565b34801561047157600080fd5b50610364600160a060020a0360043516602435610bb5565b34801561049557600080fd5b506040805160206004803580820135838102808601850190965280855261021c953695939460249493850192918291850190849080828437509497505093359450610c5c9350505050565b3480156104ec57600080fd5b50610364610db9565b34801561050157600080fd5b506103ef610e4d565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610e5c9650505050505050565b34801561057257600080fd5b50610183610e7e565b34801561058757600080fd5b5061021c600160a060020a0360043516602435610eb5565b604080516020601f60643560048181013592830184900484028501840190955281845261021c94600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610ed99650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610f8b9650505050505050565b604080516020600460443581810135601f810184900484028501840190955284845261021c948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610fad9650505050505050565b3480156106c557600080fd5b5061021c600160a060020a0360043516602435610fcf565b3480156106e957600080fd5b50610245600160a060020a0360043581169060243516610ff3565b34801561071057600080fd5b50610364600160a060020a036004351661101c565b34801561073157600080fd5b50610364600160a060020a03600435166110c8565b60408051808201909152600581527f49434f5448000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561079757600080fd5b6107a1838361115d565b90505b92915050565b60025490565b6003546000908190819060a060020a900460ff16156107ce57600080fd5b83518551146107dc57600080fd5b5060009050805b84518110156109735784516000908690839081106107fd57fe5b60209081029091010151600160a060020a0316141561081b57600080fd5b8451339086908390811061082b57fe5b60209081029091010151600160a060020a0316141561084957600080fd5b610871848281518110151561085a57fe5b60209081029091010151839063ffffffff6111c116565b91506108cf848281518110151561088457fe5b906020019060200201516001600088858151811015156108a057fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff6111c116565b6001600087848151811015156108e157fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055845185908290811061091257fe5b90602001906020020151600160a060020a031633600160a060020a03166000805160206116a9833981519152868481518110151561094c57fe5b906020019060200201516040518082815260200191505060405180910390a36001016107e3565b33600090815260016020526040902054610993908363ffffffff6111ce16565b3360009081526001602081905260409091209190915595945050505050565b60035460009060a060020a900460ff16156109cc57600080fd5b6109d78484846111e0565b949350505050565b6b204fce5e3e2502611000000081565b601281565b600454600160a060020a0316331480610a175750600354600160a060020a031633145b1515610a2257600080fd5b60035460a060020a900460ff161515610a3a57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600160a060020a038416301415610a9b57600080fd5b610aa58484611342565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610adc578181015183820152602001610ac4565b50505050905090810190601f168015610b095780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610b2957600080fd5b5060019392505050565b60035460a060020a900460ff1615610b4a57600080fd5b610b543382611413565b50565b600454600160a060020a031681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610b9057600080fd5b6107a18383611502565b600160a060020a031660009081526001602052604090205490565b60035460a060020a900460ff1615610bcc57600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054811115610bfa57600080fd5b600160a060020a038216600090815260208181526040808320338452909152902054610c2c908263ffffffff6111ce16565b600160a060020a038316600090815260208181526040808320338452909152902055610c588282611413565b5050565b6003546000908190819060a060020a900460ff1615610c7a57600080fd5b8451610c8d90859063ffffffff6115ea16565b33600090815260016020526040902054909250821115610cac57600080fd5b5060005b8451811015610973578451600090869083908110610cca57fe5b60209081029091010151600160a060020a03161415610ce857600080fd5b84513390869083908110610cf857fe5b60209081029091010151600160a060020a03161415610d1657600080fd5b610d2c846001600088858151811015156108a057fe5b600160008784815181101515610d3e57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110610d6f57fe5b90602001906020020151600160a060020a031633600160a060020a03166000805160206116a9833981519152866040518082815260200191505060405180910390a3600101610cb0565b600454600160a060020a0316331480610ddc5750600354600160a060020a031633145b1515610de757600080fd5b60035460a060020a900460ff1615610dfe57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6000600160a060020a038416301415610e7457600080fd5b610aa58484611613565b60408051808201909152600181527f6900000000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610ecf57600080fd5b6107a18383611342565b6000600160a060020a038416301415610ef157600080fd5b610efc8585856111e0565b5083600160a060020a0316348360405180828051906020019080838360005b83811015610f33578181015183820152602001610f1b565b50505050905090810190601f168015610f605780820380516001836020036101000a031916815260200191505b5091505060006040518083038185875af1925050501515610f8057600080fd5b506001949350505050565b6000600160a060020a038416301415610fa357600080fd5b610aa5848461115d565b6000600160a060020a038416301415610fc557600080fd5b610aa58484611502565b60035460009060a060020a900460ff1615610fe957600080fd5b6107a18383611613565b600160a060020a0391821660009081526020818152604080832093909416825291909152205490565b600454600160a060020a031633148061103f5750600354600160a060020a031633145b151561104a57600080fd5b600160a060020a038116151561105f57600080fd5b600454604051600160a060020a038084169216907f5705a19d157bea12552e53720dc7b75b73ea8b883da95f4af3b3b3bfbeab9b2790600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600160a060020a031633146110df57600080fd5b600160a060020a03811615156110f457600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b33600081815260208181526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b818101828110156107a457fe5b6000828211156111da57fe5b50900390565b6000600160a060020a03831615156111f757600080fd5b600160a060020a03841660009081526001602052604090205482111561121c57600080fd5b600160a060020a03841660009081526020818152604080832033845290915290205482111561124a57600080fd5b600160a060020a038416600090815260016020526040902054611273908363ffffffff6111ce16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546112a8908363ffffffff6111c116565b600160a060020a03808516600090815260016020908152604080832094909455918716815280825282812033825290915220546112eb908363ffffffff6111ce16565b600160a060020a0380861660008181526020818152604080832033845282529182902094909455805186815290519287169391926000805160206116a9833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561135957600080fd5b3360009081526001602052604090205482111561137557600080fd5b33600090815260016020526040902054611395908363ffffffff6111ce16565b3360009081526001602052604080822092909255600160a060020a038516815220546113c7908363ffffffff6111c116565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206116a98339815191529281900390910190a350600192915050565b600160a060020a03821660009081526001602052604090205481111561143857600080fd5b600160a060020a038216600090815260016020526040902054611461908263ffffffff6111ce16565b600160a060020a03831660009081526001602052604090205560025461148d908263ffffffff6111ce16565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206116a98339815191529181900360200190a35050565b33600090815260208181526040808320600160a060020a0386168452909152812054808311156115535733600090815260208181526040808320600160a060020a0388168452909152812055611586565b611563818463ffffffff6111ce16565b33600090815260208181526040808320600160a060020a03891684529091529020555b33600081815260208181526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60008215156115fb575060006107a4565b5081810281838281151561160b57fe5b04146107a457fe5b33600090815260208181526040808320600160a060020a0386168452909152812054611645908363ffffffff6111c116565b33600081815260208181526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582045ca3fca39771046566120bc4b458eb8ef6af88fb7ef9e70cc5b9cec6f8f12210029
Swarm Source
bzzr://45ca3fca39771046566120bc4b458eb8ef6af88fb7ef9e70cc5b9cec6f8f1221
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.