ETH Price: $3,662.95 (+0.54%)
Gas: 5.84 Gwei
 

Overview

Max Total Supply

13,000,000,000,000 MemeETF

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000010061664872301 MemeETF

Value
$0.00
0x4913202827304683f78208e8ac81e6132ed8c238
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MemeETF

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 14 : MemeETF.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;

// Uncomment this line to use console.log
// import "hardhat/console.sol";

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

error OPEN_SWAP();
error ZERO_ADDRESS();

contract MemeETF is Context, ERC20Burnable, Ownable {
    using Address for address payable;
    using SafeERC20 for IERC20;

    bool public taxEnabled;
    address payable public marketingWallet;
    address payable public eTFWallet;
    address public immutable dexPair;
    bool inSwap;

    IUniswapV2Router02 public dexRouter;

    //fees 100 = 1%
    uint256 public marketingTax;
    uint256 public eTFTax;
    uint256 _marketingTax;
    uint256 _eTFTax;
    uint256 constant FEE_DENOMINATOR = 1e4;
    uint256 constant TAX_LIMIT = 400;

    mapping(address => bool) _isExcluded;

    event SetTaxStatus(bool indexed enable);
    event SwapAndPay(uint256 swappedETH, uint256 mTax, uint256 eTax);
    event TaxSet(uint256 marketingTax_, uint256 eTFTax_);
    event Excluded(address indexed account, bool indexed exclude);
    event WalletSet(address indexed marketingWallet, address indexed eTFWallet);

    modifier lockSwap() {
        _lockSwap();
        _;
        inSwap = false;
    }

    constructor(
        uint256 marketingTax_,
        uint256 eTFTax_,
        address _owner,
        address payable marketingWallet_,
        address payable eTFWallet_,
        address dexRouter_
    ) ERC20("MemeETF", "MemeETF") Ownable(_owner) {
        marketingWallet = marketingWallet_;
        eTFWallet = eTFWallet_;

        eTFTax = eTFTax_;
        marketingTax = marketingTax_;

        dexRouter = IUniswapV2Router02(dexRouter_);

        // Create a uniswap pair for this new token
        dexPair = IUniswapV2Factory(dexRouter.factory()).createPair(
            address(this),
            dexRouter.WETH()
        );

        //exclude owner and this contract from fee
        _isExcluded[address(this)] = true;
        _isExcluded[dexRouter_] = true;
        _isExcluded[dexPair] = true;
        _isExcluded[_owner] = true;

        _mint(_owner, 13e30); //13 trillion total supply
    }

    receive() external payable {}

    function calculateTxFee(
        address from,
        address to,
        uint256 amount
    ) public view returns (uint256 marketingTax_, uint256 eTFTax_) {
        // deducts `marketingTax` and `eTFTax` from `amount`
        if (!taxEnabled) return (0, 0);

        bool excluded = _isExcluded[from] || _isExcluded[to];

        if (excluded) {
            (marketingTax_, eTFTax_) = (0, 0);
        } else {
            uint256 denom_ = FEE_DENOMINATOR;
            unchecked {
                marketingTax_ = (amount * marketingTax) / denom_;
                eTFTax_ = (amount * eTFTax) / denom_;
            }
        }
    }

    function isExcludedFromTax(address account) external view returns (bool) {
        return _isExcluded[account];
    }

    function setWallets(
        address payable marketingWallet_,
        address payable eTFWallet_
    ) external onlyOwner {
        if (marketingWallet_ == address(0) || eTFWallet_ == address(0))
            revert ZERO_ADDRESS();
        marketingWallet = marketingWallet_;
        eTFWallet = eTFWallet_;
        emit WalletSet(marketingWallet_, eTFWallet_);
    }

    function setExcludeFromTax(
        address[] memory accounts,
        bool exclude
    ) external onlyOwner {
        uint256 len = accounts.length;
        address account;
        for (uint256 i; i < len; ) {
            account = accounts[i];
            _isExcluded[account] = exclude;
            emit Excluded(account, exclude);
            unchecked {
                ++i;
            }
        }
    }

    function setTax(uint256 marketingTax_, uint256 eTFTax_) external onlyOwner {
        uint limit = TAX_LIMIT;
        require(
            marketingTax_ <= limit && eTFTax_ <= limit,
            "TAX_LIMIT exceeded"
        );
        eTFTax = eTFTax_;
        marketingTax = marketingTax_;
        emit TaxSet(marketingTax_, eTFTax_);
    }

    function toggleTaxEnable() external onlyOwner {
        bool status = taxEnabled;
        taxEnabled = status ? false : true;
        emit SetTaxStatus(!status);
    }

    function totalTaxed()
        public
        view
        returns (uint256 totalMarketingTaxed, uint256 totalETFTaxed)
    {
        return (_marketingTax, _eTFTax);
    }

    function transfer(
        address to,
        uint256 amount
    ) public override(ERC20) returns (bool) {
        __transfer(msg.sender, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override(ERC20) returns (bool) {
        _spendAllowance(from, msg.sender, amount);
        __transfer(from, to, amount);
        return true;
    }

    function __transfer(address from, address to, uint256 amount) private {
        (uint256 marketingTax_, uint256 eTFTax_) = calculateTxFee(
            from,
            to,
            amount
        );

        uint256 totalFee = marketingTax_ + eTFTax_;

        if (totalFee > 0) {
            uint256 totalSend = amount - totalFee;
            _transfer(from, address(this), totalFee);
            _swapAndPay(from, to, marketingTax_, eTFTax_, totalSend);
        } else {
            _transfer(from, to, amount);
        }
    }

    function _lockSwap() private {
        if (inSwap) revert OPEN_SWAP();
        inSwap = true;
    }

    function _swapAndPay(
        address from,
        address to,
        uint256 marketingTax_,
        uint256 eTFTax_,
        uint256 amountSend
    ) private lockSwap {
        uint256 initialBal = address(this).balance;

        _swapTokensForEth(marketingTax_ + eTFTax_);

        uint256 bal = address(this).balance - initialBal;

        (uint256 mTax, uint256 eTax) = _calculateSplit(bal);

        unchecked {
            _marketingTax += mTax;
            _eTFTax += eTax;
        }

        marketingWallet.sendValue(mTax);
        eTFWallet.sendValue(eTax);

        emit SwapAndPay(bal, mTax, eTax);

        _transfer(from, to, amountSend);
    }

    function _swapTokensForEth(uint256 amount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), amount);

        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _calculateSplit(
        uint256 amount
    ) private view returns (uint256 mTax, uint256 eTax) {
        uint256 mTaxRate = marketingTax;
        uint256 total = mTaxRate + eTFTax;

        unchecked {
            mTax = (amount * mTaxRate) / total;
            eTax = amount - mTax;
        }
    }
}

File 2 of 14 : Ownable.sol
// 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);
    }
}

