ERC-20
Overview
Max Total Supply
100,000,000 CPAI
Holders
1,567
Market
Price
$0.19 @ 0.000054 ETH (-4.51%)
Onchain Market Cap
$18,642,800.00
Circulating Supply Market Cap
$18,630,437.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000003935 CPAIValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CPAI
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** X: https://x.com/OfficialCPAI Telegram: https://t.me/OfficialCPAI LinkedIn: https://www.linkedin.com/company/officialcpai Website: https://www.cpai.io/ https://www.moontax.com/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router.sol"; contract CPAI is Ownable, ERC20 { IUniswapV2Router public immutable uniswapV2Router; address public constant ZERO_ADDRESS = address(0); address public constant DEAD_ADDRESS = address(0xdEaD); address public immutable uniswapV2Pair; address public operationsWallet; address public developmentWallet; bool public isLimitsEnabled; bool public isCooldownEnabled; bool public isTaxEnabled; bool private inSwapBack; bool public isLaunched; uint256 private lastSwapBackExecutionBlock; uint256 public constant MAX_FEE = 30; uint256 public maxBuy; uint256 public maxSell; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public buyFee; uint256 public sellFee; uint256 public transferFee; mapping(address => bool) public isBot; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public isExcludedFromLimits; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event Launch(); event SetOperationsWallet(address newWallet, address oldWallet); event SetDevelopmentWallet(address newWallet, address oldWallet); event SetLimitsEnabled(bool status); event SetCooldownEnabled(bool status); event SetTaxesEnabled(bool status); event SetMaxBuy(uint256 amount); event SetMaxSell(uint256 amount); event SetMaxWallet(uint256 amount); event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue); event SetBuyFees(uint256 newValue, uint256 oldValue); event SetSellFees(uint256 newValue, uint256 oldValue); event SetTransferFees(uint256 newValue, uint256 oldValue); event ExcludeFromFees(address account, bool isExcluded); event ExcludeFromLimits(address account, bool isExcluded); event SetBots(address account, bool isExcluded); event SetAutomatedMarketMakerPair(address pair, bool value); event WithdrawStuckTokens(address token, uint256 amount); error AlreadyLaunched(); error InvalidSender(); error AddressZero(); error AmountTooLow(); error AmountTooHigh(); error FeeTooHigh(); error AMMAlreadySet(); error NoNativeTokens(); error NoTokens(); error FailedToWithdrawNativeTokens(); error BotDetected(); error TransferDelay(); error MaxBuyAmountExceed(); error MaxSellAmountExceed(); error MaxWalletAmountExceed(); error NotLaunched(); modifier lockSwapBack() { inSwapBack = true; _; inSwapBack = false; } constructor() Ownable(msg.sender) ERC20("Moontax", "CPAI") { address sender = msg.sender; _mint(sender, 100_000_000 ether); uint256 totalSupply = totalSupply(); operationsWallet = 0xF6bf84F3Af95774a82B62536111915ba4F12b087; developmentWallet = 0x2e48e44F23129e20a0c1a1f295803BCAf9A0D57B; address uniswapFeeCollector = 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c; maxBuy = (totalSupply * 12) / 1000; maxSell = (totalSupply * 12) / 1000; maxWallet = (totalSupply * 12) / 1000; swapTokensAtAmount = (totalSupply * 5) / 10000; isLimitsEnabled = true; isCooldownEnabled = true; isTaxEnabled = true; buyFee = 20; sellFee = 30; transferFee = 60; uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setAutomatedMarketMakerPair(uniswapV2Pair, true); _approve(address(this), address(uniswapV2Router), type(uint256).max); _excludeFromFees(address(this), true); _excludeFromFees(DEAD_ADDRESS, true); _excludeFromFees(sender, true); _excludeFromFees(operationsWallet, true); _excludeFromFees(developmentWallet, true); _excludeFromFees(uniswapFeeCollector, true); _excludeFromLimits(address(this), true); _excludeFromLimits(DEAD_ADDRESS, true); _excludeFromLimits(sender, true); _excludeFromLimits(operationsWallet, true); _excludeFromLimits(developmentWallet, true); _excludeFromLimits(uniswapFeeCollector, true); } receive() external payable {} fallback() external payable {} function launch() external onlyOwner { require(!isLaunched, AlreadyLaunched()); isLaunched = true; emit Launch(); } function setOperationsWallet(address _operationsWallet) external { require(msg.sender == operationsWallet, InvalidSender()); require(_operationsWallet != ZERO_ADDRESS, AddressZero()); address oldWallet = operationsWallet; operationsWallet = _operationsWallet; emit SetOperationsWallet(operationsWallet, oldWallet); } function setDevelopmentWallet(address _developmentWallet) external { require(msg.sender == developmentWallet, InvalidSender()); require(_developmentWallet != ZERO_ADDRESS, AddressZero()); address oldWallet = developmentWallet; developmentWallet = _developmentWallet; emit SetDevelopmentWallet(developmentWallet, oldWallet); } function setLimitsEnabled(bool value) external onlyOwner { isLimitsEnabled = value; emit SetLimitsEnabled(value); } function setCooldownEnabled(bool value) external onlyOwner { isCooldownEnabled = value; emit SetCooldownEnabled(value); } function setTaxesEnabled(bool value) external onlyOwner { isTaxEnabled = value; emit SetTaxesEnabled(value); } function setMaxBuy(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxBuy = amount; emit SetMaxBuy(maxBuy); } function setMaxSell(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxSell = amount; emit SetMaxSell(maxSell); } function setMaxWallet(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 3) / 1000), AmountTooLow()); maxWallet = amount; emit SetMaxWallet(maxWallet); } function setSwapTokensAtAmount(uint256 amount) external onlyOwner { uint256 _totalSupply = totalSupply(); require(amount >= (_totalSupply * 1) / 1000000, AmountTooLow()); require(amount <= (_totalSupply * 5) / 1000, AmountTooHigh()); uint256 oldValue = swapTokensAtAmount; swapTokensAtAmount = amount; emit SetSwapTokensAtAmount(amount, oldValue); } function setBuyFees(uint256 _buyFee) external onlyOwner { require(_buyFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = buyFee; buyFee = _buyFee; emit SetBuyFees(_buyFee, oldValue); } function setSellFees(uint256 _sellFee) external onlyOwner { require(_sellFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = sellFee; sellFee = _sellFee; emit SetSellFees(_sellFee, oldValue); } function setTransferFees(uint256 _transferFee) external onlyOwner { require(_transferFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = transferFee; transferFee = _transferFee; emit SetTransferFees(_transferFee, oldValue); } function excludeFromFees(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromFees(accounts[i], value); } } function excludeFromLimits(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromLimits(accounts[i], value); } } function setBots(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (!automatedMarketMakerPairs[accounts[i]]) && (accounts[i] != address(uniswapV2Router)) && (accounts[i] != address(this)) && (accounts[i] != ZERO_ADDRESS) && (!isExcludedFromFees[accounts[i]] && !isExcludedFromLimits[accounts[i]]) ) _setBots(accounts[i], value); } } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(!automatedMarketMakerPairs[pair], AMMAlreadySet()); _setAutomatedMarketMakerPair(pair, value); } function withdrawStuckTokens(address _token) external onlyOwner { address sender = msg.sender; uint256 amount; if (_token == ZERO_ADDRESS) { bool success; amount = address(this).balance; require(amount > 0, NoNativeTokens()); (success, ) = address(sender).call{value: amount}(""); require(success, FailedToWithdrawNativeTokens()); } else { amount = IERC20(_token).balanceOf(address(this)); require(amount > 0, NoTokens()); IERC20(_token).transfer(msg.sender, amount); } emit WithdrawStuckTokens(_token, amount); } function _transferOwnership(address newOwner) internal virtual override { address oldOwner = owner(); if (oldOwner != ZERO_ADDRESS) { _excludeFromFees(oldOwner, false); _excludeFromLimits(oldOwner, false); } _excludeFromFees(newOwner, true); _excludeFromLimits(newOwner, true); super._transferOwnership(newOwner); } function _update( address from, address to, uint256 amount ) internal virtual override { address sender = msg.sender; address origin = tx.origin; uint256 blockNumber = block.number; require(!isBot[from], BotDetected()); require(sender == from || !isBot[sender], BotDetected()); require( origin == from || origin == sender || !isBot[origin], BotDetected() ); require( isLaunched || isExcludedFromLimits[from] || isExcludedFromLimits[to], NotLaunched() ); bool limits = isLimitsEnabled && !inSwapBack && !(isExcludedFromLimits[from] || isExcludedFromLimits[to]); if (limits) { if ( from != owner() && to != owner() && to != ZERO_ADDRESS && to != DEAD_ADDRESS ) { if (isCooldownEnabled) { if (to != address(uniswapV2Router) && to != uniswapV2Pair) { require( _holderLastTransferTimestamp[origin] < blockNumber - 3 && _holderLastTransferTimestamp[to] < blockNumber - 3, TransferDelay() ); _holderLastTransferTimestamp[origin] = blockNumber; _holderLastTransferTimestamp[to] = blockNumber; } } if ( automatedMarketMakerPairs[from] && !isExcludedFromLimits[to] ) { require(amount <= maxBuy, MaxBuyAmountExceed()); require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } else if ( automatedMarketMakerPairs[to] && !isExcludedFromLimits[from] ) { require(amount <= maxSell, MaxSellAmountExceed()); } else if (!isExcludedFromLimits[to]) { require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } } } bool takeFee = isTaxEnabled && !inSwapBack && !(isExcludedFromFees[from] || isExcludedFromFees[to]); if (takeFee) { uint256 fees = 0; if (automatedMarketMakerPairs[to] && sellFee > 0) { fees = (amount * sellFee) / 100; } else if (automatedMarketMakerPairs[from] && buyFee > 0) { fees = (amount * buyFee) / 100; } else if ( !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from] && transferFee > 0 ) { fees = (amount * transferFee) / 100; } if (fees > 0) { amount -= fees; super._update(from, address(this), fees); } } uint256 balance = balanceOf(address(this)); bool shouldSwap = balance >= swapTokensAtAmount; if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) { if (blockNumber > lastSwapBackExecutionBlock) { _swapBack(balance); lastSwapBackExecutionBlock = blockNumber; } } super._update(from, to, amount); } function _swapBack(uint256 balance) internal virtual lockSwapBack { bool success; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 maxSwapAmount = swapTokensAtAmount * 20; if (balance > maxSwapAmount) { balance = maxSwapAmount; } uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balance, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; uint256 ethForDevelopment = ethBalance / 2; uint256 ethForOperations = ethBalance - ethForDevelopment; (success, ) = address(operationsWallet).call{value: ethForOperations}( "" ); (success, ) = address(developmentWallet).call{value: ethForDevelopment}( "" ); } function _excludeFromFees(address account, bool value) internal virtual { isExcludedFromFees[account] = value; emit ExcludeFromFees(account, value); } function _excludeFromLimits(address account, bool value) internal virtual { isExcludedFromLimits[account] = value; emit ExcludeFromLimits(account, value); } function _setBots(address account, bool value) internal virtual { isBot[account] = value; emit SetBots(account, value); } function _setAutomatedMarketMakerPair(address pair, bool value) internal virtual { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.28; interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.28; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
{ "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
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AMMAlreadySet","type":"error"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyLaunched","type":"error"},{"inputs":[],"name":"AmountTooHigh","type":"error"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BotDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToWithdrawNativeTokens","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"MaxBuyAmountExceed","type":"error"},{"inputs":[],"name":"MaxSellAmountExceed","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceed","type":"error"},{"inputs":[],"name":"NoNativeTokens","type":"error"},{"inputs":[],"name":"NoTokens","type":"error"},{"inputs":[],"name":"NotLaunched","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferDelay","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","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":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405234801561000f575f5ffd5b50604080518082018252600781526609adededce8c2f60cb1b602080830191909152825180840190935260048352634350414960e01b9083015290338061007057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610079816103e9565b5060046100868382611167565b5060056100938282611167565b503391506100ae9050816a52b7d2dcc80cd2e4000000610431565b5f6100b860035490565b600680546001600160a01b031990811673f6bf84f3af95774a82b62536111915ba4f12b0871790915560078054909116732e48e44f23129e20a0c1a1f295803bcaf9a0d57b179055905070fee13a103a10d593b9ae06b3e05f2e7e1c6103e861012283600c611235565b61012c9190611252565b6009556103e861013d83600c611235565b6101479190611252565b600a556103e861015883600c611235565b6101629190611252565b600b55612710610173836005611235565b61017d9190611252565b600c556007805462ffffff60a01b19166201010160a01b1790556014600d55601e600e55603c600f55737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021d9190611271565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561026a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028e9190611271565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fc9190611271565b6001600160a01b031660a0819052610315906001610465565b610329306080515f196104c860201b60201c565b6103343060016104da565b61034161dead60016104da565b61034c8360016104da565b600654610363906001600160a01b031660016104da565b60075461037a906001600160a01b031660016104da565b6103858160016104da565b610390306001610535565b61039d61dead6001610535565b6103a8836001610535565b6006546103bf906001600160a01b03166001610535565b6007546103d6906001600160a01b03166001610535565b6103e1816001610535565b505050611348565b5f546001600160a01b0316801561040e57610404815f6104da565b61040e815f610535565b6104198260016104da565b610424826001610535565b61042d82610590565b5050565b6001600160a01b03821661045a5760405163ec442f0560e01b81525f6004820152602401610067565b61042d5f83836105df565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104d58383836001610c7f565b505050565b6001600160a01b0382165f81815260116020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016104bc565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016104bc565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f9081526010602052604090205433903290439060ff161561061e576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b0316148061065657506001600160a01b0383165f9081526010602052604090205460ff16155b610673576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b031614806106a45750826001600160a01b0316826001600160a01b0316145b806106c757506001600160a01b0382165f9081526010602052604090205460ff16155b6106e4576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff168061071357506001600160a01b0386165f9081526012602052604090205460ff165b8061073557506001600160a01b0385165f9081526012602052604090205460ff165b61075257604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff1680156107775750600754600160b81b900460ff16155b80156107bd57506001600160a01b0387165f9081526012602052604090205460ff16806107bb57506001600160a01b0386165f9081526012602052604090205460ff165b155b90508015610a7b575f546001600160a01b038881169116148015906107ef57505f546001600160a01b03878116911614155b801561080357506001600160a01b03861615155b801561081a57506001600160a01b03861661dead14155b15610a7b57600754600160a81b900460ff1615610901576080516001600160a01b0316866001600160a01b031614158015610869575060a0516001600160a01b0316866001600160a01b031614155b156109015761087960038361129e565b6001600160a01b0384165f908152601460205260409020541080156108be57506108a460038361129e565b6001600160a01b0387165f90815260146020526040902054105b6108db57604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601460205260408082208590559188168152208290555b6001600160a01b0387165f9081526013602052604090205460ff16801561094057506001600160a01b0386165f9081526012602052604090205460ff16155b156109b15760095485111561096857604051632c676b8560e21b815260040160405180910390fd5b600b546001600160a01b0387165f9081526001602052604090205461098d90876112b1565b11156109ac5760405163d867451160e01b815260040160405180910390fd5b610a7b565b6001600160a01b0386165f9081526013602052604090205460ff1680156109f057506001600160a01b0387165f9081526012602052604090205460ff16155b15610a1857600a548511156109ac576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526012602052604090205460ff16610a7b57600b546001600160a01b0387165f90815260016020526040902054610a5c90876112b1565b1115610a7b5760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015610aa05750600754600160b81b900460ff16155b8015610ae657506001600160a01b0388165f9081526011602052604090205460ff1680610ae457506001600160a01b0387165f9081526011602052604090205460ff165b155b90508015610c07576001600160a01b0387165f9081526013602052604081205460ff168015610b1657505f600e54115b15610b3c576064600e5488610b2b9190611235565b610b359190611252565b9050610be8565b6001600160a01b0389165f9081526013602052604090205460ff168015610b6457505f600d54115b15610b79576064600d5488610b2b9190611235565b6001600160a01b0388165f9081526013602052604090205460ff16158015610bb957506001600160a01b0389165f9081526013602052604090205460ff16155b8015610bc657505f600f54115b15610be8576064600f5488610bdb9190611235565b610be59190611252565b90505b8015610c0557610bf8818861129e565b9650610c05893083610d52565b505b305f90815260016020526040902054600c54811015828015610c4157506001600160a01b038a165f9081526013602052604090205460ff16155b8015610c4a5750805b15610c6857600854851115610c6857610c6282610e78565b60088590555b610c738a8a8a610d52565b50505050505050505050565b6001600160a01b038416610ca85760405163e602df0560e01b81525f6004820152602401610067565b6001600160a01b038316610cd157604051634a1406b160e11b81525f6004820152602401610067565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610d4c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d4391815260200190565b60405180910390a35b50505050565b6001600160a01b038316610d7c578060035f828254610d7191906112b1565b90915550610dec9050565b6001600160a01b0383165f9081526001602052604090205481811015610dce5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610067565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610e0857600380548290039055610e26565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e6b91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610ec257610ec26112c4565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f20573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f449190611271565b81600181518110610f5757610f576112c4565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600c546014610f879190611235565b905080841115610f95578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b8152600401610fcb9594939291906112d8565b5f604051808303815f87803b158015610fe2575f5ffd5b505af1158015610ff4573d5f5f3e3d5ffd5b504792505f91506110089050600283611252565b90505f611015828461129e565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114611060576040519150601f19603f3d011682016040523d82523d5f602084013e611065565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f81146110b2576040519150601f19603f3d011682016040523d82523d5f602084013e6110b7565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806110f857607f821691505b60208210810361111657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104d557805f5260205f20601f840160051c810160208510156111415750805b601f840160051c820191505b81811015611160575f815560010161114d565b5050505050565b81516001600160401b03811115611180576111806110d0565b6111948161118e84546110e4565b8461111c565b6020601f8211600181146111c6575f83156111af5750848201515b5f19600385901b1c1916600184901b178455611160565b5f84815260208120601f198516915b828110156111f557878501518255602094850194600190920191016111d5565b508482101561121257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761124c5761124c611221565b92915050565b5f8261126c57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611281575f5ffd5b81516001600160a01b0381168114611297575f5ffd5b9392505050565b8181038181111561124c5761124c611221565b8082018082111561124c5761124c611221565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156113285783516001600160a01b0316835260209384019390920191600101611301565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a0516127f961138c5f395f81816104b60152611bff01525f818161037c01528181610e7101528181611bc20152818161222b015261231101526127f95ff3fe6080604052600436106102dd575f3560e01c80638da5cb5b1161017d578063cb963728116100d2578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b146108fe578063f53bc8351461091d578063f8b45b051461093c578063fd72e22a1461095157005b8063e6c1909b146108a0578063ee5ecc89146108c0578063ef998cf0146108df57005b8063cb963728146107ca578063d26ed3e3146107e9578063d5759ba314610808578063dcf7aef314610828578063dd62ed3e14610847578063e2f456051461088b57005b8063acb2ad6f11610139578063b62496f511610116578063b62496f514610754578063b8eb354614610782578063bc063e1a14610797578063c04a5414146107ab57005b8063acb2ad6f14610701578063ad29ffde14610716578063afa4f3b21461073557005b80638da5cb5b1461065557806395927c251461067157806395d89b41146106905780639a7a23d6146106a45780639c0db5f3146106c3578063a9059cbb146106e257005b806349bd5a5e116102335780635cce86cd116101ef57806370a08231116101cc57806370a08231146105d957806370db69d61461060d578063715018a61461062257806372ac24861461063657005b80635cce86cd1461056c5780635d0044ca1461059a5780636ca541e5146105b957005b806349bd5a5e146104a55780634e6fd6c4146104d85780634fbee193146104ed578063538ba4f91461051b5780635932ead11461052e57806359512ab01461054d57005b806323b872dd1161029a578063313ce56711610277578063313ce567146104285780633bbac5791461044357806341aea9de14610471578063470624021461049057005b806323b872dd146103d45780632b14ca56146103f3578063307aebc91461040857005b806301339c21146102df57806306fdde03146102f3578063095ea7b31461031d578063106a5a8f1461034c5780631694505e1461036b57806318160ddd146103b6575b005b3480156102ea575f5ffd5b506102dd610970565b3480156102fe575f5ffd5b506103076109e0565b6040516103149190612453565b60405180910390f35b348015610328575f5ffd5b5061033c61033736600461249c565b610a70565b6040519015158152602001610314565b348015610357575f5ffd5b506102dd6103663660046124d3565b610a89565b348015610376575f5ffd5b5061039e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610314565b3480156103c1575f5ffd5b506003545b604051908152602001610314565b3480156103df575f5ffd5b5061033c6103ee366004612555565b610ad9565b3480156103fe575f5ffd5b506103c6600e5481565b348015610413575f5ffd5b5060075461033c90600160c01b900460ff1681565b348015610433575f5ffd5b5060405160128152602001610314565b34801561044e575f5ffd5b5061033c61045d366004612593565b60106020525f908152604090205460ff1681565b34801561047c575f5ffd5b506102dd61048b3660046125b5565b610afc565b34801561049b575f5ffd5b506103c6600d5481565b3480156104b0575f5ffd5b5061039e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e3575f5ffd5b5061039e61dead81565b3480156104f8575f5ffd5b5061033c610507366004612593565b60116020525f908152604090205460ff1681565b348015610526575f5ffd5b5061039e5f81565b348015610539575f5ffd5b506102dd6105483660046125b5565b610b5c565b348015610558575f5ffd5b506102dd6105673660046125b5565b610bb1565b348015610577575f5ffd5b5061033c610586366004612593565b60126020525f908152604090205460ff1681565b3480156105a5575f5ffd5b506102dd6105b43660046125d0565b610c06565b3480156105c4575f5ffd5b5060075461033c90600160a81b900460ff1681565b3480156105e4575f5ffd5b506103c66105f3366004612593565b6001600160a01b03165f9081526001602052604090205490565b348015610618575f5ffd5b506103c660095481565b34801561062d575f5ffd5b506102dd610c84565b348015610641575f5ffd5b506102dd610650366004612593565b610c97565b348015610660575f5ffd5b505f546001600160a01b031661039e565b34801561067c575f5ffd5b506102dd61068b3660046125d0565b610d49565b34801561069b575f5ffd5b50610307610db1565b3480156106af575f5ffd5b506102dd6106be3660046125e7565b610dc0565b3480156106ce575f5ffd5b506102dd6106dd3660046124d3565b610e0f565b3480156106ed575f5ffd5b5061033c6106fc36600461249c565b61101c565b34801561070c575f5ffd5b506103c6600f5481565b348015610721575f5ffd5b506102dd6107303660046124d3565b611029565b348015610740575f5ffd5b506102dd61074f3660046125d0565b611073565b34801561075f575f5ffd5b5061033c61076e366004612593565b60136020525f908152604090205460ff1681565b34801561078d575f5ffd5b506103c6600a5481565b3480156107a2575f5ffd5b506103c6601e81565b3480156107b6575f5ffd5b5060075461039e906001600160a01b031681565b3480156107d5575f5ffd5b506102dd6107e4366004612593565b61113f565b3480156107f4575f5ffd5b506102dd6108033660046125d0565b611324565b348015610813575f5ffd5b5060075461033c90600160a01b900460ff1681565b348015610833575f5ffd5b506102dd6108423660046125d0565b61138c565b348015610852575f5ffd5b506103c661086136600461261e565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610896575f5ffd5b506103c6600c5481565b3480156108ab575f5ffd5b5060075461033c90600160b01b900460ff1681565b3480156108cb575f5ffd5b506102dd6108da366004612593565b6113f4565b3480156108ea575f5ffd5b506102dd6108f93660046125d0565b61149e565b348015610909575f5ffd5b506102dd610918366004612593565b61151c565b348015610928575f5ffd5b506102dd6109373660046125d0565b61155e565b348015610947575f5ffd5b506103c6600b5481565b34801561095c575f5ffd5b5060065461039e906001600160a01b031681565b6109786115dc565b600754600160c01b900460ff16156109a3576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b1790556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b6060600480546109ef9061264a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b9061264a565b8015610a665780601f10610a3d57610100808354040283529160200191610a66565b820191905f5260205f20905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b5f33610a7d818585611608565b60019150505b92915050565b610a916115dc565b5f5b82811015610ad357610acb848483818110610ab057610ab0612682565b9050602002016020810190610ac59190612593565b8361161a565b600101610a93565b50505050565b5f33610ae6858285611675565b610af18585856116ea565b506001949350505050565b610b046115dc565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610b5190831515815260200190565b60405180910390a150565b610b646115dc565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610b5190831515815260200190565b610bb96115dc565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610b5190831515815260200190565b610c0e6115dc565b6103e8610c1a60035490565b610c259060036126aa565b610c2f91906126c1565b811015610c4f57604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610b51565b610c8c6115dc565b610c955f611747565b565b6007546001600160a01b03163314610cc257604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610ce957604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d516115dc565b601e811115610d735760405163cd4e616760e01b815260040160405180910390fd5b600e80549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d3d565b6060600580546109ef9061264a565b610dc86115dc565b6001600160a01b0382165f9081526013602052604090205460ff1615610e01576040516304eb79b560e31b815260040160405180910390fd5b610e0b828261178b565b5050565b610e176115dc565b5f5b82811015610ad35760135f858584818110610e3657610e36612682565b9050602002016020810190610e4b9190612593565b6001600160a01b0316815260208101919091526040015f205460ff16158015610ecc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610eab57610eab612682565b9050602002016020810190610ec09190612593565b6001600160a01b031614155b8015610f07575030848483818110610ee657610ee6612682565b9050602002016020810190610efb9190612593565b6001600160a01b031614155b8015610f4257505f848483818110610f2157610f21612682565b9050602002016020810190610f369190612593565b6001600160a01b031614155b8015610fdf575060115f858584818110610f5e57610f5e612682565b9050602002016020810190610f739190612593565b6001600160a01b0316815260208101919091526040015f205460ff16158015610fdf575060125f858584818110610fac57610fac612682565b9050602002016020810190610fc19190612593565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561101457611014848483818110610ff957610ff9612682565b905060200201602081019061100e9190612593565b836117e6565b600101610e19565b5f33610a7d8185856116ea565b6110316115dc565b5f5b82811015610ad35761106b84848381811061105057611050612682565b90506020020160208101906110659190612593565b83611841565b600101611033565b61107b6115dc565b5f61108560035490565b9050620f42406110968260016126aa565b6110a091906126c1565b8210156110c057604051631fbaba3560e01b815260040160405180910390fd5b6103e86110ce8260056126aa565b6110d891906126c1565b8211156110f85760405163fd7850ad60e01b815260040160405180910390fd5b600c80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111476115dc565b335f6001600160a01b0383166111ed5750475f8161117857604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f81146111be576040519150601f19603f3d011682016040523d82523d5f602084013e6111c3565b606091505b505080915050806111e757604051633398652560e11b815260040160405180910390fd5b506112e5565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa15801561122f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061125391906126e0565b90505f81116112755760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156112bf573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e391906126f7565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611132565b61132c6115dc565b601e81111561134e5760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d3d565b6113946115dc565b601e8111156113b65760405163cd4e616760e01b815260040160405180910390fd5b600d80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d3d565b6006546001600160a01b0316331461141f57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03811661144657604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d3d565b6114a66115dc565b6103e86114b260035490565b6114bd9060026126aa565b6114c791906126c1565b8110156114e757604051631fbaba3560e01b815260040160405180910390fd5b600a8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610b51565b6115246115dc565b6001600160a01b03811661155257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61155b81611747565b50565b6115666115dc565b6103e861157260035490565b61157d9060026126aa565b61158791906126c1565b8110156115a757604051631fbaba3560e01b815260040160405180910390fd5b60098190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610b51565b5f546001600160a01b03163314610c955760405163118cdaa760e01b8152336004820152602401611549565b611615838383600161189c565b505050565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d3d565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610ad357818110156116dc57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611549565b610ad384848484035f61189c565b6001600160a01b03831661171357604051634b637e8f60e11b81525f6004820152602401611549565b6001600160a01b03821661173c5760405163ec442f0560e01b81525f6004820152602401611549565b61161583838361196e565b5f546001600160a01b0316801561176c57611762815f611841565b61176c815f61161a565b611777826001611841565b61178282600161161a565b610e0b8261204a565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d3d565b6001600160a01b0382165f81815260106020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d3d565b6001600160a01b0382165f81815260116020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d3d565b6001600160a01b0384166118c55760405163e602df0560e01b81525f6004820152602401611549565b6001600160a01b0383166118ee57604051634a1406b160e11b81525f6004820152602401611549565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610ad357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161196091815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526010602052604090205433903290439060ff16156119ad576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b031614806119e557506001600160a01b0383165f9081526010602052604090205460ff16155b611a02576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a335750826001600160a01b0316826001600160a01b0316145b80611a5657506001600160a01b0382165f9081526010602052604090205460ff16155b611a73576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611aa257506001600160a01b0386165f9081526012602052604090205460ff165b80611ac457506001600160a01b0385165f9081526012602052604090205460ff165b611ae157604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b065750600754600160b81b900460ff16155b8015611b4c57506001600160a01b0387165f9081526012602052604090205460ff1680611b4a57506001600160a01b0386165f9081526012602052604090205460ff165b155b90508015611e46575f546001600160a01b03888116911614801590611b7e57505f546001600160a01b03878116911614155b8015611b9257506001600160a01b03861615155b8015611ba957506001600160a01b03861661dead14155b15611e4657600754600160a81b900460ff1615611ccc577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614158015611c3457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b15611ccc57611c44600383612712565b6001600160a01b0384165f90815260146020526040902054108015611c895750611c6f600383612712565b6001600160a01b0387165f90815260146020526040902054105b611ca657604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601460205260408082208590559188168152208290555b6001600160a01b0387165f9081526013602052604090205460ff168015611d0b57506001600160a01b0386165f9081526012602052604090205460ff16155b15611d7c57600954851115611d3357604051632c676b8560e21b815260040160405180910390fd5b600b546001600160a01b0387165f90815260016020526040902054611d589087612725565b1115611d775760405163d867451160e01b815260040160405180910390fd5b611e46565b6001600160a01b0386165f9081526013602052604090205460ff168015611dbb57506001600160a01b0387165f9081526012602052604090205460ff16155b15611de357600a54851115611d77576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526012602052604090205460ff16611e4657600b546001600160a01b0387165f90815260016020526040902054611e279087612725565b1115611e465760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611e6b5750600754600160b81b900460ff16155b8015611eb157506001600160a01b0388165f9081526011602052604090205460ff1680611eaf57506001600160a01b0387165f9081526011602052604090205460ff165b155b90508015611fd2576001600160a01b0387165f9081526013602052604081205460ff168015611ee157505f600e54115b15611f07576064600e5488611ef691906126aa565b611f0091906126c1565b9050611fb3565b6001600160a01b0389165f9081526013602052604090205460ff168015611f2f57505f600d54115b15611f44576064600d5488611ef691906126aa565b6001600160a01b0388165f9081526013602052604090205460ff16158015611f8457506001600160a01b0389165f9081526013602052604090205460ff16155b8015611f9157505f600f54115b15611fb3576064600f5488611fa691906126aa565b611fb091906126c1565b90505b8015611fd057611fc38188612712565b9650611fd0893083612099565b505b305f90815260016020526040902054600c5481101582801561200c57506001600160a01b038a165f9081526013602052604090205460ff16155b80156120155750805b15612033576008548511156120335761202d826121bf565b60088590555b61203e8a8a8a612099565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120c3578060035f8282546120b89190612725565b909155506121339050565b6001600160a01b0383165f90815260016020526040902054818110156121155760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401611549565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661214f5760038054829003905561216d565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121b291815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061220957612209612682565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612285573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122a99190612738565b816001815181106122bc576122bc612682565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600c5460146122ec91906126aa565b9050808411156122fa578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061234e9087905f90879030904290600401612753565b5f604051808303815f87803b158015612365575f5ffd5b505af1158015612377573d5f5f3e3d5ffd5b504792505f915061238b90506002836126c1565b90505f6123988284612712565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f81146123e3576040519150601f19603f3d011682016040523d82523d5f602084013e6123e8565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612435576040519150601f19603f3d011682016040523d82523d5f602084013e61243a565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461155b575f5ffd5b5f5f604083850312156124ad575f5ffd5b82356124b881612488565b946020939093013593505050565b801515811461155b575f5ffd5b5f5f5f604084860312156124e5575f5ffd5b833567ffffffffffffffff8111156124fb575f5ffd5b8401601f8101861361250b575f5ffd5b803567ffffffffffffffff811115612521575f5ffd5b8660208260051b8401011115612535575f5ffd5b60209182019450925084013561254a816124c6565b809150509250925092565b5f5f5f60608486031215612567575f5ffd5b833561257281612488565b9250602084013561258281612488565b929592945050506040919091013590565b5f602082840312156125a3575f5ffd5b81356125ae81612488565b9392505050565b5f602082840312156125c5575f5ffd5b81356125ae816124c6565b5f602082840312156125e0575f5ffd5b5035919050565b5f5f604083850312156125f8575f5ffd5b823561260381612488565b91506020830135612613816124c6565b809150509250929050565b5f5f6040838503121561262f575f5ffd5b823561263a81612488565b9150602083013561261381612488565b600181811c9082168061265e57607f821691505b60208210810361267c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a8357610a83612696565b5f826126db57634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156126f0575f5ffd5b5051919050565b5f60208284031215612707575f5ffd5b81516125ae816124c6565b81810381811115610a8357610a83612696565b80820180821115610a8357610a83612696565b5f60208284031215612748575f5ffd5b81516125ae81612488565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127a35783516001600160a01b031683526020938401939092019160010161277c565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220fb3737fbcf538207a4351fc37099a6e41844201f0da064cfa324f68918949be164736f6c634300081c0033
Deployed Bytecode
0x6080604052600436106102dd575f3560e01c80638da5cb5b1161017d578063cb963728116100d2578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b146108fe578063f53bc8351461091d578063f8b45b051461093c578063fd72e22a1461095157005b8063e6c1909b146108a0578063ee5ecc89146108c0578063ef998cf0146108df57005b8063cb963728146107ca578063d26ed3e3146107e9578063d5759ba314610808578063dcf7aef314610828578063dd62ed3e14610847578063e2f456051461088b57005b8063acb2ad6f11610139578063b62496f511610116578063b62496f514610754578063b8eb354614610782578063bc063e1a14610797578063c04a5414146107ab57005b8063acb2ad6f14610701578063ad29ffde14610716578063afa4f3b21461073557005b80638da5cb5b1461065557806395927c251461067157806395d89b41146106905780639a7a23d6146106a45780639c0db5f3146106c3578063a9059cbb146106e257005b806349bd5a5e116102335780635cce86cd116101ef57806370a08231116101cc57806370a08231146105d957806370db69d61461060d578063715018a61461062257806372ac24861461063657005b80635cce86cd1461056c5780635d0044ca1461059a5780636ca541e5146105b957005b806349bd5a5e146104a55780634e6fd6c4146104d85780634fbee193146104ed578063538ba4f91461051b5780635932ead11461052e57806359512ab01461054d57005b806323b872dd1161029a578063313ce56711610277578063313ce567146104285780633bbac5791461044357806341aea9de14610471578063470624021461049057005b806323b872dd146103d45780632b14ca56146103f3578063307aebc91461040857005b806301339c21146102df57806306fdde03146102f3578063095ea7b31461031d578063106a5a8f1461034c5780631694505e1461036b57806318160ddd146103b6575b005b3480156102ea575f5ffd5b506102dd610970565b3480156102fe575f5ffd5b506103076109e0565b6040516103149190612453565b60405180910390f35b348015610328575f5ffd5b5061033c61033736600461249c565b610a70565b6040519015158152602001610314565b348015610357575f5ffd5b506102dd6103663660046124d3565b610a89565b348015610376575f5ffd5b5061039e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610314565b3480156103c1575f5ffd5b506003545b604051908152602001610314565b3480156103df575f5ffd5b5061033c6103ee366004612555565b610ad9565b3480156103fe575f5ffd5b506103c6600e5481565b348015610413575f5ffd5b5060075461033c90600160c01b900460ff1681565b348015610433575f5ffd5b5060405160128152602001610314565b34801561044e575f5ffd5b5061033c61045d366004612593565b60106020525f908152604090205460ff1681565b34801561047c575f5ffd5b506102dd61048b3660046125b5565b610afc565b34801561049b575f5ffd5b506103c6600d5481565b3480156104b0575f5ffd5b5061039e7f000000000000000000000000e1540f1877d3ccfa438cb847792aecb4c7d711bf81565b3480156104e3575f5ffd5b5061039e61dead81565b3480156104f8575f5ffd5b5061033c610507366004612593565b60116020525f908152604090205460ff1681565b348015610526575f5ffd5b5061039e5f81565b348015610539575f5ffd5b506102dd6105483660046125b5565b610b5c565b348015610558575f5ffd5b506102dd6105673660046125b5565b610bb1565b348015610577575f5ffd5b5061033c610586366004612593565b60126020525f908152604090205460ff1681565b3480156105a5575f5ffd5b506102dd6105b43660046125d0565b610c06565b3480156105c4575f5ffd5b5060075461033c90600160a81b900460ff1681565b3480156105e4575f5ffd5b506103c66105f3366004612593565b6001600160a01b03165f9081526001602052604090205490565b348015610618575f5ffd5b506103c660095481565b34801561062d575f5ffd5b506102dd610c84565b348015610641575f5ffd5b506102dd610650366004612593565b610c97565b348015610660575f5ffd5b505f546001600160a01b031661039e565b34801561067c575f5ffd5b506102dd61068b3660046125d0565b610d49565b34801561069b575f5ffd5b50610307610db1565b3480156106af575f5ffd5b506102dd6106be3660046125e7565b610dc0565b3480156106ce575f5ffd5b506102dd6106dd3660046124d3565b610e0f565b3480156106ed575f5ffd5b5061033c6106fc36600461249c565b61101c565b34801561070c575f5ffd5b506103c6600f5481565b348015610721575f5ffd5b506102dd6107303660046124d3565b611029565b348015610740575f5ffd5b506102dd61074f3660046125d0565b611073565b34801561075f575f5ffd5b5061033c61076e366004612593565b60136020525f908152604090205460ff1681565b34801561078d575f5ffd5b506103c6600a5481565b3480156107a2575f5ffd5b506103c6601e81565b3480156107b6575f5ffd5b5060075461039e906001600160a01b031681565b3480156107d5575f5ffd5b506102dd6107e4366004612593565b61113f565b3480156107f4575f5ffd5b506102dd6108033660046125d0565b611324565b348015610813575f5ffd5b5060075461033c90600160a01b900460ff1681565b348015610833575f5ffd5b506102dd6108423660046125d0565b61138c565b348015610852575f5ffd5b506103c661086136600461261e565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610896575f5ffd5b506103c6600c5481565b3480156108ab575f5ffd5b5060075461033c90600160b01b900460ff1681565b3480156108cb575f5ffd5b506102dd6108da366004612593565b6113f4565b3480156108ea575f5ffd5b506102dd6108f93660046125d0565b61149e565b348015610909575f5ffd5b506102dd610918366004612593565b61151c565b348015610928575f5ffd5b506102dd6109373660046125d0565b61155e565b348015610947575f5ffd5b506103c6600b5481565b34801561095c575f5ffd5b5060065461039e906001600160a01b031681565b6109786115dc565b600754600160c01b900460ff16156109a3576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b1790556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b6060600480546109ef9061264a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b9061264a565b8015610a665780601f10610a3d57610100808354040283529160200191610a66565b820191905f5260205f20905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b5f33610a7d818585611608565b60019150505b92915050565b610a916115dc565b5f5b82811015610ad357610acb848483818110610ab057610ab0612682565b9050602002016020810190610ac59190612593565b8361161a565b600101610a93565b50505050565b5f33610ae6858285611675565b610af18585856116ea565b506001949350505050565b610b046115dc565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610b5190831515815260200190565b60405180910390a150565b610b646115dc565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610b5190831515815260200190565b610bb96115dc565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610b5190831515815260200190565b610c0e6115dc565b6103e8610c1a60035490565b610c259060036126aa565b610c2f91906126c1565b811015610c4f57604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610b51565b610c8c6115dc565b610c955f611747565b565b6007546001600160a01b03163314610cc257604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610ce957604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d516115dc565b601e811115610d735760405163cd4e616760e01b815260040160405180910390fd5b600e80549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d3d565b6060600580546109ef9061264a565b610dc86115dc565b6001600160a01b0382165f9081526013602052604090205460ff1615610e01576040516304eb79b560e31b815260040160405180910390fd5b610e0b828261178b565b5050565b610e176115dc565b5f5b82811015610ad35760135f858584818110610e3657610e36612682565b9050602002016020810190610e4b9190612593565b6001600160a01b0316815260208101919091526040015f205460ff16158015610ecc57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610eab57610eab612682565b9050602002016020810190610ec09190612593565b6001600160a01b031614155b8015610f07575030848483818110610ee657610ee6612682565b9050602002016020810190610efb9190612593565b6001600160a01b031614155b8015610f4257505f848483818110610f2157610f21612682565b9050602002016020810190610f369190612593565b6001600160a01b031614155b8015610fdf575060115f858584818110610f5e57610f5e612682565b9050602002016020810190610f739190612593565b6001600160a01b0316815260208101919091526040015f205460ff16158015610fdf575060125f858584818110610fac57610fac612682565b9050602002016020810190610fc19190612593565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561101457611014848483818110610ff957610ff9612682565b905060200201602081019061100e9190612593565b836117e6565b600101610e19565b5f33610a7d8185856116ea565b6110316115dc565b5f5b82811015610ad35761106b84848381811061105057611050612682565b90506020020160208101906110659190612593565b83611841565b600101611033565b61107b6115dc565b5f61108560035490565b9050620f42406110968260016126aa565b6110a091906126c1565b8210156110c057604051631fbaba3560e01b815260040160405180910390fd5b6103e86110ce8260056126aa565b6110d891906126c1565b8211156110f85760405163fd7850ad60e01b815260040160405180910390fd5b600c80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111476115dc565b335f6001600160a01b0383166111ed5750475f8161117857604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f81146111be576040519150601f19603f3d011682016040523d82523d5f602084013e6111c3565b606091505b505080915050806111e757604051633398652560e11b815260040160405180910390fd5b506112e5565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa15801561122f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061125391906126e0565b90505f81116112755760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156112bf573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e391906126f7565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611132565b61132c6115dc565b601e81111561134e5760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d3d565b6113946115dc565b601e8111156113b65760405163cd4e616760e01b815260040160405180910390fd5b600d80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d3d565b6006546001600160a01b0316331461141f57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03811661144657604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d3d565b6114a66115dc565b6103e86114b260035490565b6114bd9060026126aa565b6114c791906126c1565b8110156114e757604051631fbaba3560e01b815260040160405180910390fd5b600a8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610b51565b6115246115dc565b6001600160a01b03811661155257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61155b81611747565b50565b6115666115dc565b6103e861157260035490565b61157d9060026126aa565b61158791906126c1565b8110156115a757604051631fbaba3560e01b815260040160405180910390fd5b60098190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610b51565b5f546001600160a01b03163314610c955760405163118cdaa760e01b8152336004820152602401611549565b611615838383600161189c565b505050565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d3d565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610ad357818110156116dc57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611549565b610ad384848484035f61189c565b6001600160a01b03831661171357604051634b637e8f60e11b81525f6004820152602401611549565b6001600160a01b03821661173c5760405163ec442f0560e01b81525f6004820152602401611549565b61161583838361196e565b5f546001600160a01b0316801561176c57611762815f611841565b61176c815f61161a565b611777826001611841565b61178282600161161a565b610e0b8261204a565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d3d565b6001600160a01b0382165f81815260106020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d3d565b6001600160a01b0382165f81815260116020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d3d565b6001600160a01b0384166118c55760405163e602df0560e01b81525f6004820152602401611549565b6001600160a01b0383166118ee57604051634a1406b160e11b81525f6004820152602401611549565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610ad357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161196091815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526010602052604090205433903290439060ff16156119ad576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b031614806119e557506001600160a01b0383165f9081526010602052604090205460ff16155b611a02576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a335750826001600160a01b0316826001600160a01b0316145b80611a5657506001600160a01b0382165f9081526010602052604090205460ff16155b611a73576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611aa257506001600160a01b0386165f9081526012602052604090205460ff165b80611ac457506001600160a01b0385165f9081526012602052604090205460ff165b611ae157604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b065750600754600160b81b900460ff16155b8015611b4c57506001600160a01b0387165f9081526012602052604090205460ff1680611b4a57506001600160a01b0386165f9081526012602052604090205460ff165b155b90508015611e46575f546001600160a01b03888116911614801590611b7e57505f546001600160a01b03878116911614155b8015611b9257506001600160a01b03861615155b8015611ba957506001600160a01b03861661dead14155b15611e4657600754600160a81b900460ff1615611ccc577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316866001600160a01b031614158015611c3457507f000000000000000000000000e1540f1877d3ccfa438cb847792aecb4c7d711bf6001600160a01b0316866001600160a01b031614155b15611ccc57611c44600383612712565b6001600160a01b0384165f90815260146020526040902054108015611c895750611c6f600383612712565b6001600160a01b0387165f90815260146020526040902054105b611ca657604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601460205260408082208590559188168152208290555b6001600160a01b0387165f9081526013602052604090205460ff168015611d0b57506001600160a01b0386165f9081526012602052604090205460ff16155b15611d7c57600954851115611d3357604051632c676b8560e21b815260040160405180910390fd5b600b546001600160a01b0387165f90815260016020526040902054611d589087612725565b1115611d775760405163d867451160e01b815260040160405180910390fd5b611e46565b6001600160a01b0386165f9081526013602052604090205460ff168015611dbb57506001600160a01b0387165f9081526012602052604090205460ff16155b15611de357600a54851115611d77576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526012602052604090205460ff16611e4657600b546001600160a01b0387165f90815260016020526040902054611e279087612725565b1115611e465760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611e6b5750600754600160b81b900460ff16155b8015611eb157506001600160a01b0388165f9081526011602052604090205460ff1680611eaf57506001600160a01b0387165f9081526011602052604090205460ff165b155b90508015611fd2576001600160a01b0387165f9081526013602052604081205460ff168015611ee157505f600e54115b15611f07576064600e5488611ef691906126aa565b611f0091906126c1565b9050611fb3565b6001600160a01b0389165f9081526013602052604090205460ff168015611f2f57505f600d54115b15611f44576064600d5488611ef691906126aa565b6001600160a01b0388165f9081526013602052604090205460ff16158015611f8457506001600160a01b0389165f9081526013602052604090205460ff16155b8015611f9157505f600f54115b15611fb3576064600f5488611fa691906126aa565b611fb091906126c1565b90505b8015611fd057611fc38188612712565b9650611fd0893083612099565b505b305f90815260016020526040902054600c5481101582801561200c57506001600160a01b038a165f9081526013602052604090205460ff16155b80156120155750805b15612033576008548511156120335761202d826121bf565b60088590555b61203e8a8a8a612099565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120c3578060035f8282546120b89190612725565b909155506121339050565b6001600160a01b0383165f90815260016020526040902054818110156121155760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401611549565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661214f5760038054829003905561216d565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121b291815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061220957612209612682565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612285573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122a99190612738565b816001815181106122bc576122bc612682565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600c5460146122ec91906126aa565b9050808411156122fa578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061234e9087905f90879030904290600401612753565b5f604051808303815f87803b158015612365575f5ffd5b505af1158015612377573d5f5f3e3d5ffd5b504792505f915061238b90506002836126c1565b90505f6123988284612712565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f81146123e3576040519150601f19603f3d011682016040523d82523d5f602084013e6123e8565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612435576040519150601f19603f3d011682016040523d82523d5f602084013e61243a565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461155b575f5ffd5b5f5f604083850312156124ad575f5ffd5b82356124b881612488565b946020939093013593505050565b801515811461155b575f5ffd5b5f5f5f604084860312156124e5575f5ffd5b833567ffffffffffffffff8111156124fb575f5ffd5b8401601f8101861361250b575f5ffd5b803567ffffffffffffffff811115612521575f5ffd5b8660208260051b8401011115612535575f5ffd5b60209182019450925084013561254a816124c6565b809150509250925092565b5f5f5f60608486031215612567575f5ffd5b833561257281612488565b9250602084013561258281612488565b929592945050506040919091013590565b5f602082840312156125a3575f5ffd5b81356125ae81612488565b9392505050565b5f602082840312156125c5575f5ffd5b81356125ae816124c6565b5f602082840312156125e0575f5ffd5b5035919050565b5f5f604083850312156125f8575f5ffd5b823561260381612488565b91506020830135612613816124c6565b809150509250929050565b5f5f6040838503121561262f575f5ffd5b823561263a81612488565b9150602083013561261381612488565b600181811c9082168061265e57607f821691505b60208210810361267c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a8357610a83612696565b5f826126db57634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156126f0575f5ffd5b5051919050565b5f60208284031215612707575f5ffd5b81516125ae816124c6565b81810381811115610a8357610a83612696565b80820180821115610a8357610a83612696565b5f60208284031215612748575f5ffd5b81516125ae81612488565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127a35783516001600160a01b031683526020938401939092019160010161277c565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220fb3737fbcf538207a4351fc37099a6e41844201f0da064cfa324f68918949be164736f6c634300081c0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.