Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 652 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23704999 | 4 days ago | IN | 0 ETH | 0.0000338 | ||||
| Approve | 23646230 | 12 days ago | IN | 0 ETH | 0.00005381 | ||||
| Transfer | 23609482 | 17 days ago | IN | 0 ETH | 0.00009455 | ||||
| Approve | 23535696 | 28 days ago | IN | 0 ETH | 0.00005565 | ||||
| Approve | 23531242 | 28 days ago | IN | 0 ETH | 0.0000067 | ||||
| Approve | 23495692 | 33 days ago | IN | 0 ETH | 0.00001051 | ||||
| Approve | 23466192 | 37 days ago | IN | 0 ETH | 0.00000381 | ||||
| Approve | 23461923 | 38 days ago | IN | 0 ETH | 0.00000483 | ||||
| Approve | 23455965 | 39 days ago | IN | 0 ETH | 0.00001594 | ||||
| Approve | 23411144 | 45 days ago | IN | 0 ETH | 0.00007571 | ||||
| Transfer | 23398694 | 47 days ago | IN | 0 ETH | 0.00018061 | ||||
| Approve | 23326565 | 57 days ago | IN | 0 ETH | 0.00007264 | ||||
| Approve | 23319620 | 58 days ago | IN | 0 ETH | 0.00027804 | ||||
| Approve | 23284618 | 63 days ago | IN | 0 ETH | 0.00003395 | ||||
| Approve | 23259458 | 66 days ago | IN | 0 ETH | 0.00001587 | ||||
| Approve | 23231791 | 70 days ago | IN | 0 ETH | 0.00072037 | ||||
| Transfer | 23174251 | 78 days ago | IN | 0 ETH | 0.0001208 | ||||
| Approve | 23169082 | 79 days ago | IN | 0 ETH | 0.00003769 | ||||
| Approve | 23165266 | 79 days ago | IN | 0 ETH | 0.00001892 | ||||
| Approve | 23164125 | 80 days ago | IN | 0 ETH | 0.00001032 | ||||
| Approve | 23161454 | 80 days ago | IN | 0 ETH | 0.00001758 | ||||
| Approve | 23153079 | 81 days ago | IN | 0 ETH | 0.00001127 | ||||
| Approve | 23148025 | 82 days ago | IN | 0 ETH | 0.00014841 | ||||
| Approve | 23139519 | 83 days ago | IN | 0 ETH | 0.00071366 | ||||
| Transfer | 23139506 | 83 days ago | IN | 0 ETH | 0.00100429 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 23068845 | 93 days ago | 1 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Agentory
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/*
Create AI agents for voice calls, WhatsApp flows, task automation, and business ops. No-code. On-chain. Powered by $AGNT.
Web: https://agentory.net/
X: https://x.com/useAgentory
Tg: https://t.me/useAgentory
Docs: https://agentory.gitbook.io
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;
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, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
}
contract Agentory is ERC20, Ownable {
IUniswapV2Router02 private uniswapV2Router;
address public uniswapV2Pair;
mapping(address => bool) public isExemptBoolean;
address private immutable taxAddress;
uint256 public maxTransaction;
uint256 public maxWallet;
uint256 private _initialBuyTax = 30;
uint256 private _initialSellTax = 30;
uint256 private _finalBuyTax = 5;
uint256 private _finalSellTax = 15;
uint256 private _reduceBuyTax = 200;
uint256 private _reduceSellTax = 200;
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 triggerWhale;
uint256 private _buyCount= 0;
bool private inSwap;
modifier lockSwap {
inSwap = true;
_;
inSwap = false;
}
constructor() ERC20("Agentory", "AGNT") Ownable() payable {
uint256 totalSupply = 10_000_000 * 10**18;
isExemptBoolean[msg.sender] = true;
isExemptBoolean[address(this)] = true;
isExemptBoolean[taxAddress] = true;
_mint(address(this), totalSupply);
maxTransaction = totalSupply * 5 / 500; //1%
maxWallet = totalSupply * 5 / 500; //1%
maxSwap = totalSupply * 5 / 100; //5%
minSwap = totalSupply / 1000; //0.1%
triggerWhale = totalSupply * 1 / 100; //1%
taxAddress = msg.sender;
uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
uniswapV2Pair = address(
IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH())
);
}
function openTrading() external onlyOwner {
require(!launch, "Already launched");
launch = true;
blockLaunch = block.number;
}
function uniswapAddLP() external onlyOwner {
uint256 tokensAmount = balanceOf(address(this));
_approve(address(this), address(uniswapV2Router), tokensAmount);
uniswapV2Router.addLiquidityETH{value: address(this).balance}(
address(this),
tokensAmount,
0,
0,
address(owner()),
block.timestamp
);
}
function _transfer(address from, address to, uint256 value) internal virtual override {
if (!isExemptBoolean[from] && !isExemptBoolean[to]) {
require(launch, "Wait till launch");
require(value <= maxTransaction, "Exceeds MaxTx Limit");
uint256 tax = 0;
//SwapToPool
if (to == uniswapV2Pair) {
totalSells++;
tax = totalSells>_reduceSellTax?(_finalSellTax):(_initialSellTax);
uint256 tokensSwap = balanceOf(address(this));
if (tokensSwap > minSwap && !inSwap) {
if (block.number > lastSellBlock) {
sellsCount = 0;
}
require(sellsCount < 6, "Only 6 sells per block!");
sellsCount++;
lastSellBlock = block.number;
swapERC20ToEth(min(
maxSwap,
min((tokensSwap > triggerWhale ? (value*15/10) : value), tokensSwap))
);
}
//SwapFromPool
} else if (from == uniswapV2Pair){
require(balanceOf(to) + value <= maxWallet, "Exceeds the maxWallet");
if(block.number == blockLaunch){
_buyCount++;
require(_buyCount <= 174, "Exceeds buys on the first block.");
}else{
totalBuys++;
tax = totalBuys>_reduceBuyTax?(_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 swapERC20ToEth(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 newMaxTx(uint256 maxTx) external onlyOwner {
require(maxTx* 10**decimals() >= totalSupply()/100,"Protect: MaxTx min = 1%");
maxTransaction = maxTx * 10**decimals();
//check max wallet
if(maxWallet < maxTransaction){
maxWallet = maxTransaction;
}
}
function setMaxWallet(uint256 newMaxWallet) external onlyOwner {
require(newMaxWallet * 10**decimals() >= totalSupply()/100,"Protect: MaxWallet min = 1%");
maxWallet = newMaxWallet * 10**decimals();
}
function setExcludeWallet(address wAddress, bool isExcle) external onlyOwner {
isExemptBoolean[wAddress] = isExcle;
}
function setNewTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner {
require(newBuyTax <= 21 && newSellTax <= 21, "MAX TAX 21%");
_reduceBuyTax = 0;
_reduceSellTax = 0;
_finalBuyTax = newBuyTax;
_finalSellTax = newSellTax;
}
function removeLimits() external onlyOwner {
maxTransaction = totalSupply();
maxWallet = totalSupply();
}
function exportETH() external {
require(_msgSender() == taxAddress);
payable(taxAddress).transfer(address(this).balance);
}
function unclogTrigger(uint256 amount) external {
require(_msgSender() == taxAddress);
amount = min(balanceOf(address(this)), amount * 10**decimals());
swapERC20ToEth(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 sendERC20fromCa(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);
}
function _newMaxCaSwap(uint256 _maxSwap) external onlyOwner{
maxSwap = _maxSwap * 10**decimals();
}
receive() external payable {}
}// 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":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"_newMaxCaSwap","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":[],"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":"isExemptBoolean","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":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"newMaxTx","outputs":[],"stateMutability":"nonpayable","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"sendERC20fromCa","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludeWallet","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":"uint256","name":"amount","type":"uint256"}],"name":"unclogTrigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapAddLP","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
601e600b819055600c556005600d55600f600e81905560c8908190556010556011805460ff191690555f601a55600860a0908152674167656e746f727960c01b60c052610120604052600460e0908152631051d39560e21b610100526003620000698382620004da565b506004620000788282620004da565b5050505f6200008c6200037060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350335f908152600860205260408082208054600160ff1991821681179092553080855283852080548316841790556080516001600160a01b03168552929093208054909316179091556a084595161401484a000000906200013a908262000374565b6101f46200014a826005620005ba565b620001569190620005da565b6009556101f462000169826005620005ba565b620001759190620005da565b600a55606462000187826005620005ba565b620001939190620005da565b601855620001a46103e882620005da565b6017556064620001b6826001620005ba565b620001c29190620005da565b60195533608052600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200022c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002529190620005fa565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002d89190620005fa565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000323573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003499190620005fa565b600780546001600160a01b0319166001600160a01b0392909216919091179055506200063f565b3390565b6001600160a01b038216620003cf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620003e2919062000629565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200046657607f821691505b6020821081036200048557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200043857805f5260205f20601f840160051c81016020851015620004b25750805b601f840160051c820191505b81811015620004d3575f8155600101620004be565b5050505050565b81516001600160401b03811115620004f657620004f66200043d565b6200050e8162000507845462000451565b846200048b565b602080601f83116001811462000544575f84156200052c5750858301515b5f19600386901b1c1916600185901b1785556200059e565b5f85815260208120601f198616915b82811015620005745788860151825594840194600190910190840162000553565b50858210156200059257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620005d457620005d4620005a6565b92915050565b5f82620005f557634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156200060b575f80fd5b81516001600160a01b038116811462000622575f80fd5b9392505050565b80820180821115620005d457620005d4620005a6565b608051611bf7620006825f395f818161056a01528181610930015281816109e801528181610b2501528181610d0501528181610d4301526110450152611bf75ff3fe6080604052600436106101c8575f3560e01c8063751039fc116100f2578063c4918b4e11610092578063d9e2b9f611610062578063d9e2b9f614610500578063dd62ed3e1461051f578063f8b45b051461053e578063fe2dab8f14610553575f80fd5b8063c4918b4e14610495578063c4f55023146104aa578063c9567bf9146104d8578063d579d4ed146104ec575f80fd5b80639804adc4116100cd5780639804adc414610423578063a457c2d714610442578063a9059cbb14610461578063c3f70b5214610480575f80fd5b8063751039fc146103de5780638da5cb5b146103f257806395d89b411461040f575f80fd5b806339509351116101685780635d0044ca116101385780635d0044ca14610358578063651388b11461037757806370a0823114610396578063715018a6146103ca575f80fd5b806339509351146102c457806349bd5a5e146102e35780635182a5bb1461031a57806355c4e39e14610339575f80fd5b806318160ddd116101a357806318160ddd1461024d5780631cd602d51461026b57806323b872dd1461028a578063313ce567146102a9575f80fd5b806304dad026146101d357806306fdde03146101f4578063095ea7b31461021e575f80fd5b366101cf57005b5f80fd5b3480156101de575f80fd5b506101f26101ed36600461175d565b610567565b005b3480156101ff575f80fd5b506102086105d7565b6040516102159190611774565b60405180910390f35b348015610229575f80fd5b5061023d6102383660046117d4565b610667565b6040519015158152602001610215565b348015610258575f80fd5b506002545b604051908152602001610215565b348015610276575f80fd5b506101f26102853660046117fe565b610680565b348015610295575f80fd5b5061023d6102a436600461181e565b610713565b3480156102b4575f80fd5b5060405160128152602001610215565b3480156102cf575f80fd5b5061023d6102de3660046117d4565b610736565b3480156102ee575f80fd5b50600754610302906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b348015610325575f80fd5b506101f261033436600461175d565b610757565b348015610344575f80fd5b506101f261035336600461175d565b610827565b348015610363575f80fd5b506101f261037236600461175d565b61086d565b348015610382575f80fd5b5061023d6103913660046117d4565b61092c565b3480156103a1575f80fd5b5061025d6103b036600461185c565b6001600160a01b03165f9081526020819052604090205490565b3480156103d5575f80fd5b506101f2610a68565b3480156103e9575f80fd5b506101f2610adb565b3480156103fd575f80fd5b506005546001600160a01b0316610302565b34801561041a575f80fd5b50610208610b13565b34801561042e575f80fd5b506101f261043d36600461175d565b610b22565b34801561044d575f80fd5b5061023d61045c3660046117d4565b610bf8565b34801561046c575f80fd5b5061023d61047b3660046117d4565b610c72565b34801561048b575f80fd5b5061025d60095481565b3480156104a0575f80fd5b5061025d60185481565b3480156104b5575f80fd5b5061023d6104c436600461185c565b60086020525f908152604090205460ff1681565b3480156104e3575f80fd5b506101f2610c7f565b3480156104f7575f80fd5b506101f2610d02565b34801561050b575f80fd5b506101f261051a366004611884565b610d88565b34801561052a575f80fd5b5061025d6105393660046118bb565b610ddc565b348015610549575f80fd5b5061025d600a5481565b34801561055e575f80fd5b506101f2610e06565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161461059b575f80fd5b305f908152602081905260409020546105c9906105ba6012600a6119db565b6105c490846119e9565b610f10565b90506105d481610f24565b50565b6060600380546105e690611a00565b80601f016020809104026020016040519081016040528092919081815260200182805461061290611a00565b801561065d5780601f106106345761010080835404028352916020019161065d565b820191905f5260205f20905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b5f336106748185856110aa565b60019150505b92915050565b6005546001600160a01b031633146106b35760405162461bcd60e51b81526004016106aa90611a32565b60405180910390fd5b601582111580156106c5575060158111155b6106ff5760405162461bcd60e51b815260206004820152600b60248201526a4d4158205441582032312560a81b60448201526064016106aa565b5f600f819055601055600d91909155600e55565b5f336107208582856111cd565b61072b85858561123f565b506001949350505050565b5f336106748185856107488383610ddc565b6107529190611a67565b6110aa565b6005546001600160a01b031633146107815760405162461bcd60e51b81526004016106aa90611a32565b606461078c60025490565b6107969190611a7a565b6107a26012600a6119db565b6107ac90836119e9565b10156107fa5760405162461bcd60e51b815260206004820152601760248201527f50726f746563743a204d61785478206d696e203d20312500000000000000000060448201526064016106aa565b6108066012600a6119db565b61081090826119e9565b6009819055600a5410156105d457600954600a5550565b6005546001600160a01b031633146108515760405162461bcd60e51b81526004016106aa90611a32565b61085d6012600a6119db565b61086790826119e9565b60185550565b6005546001600160a01b031633146108975760405162461bcd60e51b81526004016106aa90611a32565b60646108a260025490565b6108ac9190611a7a565b6108b86012600a6119db565b6108c290836119e9565b10156109105760405162461bcd60e51b815260206004820152601b60248201527f50726f746563743a204d617857616c6c6574206d696e203d203125000000000060448201526064016106aa565b61091c6012600a6119db565b61092690826119e9565b600a5550565b5f337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610961575f80fd5b815f036109d1576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156109aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ce9190611a99565b91505b60405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af1158015610a3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a619190611ab0565b9392505050565b6005546001600160a01b03163314610a925760405162461bcd60e51b81526004016106aa90611a32565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b055760405162461bcd60e51b81526004016106aa90611a32565b600254600955600254600a55565b6060600480546105e690611a00565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610b56575f80fd5b305f90815260208190526040812054610b8990606484610b7560025490565b610b7f91906119e9565b6105c49190611a7a565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610bcf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf39190611ab0565b505050565b5f3381610c058286610ddc565b905083811015610c655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106aa565b61072b82868684036110aa565b5f3361067481858561123f565b6005546001600160a01b03163314610ca95760405162461bcd60e51b81526004016106aa90611a32565b60115460ff1615610cef5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064016106aa565b6011805460ff1916600117905543601255565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610d36575f80fd5b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02915f818181858888f193505050501580156105d4573d5f803e3d5ffd5b6005546001600160a01b03163314610db25760405162461bcd60e51b81526004016106aa90611a32565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610e305760405162461bcd60e51b81526004016106aa90611a32565b305f818152602081905260409020546006549091610e57916001600160a01b0316836110aa565b6006546001600160a01b031663f305d7194730845f80610e7f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610ee5573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610f0a9190611acb565b50505050565b5f818311610f1e5782610a61565b50919050565b601b805460ff19166001179055600654610f499030906001600160a01b0316836110aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610f7c57610f7c611af6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610fd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ff79190611b0a565b8160018151811061100a5761100a611af6565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac9479061106f9085905f9086907f0000000000000000000000000000000000000000000000000000000000000000904290600401611b25565b5f604051808303815f87803b158015611086575f80fd5b505af1158015611098573d5f803e3d5ffd5b5050601b805460ff1916905550505050565b6001600160a01b03831661110c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106aa565b6001600160a01b03821661116d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106aa565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6111d88484610ddc565b90505f198114610f0a57818110156112325760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106aa565b610f0a84848484036110aa565b6001600160a01b0383165f9081526008602052604090205460ff1615801561127f57506001600160a01b0382165f9081526008602052604090205460ff16155b156115b45760115460ff166112c95760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b60448201526064016106aa565b6009548111156113115760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b60448201526064016106aa565b6007545f906001600160a01b039081169084160361143f5760158054905f61133883611b96565b91905055506010546015541161135057600c54611354565b600e545b305f90815260208190526040812054919250506017548111801561137b5750601b5460ff16155b156114395760135443111561138f575f6014555b6006601454106113e15760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920362073656c6c732070657220626c6f636b2100000000000000000060448201526064016106aa565b60148054905f6113f083611b96565b9190505550436013819055506114396114346018546105c46019548511611417578661142e565b600a61142488600f6119e9565b61142e9190611a7a565b85610f10565b610f24565b5061156a565b6007546001600160a01b039081169085160361156a57600a5482611477856001600160a01b03165f9081526020819052604090205490565b6114819190611a67565b11156114c75760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b60448201526064016106aa565b601254430361153c57601a8054905f6114df83611b96565b919050555060ae601a5411156115375760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e60448201526064016106aa565b61156a565b60168054905f61154b83611b96565b9190505550600f546016541161156357600b54611567565b600d545b90505b5f606461157783856119e9565b6115819190611a7a565b90505f61158e8285611bae565b905081156115a1576115a18630846115bb565b6115ac8686836115bb565b505050505050565b610bf38383835b6001600160a01b03831661161f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106aa565b6001600160a01b0382166116815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106aa565b6001600160a01b0383165f90815260208190526040902054818110156116f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106aa565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f0a565b5f6020828403121561176d575f80fd5b5035919050565b5f602080835283518060208501525f5b818110156117a057858101830151858201604001528201611784565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105d4575f80fd5b5f80604083850312156117e5575f80fd5b82356117f0816117c0565b946020939093013593505050565b5f806040838503121561180f575f80fd5b50508035926020909101359150565b5f805f60608486031215611830575f80fd5b833561183b816117c0565b9250602084013561184b816117c0565b929592945050506040919091013590565b5f6020828403121561186c575f80fd5b8135610a61816117c0565b80151581146105d4575f80fd5b5f8060408385031215611895575f80fd5b82356118a0816117c0565b915060208301356118b081611877565b809150509250929050565b5f80604083850312156118cc575f80fd5b82356118d7816117c0565b915060208301356118b0816117c0565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561193557815f190482111561191b5761191b6118e7565b8085161561192857918102915b93841c9390800290611900565b509250929050565b5f8261194b5750600161067a565b8161195757505f61067a565b816001811461196d576002811461197757611993565b600191505061067a565b60ff841115611988576119886118e7565b50506001821b61067a565b5060208310610133831016604e8410600b84101617156119b6575081810a61067a565b6119c083836118fb565b805f19048211156119d3576119d36118e7565b029392505050565b5f610a6160ff84168361193d565b808202811582820484141761067a5761067a6118e7565b600181811c90821680611a1457607f821691505b602082108103610f1e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561067a5761067a6118e7565b5f82611a9457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611aa9575f80fd5b5051919050565b5f60208284031215611ac0575f80fd5b8151610a6181611877565b5f805f60608486031215611add575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b1a575f80fd5b8151610a61816117c0565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611b755784516001600160a01b031683529383019391830191600101611b50565b50506001600160a01b03969096166060850152505050608001529392505050565b5f60018201611ba757611ba76118e7565b5060010190565b8181038181111561067a5761067a6118e756fea26469706673582212206579c6ef4f39bcd0948524010c5e185f1b1b4ac82837dc13442cc17999d718c164736f6c63430008160033
Deployed Bytecode
0x6080604052600436106101c8575f3560e01c8063751039fc116100f2578063c4918b4e11610092578063d9e2b9f611610062578063d9e2b9f614610500578063dd62ed3e1461051f578063f8b45b051461053e578063fe2dab8f14610553575f80fd5b8063c4918b4e14610495578063c4f55023146104aa578063c9567bf9146104d8578063d579d4ed146104ec575f80fd5b80639804adc4116100cd5780639804adc414610423578063a457c2d714610442578063a9059cbb14610461578063c3f70b5214610480575f80fd5b8063751039fc146103de5780638da5cb5b146103f257806395d89b411461040f575f80fd5b806339509351116101685780635d0044ca116101385780635d0044ca14610358578063651388b11461037757806370a0823114610396578063715018a6146103ca575f80fd5b806339509351146102c457806349bd5a5e146102e35780635182a5bb1461031a57806355c4e39e14610339575f80fd5b806318160ddd116101a357806318160ddd1461024d5780631cd602d51461026b57806323b872dd1461028a578063313ce567146102a9575f80fd5b806304dad026146101d357806306fdde03146101f4578063095ea7b31461021e575f80fd5b366101cf57005b5f80fd5b3480156101de575f80fd5b506101f26101ed36600461175d565b610567565b005b3480156101ff575f80fd5b506102086105d7565b6040516102159190611774565b60405180910390f35b348015610229575f80fd5b5061023d6102383660046117d4565b610667565b6040519015158152602001610215565b348015610258575f80fd5b506002545b604051908152602001610215565b348015610276575f80fd5b506101f26102853660046117fe565b610680565b348015610295575f80fd5b5061023d6102a436600461181e565b610713565b3480156102b4575f80fd5b5060405160128152602001610215565b3480156102cf575f80fd5b5061023d6102de3660046117d4565b610736565b3480156102ee575f80fd5b50600754610302906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b348015610325575f80fd5b506101f261033436600461175d565b610757565b348015610344575f80fd5b506101f261035336600461175d565b610827565b348015610363575f80fd5b506101f261037236600461175d565b61086d565b348015610382575f80fd5b5061023d6103913660046117d4565b61092c565b3480156103a1575f80fd5b5061025d6103b036600461185c565b6001600160a01b03165f9081526020819052604090205490565b3480156103d5575f80fd5b506101f2610a68565b3480156103e9575f80fd5b506101f2610adb565b3480156103fd575f80fd5b506005546001600160a01b0316610302565b34801561041a575f80fd5b50610208610b13565b34801561042e575f80fd5b506101f261043d36600461175d565b610b22565b34801561044d575f80fd5b5061023d61045c3660046117d4565b610bf8565b34801561046c575f80fd5b5061023d61047b3660046117d4565b610c72565b34801561048b575f80fd5b5061025d60095481565b3480156104a0575f80fd5b5061025d60185481565b3480156104b5575f80fd5b5061023d6104c436600461185c565b60086020525f908152604090205460ff1681565b3480156104e3575f80fd5b506101f2610c7f565b3480156104f7575f80fd5b506101f2610d02565b34801561050b575f80fd5b506101f261051a366004611884565b610d88565b34801561052a575f80fd5b5061025d6105393660046118bb565b610ddc565b348015610549575f80fd5b5061025d600a5481565b34801561055e575f80fd5b506101f2610e06565b337f000000000000000000000000aee13b13172132f85b25628fbff32cfe3b07e6906001600160a01b03161461059b575f80fd5b305f908152602081905260409020546105c9906105ba6012600a6119db565b6105c490846119e9565b610f10565b90506105d481610f24565b50565b6060600380546105e690611a00565b80601f016020809104026020016040519081016040528092919081815260200182805461061290611a00565b801561065d5780601f106106345761010080835404028352916020019161065d565b820191905f5260205f20905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b5f336106748185856110aa565b60019150505b92915050565b6005546001600160a01b031633146106b35760405162461bcd60e51b81526004016106aa90611a32565b60405180910390fd5b601582111580156106c5575060158111155b6106ff5760405162461bcd60e51b815260206004820152600b60248201526a4d4158205441582032312560a81b60448201526064016106aa565b5f600f819055601055600d91909155600e55565b5f336107208582856111cd565b61072b85858561123f565b506001949350505050565b5f336106748185856107488383610ddc565b6107529190611a67565b6110aa565b6005546001600160a01b031633146107815760405162461bcd60e51b81526004016106aa90611a32565b606461078c60025490565b6107969190611a7a565b6107a26012600a6119db565b6107ac90836119e9565b10156107fa5760405162461bcd60e51b815260206004820152601760248201527f50726f746563743a204d61785478206d696e203d20312500000000000000000060448201526064016106aa565b6108066012600a6119db565b61081090826119e9565b6009819055600a5410156105d457600954600a5550565b6005546001600160a01b031633146108515760405162461bcd60e51b81526004016106aa90611a32565b61085d6012600a6119db565b61086790826119e9565b60185550565b6005546001600160a01b031633146108975760405162461bcd60e51b81526004016106aa90611a32565b60646108a260025490565b6108ac9190611a7a565b6108b86012600a6119db565b6108c290836119e9565b10156109105760405162461bcd60e51b815260206004820152601b60248201527f50726f746563743a204d617857616c6c6574206d696e203d203125000000000060448201526064016106aa565b61091c6012600a6119db565b61092690826119e9565b600a5550565b5f337f000000000000000000000000aee13b13172132f85b25628fbff32cfe3b07e6906001600160a01b031614610961575f80fd5b815f036109d1576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156109aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ce9190611a99565b91505b60405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000aee13b13172132f85b25628fbff32cfe3b07e690811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af1158015610a3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a619190611ab0565b9392505050565b6005546001600160a01b03163314610a925760405162461bcd60e51b81526004016106aa90611a32565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b055760405162461bcd60e51b81526004016106aa90611a32565b600254600955600254600a55565b6060600480546105e690611a00565b337f000000000000000000000000aee13b13172132f85b25628fbff32cfe3b07e6906001600160a01b031614610b56575f80fd5b305f90815260208190526040812054610b8990606484610b7560025490565b610b7f91906119e9565b6105c49190611a7a565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610bcf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bf39190611ab0565b505050565b5f3381610c058286610ddc565b905083811015610c655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106aa565b61072b82868684036110aa565b5f3361067481858561123f565b6005546001600160a01b03163314610ca95760405162461bcd60e51b81526004016106aa90611a32565b60115460ff1615610cef5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064016106aa565b6011805460ff1916600117905543601255565b337f000000000000000000000000aee13b13172132f85b25628fbff32cfe3b07e6906001600160a01b031614610d36575f80fd5b6040516001600160a01b037f000000000000000000000000aee13b13172132f85b25628fbff32cfe3b07e69016904780156108fc02915f818181858888f193505050501580156105d4573d5f803e3d5ffd5b6005546001600160a01b03163314610db25760405162461bcd60e51b81526004016106aa90611a32565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610e305760405162461bcd60e51b81526004016106aa90611a32565b305f818152602081905260409020546006549091610e57916001600160a01b0316836110aa565b6006546001600160a01b031663f305d7194730845f80610e7f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610ee5573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610f0a9190611acb565b50505050565b5f818311610f1e5782610a61565b50919050565b601b805460ff19166001179055600654610f499030906001600160a01b0316836110aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610f7c57610f7c611af6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610fd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ff79190611b0a565b8160018151811061100a5761100a611af6565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac9479061106f9085905f9086907f000000000000000000000000aee13b13172132f85b25628fbff32cfe3b07e690904290600401611b25565b5f604051808303815f87803b158015611086575f80fd5b505af1158015611098573d5f803e3d5ffd5b5050601b805460ff1916905550505050565b6001600160a01b03831661110c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106aa565b6001600160a01b03821661116d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106aa565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6111d88484610ddc565b90505f198114610f0a57818110156112325760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106aa565b610f0a84848484036110aa565b6001600160a01b0383165f9081526008602052604090205460ff1615801561127f57506001600160a01b0382165f9081526008602052604090205460ff16155b156115b45760115460ff166112c95760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b60448201526064016106aa565b6009548111156113115760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b60448201526064016106aa565b6007545f906001600160a01b039081169084160361143f5760158054905f61133883611b96565b91905055506010546015541161135057600c54611354565b600e545b305f90815260208190526040812054919250506017548111801561137b5750601b5460ff16155b156114395760135443111561138f575f6014555b6006601454106113e15760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920362073656c6c732070657220626c6f636b2100000000000000000060448201526064016106aa565b60148054905f6113f083611b96565b9190505550436013819055506114396114346018546105c46019548511611417578661142e565b600a61142488600f6119e9565b61142e9190611a7a565b85610f10565b610f24565b5061156a565b6007546001600160a01b039081169085160361156a57600a5482611477856001600160a01b03165f9081526020819052604090205490565b6114819190611a67565b11156114c75760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b60448201526064016106aa565b601254430361153c57601a8054905f6114df83611b96565b919050555060ae601a5411156115375760405162461bcd60e51b815260206004820181905260248201527f457863656564732062757973206f6e2074686520666972737420626c6f636b2e60448201526064016106aa565b61156a565b60168054905f61154b83611b96565b9190505550600f546016541161156357600b54611567565b600d545b90505b5f606461157783856119e9565b6115819190611a7a565b90505f61158e8285611bae565b905081156115a1576115a18630846115bb565b6115ac8686836115bb565b505050505050565b610bf38383835b6001600160a01b03831661161f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106aa565b6001600160a01b0382166116815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106aa565b6001600160a01b0383165f90815260208190526040902054818110156116f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106aa565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f0a565b5f6020828403121561176d575f80fd5b5035919050565b5f602080835283518060208501525f5b818110156117a057858101830151858201604001528201611784565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105d4575f80fd5b5f80604083850312156117e5575f80fd5b82356117f0816117c0565b946020939093013593505050565b5f806040838503121561180f575f80fd5b50508035926020909101359150565b5f805f60608486031215611830575f80fd5b833561183b816117c0565b9250602084013561184b816117c0565b929592945050506040919091013590565b5f6020828403121561186c575f80fd5b8135610a61816117c0565b80151581146105d4575f80fd5b5f8060408385031215611895575f80fd5b82356118a0816117c0565b915060208301356118b081611877565b809150509250929050565b5f80604083850312156118cc575f80fd5b82356118d7816117c0565b915060208301356118b0816117c0565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561193557815f190482111561191b5761191b6118e7565b8085161561192857918102915b93841c9390800290611900565b509250929050565b5f8261194b5750600161067a565b8161195757505f61067a565b816001811461196d576002811461197757611993565b600191505061067a565b60ff841115611988576119886118e7565b50506001821b61067a565b5060208310610133831016604e8410600b84101617156119b6575081810a61067a565b6119c083836118fb565b805f19048211156119d3576119d36118e7565b029392505050565b5f610a6160ff84168361193d565b808202811582820484141761067a5761067a6118e7565b600181811c90821680611a1457607f821691505b602082108103610f1e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561067a5761067a6118e7565b5f82611a9457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611aa9575f80fd5b5051919050565b5f60208284031215611ac0575f80fd5b8151610a6181611877565b5f805f60608486031215611add575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b1a575f80fd5b8151610a61816117c0565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611b755784516001600160a01b031683529383019391830191600101611b50565b50506001600160a01b03969096166060850152505050608001529392505050565b5f60018201611ba757611ba76118e7565b5060010190565b8181038181111561067a5761067a6118e756fea26469706673582212206579c6ef4f39bcd0948524010c5e185f1b1b4ac82837dc13442cc17999d718c164736f6c63430008160033
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.