File 3 of 14 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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);
}

File 4 of 14 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
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}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `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:
     * ```
     * 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);
            }
        }
    }
}

File 5 of 14 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

File 6 of 14 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.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 ERC20 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);
}

File 7 of 14 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 8 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the 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);
}

File 9 of 14 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (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;
    }
}

File 12 of 14 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 13 of 14 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 14 of 14 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"marketingTax_","type":"uint256"},{"internalType":"uint256","name":"eTFTax_","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address payable","name":"marketingWallet_","type":"address"},{"internalType":"address payable","name":"eTFWallet_","type":"address"},{"internalType":"address","name":"dexRouter_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","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":"FailedInnerCall","type":"error"},{"inputs":[],"name":"OPEN_SWAP","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":"ZERO_ADDRESS","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"exclude","type":"bool"}],"name":"Excluded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"enable","type":"bool"}],"name":"SetTaxStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swappedETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eTax","type":"uint256"}],"name":"SwapAndPay","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"marketingTax_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eTFTax_","type":"uint256"}],"name":"TaxSet","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":true,"internalType":"address","name":"marketingWallet","type":"address"},{"indexed":true,"internalType":"address","name":"eTFWallet","type":"address"}],"name":"WalletSet","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateTxFee","outputs":[{"internalType":"uint256","name":"marketingTax_","type":"uint256"},{"internalType":"uint256","name":"eTFTax_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eTFTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eTFWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingTax_","type":"uint256"},{"internalType":"uint256","name":"eTFTax_","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWallet_","type":"address"},{"internalType":"address payable","name":"eTFWallet_","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleTaxEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxed","outputs":[{"internalType":"uint256","name":"totalMarketingTaxed","type":"uint256"},{"internalType":"uint256","name":"totalETFTaxed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405162003744380380620037448339818101604052810190620000379190620009f8565b836040518060400160405280600781526020017f4d656d65455446000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d656d65455446000000000000000000000000000000000000000000000000008152508160039081620000b5919062000d04565b508060049081620000c7919062000d04565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013f5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000136919062000dfc565b60405180910390fd5b62000150816200058b60201b60201c565b5082600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600a819055508560098190555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000290573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b6919062000e19565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000340573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000366919062000e19565b6040518363ffffffff1660e01b81526004016200038592919062000e4b565b6020604051808303816000875af1158015620003a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cb919062000e19565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200057f846ca41543f69393f014e5400000006200065160201b60201c565b50505050505062000f4d565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006c65760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620006bd919062000dfc565b60405180910390fd5b620006da60008383620006de60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200073457806002600082825462000727919062000ea7565b925050819055506200080a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620007c3578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620007ba9392919062000ef3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008555780600260008282540392505081905550620008a2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000901919062000f30565b60405180910390a3505050565b600080fd5b6000819050919050565b620009288162000913565b81146200093457600080fd5b50565b60008151905062000948816200091d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200097b826200094e565b9050919050565b6200098d816200096e565b81146200099957600080fd5b50565b600081519050620009ad8162000982565b92915050565b6000620009c0826200094e565b9050919050565b620009d281620009b3565b8114620009de57600080fd5b50565b600081519050620009f281620009c7565b92915050565b60008060008060008060c0878903121562000a185762000a176200090e565b5b600062000a2889828a0162000937565b965050602062000a3b89828a0162000937565b955050604062000a4e89828a016200099c565b945050606062000a6189828a01620009e1565b935050608062000a7489828a01620009e1565b92505060a062000a8789828a016200099c565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b1657607f821691505b60208210810362000b2c5762000b2b62000ace565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b57565b62000ba2868362000b57565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000be562000bdf62000bd98462000913565b62000bba565b62000913565b9050919050565b6000819050919050565b62000c018362000bc4565b62000c1962000c108262000bec565b84845462000b64565b825550505050565b600090565b62000c3062000c21565b62000c3d81848462000bf6565b505050565b5b8181101562000c655762000c5960008262000c26565b60018101905062000c43565b5050565b601f82111562000cb45762000c7e8162000b32565b62000c898462000b47565b8101602085101562000c99578190505b62000cb162000ca88562000b47565b83018262000c42565b50505b505050565b600082821c905092915050565b600062000cd96000198460080262000cb9565b1980831691505092915050565b600062000cf4838362000cc6565b9150826002028217905092915050565b62000d0f8262000a94565b67ffffffffffffffff81111562000d2b5762000d2a62000a9f565b5b62000d37825462000afd565b62000d4482828562000c69565b600060209050601f83116001811462000d7c576000841562000d67578287015190505b62000d73858262000ce6565b86555062000de3565b601f19841662000d8c8662000b32565b60005b8281101562000db65784890151825560018201915060208501945060208101905062000d8f565b8683101562000dd6578489015162000dd2601f89168262000cc6565b8355505b6001600288020188555050505b505050505050565b62000df6816200096e565b82525050565b600060208201905062000e13600083018462000deb565b92915050565b60006020828403121562000e325762000e316200090e565b5b600062000e42848285016200099c565b91505092915050565b600060408201905062000e62600083018562000deb565b62000e71602083018462000deb565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000eb48262000913565b915062000ec18362000913565b925082820190508082111562000edc5762000edb62000e78565b5b92915050565b62000eed8162000913565b82525050565b600060608201905062000f0a600083018662000deb565b62000f19602083018562000ee2565b62000f28604083018462000ee2565b949350505050565b600060208201905062000f47600083018462000ee2565b92915050565b6080516127db62000f696000396000610e5c01526127db6000f3fe6080604052600436106101bb5760003560e01c806375f0a874116100ec578063d3f6a1571161008a578063ee476b8711610064578063ee476b871461060c578063f242ab411461064a578063f2fde38b14610675578063fec6473b1461069e576101c2565b8063d3f6a1571461058f578063d57b8a3e146105b8578063dd62ed3e146105cf576101c2565b80638da5cb5b116100c65780638da5cb5b146104bf57806395d89b41146104ea578063a9059cbb14610515578063cb4ca63114610552576101c2565b806375f0a8741461044057806379cc67901461046b578063870bd30b14610494576101c2565b80632fd2a3381161015957806342966c681161013357806342966c681461039a578063667f6526146103c357806370a08231146103ec578063715018a614610429576101c2565b80632fd2a33814610318578063313ce5671461034357806337fbec961461036e576101c2565b8063095ea7b311610195578063095ea7b31461024857806318160ddd146102855780631d2cb02d146102b057806323b872dd146102db576101c2565b80630278b3da146101c757806306fdde03146101f25780630758d9241461021d576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106c7565b6040516101e99190611d11565b60405180910390f35b3480156101fe57600080fd5b506102076106cd565b6040516102149190611dbc565b60405180910390f35b34801561022957600080fd5b5061023261075f565b60405161023f9190611e5d565b60405180910390f35b34801561025457600080fd5b5061026f600480360381019061026a9190611ef6565b610785565b60405161027c9190611f51565b60405180910390f35b34801561029157600080fd5b5061029a6107a8565b6040516102a79190611d11565b60405180910390f35b3480156102bc57600080fd5b506102c56107b2565b6040516102d29190611d11565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190611f6c565b6107b8565b60405161030f9190611f51565b60405180910390f35b34801561032457600080fd5b5061032d6107db565b60405161033a9190611fe0565b60405180910390f35b34801561034f57600080fd5b50610358610801565b6040516103659190612017565b60405180910390f35b34801561037a57600080fd5b5061038361080a565b604051610391929190612032565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc919061205b565b61081b565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612088565b61082f565b005b3480156103f857600080fd5b50610413600480360381019061040e91906120c8565b6108d9565b6040516104209190611d11565b60405180910390f35b34801561043557600080fd5b5061043e610921565b005b34801561044c57600080fd5b50610455610935565b6040516104629190611fe0565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190611ef6565b61095b565b005b3480156104a057600080fd5b506104a961097b565b6040516104b69190611f51565b60405180910390f35b3480156104cb57600080fd5b506104d461098e565b6040516104e19190612104565b60405180910390f35b3480156104f657600080fd5b506104ff6109b8565b60405161050c9190611dbc565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611ef6565b610a4a565b6040516105499190611f51565b60405180910390f35b34801561055e57600080fd5b50610579600480360381019061057491906120c8565b610a61565b6040516105869190611f51565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b1919061214b565b610ab7565b005b3480156105c457600080fd5b506105cd610c3d565b005b3480156105db57600080fd5b506105f660048036038101906105f1919061218b565b610cb4565b6040516106039190611d11565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190611f6c565b610d3b565b604051610641929190612032565b60405180910390f35b34801561065657600080fd5b5061065f610e5a565b60405161066c9190612104565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906120c8565b610e7e565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061233f565b610f04565b005b600a5481565b6060600380546106dc906123ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610708906123ca565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610790610fea565b905061079d818585610ff2565b600191505092915050565b6000600254905090565b60095481565b60006107c5843384611004565b6107d0848484611098565b600190509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080600b54600c54915091509091565b61082c610826610fea565b82611105565b50565b610837611187565b6000610190905080831115801561084e5750808211155b61088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490612447565b60405180910390fd5b81600a81905550826009819055507f121fab07dc109278f0ccefdafee4cd1b1ceb9cc7370bc2edc4680c5a1c0355ff83836040516108cc929190612032565b60405180910390a1505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610929611187565b610933600061120e565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61096d82610967610fea565b83611004565b6109778282611105565b5050565b600560149054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109c7906123ca565b80601f01602080910402602001604051908101604052809291908181526020018280546109f3906123ca565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b6000610a57338484611098565b6001905092915050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610abf611187565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610b265750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b15610b5d576040517f538ba4f900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fbeff713f2ba67ff03202ef61accae3453c335487710727cb3835f6c3b2ef7f5460405160405180910390a35050565b610c45611187565b6000600560149054906101000a900460ff16905080610c65576001610c68565b60005b600560146101000a81548160ff021916908315150217905550801515157ff37126e0bbcd285ec3fce9ca8ed3bfd6dbe05afc342074b7aa7b3e4dbd03190d60405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600560149054906101000a900460ff16610d5e5760008091509150610e52565b6000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e015750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508015610e19576000808093508194505050610e50565b6000612710905080600954860281610e3457610e33612467565b5b04935080600a54860281610e4b57610e4a612467565b5b049250505b505b935093915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e86611187565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ef85760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610eef9190612104565b60405180910390fd5b610f018161120e565b50565b610f0c611187565b6000825190506000805b82811015610fe357848181518110610f3157610f30612496565b5b6020026020010151915083600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508315158273ffffffffffffffffffffffffffffffffffffffff167ff3a7c8242f0708821ed31a47f066fc7fa42f2ae65ed3e4d1d7cb5b3765d2939c60405160405180910390a3806001019050610f16565b5050505050565b600033905090565b610fff83838360016112d4565b505050565b60006110108484610cb4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110925781811015611082578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611079939291906124c5565b60405180910390fd5b611091848484840360006112d4565b5b50505050565b6000806110a6858585610d3b565b91509150600081836110b8919061252b565b905060008111156110f157600081856110d1919061255f565b90506110de8730846114ab565b6110eb878786868561159f565b506110fd565b6110fc8686866114ab565b5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111775760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161116e9190612104565b60405180910390fd5b61118382600083611702565b5050565b61118f610fea565b73ffffffffffffffffffffffffffffffffffffffff166111ad61098e565b73ffffffffffffffffffffffffffffffffffffffff161461120c576111d0610fea565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112039190612104565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113465760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161133d9190612104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b85760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113af9190612104565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156114a5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161149c9190611d11565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151d5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016115149190612104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158f5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115869190612104565b60405180910390fd5b61159a838383611702565b505050565b6115a7611927565b60004790506115c083856115bb919061252b565b61198b565b600081476115ce919061255f565b90506000806115dc83611bce565b9150915081600b6000828254019250508190555080600c6000828254019250508190555061164b82600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c0b90919063ffffffff16565b61169681600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c0b90919063ffffffff16565b7ff5b4a9fcf4fd9bb78e6a11bf3ccf66c8516e9f4dc70f62cc57653839518a00288383836040516116c993929190612593565b60405180910390a16116dc8989876114ab565b505050506000600760146101000a81548160ff0219169083151502179055505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611754578060026000828254611748919061252b565b92505081905550611827565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117e0578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016117d7939291906124c5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187057806002600082825403925050819055506118bd565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161191a9190611d11565b60405180910390a3505050565b600760149054906101000a900460ff161561196e576040517feb29c7ae00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600760146101000a81548160ff021916908315150217905550565b6000600267ffffffffffffffff8111156119a8576119a76121d0565b5b6040519080825280602002602001820160405280156119d65781602001602082028036833780820191505090505b50905030816000815181106119ee576119ed612496565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab991906125df565b81600181518110611acd57611acc612496565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b3430600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ff2565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611b98959493929190612705565b600060405180830381600087803b158015611bb257600080fd5b505af1158015611bc6573d6000803e3d6000fd5b505050505050565b600080600060095490506000600a5482611be8919061252b565b90508082860281611bfc57611bfb612467565b5b04935083850392505050915091565b80471015611c5057306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611c479190612104565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c7690612790565b60006040518083038185875af1925050503d8060008114611cb3576040519150601f19603f3d011682016040523d82523d6000602084013e611cb8565b606091505b5050905080611cf3576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6000819050919050565b611d0b81611cf8565b82525050565b6000602082019050611d266000830184611d02565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d66578082015181840152602081019050611d4b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d8e82611d2c565b611d988185611d37565b9350611da8818560208601611d48565b611db181611d72565b840191505092915050565b60006020820190508181036000830152611dd68184611d83565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611e23611e1e611e1984611dde565b611dfe565b611dde565b9050919050565b6000611e3582611e08565b9050919050565b6000611e4782611e2a565b9050919050565b611e5781611e3c565b82525050565b6000602082019050611e726000830184611e4e565b92915050565b6000604051905090565b600080fd5b600080fd5b6000611e9782611dde565b9050919050565b611ea781611e8c565b8114611eb257600080fd5b50565b600081359050611ec481611e9e565b92915050565b611ed381611cf8565b8114611ede57600080fd5b50565b600081359050611ef081611eca565b92915050565b60008060408385031215611f0d57611f0c611e82565b5b6000611f1b85828601611eb5565b9250506020611f2c85828601611ee1565b9150509250929050565b60008115159050919050565b611f4b81611f36565b82525050565b6000602082019050611f666000830184611f42565b92915050565b600080600060608486031215611f8557611f84611e82565b5b6000611f9386828701611eb5565b9350506020611fa486828701611eb5565b9250506040611fb586828701611ee1565b9150509250925092565b6000611fca82611dde565b9050919050565b611fda81611fbf565b82525050565b6000602082019050611ff56000830184611fd1565b92915050565b600060ff82169050919050565b61201181611ffb565b82525050565b600060208201905061202c6000830184612008565b92915050565b60006040820190506120476000830185611d02565b6120546020830184611d02565b9392505050565b60006020828403121561207157612070611e82565b5b600061207f84828501611ee1565b91505092915050565b6000806040838503121561209f5761209e611e82565b5b60006120ad85828601611ee1565b92505060206120be85828601611ee1565b9150509250929050565b6000602082840312156120de576120dd611e82565b5b60006120ec84828501611eb5565b91505092915050565b6120fe81611e8c565b82525050565b600060208201905061211960008301846120f5565b92915050565b61212881611fbf565b811461213357600080fd5b50565b6000813590506121458161211f565b92915050565b6000806040838503121561216257612161611e82565b5b600061217085828601612136565b925050602061218185828601612136565b9150509250929050565b600080604083850312156121a2576121a1611e82565b5b60006121b085828601611eb5565b92505060206121c185828601611eb5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61220882611d72565b810181811067ffffffffffffffff82111715612227576122266121d0565b5b80604052505050565b600061223a611e78565b905061224682826121ff565b919050565b600067ffffffffffffffff821115612266576122656121d0565b5b602082029050602081019050919050565b600080fd5b600061228f61228a8461224b565b612230565b905080838252602082019050602084028301858111156122b2576122b1612277565b5b835b818110156122db57806122c78882611eb5565b8452602084019350506020810190506122b4565b5050509392505050565b600082601f8301126122fa576122f96121cb565b5b813561230a84826020860161227c565b91505092915050565b61231c81611f36565b811461232757600080fd5b50565b60008135905061233981612313565b92915050565b6000806040838503121561235657612355611e82565b5b600083013567ffffffffffffffff81111561237457612373611e87565b5b612380858286016122e5565b92505060206123918582860161232a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123e257607f821691505b6020821081036123f5576123f461239b565b5b50919050565b7f5441585f4c494d49542065786365656465640000000000000000000000000000600082015250565b6000612431601283611d37565b915061243c826123fb565b602082019050919050565b6000602082019050818103600083015261246081612424565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006060820190506124da60008301866120f5565b6124e76020830185611d02565b6124f46040830184611d02565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061253682611cf8565b915061254183611cf8565b9250828201905080821115612559576125586124fc565b5b92915050565b600061256a82611cf8565b915061257583611cf8565b925082820390508181111561258d5761258c6124fc565b5b92915050565b60006060820190506125a86000830186611d02565b6125b56020830185611d02565b6125c26040830184611d02565b949350505050565b6000815190506125d981611e9e565b92915050565b6000602082840312156125f5576125f4611e82565b5b6000612603848285016125ca565b91505092915050565b6000819050919050565b600061263161262c6126278461260c565b611dfe565b611cf8565b9050919050565b61264181612616565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267c81611e8c565b82525050565b600061268e8383612673565b60208301905092915050565b6000602082019050919050565b60006126b282612647565b6126bc8185612652565b93506126c783612663565b8060005b838110156126f85781516126df8882612682565b97506126ea8361269a565b9250506001810190506126cb565b5085935050505092915050565b600060a08201905061271a6000830188611d02565b6127276020830187612638565b818103604083015261273981866126a7565b905061274860608301856120f5565b6127556080830184611d02565b9695505050505050565b600081905092915050565b50565b600061277a60008361275f565b91506127858261276a565b600082019050919050565b600061279b8261276d565b915081905091905056fea2646970667358221220b6f4e170fce160c5662bd7747c05e06f3702a29f82e0138539a0ee569ffb9e3a64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001900000000000000000000000009b8937e53f5b9a269de97e16116ca246518f523d0000000000000000000000004db5e8634c1ee4e725aa7dc4375d938c33399591000000000000000000000000a4f2cc16350f3b8d2a2931471d83e6e264aa2a970000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806375f0a874116100ec578063d3f6a1571161008a578063ee476b8711610064578063ee476b871461060c578063f242ab411461064a578063f2fde38b14610675578063fec6473b1461069e576101c2565b8063d3f6a1571461058f578063d57b8a3e146105b8578063dd62ed3e146105cf576101c2565b80638da5cb5b116100c65780638da5cb5b146104bf57806395d89b41146104ea578063a9059cbb14610515578063cb4ca63114610552576101c2565b806375f0a8741461044057806379cc67901461046b578063870bd30b14610494576101c2565b80632fd2a3381161015957806342966c681161013357806342966c681461039a578063667f6526146103c357806370a08231146103ec578063715018a614610429576101c2565b80632fd2a33814610318578063313ce5671461034357806337fbec961461036e576101c2565b8063095ea7b311610195578063095ea7b31461024857806318160ddd146102855780631d2cb02d146102b057806323b872dd146102db576101c2565b80630278b3da146101c757806306fdde03146101f25780630758d9241461021d576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106c7565b6040516101e99190611d11565b60405180910390f35b3480156101fe57600080fd5b506102076106cd565b6040516102149190611dbc565b60405180910390f35b34801561022957600080fd5b5061023261075f565b60405161023f9190611e5d565b60405180910390f35b34801561025457600080fd5b5061026f600480360381019061026a9190611ef6565b610785565b60405161027c9190611f51565b60405180910390f35b34801561029157600080fd5b5061029a6107a8565b6040516102a79190611d11565b60405180910390f35b3480156102bc57600080fd5b506102c56107b2565b6040516102d29190611d11565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190611f6c565b6107b8565b60405161030f9190611f51565b60405180910390f35b34801561032457600080fd5b5061032d6107db565b60405161033a9190611fe0565b60405180910390f35b34801561034f57600080fd5b50610358610801565b6040516103659190612017565b60405180910390f35b34801561037a57600080fd5b5061038361080a565b604051610391929190612032565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc919061205b565b61081b565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612088565b61082f565b005b3480156103f857600080fd5b50610413600480360381019061040e91906120c8565b6108d9565b6040516104209190611d11565b60405180910390f35b34801561043557600080fd5b5061043e610921565b005b34801561044c57600080fd5b50610455610935565b6040516104629190611fe0565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190611ef6565b61095b565b005b3480156104a057600080fd5b506104a961097b565b6040516104b69190611f51565b60405180910390f35b3480156104cb57600080fd5b506104d461098e565b6040516104e19190612104565b60405180910390f35b3480156104f657600080fd5b506104ff6109b8565b60405161050c9190611dbc565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611ef6565b610a4a565b6040516105499190611f51565b60405180910390f35b34801561055e57600080fd5b50610579600480360381019061057491906120c8565b610a61565b6040516105869190611f51565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b1919061214b565b610ab7565b005b3480156105c457600080fd5b506105cd610c3d565b005b3480156105db57600080fd5b506105f660048036038101906105f1919061218b565b610cb4565b6040516106039190611d11565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190611f6c565b610d3b565b604051610641929190612032565b60405180910390f35b34801561065657600080fd5b5061065f610e5a565b60405161066c9190612104565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906120c8565b610e7e565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061233f565b610f04565b005b600a5481565b6060600380546106dc906123ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610708906123ca565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610790610fea565b905061079d818585610ff2565b600191505092915050565b6000600254905090565b60095481565b60006107c5843384611004565b6107d0848484611098565b600190509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080600b54600c54915091509091565b61082c610826610fea565b82611105565b50565b610837611187565b6000610190905080831115801561084e5750808211155b61088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490612447565b60405180910390fd5b81600a81905550826009819055507f121fab07dc109278f0ccefdafee4cd1b1ceb9cc7370bc2edc4680c5a1c0355ff83836040516108cc929190612032565b60405180910390a1505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610929611187565b610933600061120e565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61096d82610967610fea565b83611004565b6109778282611105565b5050565b600560149054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109c7906123ca565b80601f01602080910402602001604051908101604052809291908181526020018280546109f3906123ca565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b6000610a57338484611098565b6001905092915050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610abf611187565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610b265750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b15610b5d576040517f538ba4f900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fbeff713f2ba67ff03202ef61accae3453c335487710727cb3835f6c3b2ef7f5460405160405180910390a35050565b610c45611187565b6000600560149054906101000a900460ff16905080610c65576001610c68565b60005b600560146101000a81548160ff021916908315150217905550801515157ff37126e0bbcd285ec3fce9ca8ed3bfd6dbe05afc342074b7aa7b3e4dbd03190d60405160405180910390a250565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600560149054906101000a900460ff16610d5e5760008091509150610e52565b6000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e015750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508015610e19576000808093508194505050610e50565b6000612710905080600954860281610e3457610e33612467565b5b04935080600a54860281610e4b57610e4a612467565b5b049250505b505b935093915050565b7f000000000000000000000000712c627cdcc255f36d59edb46eb315fe292872b181565b610e86611187565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ef85760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610eef9190612104565b60405180910390fd5b610f018161120e565b50565b610f0c611187565b6000825190506000805b82811015610fe357848181518110610f3157610f30612496565b5b6020026020010151915083600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508315158273ffffffffffffffffffffffffffffffffffffffff167ff3a7c8242f0708821ed31a47f066fc7fa42f2ae65ed3e4d1d7cb5b3765d2939c60405160405180910390a3806001019050610f16565b5050505050565b600033905090565b610fff83838360016112d4565b505050565b60006110108484610cb4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110925781811015611082578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611079939291906124c5565b60405180910390fd5b611091848484840360006112d4565b5b50505050565b6000806110a6858585610d3b565b91509150600081836110b8919061252b565b905060008111156110f157600081856110d1919061255f565b90506110de8730846114ab565b6110eb878786868561159f565b506110fd565b6110fc8686866114ab565b5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111775760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161116e9190612104565b60405180910390fd5b61118382600083611702565b5050565b61118f610fea565b73ffffffffffffffffffffffffffffffffffffffff166111ad61098e565b73ffffffffffffffffffffffffffffffffffffffff161461120c576111d0610fea565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112039190612104565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113465760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161133d9190612104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b85760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113af9190612104565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156114a5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161149c9190611d11565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151d5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016115149190612104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158f5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115869190612104565b60405180910390fd5b61159a838383611702565b505050565b6115a7611927565b60004790506115c083856115bb919061252b565b61198b565b600081476115ce919061255f565b90506000806115dc83611bce565b9150915081600b6000828254019250508190555080600c6000828254019250508190555061164b82600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c0b90919063ffffffff16565b61169681600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c0b90919063ffffffff16565b7ff5b4a9fcf4fd9bb78e6a11bf3ccf66c8516e9f4dc70f62cc57653839518a00288383836040516116c993929190612593565b60405180910390a16116dc8989876114ab565b505050506000600760146101000a81548160ff0219169083151502179055505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611754578060026000828254611748919061252b565b92505081905550611827565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117e0578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016117d7939291906124c5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187057806002600082825403925050819055506118bd565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161191a9190611d11565b60405180910390a3505050565b600760149054906101000a900460ff161561196e576040517feb29c7ae00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600760146101000a81548160ff021916908315150217905550565b6000600267ffffffffffffffff8111156119a8576119a76121d0565b5b6040519080825280602002602001820160405280156119d65781602001602082028036833780820191505090505b50905030816000815181106119ee576119ed612496565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab991906125df565b81600181518110611acd57611acc612496565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b3430600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ff2565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611b98959493929190612705565b600060405180830381600087803b158015611bb257600080fd5b505af1158015611bc6573d6000803e3d6000fd5b505050505050565b600080600060095490506000600a5482611be8919061252b565b90508082860281611bfc57611bfb612467565b5b04935083850392505050915091565b80471015611c5057306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611c479190612104565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c7690612790565b60006040518083038185875af1925050503d8060008114611cb3576040519150601f19603f3d011682016040523d82523d6000602084013e611cb8565b606091505b5050905080611cf3576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6000819050919050565b611d0b81611cf8565b82525050565b6000602082019050611d266000830184611d02565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d66578082015181840152602081019050611d4b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d8e82611d2c565b611d988185611d37565b9350611da8818560208601611d48565b611db181611d72565b840191505092915050565b60006020820190508181036000830152611dd68184611d83565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611e23611e1e611e1984611dde565b611dfe565b611dde565b9050919050565b6000611e3582611e08565b9050919050565b6000611e4782611e2a565b9050919050565b611e5781611e3c565b82525050565b6000602082019050611e726000830184611e4e565b92915050565b6000604051905090565b600080fd5b600080fd5b6000611e9782611dde565b9050919050565b611ea781611e8c565b8114611eb257600080fd5b50565b600081359050611ec481611e9e565b92915050565b611ed381611cf8565b8114611ede57600080fd5b50565b600081359050611ef081611eca565b92915050565b60008060408385031215611f0d57611f0c611e82565b5b6000611f1b85828601611eb5565b9250506020611f2c85828601611ee1565b9150509250929050565b60008115159050919050565b611f4b81611f36565b82525050565b6000602082019050611f666000830184611f42565b92915050565b600080600060608486031215611f8557611f84611e82565b5b6000611f9386828701611eb5565b9350506020611fa486828701611eb5565b9250506040611fb586828701611ee1565b9150509250925092565b6000611fca82611dde565b9050919050565b611fda81611fbf565b82525050565b6000602082019050611ff56000830184611fd1565b92915050565b600060ff82169050919050565b61201181611ffb565b82525050565b600060208201905061202c6000830184612008565b92915050565b60006040820190506120476000830185611d02565b6120546020830184611d02565b9392505050565b60006020828403121561207157612070611e82565b5b600061207f84828501611ee1565b91505092915050565b6000806040838503121561209f5761209e611e82565b5b60006120ad85828601611ee1565b92505060206120be85828601611ee1565b9150509250929050565b6000602082840312156120de576120dd611e82565b5b60006120ec84828501611eb5565b91505092915050565b6120fe81611e8c565b82525050565b600060208201905061211960008301846120f5565b92915050565b61212881611fbf565b811461213357600080fd5b50565b6000813590506121458161211f565b92915050565b6000806040838503121561216257612161611e82565b5b600061217085828601612136565b925050602061218185828601612136565b9150509250929050565b600080604083850312156121a2576121a1611e82565b5b60006121b085828601611eb5565b92505060206121c185828601611eb5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61220882611d72565b810181811067ffffffffffffffff82111715612227576122266121d0565b5b80604052505050565b600061223a611e78565b905061224682826121ff565b919050565b600067ffffffffffffffff821115612266576122656121d0565b5b602082029050602081019050919050565b600080fd5b600061228f61228a8461224b565b612230565b905080838252602082019050602084028301858111156122b2576122b1612277565b5b835b818110156122db57806122c78882611eb5565b8452602084019350506020810190506122b4565b5050509392505050565b600082601f8301126122fa576122f96121cb565b5b813561230a84826020860161227c565b91505092915050565b61231c81611f36565b811461232757600080fd5b50565b60008135905061233981612313565b92915050565b6000806040838503121561235657612355611e82565b5b600083013567ffffffffffffffff81111561237457612373611e87565b5b612380858286016122e5565b92505060206123918582860161232a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123e257607f821691505b6020821081036123f5576123f461239b565b5b50919050565b7f5441585f4c494d49542065786365656465640000000000000000000000000000600082015250565b6000612431601283611d37565b915061243c826123fb565b602082019050919050565b6000602082019050818103600083015261246081612424565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006060820190506124da60008301866120f5565b6124e76020830185611d02565b6124f46040830184611d02565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061253682611cf8565b915061254183611cf8565b9250828201905080821115612559576125586124fc565b5b92915050565b600061256a82611cf8565b915061257583611cf8565b925082820390508181111561258d5761258c6124fc565b5b92915050565b60006060820190506125a86000830186611d02565b6125b56020830185611d02565b6125c26040830184611d02565b949350505050565b6000815190506125d981611e9e565b92915050565b6000602082840312156125f5576125f4611e82565b5b6000612603848285016125ca565b91505092915050565b6000819050919050565b600061263161262c6126278461260c565b611dfe565b611cf8565b9050919050565b61264181612616565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267c81611e8c565b82525050565b600061268e8383612673565b60208301905092915050565b6000602082019050919050565b60006126b282612647565b6126bc8185612652565b93506126c783612663565b8060005b838110156126f85781516126df8882612682565b97506126ea8361269a565b9250506001810190506126cb565b5085935050505092915050565b600060a08201905061271a6000830188611d02565b6127276020830187612638565b818103604083015261273981866126a7565b905061274860608301856120f5565b6127556080830184611d02565b9695505050505050565b600081905092915050565b50565b600061277a60008361275f565b91506127858261276a565b600082019050919050565b600061279b8261276d565b915081905091905056fea2646970667358221220b6f4e170fce160c5662bd7747c05e06f3702a29f82e0138539a0ee569ffb9e3a64736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000001900000000000000000000000009b8937e53f5b9a269de97e16116ca246518f523d0000000000000000000000004db5e8634c1ee4e725aa7dc4375d938c33399591000000000000000000000000a4f2cc16350f3b8d2a2931471d83e6e264aa2a970000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : marketingTax_ (uint256): 100
Arg [1] : eTFTax_ (uint256): 400
Arg [2] : _owner (address): 0x9B8937e53f5b9a269de97e16116Ca246518F523D
Arg [3] : marketingWallet_ (address): 0x4DB5e8634c1Ee4E725aa7dC4375D938C33399591
Arg [4] : eTFWallet_ (address): 0xA4f2CC16350F3B8d2a2931471D83E6E264aa2a97
Arg [5] : dexRouter_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [2] : 0000000000000000000000009b8937e53f5b9a269de97e16116ca246518f523d
Arg [3] : 0000000000000000000000004db5e8634c1ee4e725aa7dc4375d938c33399591
Arg [4] : 000000000000000000000000a4f2cc16350f3b8d2a2931471d83e6e264aa2a97
Arg [5] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.