Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 161 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 19695128 | 675 days ago | IN | 0 ETH | 0.00038505 | ||||
| Approve | 19259548 | 736 days ago | IN | 0 ETH | 0.00120166 | ||||
| Transfer | 19259495 | 736 days ago | IN | 0 ETH | 0.00110437 | ||||
| Approve | 18598747 | 829 days ago | IN | 0 ETH | 0.00091247 | ||||
| Transfer | 18338848 | 865 days ago | IN | 0 ETH | 0.00033695 | ||||
| Transfer | 18338814 | 865 days ago | IN | 0 ETH | 0.0003405 | ||||
| Transfer | 18331800 | 866 days ago | IN | 0 ETH | 0.0003122 | ||||
| Transfer | 18331757 | 866 days ago | IN | 0 ETH | 0.00027919 | ||||
| Transfer | 18296697 | 871 days ago | IN | 0 ETH | 0.00041743 | ||||
| Transfer | 18296695 | 871 days ago | IN | 0 ETH | 0.00040695 | ||||
| Transfer | 18296693 | 871 days ago | IN | 0 ETH | 0.00042192 | ||||
| Transfer | 18296691 | 871 days ago | IN | 0 ETH | 0.00040969 | ||||
| Transfer | 18296688 | 871 days ago | IN | 0 ETH | 0.0004317 | ||||
| Transfer | 18296686 | 871 days ago | IN | 0 ETH | 0.00045585 | ||||
| Transfer | 18296683 | 871 days ago | IN | 0 ETH | 0.00046605 | ||||
| Transfer | 18296680 | 871 days ago | IN | 0 ETH | 0.00033045 | ||||
| Transfer | 18296678 | 871 days ago | IN | 0 ETH | 0.00033256 | ||||
| Transfer | 18296676 | 871 days ago | IN | 0 ETH | 0.00034157 | ||||
| Transfer | 18296674 | 871 days ago | IN | 0 ETH | 0.00033009 | ||||
| Transfer | 18296668 | 871 days ago | IN | 0 ETH | 0.00039857 | ||||
| Transfer | 18296663 | 871 days ago | IN | 0 ETH | 0.00035647 | ||||
| Transfer | 18296661 | 871 days ago | IN | 0 ETH | 0.00031429 | ||||
| Transfer | 18296659 | 871 days ago | IN | 0 ETH | 0.00032584 | ||||
| Transfer | 18296657 | 871 days ago | IN | 0 ETH | 0.00033154 | ||||
| Transfer | 18296655 | 871 days ago | IN | 0 ETH | 0.00034636 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
KukuWorld
Compiler Version
v0.6.8+commit.0bbfe453
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-08-11
*/
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.6.8;
interface iERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the token decimals.
*/
function decimals() external view returns (uint8);
/**
* @dev Returns the token symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the token name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the erc token owner.
*/
function getOwner() external view returns (address);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address _owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
contract KukuWorld is Context, iERC20, Ownable {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
uint8 public _decimals;
string public _symbol;
string public _name;
mapping(address => uint256) private _lastTransactionTime;
uint256 public _transactionDelay = 60; // Time delay between transactions
constructor(address _tokenOwner) public {
_name = 'Kuku World';
_symbol = 'WORLD';
_decimals = 18;
_totalSupply = 1000000 * 10**18;
_balances[_tokenOwner] = _totalSupply;
emit Transfer(address(0), _tokenOwner, _totalSupply);
}
/**
* @dev Returns the erc token owner.
*/
function getOwner() external view virtual override returns (address) {
return owner();
}
/**
* @dev Returns the token decimals.
*/
function decimals() external view virtual override returns (uint8) {
return _decimals;
}
/**
* @dev Returns the token symbol.
*/
function symbol() external view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the token name.
*/
function name() external view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {ERC20-totalSupply}.
*/
function totalSupply() external view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {ERC20-balanceOf}.
*/
function balanceOf(address account) external view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {ERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) external override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {ERC20-allowance}.
*/
function allowance(address owner, address spender) external view override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {ERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) external override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {ERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {ERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {ERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 decreasedAllowance = _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
require(canPerformAction(sender), "BotProtectedToken: Bot challenge required");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
_lastTransactionTime[sender] = block.timestamp;
emit Transfer(sender, recipient, amount);
}
// Check if a user can perform an action
function canPerformAction(address user) public view returns (bool) {
if (block.timestamp - _lastTransactionTime[user] >= _transactionDelay) {
return true;
}
return false;
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function setTransactionTime(uint256 _seconds) public onlyOwner {
_transactionDelay = _seconds;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tokenOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_transactionDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"canPerformAction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_seconds","type":"uint256"}],"name":"setTransactionTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052603c6008553480156200001657600080fd5b506040516200141b3803806200141b833981810160405260208110156200003c57600080fd5b50516000620000536001600160e01b036200017416565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600a8082526912dd5add4815dbdc9b1960b21b6020909201918252620000d09160069162000179565b506040805180820190915260058082526415d3d4931160da1b6020909201918252620000fd918162000179565b506004805460ff1916601217905569d3c21bcecceda100000060038190556001600160a01b0382166000818152600160209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506200021b565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001bc57805160ff1916838001178555620001ec565b82800160010185558215620001ec579182015b82811115620001ec578251825591602001919060010190620001cf565b50620001fa929150620001fe565b5090565b6200017691905b80821115620001fa576000815560010162000205565b6111f0806200022b6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146103cd578063aa5b630c146103f9578063b09f126614610401578063d28d885214610409578063dd62ed3e14610411578063f2fde38b1461043f5761014d565b8063715018a61461033957806379cc679014610341578063893d20e81461036d5780638da5cb5b1461039157806395d89b4114610399578063a457c2d7146103a15761014d565b8063313ce56711610115578063313ce5671461028557806332424aa3146102a357806339509351146102ab57806342966c68146102d75780636c95e512146102f657806370a08231146103135761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd146102295780632975dfaf1461025f575b600080fd5b61015a610465565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b0381351690602001356104fb565b604080519115158252519081900360200190f35b610217610518565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b0381358116916020810135909116906040013561051e565b6101fb6004803603602081101561027557600080fd5b50356001600160a01b03166105ab565b61028d6105e4565b6040805160ff9092168252519081900360200190f35b61028d6105ed565b6101fb600480360360408110156102c157600080fd5b506001600160a01b0381351690602001356105f6565b6102f4600480360360208110156102ed57600080fd5b503561064a565b005b6102f46004803603602081101561030c57600080fd5b503561065e565b6102176004803603602081101561032957600080fd5b50356001600160a01b03166106cd565b6102f46106e8565b6102f46004803603604081101561035757600080fd5b506001600160a01b03813516906020013561079c565b6103756107ff565b604080516001600160a01b039092168252519081900360200190f35b61037561080e565b61015a61081d565b6101fb600480360360408110156103b757600080fd5b506001600160a01b03813516906020013561087e565b6101fb600480360360408110156103e357600080fd5b506001600160a01b0381351690602001356108ec565b610217610900565b61015a610906565b61015a610994565b6102176004803603604081101561042757600080fd5b506001600160a01b03813581169160200135166109ef565b6102f46004803603602081101561045557600080fd5b50356001600160a01b0316610a1a565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f15780601f106104c6576101008083540402835291602001916104f1565b820191906000526020600020905b8154815290600101906020018083116104d457829003601f168201915b5050505050905090565b600061050f610508610a8d565b8484610a91565b50600192915050565b60035490565b600061052b848484610b7d565b6105a184610537610a8d565b61059c856040518060600160405280602881526020016110e0602891396001600160a01b038a16600090815260026020526040812090610575610a8d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610d2d16565b610a91565b5060019392505050565b6008546001600160a01b03821660009081526007602052604081205490914291909103106105db575060016105df565b5060005b919050565b60045460ff1690565b60045460ff1681565b600061050f610603610a8d565b8461059c8560026000610614610a8d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610dc416565b61065b610655610a8d565b82610e25565b50565b610666610a8d565b6000546001600160a01b039081169116146106c8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b6001600160a01b031660009081526001602052604090205490565b6106f0610a8d565b6000546001600160a01b03908116911614610752576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006107dc82604051806060016040528060248152602001611108602491396001600160a01b038616600090815260026020526040812090610575610a8d565b90506107f0836107ea610a8d565b83610a91565b6107fa8383610e25565b505050565b600061080961080e565b905090565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f15780601f106104c6576101008083540402835291602001916104f1565b600061050f61088b610a8d565b8461059c8560405180606001604052806025815260200161119660259139600260006108b5610a8d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d2d16565b600061050f6108f9610a8d565b8484610b7d565b60085481565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561098c5780601f106109615761010080835404028352916020019161098c565b820191906000526020600020905b81548152906001019060200180831161096f57829003601f168201915b505050505081565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561098c5780601f106109615761010080835404028352916020019161098c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610a22610a8d565b6000546001600160a01b03908116911614610a84576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61065b81610f21565b3390565b6001600160a01b038316610ad65760405162461bcd60e51b81526004018080602001828103825260248152602001806111726024913960400191505060405180910390fd5b6001600160a01b038216610b1b5760405162461bcd60e51b81526004018080602001828103825260228152602001806110986022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610bc25760405162461bcd60e51b815260040180806020018281038252602581526020018061114d6025913960400191505060405180910390fd5b6001600160a01b038216610c075760405162461bcd60e51b81526004018080602001828103825260238152602001806110046023913960400191505060405180910390fd5b610c10836105ab565b610c4b5760405162461bcd60e51b81526004018080602001828103825260298152602001806110496029913960400191505060405180910390fd5b610c8e816040518060600160405280602681526020016110ba602691396001600160a01b038616600090815260016020526040902054919063ffffffff610d2d16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610cc3908263ffffffff610dc416565b6001600160a01b03808416600081815260016020908152604080832095909555928716808252600784529084902042905583518581529351919390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dbc5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d81578181015183820152602001610d69565b50505050905090810190601f168015610dae5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e1e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610e6a5760405162461bcd60e51b815260040180806020018281038252602181526020018061112c6021913960400191505060405180910390fd5b610ead81604051806060016040528060228152602001611027602291396001600160a01b038516600090815260016020526040902054919063ffffffff610d2d16565b6001600160a01b038316600090815260016020526040902055600354610ed9908263ffffffff610fc116565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038116610f665760405162461bcd60e51b81526004018080602001828103825260268152602001806110726026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d2d56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365426f7450726f746563746564546f6b656e3a20426f74206368616c6c656e67652072657175697265644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209bcd7b77b8f508b16db958cb181e1de091b1a74606312426372a3e2533afb7ab64736f6c634300060800330000000000000000000000003eda8adee9d8a2bf61717f36bc5ca5429ffa09c3
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146103cd578063aa5b630c146103f9578063b09f126614610401578063d28d885214610409578063dd62ed3e14610411578063f2fde38b1461043f5761014d565b8063715018a61461033957806379cc679014610341578063893d20e81461036d5780638da5cb5b1461039157806395d89b4114610399578063a457c2d7146103a15761014d565b8063313ce56711610115578063313ce5671461028557806332424aa3146102a357806339509351146102ab57806342966c68146102d75780636c95e512146102f657806370a08231146103135761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd146102295780632975dfaf1461025f575b600080fd5b61015a610465565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b0381351690602001356104fb565b604080519115158252519081900360200190f35b610217610518565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b0381358116916020810135909116906040013561051e565b6101fb6004803603602081101561027557600080fd5b50356001600160a01b03166105ab565b61028d6105e4565b6040805160ff9092168252519081900360200190f35b61028d6105ed565b6101fb600480360360408110156102c157600080fd5b506001600160a01b0381351690602001356105f6565b6102f4600480360360208110156102ed57600080fd5b503561064a565b005b6102f46004803603602081101561030c57600080fd5b503561065e565b6102176004803603602081101561032957600080fd5b50356001600160a01b03166106cd565b6102f46106e8565b6102f46004803603604081101561035757600080fd5b506001600160a01b03813516906020013561079c565b6103756107ff565b604080516001600160a01b039092168252519081900360200190f35b61037561080e565b61015a61081d565b6101fb600480360360408110156103b757600080fd5b506001600160a01b03813516906020013561087e565b6101fb600480360360408110156103e357600080fd5b506001600160a01b0381351690602001356108ec565b610217610900565b61015a610906565b61015a610994565b6102176004803603604081101561042757600080fd5b506001600160a01b03813581169160200135166109ef565b6102f46004803603602081101561045557600080fd5b50356001600160a01b0316610a1a565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f15780601f106104c6576101008083540402835291602001916104f1565b820191906000526020600020905b8154815290600101906020018083116104d457829003601f168201915b5050505050905090565b600061050f610508610a8d565b8484610a91565b50600192915050565b60035490565b600061052b848484610b7d565b6105a184610537610a8d565b61059c856040518060600160405280602881526020016110e0602891396001600160a01b038a16600090815260026020526040812090610575610a8d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610d2d16565b610a91565b5060019392505050565b6008546001600160a01b03821660009081526007602052604081205490914291909103106105db575060016105df565b5060005b919050565b60045460ff1690565b60045460ff1681565b600061050f610603610a8d565b8461059c8560026000610614610a8d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610dc416565b61065b610655610a8d565b82610e25565b50565b610666610a8d565b6000546001600160a01b039081169116146106c8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b6001600160a01b031660009081526001602052604090205490565b6106f0610a8d565b6000546001600160a01b03908116911614610752576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006107dc82604051806060016040528060248152602001611108602491396001600160a01b038616600090815260026020526040812090610575610a8d565b90506107f0836107ea610a8d565b83610a91565b6107fa8383610e25565b505050565b600061080961080e565b905090565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f15780601f106104c6576101008083540402835291602001916104f1565b600061050f61088b610a8d565b8461059c8560405180606001604052806025815260200161119660259139600260006108b5610a8d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d2d16565b600061050f6108f9610a8d565b8484610b7d565b60085481565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561098c5780601f106109615761010080835404028352916020019161098c565b820191906000526020600020905b81548152906001019060200180831161096f57829003601f168201915b505050505081565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561098c5780601f106109615761010080835404028352916020019161098c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610a22610a8d565b6000546001600160a01b03908116911614610a84576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61065b81610f21565b3390565b6001600160a01b038316610ad65760405162461bcd60e51b81526004018080602001828103825260248152602001806111726024913960400191505060405180910390fd5b6001600160a01b038216610b1b5760405162461bcd60e51b81526004018080602001828103825260228152602001806110986022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610bc25760405162461bcd60e51b815260040180806020018281038252602581526020018061114d6025913960400191505060405180910390fd5b6001600160a01b038216610c075760405162461bcd60e51b81526004018080602001828103825260238152602001806110046023913960400191505060405180910390fd5b610c10836105ab565b610c4b5760405162461bcd60e51b81526004018080602001828103825260298152602001806110496029913960400191505060405180910390fd5b610c8e816040518060600160405280602681526020016110ba602691396001600160a01b038616600090815260016020526040902054919063ffffffff610d2d16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610cc3908263ffffffff610dc416565b6001600160a01b03808416600081815260016020908152604080832095909555928716808252600784529084902042905583518581529351919390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dbc5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d81578181015183820152602001610d69565b50505050905090810190601f168015610dae5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e1e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610e6a5760405162461bcd60e51b815260040180806020018281038252602181526020018061112c6021913960400191505060405180910390fd5b610ead81604051806060016040528060228152602001611027602291396001600160a01b038516600090815260016020526040902054919063ffffffff610d2d16565b6001600160a01b038316600090815260016020526040902055600354610ed9908263ffffffff610fc116565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038116610f665760405162461bcd60e51b81526004018080602001828103825260268152602001806110726026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d2d56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365426f7450726f746563746564546f6b656e3a20426f74206368616c6c656e67652072657175697265644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209bcd7b77b8f508b16db958cb181e1de091b1a74606312426372a3e2533afb7ab64736f6c63430006080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003eda8adee9d8a2bf61717f36bc5ca5429ffa09c3
-----Decoded View---------------
Arg [0] : _tokenOwner (address): 0x3EDa8adee9D8a2BF61717F36Bc5Ca5429Ffa09c3
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003eda8adee9d8a2bf61717f36bc5ca5429ffa09c3
Deployed Bytecode Sourcemap
11345:8152:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11345:8152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;12590:96: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;12590:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13699:153;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13699:153:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12742:104;;;:::i;:::-;;;;;;;;;;;;;;;;14297:301;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14297:301:0;;;;;;;;;;;;;;;;;:::i;17795:217::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17795:217:0;-1:-1:-1;;;;;17795:217:0;;:::i;12284:96::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11592:22;;;:::i;14980:200::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14980:200:0;;;;;;;;:::i;16013:87::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16013:87:0;;:::i;:::-;;19388:106;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19388:106:0;;:::i;12900:123::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12900:123:0;-1:-1:-1;;;;;12900:123:0;;:::i;10647:130::-;;;:::i;16405:289::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16405:289:0;;;;;;;;:::i;12129:96::-;;;:::i;:::-;;;;-1:-1:-1;;;;;12129:96:0;;;;;;;;;;;;;;10045:73;;;:::i;12437:100::-;;;:::i;15652:251::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15652:251:0;;;;;;;;:::i;13217:159::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13217:159:0;;;;;;;;:::i;11730:37::-;;;:::i;11619:21::-;;;:::i;11645:19::-;;;:::i;13430:139::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13430:139:0;;;;;;;;;;:::i;10922:103::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10922:103:0;-1:-1:-1;;;;;10922:103:0;;:::i;12590:96::-;12675:5;12668:12;;;;;;;;-1:-1:-1;;12668:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12646:13;;12668:12;;12675:5;;12668:12;;12675:5;12668:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12590:96;:::o;13699:153::-;13776:4;13789:39;13798:12;:10;:12::i;:::-;13812:7;13821:6;13789:8;:39::i;:::-;-1:-1:-1;13842:4:0;13699:153;;;;:::o;12742:104::-;12828:12;;12742:104;:::o;14297:301::-;14397:4;14410:36;14420:6;14428:9;14439:6;14410:9;:36::i;:::-;14453:121;14462:6;14470:12;:10;:12::i;:::-;14484:89;14522:6;14484:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14484:19:0;;;;;;:11;:19;;;;;;14504:12;:10;:12::i;:::-;-1:-1:-1;;;;;14484:33:0;;;;;;;;;;;;-1:-1:-1;14484:33:0;;;:89;;:37;:89;:::i;:::-;14453:8;:121::i;:::-;-1:-1:-1;14588:4:0;14297:301;;;;;:::o;17795:217::-;17925:17;;-1:-1:-1;;;;;17895:26:0;;17856:4;17895:26;;;:20;:26;;;;;;17856:4;;17877:15;:44;;;;:65;17873:109;;-1:-1:-1;17966:4:0;17959:11;;17873:109;-1:-1:-1;17999:5:0;17795:217;;;;:::o;12284:96::-;12365:9;;;;12284:96;:::o;11592:22::-;;;;;;:::o;14980:200::-;15060:4;15073:83;15082:12;:10;:12::i;:::-;15096:7;15105:50;15144:10;15105:11;:25;15117:12;:10;:12::i;:::-;-1:-1:-1;;;;;15105:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15105:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;16013:87::-;16067:27;16073:12;:10;:12::i;:::-;16087:6;16067:5;:27::i;:::-;16013:87;:::o;19388:106::-;10249:12;:10;:12::i;:::-;10239:6;;-1:-1:-1;;;;;10239:6:0;;;:22;;;10231:67;;;;;-1:-1:-1;;;10231:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19460:17:::1;:28:::0;19388:106::o;12900:123::-;-1:-1:-1;;;;;12999:18:0;12976:7;12999:18;;;:9;:18;;;;;;;12900:123::o;10647:130::-;10249:12;:10;:12::i;:::-;10239:6;;-1:-1:-1;;;;;10239:6:0;;;:22;;;10231:67;;;;;-1:-1:-1;;;10231:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10742:1:::1;10726:6:::0;;10705:40:::1;::::0;-1:-1:-1;;;;;10726:6:0;;::::1;::::0;10705:40:::1;::::0;10742:1;;10705:40:::1;10769:1;10752:19:::0;;-1:-1:-1;;;;;;10752:19:0::1;::::0;;10647:130::o;16405:289::-;16480:26;16509:86;16548:6;16509:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16509:20:0;;;;;;:11;:20;;;;;;16530:12;:10;:12::i;16509:86::-;16480:115;;16606:51;16615:7;16624:12;:10;:12::i;:::-;16638:18;16606:8;:51::i;:::-;16666:22;16672:7;16681:6;16666:5;:22::i;:::-;16405:289;;;:::o;12129:96::-;12189:7;12212;:5;:7::i;:::-;12205:14;;12129:96;:::o;10045:73::-;10083:7;10106:6;-1:-1:-1;;;;;10106:6:0;10045:73;:::o;12437:100::-;12524:7;12517:14;;;;;;;;-1:-1:-1;;12517:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12495:13;;12517:14;;12524:7;;12517:14;;12524:7;12517:14;;;;;;;;;;;;;;;;;;;;;;;;15652:251;15737:4;15750:129;15759:12;:10;:12::i;:::-;15773:7;15782:96;15821:15;15782:96;;;;;;;;;;;;;;;;;:11;:25;15794:12;:10;:12::i;:::-;-1:-1:-1;;;;;15782:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15782:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;13217:159::-;13297:4;13310:42;13320:12;:10;:12::i;:::-;13334:9;13345:6;13310:9;:42::i;11730:37::-;;;;:::o;11619:21::-;;;;;;;;;;;;;;;-1:-1:-1;;11619:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11645:19::-;;;;;;;;;;;;;;;-1:-1:-1;;11645:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13430:139;-1:-1:-1;;;;;13536:18:0;;;13513:7;13536:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13430:139::o;10922:103::-;10249:12;:10;:12::i;:::-;10239:6;;-1:-1:-1;;;;;10239:6:0;;;:22;;;10231:67;;;;;-1:-1:-1;;;10231:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10991:28:::1;11010:8;10991:18;:28::i;3742:92::-:0;3818:10;3742:92;:::o;19062:320::-;-1:-1:-1;;;;;19152:19:0;;19144:68;;;;-1:-1:-1;;;19144:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19227:21:0;;19219:68;;;;-1:-1:-1;;;19219:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19296:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19344:32;;;;;;;;;;;;;;;;;19062:320;;;:::o;17156:585::-;-1:-1:-1;;;;;17250:20:0;;17242:70;;;;-1:-1:-1;;;17242:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17327:23:0;;17319:71;;;;-1:-1:-1;;;17319:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17405:24;17422:6;17405:16;:24::i;:::-;17397:78;;;;-1:-1:-1;;;17397:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17502:71;17524:6;17502:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17502:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17482:17:0;;;;;;;:9;:17;;;;;;:91;;;;17603:20;;;;;;;:32;;17628:6;17603:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17580:20:0;;;;;;;:9;:20;;;;;;;;:55;;;;17642:28;;;;;;:20;:28;;;;;;17673:15;17642:46;;17700:35;;;;;;;17580:20;;17642:28;;17700:35;;;;;;;;;17156:585;;;:::o;5701:178::-;5787:7;5819:12;5811:6;;;;5803:29;;;;-1:-1:-1;;;5803:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23: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;5803:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5851:5:0;;;5701:178::o;4874:167::-;4932:7;4960:5;;;4980:6;;;;4972:46;;;;;-1:-1:-1;;;4972:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5034:1;4874:167;-1:-1:-1;;;4874:167:0:o;18320:330::-;-1:-1:-1;;;;;18392:21:0;;18384:67;;;;-1:-1:-1;;;18384:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18481:68;18504:6;18481:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18481:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18460:18:0;;;;;;:9;:18;;;;;:89;18571:12;;:24;;18588:6;18571:24;:16;:24;:::i;:::-;18556:12;:39;18607:37;;;;;;;;18633:1;;-1:-1:-1;;;;;18607:37:0;;;;;;;;;;;;18320:330;;:::o;11123:215::-;-1:-1:-1;;;;;11193:22:0;;11185:73;;;;-1:-1:-1;;;11185:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11291:6;;;11270:38;;-1:-1:-1;;;;;11270:38:0;;;;11291:6;;;11270:38;;;11315:6;:17;;-1:-1:-1;;;;;;11315:17:0;-1:-1:-1;;;;;11315:17:0;;;;;;;;;;11123:215::o;5296:130::-;5354:7;5377:43;5381:1;5384;5377:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://9bcd7b77b8f508b16db958cb181e1de091b1a74606312426372a3e2533afb7ab
Loading...
Loading
Loading...
Loading
Net Worth in USD
$5.79
Net Worth in ETH
0.003143
Token Allocations
WLD
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| WORLD | 100.00% | $0.385868 | 15 | $5.79 |
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.