Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17558382 | 558 days ago | IN | 0 ETH | 0.00063096 | ||||
Approve | 17548932 | 559 days ago | IN | 0 ETH | 0.00059656 | ||||
Approve | 17548922 | 559 days ago | IN | 0 ETH | 0.00074358 | ||||
Approve | 17548911 | 559 days ago | IN | 0 ETH | 0.0007517 | ||||
Approve | 17548890 | 559 days ago | IN | 0 ETH | 0.00064073 | ||||
Approve | 17548888 | 559 days ago | IN | 0 ETH | 0.00061062 | ||||
Approve | 17548869 | 559 days ago | IN | 0 ETH | 0.0006186 | ||||
Approve | 17548864 | 559 days ago | IN | 0 ETH | 0.00094376 | ||||
Approve | 17548862 | 559 days ago | IN | 0 ETH | 0.00067368 | ||||
Approve | 17548860 | 559 days ago | IN | 0 ETH | 0.00069437 | ||||
Approve | 17548855 | 559 days ago | IN | 0 ETH | 0.00075553 | ||||
Approve | 17548855 | 559 days ago | IN | 0 ETH | 0.00075553 | ||||
Approve | 17548853 | 559 days ago | IN | 0 ETH | 0.00074648 | ||||
Approve | 17548852 | 559 days ago | IN | 0 ETH | 0.00082284 | ||||
Approve | 17548846 | 559 days ago | IN | 0 ETH | 0.00077605 | ||||
Approve | 17548842 | 559 days ago | IN | 0 ETH | 0.00079973 | ||||
Approve | 17548842 | 559 days ago | IN | 0 ETH | 0.00079973 | ||||
Approve | 17548839 | 559 days ago | IN | 0 ETH | 0.00085956 | ||||
Renounce Ownersh... | 17548837 | 559 days ago | IN | 0 ETH | 0.00034003 | ||||
Approve | 17548834 | 559 days ago | IN | 0 ETH | 0.00082572 | ||||
Approve | 17548831 | 559 days ago | IN | 0 ETH | 0.00078862 | ||||
Approve | 17548830 | 559 days ago | IN | 0 ETH | 0.00081404 | ||||
Approve | 17548828 | 559 days ago | IN | 0 ETH | 0.00076981 | ||||
Approve | 17548584 | 559 days ago | IN | 0 ETH | 0.00058357 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
elonjujitsuzucker
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-24 */ /** Website : https://elonjujitsuzucker.site Telegram : https://t.me/elonjujitsuzuckerportal Twitter : https://twitter.com/elonjujitzucker **/ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @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); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @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. */ abstract 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 virtual onlyOwner { _setOwner(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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard, antiBotStandard, liquidityGenerator, antiBotLiquidityGenerator, baby, antiBotBaby, buybackBaby, antiBotBuybackBaby } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.20; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/BaseToken.sol"; contract elonjujitsuzucker is IERC20, Ownable, BaseToken { using SafeMath for uint256; uint256 public constant VERSION = 1; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_ ) { _name = name_; _symbol = symbol_; _decimals = decimals_; _mint(owner(), totalSupply_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-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 ) public virtual 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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual 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 {IERC20-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 virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 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 virtual { 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); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"VERSION","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":[],"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":[{"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":[],"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
608060405234801562000010575f80fd5b50604051620021b6380380620021b68339818101604052810190620000369190620005da565b620000566200004a6200013860201b60201c565b6200013f60201b60201c565b8360039081620000679190620008b5565b508260049081620000799190620008b5565b508160055f6101000a81548160ff021916908360ff160217905550620000b5620000a86200020060201b60201c565b826200022760201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff16620000dc6200020060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe35625f60016040516200012692919062000a26565b60405180910390a35050505062000b51565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000298576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028f9062000aaf565b60405180910390fd5b620002ab5f8383620003c660201b60201c565b620002c281600654620003cb60201b90919060201c565b6006819055506200031a8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620003cb60201b90919060201c565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ba919062000acf565b60405180910390a35050565b505050565b5f8183620003da919062000b17565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200044382620003fb565b810181811067ffffffffffffffff821117156200046557620004646200040b565b5b80604052505050565b5f62000479620003e2565b905062000487828262000438565b919050565b5f67ffffffffffffffff821115620004a957620004a86200040b565b5b620004b482620003fb565b9050602081019050919050565b5f5b83811015620004e0578082015181840152602081019050620004c3565b5f8484015250505050565b5f62000501620004fb846200048c565b6200046e565b90508281526020810184848401111562000520576200051f620003f7565b5b6200052d848285620004c1565b509392505050565b5f82601f8301126200054c576200054b620003f3565b5b81516200055e848260208601620004eb565b91505092915050565b5f60ff82169050919050565b6200057e8162000567565b811462000589575f80fd5b50565b5f815190506200059c8162000573565b92915050565b5f819050919050565b620005b681620005a2565b8114620005c1575f80fd5b50565b5f81519050620005d481620005ab565b92915050565b5f805f8060808587031215620005f557620005f4620003eb565b5b5f85015167ffffffffffffffff811115620006155762000614620003ef565b5b620006238782880162000535565b945050602085015167ffffffffffffffff811115620006475762000646620003ef565b5b620006558782880162000535565b935050604062000668878288016200058c565b92505060606200067b87828801620005c4565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006d657607f821691505b602082108103620006ec57620006eb62000691565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000713565b6200075c868362000713565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200079d620007976200079184620005a2565b62000774565b620005a2565b9050919050565b5f819050919050565b620007b8836200077d565b620007d0620007c782620007a4565b8484546200071f565b825550505050565b5f90565b620007e6620007d8565b620007f3818484620007ad565b505050565b5b818110156200081a576200080e5f82620007dc565b600181019050620007f9565b5050565b601f82111562000869576200083381620006f2565b6200083e8462000704565b810160208510156200084e578190505b620008666200085d8562000704565b830182620007f8565b50505b505050565b5f82821c905092915050565b5f6200088b5f19846008026200086e565b1980831691505092915050565b5f620008a583836200087a565b9150826002028217905092915050565b620008c08262000687565b67ffffffffffffffff811115620008dc57620008db6200040b565b5b620008e88254620006be565b620008f58282856200081e565b5f60209050601f8311600181146200092b575f841562000916578287015190505b62000922858262000898565b86555062000991565b601f1984166200093b86620006f2565b5f5b8281101562000964578489015182556001820191506020850194506020810190506200093d565b8683101562000984578489015162000980601f8916826200087a565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b60088110620009da57620009d962000999565b5b50565b5f819050620009ec82620009c6565b919050565b5f620009fd82620009dd565b9050919050565b62000a0f81620009f1565b82525050565b62000a2081620005a2565b82525050565b5f60408201905062000a3b5f83018562000a04565b62000a4a602083018462000a15565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a97601f8362000a51565b915062000aa48262000a61565b602082019050919050565b5f6020820190508181035f83015262000ac88162000a89565b9050919050565b5f60208201905062000ae45f83018462000a15565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000b2382620005a2565b915062000b3083620005a2565b925082820190508082111562000b4b5762000b4a62000aea565b5b92915050565b6116578062000b5f5f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb14610287578063dd62ed3e146102b7578063f2fde38b146102e7578063ffa1ad7414610303576100f3565b8063715018a6146102115780638da5cb5b1461021b57806395d89b4114610239578063a457c2d714610257576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff610321565b60405161010c9190610f64565b60405180910390f35b61012f600480360381019061012a9190611015565b6103b1565b60405161013c919061106d565b60405180910390f35b61014d6103ce565b60405161015a9190611095565b60405180910390f35b61017d600480360381019061017891906110ae565b6103d7565b60405161018a919061106d565b60405180910390f35b61019b6104ab565b6040516101a89190611119565b60405180910390f35b6101cb60048036038101906101c69190611015565b6104c0565b6040516101d8919061106d565b60405180910390f35b6101fb60048036038101906101f69190611132565b61056e565b6040516102089190611095565b60405180910390f35b6102196105b4565b005b61022361063b565b604051610230919061116c565b60405180910390f35b610241610662565b60405161024e9190610f64565b60405180910390f35b610271600480360381019061026c9190611015565b6106f2565b60405161027e919061106d565b60405180910390f35b6102a1600480360381019061029c9190611015565b6107ba565b6040516102ae919061106d565b60405180910390f35b6102d160048036038101906102cc9190611185565b6107d7565b6040516102de9190611095565b60405180910390f35b61030160048036038101906102fc9190611132565b610859565b005b61030b61094f565b6040516103189190611095565b60405180910390f35b606060038054610330906111f0565b80601f016020809104026020016040519081016040528092919081815260200182805461035c906111f0565b80156103a75780601f1061037e576101008083540402835291602001916103a7565b820191905f5260205f20905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b5f6103c46103bd610954565b848461095b565b6001905092915050565b5f600654905090565b5f6103e3848484610b1e565b6104a0846103ef610954565b61049b856040518060600160405280602881526020016115d56028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610452610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dab9092919063ffffffff16565b61095b565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f6105646104cc610954565b8461055f8560025f6104dc610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dff90919063ffffffff16565b61095b565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105bc610954565b73ffffffffffffffffffffffffffffffffffffffff166105da61063b565b73ffffffffffffffffffffffffffffffffffffffff1614610630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106279061126a565b60405180910390fd5b6106395f610e14565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610671906111f0565b80601f016020809104026020016040519081016040528092919081815260200182805461069d906111f0565b80156106e85780601f106106bf576101008083540402835291602001916106e8565b820191905f5260205f20905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b5f6107b06106fe610954565b846107ab856040518060600160405280602581526020016115fd6025913960025f610727610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dab9092919063ffffffff16565b61095b565b6001905092915050565b5f6107cd6107c6610954565b8484610b1e565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610861610954565b73ffffffffffffffffffffffffffffffffffffffff1661087f61063b565b73ffffffffffffffffffffffffffffffffffffffff16146108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc9061126a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906112f8565b60405180910390fd5b61094c81610e14565b50565b600181565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611386565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90611414565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b119190611095565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906114a2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611530565b60405180910390fd5b610c05838383610ed5565b610c6f816040518060600160405280602681526020016115af6026913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dab9092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610d008160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dff90919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d9e9190611095565b60405180910390a3505050565b5f838311158290610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de99190610f64565b60405180910390fd5b5082840390509392505050565b5f8183610e0c919061157b565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f11578082015181840152602081019050610ef6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f3682610eda565b610f408185610ee4565b9350610f50818560208601610ef4565b610f5981610f1c565b840191505092915050565b5f6020820190508181035f830152610f7c8184610f2c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fb182610f88565b9050919050565b610fc181610fa7565b8114610fcb575f80fd5b50565b5f81359050610fdc81610fb8565b92915050565b5f819050919050565b610ff481610fe2565b8114610ffe575f80fd5b50565b5f8135905061100f81610feb565b92915050565b5f806040838503121561102b5761102a610f84565b5b5f61103885828601610fce565b925050602061104985828601611001565b9150509250929050565b5f8115159050919050565b61106781611053565b82525050565b5f6020820190506110805f83018461105e565b92915050565b61108f81610fe2565b82525050565b5f6020820190506110a85f830184611086565b92915050565b5f805f606084860312156110c5576110c4610f84565b5b5f6110d286828701610fce565b93505060206110e386828701610fce565b92505060406110f486828701611001565b9150509250925092565b5f60ff82169050919050565b611113816110fe565b82525050565b5f60208201905061112c5f83018461110a565b92915050565b5f6020828403121561114757611146610f84565b5b5f61115484828501610fce565b91505092915050565b61116681610fa7565b82525050565b5f60208201905061117f5f83018461115d565b92915050565b5f806040838503121561119b5761119a610f84565b5b5f6111a885828601610fce565b92505060206111b985828601610fce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061120757607f821691505b60208210810361121a576112196111c3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611254602083610ee4565b915061125f82611220565b602082019050919050565b5f6020820190508181035f83015261128181611248565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6112e2602683610ee4565b91506112ed82611288565b604082019050919050565b5f6020820190508181035f83015261130f816112d6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611370602483610ee4565b915061137b82611316565b604082019050919050565b5f6020820190508181035f83015261139d81611364565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113fe602283610ee4565b9150611409826113a4565b604082019050919050565b5f6020820190508181035f83015261142b816113f2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61148c602583610ee4565b915061149782611432565b604082019050919050565b5f6020820190508181035f8301526114b981611480565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61151a602383610ee4565b9150611525826114c0565b604082019050919050565b5f6020820190508181035f8301526115478161150e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61158582610fe2565b915061159083610fe2565b92508282019050808211156115a8576115a761154e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba226e26f6e6028d5abc35c100ec30b85d7d25aa4dd6ee16fc24f0f8c764757c64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000003635c9adc5dea000000000000000000000000000000000000000000000000000000000000000000011656c6f6e6a756a697473757a75636b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454c4f4e00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb14610287578063dd62ed3e146102b7578063f2fde38b146102e7578063ffa1ad7414610303576100f3565b8063715018a6146102115780638da5cb5b1461021b57806395d89b4114610239578063a457c2d714610257576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff610321565b60405161010c9190610f64565b60405180910390f35b61012f600480360381019061012a9190611015565b6103b1565b60405161013c919061106d565b60405180910390f35b61014d6103ce565b60405161015a9190611095565b60405180910390f35b61017d600480360381019061017891906110ae565b6103d7565b60405161018a919061106d565b60405180910390f35b61019b6104ab565b6040516101a89190611119565b60405180910390f35b6101cb60048036038101906101c69190611015565b6104c0565b6040516101d8919061106d565b60405180910390f35b6101fb60048036038101906101f69190611132565b61056e565b6040516102089190611095565b60405180910390f35b6102196105b4565b005b61022361063b565b604051610230919061116c565b60405180910390f35b610241610662565b60405161024e9190610f64565b60405180910390f35b610271600480360381019061026c9190611015565b6106f2565b60405161027e919061106d565b60405180910390f35b6102a1600480360381019061029c9190611015565b6107ba565b6040516102ae919061106d565b60405180910390f35b6102d160048036038101906102cc9190611185565b6107d7565b6040516102de9190611095565b60405180910390f35b61030160048036038101906102fc9190611132565b610859565b005b61030b61094f565b6040516103189190611095565b60405180910390f35b606060038054610330906111f0565b80601f016020809104026020016040519081016040528092919081815260200182805461035c906111f0565b80156103a75780601f1061037e576101008083540402835291602001916103a7565b820191905f5260205f20905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b5f6103c46103bd610954565b848461095b565b6001905092915050565b5f600654905090565b5f6103e3848484610b1e565b6104a0846103ef610954565b61049b856040518060600160405280602881526020016115d56028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610452610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dab9092919063ffffffff16565b61095b565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f6105646104cc610954565b8461055f8560025f6104dc610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dff90919063ffffffff16565b61095b565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105bc610954565b73ffffffffffffffffffffffffffffffffffffffff166105da61063b565b73ffffffffffffffffffffffffffffffffffffffff1614610630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106279061126a565b60405180910390fd5b6106395f610e14565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610671906111f0565b80601f016020809104026020016040519081016040528092919081815260200182805461069d906111f0565b80156106e85780601f106106bf576101008083540402835291602001916106e8565b820191905f5260205f20905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b5f6107b06106fe610954565b846107ab856040518060600160405280602581526020016115fd6025913960025f610727610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dab9092919063ffffffff16565b61095b565b6001905092915050565b5f6107cd6107c6610954565b8484610b1e565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610861610954565b73ffffffffffffffffffffffffffffffffffffffff1661087f61063b565b73ffffffffffffffffffffffffffffffffffffffff16146108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc9061126a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906112f8565b60405180910390fd5b61094c81610e14565b50565b600181565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611386565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90611414565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b119190611095565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906114a2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611530565b60405180910390fd5b610c05838383610ed5565b610c6f816040518060600160405280602681526020016115af6026913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dab9092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610d008160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dff90919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d9e9190611095565b60405180910390a3505050565b5f838311158290610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de99190610f64565b60405180910390fd5b5082840390509392505050565b5f8183610e0c919061157b565b905092915050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f11578082015181840152602081019050610ef6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f3682610eda565b610f408185610ee4565b9350610f50818560208601610ef4565b610f5981610f1c565b840191505092915050565b5f6020820190508181035f830152610f7c8184610f2c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fb182610f88565b9050919050565b610fc181610fa7565b8114610fcb575f80fd5b50565b5f81359050610fdc81610fb8565b92915050565b5f819050919050565b610ff481610fe2565b8114610ffe575f80fd5b50565b5f8135905061100f81610feb565b92915050565b5f806040838503121561102b5761102a610f84565b5b5f61103885828601610fce565b925050602061104985828601611001565b9150509250929050565b5f8115159050919050565b61106781611053565b82525050565b5f6020820190506110805f83018461105e565b92915050565b61108f81610fe2565b82525050565b5f6020820190506110a85f830184611086565b92915050565b5f805f606084860312156110c5576110c4610f84565b5b5f6110d286828701610fce565b93505060206110e386828701610fce565b92505060406110f486828701611001565b9150509250925092565b5f60ff82169050919050565b611113816110fe565b82525050565b5f60208201905061112c5f83018461110a565b92915050565b5f6020828403121561114757611146610f84565b5b5f61115484828501610fce565b91505092915050565b61116681610fa7565b82525050565b5f60208201905061117f5f83018461115d565b92915050565b5f806040838503121561119b5761119a610f84565b5b5f6111a885828601610fce565b92505060206111b985828601610fce565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061120757607f821691505b60208210810361121a576112196111c3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611254602083610ee4565b915061125f82611220565b602082019050919050565b5f6020820190508181035f83015261128181611248565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6112e2602683610ee4565b91506112ed82611288565b604082019050919050565b5f6020820190508181035f83015261130f816112d6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611370602483610ee4565b915061137b82611316565b604082019050919050565b5f6020820190508181035f83015261139d81611364565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113fe602283610ee4565b9150611409826113a4565b604082019050919050565b5f6020820190508181035f83015261142b816113f2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61148c602583610ee4565b915061149782611432565b604082019050919050565b5f6020820190508181035f8301526114b981611480565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61151a602383610ee4565b9150611525826114c0565b604082019050919050565b5f6020820190508181035f8301526115478161150e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61158582610fe2565b915061159083610fe2565b92508282019050808211156115a8576115a761154e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba226e26f6e6028d5abc35c100ec30b85d7d25aa4dd6ee16fc24f0f8c764757c64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000003635c9adc5dea000000000000000000000000000000000000000000000000000000000000000000011656c6f6e6a756a697473757a75636b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454c4f4e00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): elonjujitsuzucker
Arg [1] : symbol_ (string): ELON
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 1000000000000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 656c6f6e6a756a697473757a75636b6572000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 454c4f4e00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13963:10391:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14782:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17069:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15881:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17761:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15725:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18624:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16052:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5604:94;;;:::i;:::-;;4953:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14992:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19427:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16442:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16721:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5853:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14062:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14782:91;14827:13;14860:5;14853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14782:91;:::o;17069:210::-;17188:4;17210:39;17219:12;:10;:12::i;:::-;17233:7;17242:6;17210:8;:39::i;:::-;17267:4;17260:11;;17069:210;;;;:::o;15881:108::-;15942:7;15969:12;;15962:19;;15881:108;:::o;17761:454::-;17901:4;17918:36;17928:6;17936:9;17947:6;17918:9;:36::i;:::-;17965:220;17988:6;18009:12;:10;:12::i;:::-;18036:138;18092:6;18036:138;;;;;;;;;;;;;;;;;:11;:19;18048:6;18036:19;;;;;;;;;;;;;;;:33;18056:12;:10;:12::i;:::-;18036:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;17965:8;:220::i;:::-;18203:4;18196:11;;17761:454;;;;;:::o;15725:91::-;15774:5;15799:9;;;;;;;;;;;15792:16;;15725:91;:::o;18624:300::-;18739:4;18761:133;18784:12;:10;:12::i;:::-;18811:7;18833:50;18872:10;18833:11;:25;18845:12;:10;:12::i;:::-;18833:25;;;;;;;;;;;;;;;:34;18859:7;18833:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18761:8;:133::i;:::-;18912:4;18905:11;;18624:300;;;;:::o;16052:177::-;16171:7;16203:9;:18;16213:7;16203:18;;;;;;;;;;;;;;;;16196:25;;16052:177;;;:::o;5604:94::-;5184:12;:10;:12::i;:::-;5173:23;;:7;:5;:7::i;:::-;:23;;;5165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5669:21:::1;5687:1;5669:9;:21::i;:::-;5604:94::o:0;4953:87::-;4999:7;5026:6;;;;;;;;;;;5019:13;;4953:87;:::o;14992:95::-;15039:13;15072:7;15065:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14992:95;:::o;19427:400::-;19547:4;19569:228;19592:12;:10;:12::i;:::-;19619:7;19641:145;19698:15;19641:145;;;;;;;;;;;;;;;;;:11;:25;19653:12;:10;:12::i;:::-;19641:25;;;;;;;;;;;;;;;:34;19667:7;19641:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19569:8;:228::i;:::-;19815:4;19808:11;;19427:400;;;;:::o;16442:216::-;16564:4;16586:42;16596:12;:10;:12::i;:::-;16610:9;16621:6;16586:9;:42::i;:::-;16646:4;16639:11;;16442:216;;;;:::o;16721:201::-;16855:7;16887:11;:18;16899:5;16887:18;;;;;;;;;;;;;;;:27;16906:7;16887:27;;;;;;;;;;;;;;;;16880:34;;16721:201;;;;:::o;5853:192::-;5184:12;:10;:12::i;:::-;5173:23;;:7;:5;:7::i;:::-;:23;;;5165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5962:1:::1;5942:22;;:8;:22;;::::0;5934:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6018:19;6028:8;6018:9;:19::i;:::-;5853:192:::0;:::o;14062:35::-;14096:1;14062:35;:::o;3671:98::-;3724:7;3751:10;3744:17;;3671:98;:::o;22813:380::-;22966:1;22949:19;;:5;:19;;;22941:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23047:1;23028:21;;:7;:21;;;23020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23131:6;23101:11;:18;23113:5;23101:18;;;;;;;;;;;;;;;:27;23120:7;23101:27;;;;;;;;;;;;;;;:36;;;;23169:7;23153:32;;23162:5;23153:32;;;23178:6;23153:32;;;;;;:::i;:::-;;;;;;;;22813:380;;;:::o;20317:610::-;20475:1;20457:20;;:6;:20;;;20449:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20559:1;20538:23;;:9;:23;;;20530:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20614:47;20635:6;20643:9;20654:6;20614:20;:47::i;:::-;20694:108;20730:6;20694:108;;;;;;;;;;;;;;;;;:9;:17;20704:6;20694:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;20674:9;:17;20684:6;20674:17;;;;;;;;;;;;;;;:128;;;;20836:32;20861:6;20836:9;:20;20846:9;20836:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20813:9;:20;20823:9;20813:20;;;;;;;;;;;;;;;:55;;;;20901:9;20884:35;;20893:6;20884:35;;;20912:6;20884:35;;;;;;:::i;:::-;;;;;;;;20317:610;;;:::o;11318:240::-;11438:7;11496:1;11491;:6;;11499:12;11483:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11538:1;11534;:5;11527:12;;11318:240;;;;;:::o;9039:98::-;9097:7;9128:1;9124;:5;;;;:::i;:::-;9117:12;;9039:98;;;;:::o;6053:173::-;6109:16;6128:6;;;;;;;;;;;6109:25;;6154:8;6145:6;;:17;;;;;;;;;;;;;;;;;;6209:8;6178:40;;6199:8;6178:40;;;;;;;;;;;;6098:128;6053:173;:::o;24226:125::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:182::-;6672:34;6668:1;6660:6;6656:14;6649:58;6532:182;:::o;6720:366::-;6862:3;6883:67;6947:2;6942:3;6883:67;:::i;:::-;6876:74;;6959:93;7048:3;6959:93;:::i;:::-;7077:2;7072:3;7068:12;7061:19;;6720:366;;;:::o;7092:419::-;7258:4;7296:2;7285:9;7281:18;7273:26;;7345:9;7339:4;7335:20;7331:1;7320:9;7316:17;7309:47;7373:131;7499:4;7373:131;:::i;:::-;7365:139;;7092:419;;;:::o;7517:225::-;7657:34;7653:1;7645:6;7641:14;7634:58;7726:8;7721:2;7713:6;7709:15;7702:33;7517:225;:::o;7748:366::-;7890:3;7911:67;7975:2;7970:3;7911:67;:::i;:::-;7904:74;;7987:93;8076:3;7987:93;:::i;:::-;8105:2;8100:3;8096:12;8089:19;;7748:366;;;:::o;8120:419::-;8286:4;8324:2;8313:9;8309:18;8301:26;;8373:9;8367:4;8363:20;8359:1;8348:9;8344:17;8337:47;8401:131;8527:4;8401:131;:::i;:::-;8393:139;;8120:419;;;:::o;8545:223::-;8685:34;8681:1;8673:6;8669:14;8662:58;8754:6;8749:2;8741:6;8737:15;8730:31;8545:223;:::o;8774:366::-;8916:3;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9013:93;9102:3;9013:93;:::i;:::-;9131:2;9126:3;9122:12;9115:19;;8774:366;;;:::o;9146:419::-;9312:4;9350:2;9339:9;9335:18;9327:26;;9399:9;9393:4;9389:20;9385:1;9374:9;9370:17;9363:47;9427:131;9553:4;9427:131;:::i;:::-;9419:139;;9146:419;;;:::o;9571:221::-;9711:34;9707:1;9699:6;9695:14;9688:58;9780:4;9775:2;9767:6;9763:15;9756:29;9571:221;:::o;9798:366::-;9940:3;9961:67;10025:2;10020:3;9961:67;:::i;:::-;9954:74;;10037:93;10126:3;10037:93;:::i;:::-;10155:2;10150:3;10146:12;10139:19;;9798:366;;;:::o;10170:419::-;10336:4;10374:2;10363:9;10359:18;10351:26;;10423:9;10417:4;10413:20;10409:1;10398:9;10394:17;10387:47;10451:131;10577:4;10451:131;:::i;:::-;10443:139;;10170:419;;;:::o;10595:224::-;10735:34;10731:1;10723:6;10719:14;10712:58;10804:7;10799:2;10791:6;10787:15;10780:32;10595:224;:::o;10825:366::-;10967:3;10988:67;11052:2;11047:3;10988:67;:::i;:::-;10981:74;;11064:93;11153:3;11064:93;:::i;:::-;11182:2;11177:3;11173:12;11166:19;;10825:366;;;:::o;11197:419::-;11363:4;11401:2;11390:9;11386:18;11378:26;;11450:9;11444:4;11440:20;11436:1;11425:9;11421:17;11414:47;11478:131;11604:4;11478:131;:::i;:::-;11470:139;;11197:419;;;:::o;11622:222::-;11762:34;11758:1;11750:6;11746:14;11739:58;11831:5;11826:2;11818:6;11814:15;11807:30;11622:222;:::o;11850:366::-;11992:3;12013:67;12077:2;12072:3;12013:67;:::i;:::-;12006:74;;12089:93;12178:3;12089:93;:::i;:::-;12207:2;12202:3;12198:12;12191:19;;11850:366;;;:::o;12222:419::-;12388:4;12426:2;12415:9;12411:18;12403:26;;12475:9;12469:4;12465:20;12461:1;12450:9;12446:17;12439:47;12503:131;12629:4;12503:131;:::i;:::-;12495:139;;12222:419;;;:::o;12647:180::-;12695:77;12692:1;12685:88;12792:4;12789:1;12782:15;12816:4;12813:1;12806:15;12833:191;12873:3;12892:20;12910:1;12892:20;:::i;:::-;12887:25;;12926:20;12944:1;12926:20;:::i;:::-;12921:25;;12969:1;12966;12962:9;12955:16;;12990:3;12987:1;12984:10;12981:36;;;12997:18;;:::i;:::-;12981:36;12833:191;;;;:::o
Swarm Source
ipfs://ba226e26f6e6028d5abc35c100ec30b85d7d25aa4dd6ee16fc24f0f8c764757c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.