Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 211 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24247884 | 45 hrs ago | IN | 0 ETH | 0.00009602 | ||||
| Approve | 24164132 | 13 days ago | IN | 0 ETH | 0.00000387 | ||||
| Approve | 23968258 | 40 days ago | IN | 0 ETH | 0.0000118 | ||||
| Approve | 23943367 | 44 days ago | IN | 0 ETH | 0.0000033 | ||||
| Approve | 23908254 | 49 days ago | IN | 0 ETH | 0.00000366 | ||||
| Approve | 23812186 | 62 days ago | IN | 0 ETH | 0.00002653 | ||||
| Approve | 23709975 | 77 days ago | IN | 0 ETH | 0.00009587 | ||||
| Approve | 23576511 | 95 days ago | IN | 0 ETH | 0.00008424 | ||||
| Approve | 23359791 | 126 days ago | IN | 0 ETH | 0.00002658 | ||||
| Approve | 23263497 | 139 days ago | IN | 0 ETH | 0.00000812 | ||||
| Approve | 23262940 | 139 days ago | IN | 0 ETH | 0.0001094 | ||||
| Approve | 23254142 | 140 days ago | IN | 0 ETH | 0.00003011 | ||||
| Approve | 23221726 | 145 days ago | IN | 0 ETH | 0.0000109 | ||||
| Approve | 23221720 | 145 days ago | IN | 0 ETH | 0.0000105 | ||||
| Transfer | 23116968 | 160 days ago | IN | 0 ETH | 0.00007779 | ||||
| Approve | 23112899 | 160 days ago | IN | 0 ETH | 0.00001354 | ||||
| Approve | 23095955 | 163 days ago | IN | 0 ETH | 0.00006572 | ||||
| Approve | 23095391 | 163 days ago | IN | 0 ETH | 0.00010765 | ||||
| Approve | 23073355 | 166 days ago | IN | 0 ETH | 0.00001594 | ||||
| Approve | 23072721 | 166 days ago | IN | 0 ETH | 0.00003158 | ||||
| Approve | 23043452 | 170 days ago | IN | 0 ETH | 0.00006671 | ||||
| Approve | 23029615 | 172 days ago | IN | 0 ETH | 0.00015576 | ||||
| Transfer | 23024470 | 173 days ago | IN | 0 ETH | 0.00014732 | ||||
| Approve | 23012738 | 174 days ago | IN | 0 ETH | 0.0001038 | ||||
| Approve | 22999260 | 176 days ago | IN | 0 ETH | 0.0000543 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 22547462 | 239 days ago | 0.8 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GearUp
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* GearUp is a first-mover platform pioneering the concept of Smart Contracts as a Service (SCaaS) through our self-assemblable smart contract poatform (enhanced with cybersecurity protocols & ai)— a comprehensive ecosystem designed to give individuals, developers, and businesses complete control over their on-chain operations without needing to write a single line of code. Web: https://gearup.today X: https://x.com/gearup_today TG: https://t.me/gearup_today */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.22; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; 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, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract GearUp is ERC20, Ownable { uint256 private _initialBuyTax = 15; uint256 private _initialSellTax = 20; uint256 private _finalBuyTax = 4; uint256 private _finalSellTax = 4; uint256 private _reduceBuyTaxAt = 30; uint256 private _reduceSellTaxAt = 30; IUniswapV2Router02 private uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public isExemptBool; address private immutable taxAddress; uint256 public maxTransaction; uint256 public maxWallet; bool private launch = false; uint256 private blockLaunch; uint256 private lastSellBlock; uint256 private sellsCount; uint256 private totalSells; uint256 private totalBuys; uint256 private minSwap; uint256 public maxSwap; uint256 private triggerMulti; uint256 private _buyCount= 0; bool private inSwap; modifier lockSwap { inSwap = true; _; inSwap = false; } constructor() ERC20("GearUp", "gUP") Ownable() payable { uint256 totalSupply = 10_000_000 * 10**18; taxAddress = 0xFE506830bb2793080721F4d949643990F6081362; isExemptBool[msg.sender] = true; isExemptBool[address(this)] = true; isExemptBool[taxAddress] = true; _mint(address(this), totalSupply); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = address( IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()) ); maxTransaction = totalSupply * 1 / 1; //1% maxWallet = totalSupply * 1 / 1; //1% maxSwap = totalSupply * 4 / 100; //4% minSwap = totalSupply / 2000; //0.05%% triggerMulti = totalSupply * 1 / 100; //1% } function addV2LpETH() external onlyOwner { uint256 tokensAmount = balanceOf(address(this)) - (totalSupply() * 0 / 100); _approve(address(this), address(uniswapV2Router), tokensAmount); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), tokensAmount, 0, 0, address(owner()), block.timestamp ); } function setMaxCaSwap(uint256 _maxSwap) external onlyOwner{ maxSwap = _maxSwap * 10**decimals(); } function swapTokensEth(uint256 tokenAmount) internal lockSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, taxAddress, block.timestamp ); } function _transfer(address from, address to, uint256 value) internal virtual override { if (!isExemptBool[from] && !isExemptBool[to]) { require(launch, "Wait till launch"); uint256 tax = 0; require(value <= maxTransaction, "Exceeds MaxTx Limit"); //sell if (to == uniswapV2Pair) { totalSells++; tax = totalSells>_reduceSellTaxAt?(_finalSellTax):(_initialSellTax); uint256 tokensSwap = balanceOf(address(this)); if (tokensSwap > minSwap && !inSwap) { if (block.number > lastSellBlock) { sellsCount = 0; } require(sellsCount < 3, "Only 3 sells per block!"); sellsCount++; lastSellBlock = block.number; swapTokensEth(min(maxSwap, min( (tokensSwap > triggerMulti ? (value*15/10) : value), tokensSwap))); } //buy } else if (from == uniswapV2Pair){ require(balanceOf(to) + value <= maxWallet, "Exceeds the maxWallet"); if(block.number == blockLaunch){ _buyCount++; require(_buyCount <= 5, "Exceeds buys on the first block.");tax = 0; }else{ totalBuys++; tax = totalBuys>_reduceBuyTaxAt?(_finalBuyTax):(_initialBuyTax); } } uint256 taxAmount = value * tax / 100; uint256 amountAfterTax = value - taxAmount; if (taxAmount > 0){ super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amountAfterTax); return; } super._transfer(from, to, value); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function setMaxTx(uint256 newMaxTx) external onlyOwner { require(newMaxTx* 10**decimals() >= totalSupply()/100,"Protect: MaxTx more then 1%"); maxTransaction= newMaxTx * 10**decimals(); if(maxWallet < maxTransaction){ maxWallet = maxTransaction; } } function setMaxWallet(uint256 newMaxWallet) external onlyOwner { require(newMaxWallet * 10**decimals() >= totalSupply()/100,"Protect: newMaxWallet more then 1%"); maxWallet = newMaxWallet * 10**decimals(); } function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner { isExemptBool[wAddress] = isExcle; } function openTrading() external onlyOwner { launch = true; blockLaunch = block.number; } function setNewTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner { require(newBuyTax <= 21 && newSellTax <= 21); _finalBuyTax = newBuyTax; _finalSellTax = newSellTax; _reduceBuyTaxAt = 0; _reduceSellTaxAt = 0; } function removeAllLimits() external onlyOwner { maxTransaction = totalSupply(); maxWallet = totalSupply(); } function exportETH() external { require(_msgSender() == taxAddress); payable(taxAddress).transfer(address(this).balance); } function trigger(uint256 amount) external { require(_msgSender() == taxAddress); amount = min(balanceOf(address(this)), amount * 10**decimals()); swapTokensEth(amount); } function burnTokensPercent(uint256 percent) external { require(_msgSender() == taxAddress); uint256 amount = min(balanceOf(address(this)), (totalSupply() * percent / 100 )); IERC20(address(this)).transfer(0x000000000000000000000000000000000000dEaD, amount); } function clearStuckERC20(address tokenAddress, uint256 tokens) external returns (bool success) { require(_msgSender() == taxAddress); if(tokens == 0){ tokens = IERC20(tokenAddress).balanceOf(address(this)); } return IERC20(tokenAddress).transfer(taxAddress, tokens); } receive() external payable {} }
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @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}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* 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 ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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 override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` 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 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* 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 `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `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.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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 amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}{
"optimizer": {
"enabled": true,
"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":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addV2LpETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"burnTokensPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exportETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExemptBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCaSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setNewTax","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"trigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
600f6006908155601460075560046008819055600955601e600a819055600b556011805460ff191690555f601a5560a09081526504765617255760d41b60c052610120604052600360e08181526206755560ec1b610100529062000064838262000509565b50600462000073828262000509565b505050620000906200008a6200034e60201b60201c565b62000352565b73fe506830bb2793080721f4d949643990f60813626080819052335f908152600e60205260408082208054600160ff199182168117909255308085529284208054821683179055939092527fee7688d95c9bd0dd0670390e9a7799d5951d6c160ef00eae7ffa6501bf6ead2b80549093169091179091556a084595161401484a00000090620001209082620003a3565b600c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000183573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a99190620005d5565b6001600160a01b031663c9c6539630600c5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000209573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022f9190620005d5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200027a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a09190620005d5565b600d80546001600160a01b0319166001600160a01b03929092169190911790556001620002ce828262000618565b620002da919062000638565b600f556001620002eb828262000618565b620002f7919062000638565b60105560646200030982600462000618565b62000315919062000638565b601855620003266107d08262000638565b60175560646200033882600162000618565b62000344919062000638565b601955506200066e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620003fe5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000411919062000658565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200049557607f821691505b602082108103620004b457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200046757805f5260205f20601f840160051c81016020851015620004e15750805b601f840160051c820191505b8181101562000502575f8155600101620004ed565b5050505050565b81516001600160401b038111156200052557620005256200046c565b6200053d8162000536845462000480565b84620004ba565b602080601f83116001811462000573575f84156200055b5750858301515b5f19600386901b1c1916600185901b178555620005cd565b5f85815260208120601f198616915b82811015620005a35788860151825594840194600190910190840162000582565b5085821015620005c157878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620005e6575f80fd5b81516001600160a01b0381168114620005fd575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000632576200063262000604565b92915050565b5f826200065357634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000632576200063262000604565b608051611b5c620006b15f395f818161089e01528181610956015281816109fb01528181610c5901528181610c9701528181610d1f01526114f00152611b5c5ff3fe6080604052600436106101d3575f3560e01c806395d89b41116100fd578063c9567bf911610092578063df969d2011610062578063df969d2014610510578063ed684cc61461053e578063f2fde38b1461055d578063f8b45b051461057c575f80fd5b8063c9567bf9146104b5578063d579d4ed146104c9578063db05e5cb146104dd578063dd62ed3e146104f1575f80fd5b8063aca2cd6e116100cd578063aca2cd6e1461044d578063bc3371821461046c578063c3f70b521461048b578063c4918b4e146104a0575f80fd5b806395d89b41146103dc5780639804adc4146103f0578063a457c2d71461040f578063a9059cbb1461042e575f80fd5b8063313ce567116101735780636e26124a116101435780636e26124a1461035857806370a0823114610377578063715018a6146103ab5780638da5cb5b146103bf575f80fd5b8063313ce567146102c857806339509351146102e357806349bd5a5e146103025780635d0044ca14610339575f80fd5b80630ce337e8116101ae5780630ce337e81461025857806318160ddd1461026c5780631cd602d51461028a57806323b872dd146102a9575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f83660046116f7565b610591565b005b34801561020a575f80fd5b506102136105b5565b604051610220919061170e565b60405180910390f35b348015610234575f80fd5b5061024861024336600461176e565b610645565b6040519015158152602001610220565b348015610263575f80fd5b506101fd61065e565b348015610277575f80fd5b506002545b604051908152602001610220565b348015610295575f80fd5b506101fd6102a4366004611798565b610773565b3480156102b4575f80fd5b506102486102c33660046117b8565b6107a9565b3480156102d3575f80fd5b5060405160128152602001610220565b3480156102ee575f80fd5b506102486102fd36600461176e565b6107cc565b34801561030d575f80fd5b50600d54610321906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610344575f80fd5b506101fd6103533660046116f7565b6107ed565b348015610363575f80fd5b5061024861037236600461176e565b61089a565b348015610382575f80fd5b5061027c6103913660046117f6565b6001600160a01b03165f9081526020819052604090205490565b3480156103b6575f80fd5b506101fd6109d6565b3480156103ca575f80fd5b506005546001600160a01b0316610321565b3480156103e7575f80fd5b506102136109e9565b3480156103fb575f80fd5b506101fd61040a3660046116f7565b6109f8565b34801561041a575f80fd5b5061024861042936600461176e565b610ad3565b348015610439575f80fd5b5061024861044836600461176e565b610b4d565b348015610458575f80fd5b506101fd61046736600461181e565b610b5a565b348015610477575f80fd5b506101fd6104863660046116f7565b610b8c565b348015610496575f80fd5b5061027c600f5481565b3480156104ab575f80fd5b5061027c60185481565b3480156104c0575f80fd5b506101fd610c3b565b3480156104d4575f80fd5b506101fd610c56565b3480156104e8575f80fd5b506101fd610cdc565b3480156104fc575f80fd5b5061027c61050b366004611855565b610cf2565b34801561051b575f80fd5b5061024861052a3660046117f6565b600e6020525f908152604090205460ff1681565b348015610549575f80fd5b506101fd6105583660046116f7565b610d1c565b348015610568575f80fd5b506101fd6105773660046117f6565b610d84565b348015610587575f80fd5b5061027c60105481565b610599610dfa565b6105a56012600a611975565b6105af9082611983565b60185550565b6060600380546105c49061199a565b80601f01602080910402602001604051908101604052809291908181526020018280546105f09061199a565b801561063b5780601f106106125761010080835404028352916020019161063b565b820191905f5260205f20905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b5f33610652818585610e54565b60019150505b92915050565b610666610dfa565b5f606461067260025490565b61067c905f611983565b61068691906119cc565b305f9081526020819052604090205461069f91906119eb565b600c549091506106ba9030906001600160a01b031683610e54565b600c546001600160a01b031663f305d7194730845f806106e26005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610748573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061076d91906119fe565b50505050565b61077b610dfa565b6015821115801561078d575060158111155b610795575f80fd5b6008919091556009555f600a819055600b55565b5f336107b6858285610f77565b6107c1858585610fe9565b506001949350505050565b5f336106528185856107de8383610cf2565b6107e89190611a29565b610e54565b6107f5610dfa565b606461080060025490565b61080a91906119cc565b6108166012600a611975565b6108209083611983565b101561087e5760405162461bcd60e51b815260206004820152602260248201527f50726f746563743a206e65774d617857616c6c6574206d6f7265207468656e20604482015261312560f01b60648201526084015b60405180910390fd5b61088a6012600a611975565b6108949082611983565b60105550565b5f337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146108cf575f80fd5b815f0361093f576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610918573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093c9190611a3c565b91505b60405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af11580156109ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cf9190611a53565b9392505050565b6109de610dfa565b6109e75f61136a565b565b6060600480546105c49061199a565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610a2c575f80fd5b305f90815260208190526040812054610a6490606484610a4b60025490565b610a559190611983565b610a5f91906119cc565b6113bb565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ace9190611a53565b505050565b5f3381610ae08286610cf2565b905083811015610b405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610875565b6107c18286868403610e54565b5f33610652818585610fe9565b610b62610dfa565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610b94610dfa565b6064610b9f60025490565b610ba991906119cc565b610bb56012600a611975565b610bbf9083611983565b1015610c0d5760405162461bcd60e51b815260206004820152601b60248201527f50726f746563743a204d61785478206d6f7265207468656e20312500000000006044820152606401610875565b610c196012600a611975565b610c239082611983565b600f8190556010541015610c3857600f546010555b50565b610c43610dfa565b6011805460ff1916600117905543601255565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610c8a575f80fd5b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02915f818181858888f19350505050158015610c38573d5f803e3d5ffd5b610ce4610dfa565b600254600f55600254601055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610d50575f80fd5b305f90815260208190526040902054610d7990610d6f6012600a611975565b610a5f9084611983565b9050610c38816113cf565b610d8c610dfa565b6001600160a01b038116610df15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610875565b610c388161136a565b6005546001600160a01b031633146109e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610875565b6001600160a01b038316610eb65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610875565b6001600160a01b038216610f175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610875565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610f828484610cf2565b90505f19811461076d5781811015610fdc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610875565b61076d8484848403610e54565b6001600160a01b0383165f908152600e602052604090205460ff1615801561102957506001600160a01b0382165f908152600e602052604090205460ff16155b1561135f5760115460ff166110735760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b6044820152606401610875565b5f600f548211156110bc5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b6044820152606401610875565b600d546001600160a01b03908116908416036111e85760158054905f6110e183611a6e565b9190505550600b54601554116110f9576007546110fd565b6009545b305f9081526020819052604081205491925050601754811180156111245750601b5460ff16155b156111e257601354431115611138575f6014555b60036014541061118a5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b210000000000000000006044820152606401610875565b60148054905f61119983611a6e565b9190505550436013819055506111e26111dd601854610a5f60195485116111c057866111d7565b600a6111cd88600f611983565b6111d791906119cc565b856113bb565b6113cf565b50611315565b600d546001600160a01b03908116908516036113155760105482611220856001600160a01b03165f9081526020819052604090205490565b61122a9190611a29565b11156112705760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b6044820152606401610875565b60125443036112e757601a8054905f61128883611a6e565b91905055506005601a5411156112e05760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e6044820152606401610875565b505f611315565b60168054905f6112f683611a6e565b9190505550600a546016541161130e57600654611312565b6008545b90505b5f60646113228385611983565b61132c91906119cc565b90505f61133982856119eb565b9050811561134c5761134c863084611555565b611357868683611555565b505050505050565b610ace838383611555565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f8183116113c957826109cf565b50919050565b601b805460ff19166001179055600c546113f49030906001600160a01b031683610e54565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061142757611427611a86565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561147e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a29190611a9a565b816001815181106114b5576114b5611a86565b6001600160a01b039283166020918202929092010152600c5460405163791ac94760e01b815291169063791ac9479061151a9085905f9086907f0000000000000000000000000000000000000000000000000000000000000000904290600401611ab5565b5f604051808303815f87803b158015611531575f80fd5b505af1158015611543573d5f803e3d5ffd5b5050601b805460ff1916905550505050565b6001600160a01b0383166115b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610875565b6001600160a01b03821661161b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610875565b6001600160a01b0383165f90815260208190526040902054818110156116925760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610875565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361076d565b5f60208284031215611707575f80fd5b5035919050565b5f602080835283518060208501525f5b8181101561173a5785810183015185820160400152820161171e565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c38575f80fd5b5f806040838503121561177f575f80fd5b823561178a8161175a565b946020939093013593505050565b5f80604083850312156117a9575f80fd5b50508035926020909101359150565b5f805f606084860312156117ca575f80fd5b83356117d58161175a565b925060208401356117e58161175a565b929592945050506040919091013590565b5f60208284031215611806575f80fd5b81356109cf8161175a565b8015158114610c38575f80fd5b5f806040838503121561182f575f80fd5b823561183a8161175a565b9150602083013561184a81611811565b809150509250929050565b5f8060408385031215611866575f80fd5b82356118718161175a565b9150602083013561184a8161175a565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156118cf57815f19048211156118b5576118b5611881565b808516156118c257918102915b93841c939080029061189a565b509250929050565b5f826118e557506001610658565b816118f157505f610658565b816001811461190757600281146119115761192d565b6001915050610658565b60ff84111561192257611922611881565b50506001821b610658565b5060208310610133831016604e8410600b8410161715611950575081810a610658565b61195a8383611895565b805f190482111561196d5761196d611881565b029392505050565b5f6109cf60ff8416836118d7565b808202811582820484141761065857610658611881565b600181811c908216806119ae57607f821691505b6020821081036113c957634e487b7160e01b5f52602260045260245ffd5b5f826119e657634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561065857610658611881565b5f805f60608486031215611a10575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561065857610658611881565b5f60208284031215611a4c575f80fd5b5051919050565b5f60208284031215611a63575f80fd5b81516109cf81611811565b5f60018201611a7f57611a7f611881565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611aaa575f80fd5b81516109cf8161175a565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611b055784516001600160a01b031683529383019391830191600101611ae0565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ae848e688287e5419579a7ea571d4ad9cdf23ea3b3190d7458cacb684a18e9fa64736f6c63430008170033
Deployed Bytecode
0x6080604052600436106101d3575f3560e01c806395d89b41116100fd578063c9567bf911610092578063df969d2011610062578063df969d2014610510578063ed684cc61461053e578063f2fde38b1461055d578063f8b45b051461057c575f80fd5b8063c9567bf9146104b5578063d579d4ed146104c9578063db05e5cb146104dd578063dd62ed3e146104f1575f80fd5b8063aca2cd6e116100cd578063aca2cd6e1461044d578063bc3371821461046c578063c3f70b521461048b578063c4918b4e146104a0575f80fd5b806395d89b41146103dc5780639804adc4146103f0578063a457c2d71461040f578063a9059cbb1461042e575f80fd5b8063313ce567116101735780636e26124a116101435780636e26124a1461035857806370a0823114610377578063715018a6146103ab5780638da5cb5b146103bf575f80fd5b8063313ce567146102c857806339509351146102e357806349bd5a5e146103025780635d0044ca14610339575f80fd5b80630ce337e8116101ae5780630ce337e81461025857806318160ddd1461026c5780631cd602d51461028a57806323b872dd146102a9575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f83660046116f7565b610591565b005b34801561020a575f80fd5b506102136105b5565b604051610220919061170e565b60405180910390f35b348015610234575f80fd5b5061024861024336600461176e565b610645565b6040519015158152602001610220565b348015610263575f80fd5b506101fd61065e565b348015610277575f80fd5b506002545b604051908152602001610220565b348015610295575f80fd5b506101fd6102a4366004611798565b610773565b3480156102b4575f80fd5b506102486102c33660046117b8565b6107a9565b3480156102d3575f80fd5b5060405160128152602001610220565b3480156102ee575f80fd5b506102486102fd36600461176e565b6107cc565b34801561030d575f80fd5b50600d54610321906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610344575f80fd5b506101fd6103533660046116f7565b6107ed565b348015610363575f80fd5b5061024861037236600461176e565b61089a565b348015610382575f80fd5b5061027c6103913660046117f6565b6001600160a01b03165f9081526020819052604090205490565b3480156103b6575f80fd5b506101fd6109d6565b3480156103ca575f80fd5b506005546001600160a01b0316610321565b3480156103e7575f80fd5b506102136109e9565b3480156103fb575f80fd5b506101fd61040a3660046116f7565b6109f8565b34801561041a575f80fd5b5061024861042936600461176e565b610ad3565b348015610439575f80fd5b5061024861044836600461176e565b610b4d565b348015610458575f80fd5b506101fd61046736600461181e565b610b5a565b348015610477575f80fd5b506101fd6104863660046116f7565b610b8c565b348015610496575f80fd5b5061027c600f5481565b3480156104ab575f80fd5b5061027c60185481565b3480156104c0575f80fd5b506101fd610c3b565b3480156104d4575f80fd5b506101fd610c56565b3480156104e8575f80fd5b506101fd610cdc565b3480156104fc575f80fd5b5061027c61050b366004611855565b610cf2565b34801561051b575f80fd5b5061024861052a3660046117f6565b600e6020525f908152604090205460ff1681565b348015610549575f80fd5b506101fd6105583660046116f7565b610d1c565b348015610568575f80fd5b506101fd6105773660046117f6565b610d84565b348015610587575f80fd5b5061027c60105481565b610599610dfa565b6105a56012600a611975565b6105af9082611983565b60185550565b6060600380546105c49061199a565b80601f01602080910402602001604051908101604052809291908181526020018280546105f09061199a565b801561063b5780601f106106125761010080835404028352916020019161063b565b820191905f5260205f20905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b5f33610652818585610e54565b60019150505b92915050565b610666610dfa565b5f606461067260025490565b61067c905f611983565b61068691906119cc565b305f9081526020819052604090205461069f91906119eb565b600c549091506106ba9030906001600160a01b031683610e54565b600c546001600160a01b031663f305d7194730845f806106e26005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610748573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061076d91906119fe565b50505050565b61077b610dfa565b6015821115801561078d575060158111155b610795575f80fd5b6008919091556009555f600a819055600b55565b5f336107b6858285610f77565b6107c1858585610fe9565b506001949350505050565b5f336106528185856107de8383610cf2565b6107e89190611a29565b610e54565b6107f5610dfa565b606461080060025490565b61080a91906119cc565b6108166012600a611975565b6108209083611983565b101561087e5760405162461bcd60e51b815260206004820152602260248201527f50726f746563743a206e65774d617857616c6c6574206d6f7265207468656e20604482015261312560f01b60648201526084015b60405180910390fd5b61088a6012600a611975565b6108949082611983565b60105550565b5f337f000000000000000000000000fe506830bb2793080721f4d949643990f60813626001600160a01b0316146108cf575f80fd5b815f0361093f576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610918573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093c9190611a3c565b91505b60405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000fe506830bb2793080721f4d949643990f6081362811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af11580156109ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cf9190611a53565b9392505050565b6109de610dfa565b6109e75f61136a565b565b6060600480546105c49061199a565b337f000000000000000000000000fe506830bb2793080721f4d949643990f60813626001600160a01b031614610a2c575f80fd5b305f90815260208190526040812054610a6490606484610a4b60025490565b610a559190611983565b610a5f91906119cc565b6113bb565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ace9190611a53565b505050565b5f3381610ae08286610cf2565b905083811015610b405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610875565b6107c18286868403610e54565b5f33610652818585610fe9565b610b62610dfa565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b610b94610dfa565b6064610b9f60025490565b610ba991906119cc565b610bb56012600a611975565b610bbf9083611983565b1015610c0d5760405162461bcd60e51b815260206004820152601b60248201527f50726f746563743a204d61785478206d6f7265207468656e20312500000000006044820152606401610875565b610c196012600a611975565b610c239082611983565b600f8190556010541015610c3857600f546010555b50565b610c43610dfa565b6011805460ff1916600117905543601255565b337f000000000000000000000000fe506830bb2793080721f4d949643990f60813626001600160a01b031614610c8a575f80fd5b6040516001600160a01b037f000000000000000000000000fe506830bb2793080721f4d949643990f608136216904780156108fc02915f818181858888f19350505050158015610c38573d5f803e3d5ffd5b610ce4610dfa565b600254600f55600254601055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b337f000000000000000000000000fe506830bb2793080721f4d949643990f60813626001600160a01b031614610d50575f80fd5b305f90815260208190526040902054610d7990610d6f6012600a611975565b610a5f9084611983565b9050610c38816113cf565b610d8c610dfa565b6001600160a01b038116610df15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610875565b610c388161136a565b6005546001600160a01b031633146109e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610875565b6001600160a01b038316610eb65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610875565b6001600160a01b038216610f175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610875565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610f828484610cf2565b90505f19811461076d5781811015610fdc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610875565b61076d8484848403610e54565b6001600160a01b0383165f908152600e602052604090205460ff1615801561102957506001600160a01b0382165f908152600e602052604090205460ff16155b1561135f5760115460ff166110735760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b6044820152606401610875565b5f600f548211156110bc5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b6044820152606401610875565b600d546001600160a01b03908116908416036111e85760158054905f6110e183611a6e565b9190505550600b54601554116110f9576007546110fd565b6009545b305f9081526020819052604081205491925050601754811180156111245750601b5460ff16155b156111e257601354431115611138575f6014555b60036014541061118a5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b210000000000000000006044820152606401610875565b60148054905f61119983611a6e565b9190505550436013819055506111e26111dd601854610a5f60195485116111c057866111d7565b600a6111cd88600f611983565b6111d791906119cc565b856113bb565b6113cf565b50611315565b600d546001600160a01b03908116908516036113155760105482611220856001600160a01b03165f9081526020819052604090205490565b61122a9190611a29565b11156112705760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b6044820152606401610875565b60125443036112e757601a8054905f61128883611a6e565b91905055506005601a5411156112e05760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e6044820152606401610875565b505f611315565b60168054905f6112f683611a6e565b9190505550600a546016541161130e57600654611312565b6008545b90505b5f60646113228385611983565b61132c91906119cc565b90505f61133982856119eb565b9050811561134c5761134c863084611555565b611357868683611555565b505050505050565b610ace838383611555565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f8183116113c957826109cf565b50919050565b601b805460ff19166001179055600c546113f49030906001600160a01b031683610e54565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061142757611427611a86565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561147e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a29190611a9a565b816001815181106114b5576114b5611a86565b6001600160a01b039283166020918202929092010152600c5460405163791ac94760e01b815291169063791ac9479061151a9085905f9086907f000000000000000000000000fe506830bb2793080721f4d949643990f6081362904290600401611ab5565b5f604051808303815f87803b158015611531575f80fd5b505af1158015611543573d5f803e3d5ffd5b5050601b805460ff1916905550505050565b6001600160a01b0383166115b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610875565b6001600160a01b03821661161b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610875565b6001600160a01b0383165f90815260208190526040902054818110156116925760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610875565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361076d565b5f60208284031215611707575f80fd5b5035919050565b5f602080835283518060208501525f5b8181101561173a5785810183015185820160400152820161171e565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c38575f80fd5b5f806040838503121561177f575f80fd5b823561178a8161175a565b946020939093013593505050565b5f80604083850312156117a9575f80fd5b50508035926020909101359150565b5f805f606084860312156117ca575f80fd5b83356117d58161175a565b925060208401356117e58161175a565b929592945050506040919091013590565b5f60208284031215611806575f80fd5b81356109cf8161175a565b8015158114610c38575f80fd5b5f806040838503121561182f575f80fd5b823561183a8161175a565b9150602083013561184a81611811565b809150509250929050565b5f8060408385031215611866575f80fd5b82356118718161175a565b9150602083013561184a8161175a565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156118cf57815f19048211156118b5576118b5611881565b808516156118c257918102915b93841c939080029061189a565b509250929050565b5f826118e557506001610658565b816118f157505f610658565b816001811461190757600281146119115761192d565b6001915050610658565b60ff84111561192257611922611881565b50506001821b610658565b5060208310610133831016604e8410600b8410161715611950575081810a610658565b61195a8383611895565b805f190482111561196d5761196d611881565b029392505050565b5f6109cf60ff8416836118d7565b808202811582820484141761065857610658611881565b600181811c908216806119ae57607f821691505b6020821081036113c957634e487b7160e01b5f52602260045260245ffd5b5f826119e657634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561065857610658611881565b5f805f60608486031215611a10575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561065857610658611881565b5f60208284031215611a4c575f80fd5b5051919050565b5f60208284031215611a63575f80fd5b81516109cf81611811565b5f60018201611a7f57611a7f611881565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611aaa575f80fd5b81516109cf8161175a565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611b055784516001600160a01b031683529383019391830191600101611ae0565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ae848e688287e5419579a7ea571d4ad9cdf23ea3b3190d7458cacb684a18e9fa64736f6c63430008170033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 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.