ETH Price: $3,378.87 (-7.90%)

Token

DropsTest (DROPSTEST)
 

Overview

Max Total Supply

1,000,000 DROPSTEST

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
isellthebottom.eth
Balance
890,944.04263692808588741 DROPSTEST

Value
$0.00
0x5f66468b7a18788156df9ad38ce9b71f72c8a84e
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:
Test

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 10: Test.sol
//SPDX-Liscence-Identifier: MIT

pragma solidity 0.8.20;

import "./Ownable.sol";
import "./ERC20.sol";
import "./IERC20.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router02.sol";

contract Test is ERC20, Ownable {

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    uint public swapAndLiqThreshold = 1e3 ether; //1,000 tokens -> 0.1% TS
    uint public purchaseLimit;
    uint public buySellTax;

    bool private inSwapAndLiquify;
    bool public tradingOpen;

    uint256 public liquidityFee;
    uint256 public ethFee;

    uint256 private tokensForLiquidity;
    uint256 private tokensForETH;

    address public feeWallet;

    // mappings
    mapping (address => bool) private _isExcludedFromLimit;

    event ExcludeFromLimitation(address indexed account, bool isExcluded);
    event BatchExcludeFromLimitation(address[] account, bool[] isExcluded);
    event SwapAndLiquified(uint256 tokensSwapped, uint256 tokensForLiquidity, uint256 ethForLiquidity, uint256 ethForMarketing);
    event TaxUpdated(uint taxPercent);
    event PurchaseLimitUpdated(uint limitPercent);
    event SwapAndLiqThresholdSet(uint256 amount);
    event ETHWithdrawn(address indexed to, uint256 amount);
    event ERC20Withdrawn(address indexed to, uint256 amount);
    event TradingStatusUpdated(bool status);

    modifier lockTheSwap {
        require(!inSwapAndLiquify, "Currently in swap and liquify");
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(address _router, uint256 _buySellTax,uint256 __ethFeeInPercent,uint256 __liquidityFeeInPercent, uint256 __purchaseLimit, address _feeWallet) ERC20("DropsTest", "DROPSTEST") Ownable(msg.sender) {
        _mint(_msgSender(), 1e6 ether);

        feeWallet = payable(_feeWallet);
        address uniswapRouter = _router; // Uniswap router address for BSC
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswapRouter);
        IUniswapV2Factory _uniswapFactory = IUniswapV2Factory(_uniswapV2Router.factory());

        ethFee = __ethFeeInPercent;
        liquidityFee = __liquidityFeeInPercent;

        address _uniswapV2Pair = _uniswapFactory.createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        buySellTax = _buySellTax;
        purchaseLimit = __purchaseLimit;

        excludeFromLimitation(uniswapV2Pair, true);
        excludeFromLimitation(address(uniswapRouter), true);
        excludeFromLimitation(_msgSender(), true);
        excludeFromLimitation(address(this), true);
    }

    receive() external payable {}

    function swapAndLiquify(uint256 toSwapLiquidity) private lockTheSwap {

        uint256 initialBalance = address(this).balance;

        uint256 totalFee = buySellTax / 100;

        uint256 forETH = toSwapLiquidity * ethFee / totalFee;
        uint256 forLiquidity = toSwapLiquidity * liquidityFee / totalFee;
        
        uint256 tokensToSellForLiq = forLiquidity / 2;
        uint256 tokensToAddLiq = forLiquidity - tokensToSellForLiq;

        uint256 toSwap = forETH+tokensToSellForLiq;

        swapTokensForETH(toSwap);
        
        uint256 updatedBalance = address(this).balance - initialBalance;

        uint256 ethForMarketing = updatedBalance * forETH / toSwapLiquidity;
        uint256 ethForLiquidity = updatedBalance - ethForMarketing;

        addLiquidity(tokensToAddLiq, ethForLiquidity);

        payable(feeWallet).transfer(ethForMarketing);

        emit SwapAndLiquified(toSwap, tokensToAddLiq, ethForLiquidity, ethForMarketing);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    // Custom transfer function with buy and sell fees and burn functionality
    function _transfer(address from, address to, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than 0");
        if(!_isExcludedFromLimit[from] || !_isExcludedFromLimit[to]) {
            require(tradingOpen, "Trading Closed");
        }

        uint256 taxAmount = 0;

        // Max Purchase Limitation
        if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromLimit[to]) {

            require(amount <= totalSupply() * purchaseLimit / 1e4, "Amount exceeds max purchase amount.");
        }

        if((!_isExcludedFromLimit[from] || !_isExcludedFromLimit[to]) && from != address(this)){
            // Buy & Sell Tax (Add or Remove Liquidity Included)
            if((from == uniswapV2Pair || to == uniswapV2Pair) && buySellTax > 0){
                taxAmount = amount * buySellTax / 1e4;
                super._transfer(from, address(this), taxAmount);
            }
        }

        if (!inSwapAndLiquify && to == uniswapV2Pair && !_isExcludedFromLimit[from]) {
            uint256 balance = balanceOf(address(this));
            if(balance >= swapAndLiqThreshold) {
                uint256 maxSwapAndLiq = swapAndLiqThreshold + (swapAndLiqThreshold / 5); //Additional 1.2*swapAndLiqThreshold
                if(balance >= maxSwapAndLiq){
                    swapAndLiquify(maxSwapAndLiq);
                }
                else {
                    swapAndLiquify(swapAndLiqThreshold);
                }
            }
        }

        super._transfer(from, to, (amount-taxAmount));
    }

    function setSellBuyTax(uint forMarketingInPercentage, uint forLiquidityInPercentage) external onlyOwner {
        
        uint256 taxInPercentage = forMarketingInPercentage + forLiquidityInPercentage;
        uint256 currentTaxInPercentage = buySellTax / 100;
        require(taxInPercentage <= currentTaxInPercentage, "You can only lower fees");

        

        ethFee = forMarketingInPercentage;
        liquidityFee = forLiquidityInPercentage;

        buySellTax = taxInPercentage * 100;
        
        emit TaxUpdated(buySellTax);
    }

    function setTradingOpen() external onlyOwner {
        require(!tradingOpen, "Trading already open");
        tradingOpen = true;
        emit TradingStatusUpdated(true);
    }

    function setPurchaseLimit(uint _limit) external onlyOwner {
        purchaseLimit = _limit;
        emit PurchaseLimitUpdated(_limit);
    }

    function setSwapAndLiqThreshold(uint256 amount) public onlyOwner {
        uint256 currentTotalSupply = totalSupply();
        uint256 minSwapAndLiqThreshold = currentTotalSupply / 10000; // 0.01% of the current total token supply
        uint256 maxSwapAndLiqThreshold = currentTotalSupply * 5 / 1000; // 0.5% of the current total token supply

        require(amount >= minSwapAndLiqThreshold && amount <= maxSwapAndLiqThreshold, "SnL Threshold must be within the allowed range");
        swapAndLiqThreshold = amount;
        emit SwapAndLiqThresholdSet(amount);
    }

    function excludeFromLimitation(address account, bool excluded) public onlyOwner {
        _isExcludedFromLimit[account] = excluded;
        emit ExcludeFromLimitation(account, excluded);
    }

    function batchExcludeFromLimitation(address[] calldata account, bool[] calldata excluded) public onlyOwner {
        for(uint i = 0 ; i < account.length ; i ++) {
            _isExcludedFromLimit[account[i]] = excluded[i];
        }
        emit BatchExcludeFromLimitation(account, excluded);
    }

    function withdrawETH(address payable _to) external onlyOwner {
        require(address(this).balance > 0, "No ETH to withdraw");
        uint256 amount = address(this).balance;
        (bool sent, ) = _to.call{value: amount}("");
        require(sent, "Failed to send Ether");
        emit ETHWithdrawn(_to, amount);
    }

    function withdrawERC20Token(address token, address to) public onlyOwner {
        uint256 balance = IERC20(address(token)).balanceOf(address(this));
        require(balance > 0, "Not enough tokens in contract");
        IERC20(address(token)).transfer(to, balance);
        emit ERC20Withdrawn(to, balance);
    }
}

File 1 of 10: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 2 of 10: 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 ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 10: 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 "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 *
 * 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 ERC 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 ERC. 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 virtual {
        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 4 of 10: 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 ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

File 5 of 10: 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 ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 6 of 10: 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 7 of 10: 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 8 of 10: 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;
}

File 9 of 10: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "./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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"uint256","name":"_buySellTax","type":"uint256"},{"internalType":"uint256","name":"__ethFeeInPercent","type":"uint256"},{"internalType":"uint256","name":"__liquidityFeeInPercent","type":"uint256"},{"internalType":"uint256","name":"__purchaseLimit","type":"uint256"},{"internalType":"address","name":"_feeWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"account","type":"address[]"},{"indexed":false,"internalType":"bool[]","name":"isExcluded","type":"bool[]"}],"name":"BatchExcludeFromLimitation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Withdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ETHWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimitation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"limitPercent","type":"uint256"}],"name":"PurchaseLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapAndLiqThresholdSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethForLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethForMarketing","type":"uint256"}],"name":"SwapAndLiquified","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxPercent","type":"uint256"}],"name":"TaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"TradingStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"bool[]","name":"excluded","type":"bool[]"}],"name":"batchExcludeFromLimitation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buySellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimitation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"forMarketingInPercentage","type":"uint256"},{"internalType":"uint256","name":"forLiquidityInPercentage","type":"uint256"}],"name":"setSellBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAndLiqThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTradingOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiqThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawERC20Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052683635c9adc5dea000006008553480156200001e57600080fd5b506040516200249b3803806200249b833981016040819052620000419162000587565b3360405180604001604052806009815260200168111c9bdc1cd5195cdd60ba1b81525060405180604001604052806009815260200168111493d414d51154d560ba1b815250816003908162000097919062000689565b506004620000a6828262000689565b5050506001600160a01b038116620000d957604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000e4816200030d565b50620000fb3369d3c21bcecceda10000006200035f565b80601060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600086905060008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200016d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000193919062000755565b905086600d8190555085600c819055506000816001600160a01b031663c9c6539630856001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000755565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000268573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028e919062000755565b600680546001600160a01b038087166001600160a01b031992831617909255600780549284169290911682179055600a8b90556009889055909150620002d69060016200039d565b620002e38460016200039d565b620002f03360016200039d565b620002fd3060016200039d565b50505050505050505050620007a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200038b5760405163ec442f0560e01b815260006004820152602401620000d0565b620003996000838362000406565b5050565b620003a762000539565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527fb662f3bfb1735e6cf86c62e0de5e8ded221db1f328a15d104be3fd29977cf23e910160405180910390a25050565b6001600160a01b038316620004355780600260008282546200042991906200077a565b90915550620004a99050565b6001600160a01b038316600090815260208190526040902054818110156200048a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000d0565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620004c757600280548290039055620004e6565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200052c91815260200190565b60405180910390a3505050565b6005546001600160a01b03163314620005685760405163118cdaa760e01b8152336004820152602401620000d0565b565b80516001600160a01b03811681146200058257600080fd5b919050565b60008060008060008060c08789031215620005a157600080fd5b620005ac876200056a565b955060208701519450604087015193506060870151925060808701519150620005d860a088016200056a565b90509295509295509295565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060f57607f821691505b6020821081036200063057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200068457600081815260208120601f850160051c810160208610156200065f5750805b601f850160051c820191505b8181101562000680578281556001016200066b565b5050505b505050565b81516001600160401b03811115620006a557620006a5620005e4565b620006bd81620006b68454620005fa565b8462000636565b602080601f831160018114620006f55760008415620006dc5750858301515b600019600386901b1c1916600185901b17855562000680565b600085815260208120601f198616915b82811015620007265788860151825594840194600190910190840162000705565b5085821015620007455787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076857600080fd5b62000773826200056a565b9392505050565b808201808211156200079c57634e487b7160e01b600052601160045260246000fd5b92915050565b611ce980620007b26000396000f3fe6080604052600436106101c65760003560e01c80636edc4388116100f7578063a9059cbb11610095578063ecfbe70c11610064578063ecfbe70c14610509578063f25f4b5614610529578063f2fde38b14610549578063ffb54a991461056957600080fd5b8063a9059cbb1461046d578063b62f6e041461048d578063ce40fc15146104a3578063dd62ed3e146104c357600080fd5b80638da5cb5b116100d15780638da5cb5b1461040e57806395d89b411461042c57806396e1c7d11461044157806398118cb41461045757600080fd5b80636edc4388146103a357806370a08231146103c3578063715018a6146103f957600080fd5b806323b872dd116101645780634cf1115d1161013e5780634cf1115d1461032d5780635e7f2dc11461034357806361231f7714610363578063690d83201461038357600080fd5b806323b872dd146102d1578063313ce567146102f157806349bd5a5e1461030d57600080fd5b806318160ddd116101a057806318160ddd1461026557806318886657146102845780631eed1ac81461029a5780632333f9f1146102b157600080fd5b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461022d57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610588565b6040516101f491906117da565b60405180910390f35b34801561020957600080fd5b5061021d61021836600461183d565b61061a565b60405190151581526020016101f4565b34801561023957600080fd5b5060065461024d906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b34801561027157600080fd5b506002545b6040519081526020016101f4565b34801561029057600080fd5b5061027660095481565b3480156102a657600080fd5b506102af610634565b005b3480156102bd57600080fd5b506102af6102cc366004611877565b6106d5565b3480156102dd57600080fd5b5061021d6102ec3660046118b0565b61073c565b3480156102fd57600080fd5b50604051601281526020016101f4565b34801561031957600080fd5b5060075461024d906001600160a01b031681565b34801561033957600080fd5b50610276600d5481565b34801561034f57600080fd5b506102af61035e36600461193d565b610760565b34801561036f57600080fd5b506102af61037e3660046119a9565b610843565b34801561038f57600080fd5b506102af61039e3660046119cb565b610906565b3480156103af57600080fd5b506102af6103be3660046119ef565b610a35565b3480156103cf57600080fd5b506102766103de3660046119cb565b6001600160a01b031660009081526020819052604090205490565b34801561040557600080fd5b506102af610a78565b34801561041a57600080fd5b506005546001600160a01b031661024d565b34801561043857600080fd5b506101e7610a8c565b34801561044d57600080fd5b50610276600a5481565b34801561046357600080fd5b50610276600c5481565b34801561047957600080fd5b5061021d61048836600461183d565b610a9b565b34801561049957600080fd5b5061027660085481565b3480156104af57600080fd5b506102af6104be3660046119ef565b610aa9565b3480156104cf57600080fd5b506102766104de366004611a08565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051557600080fd5b506102af610524366004611a08565b610b92565b34801561053557600080fd5b5060105461024d906001600160a01b031681565b34801561055557600080fd5b506102af6105643660046119cb565b610d06565b34801561057557600080fd5b50600b5461021d90610100900460ff1681565b60606003805461059790611a36565b80601f01602080910402602001604051908101604052809291908181526020018280546105c390611a36565b80156106105780601f106105e557610100808354040283529160200191610610565b820191906000526020600020905b8154815290600101906020018083116105f357829003601f168201915b5050505050905090565b600033610628818585610d44565b60019150505b92915050565b61063c610d56565b600b54610100900460ff16156106905760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064015b60405180910390fd5b600b805461ff001916610100179055604051600181527f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab9060200160405180910390a1565b6106dd610d56565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527fb662f3bfb1735e6cf86c62e0de5e8ded221db1f328a15d104be3fd29977cf23e910160405180910390a25050565b60003361074a858285610d83565b610755858585610e01565b506001949350505050565b610768610d56565b60005b838110156107ff5782828281811061078557610785611a70565b905060200201602081019061079a9190611a86565b601160008787858181106107b0576107b0611a70565b90506020020160208101906107c591906119cb565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806107f781611ab9565b91505061076b565b507fec332beaa25122e2aaf782a4144424379d8b725b55f4656dc18bf72b40508199848484846040516108359493929190611ad2565b60405180910390a150505050565b61084b610d56565b60006108578284611b62565b905060006064600a5461086a9190611b75565b9050808211156108bc5760405162461bcd60e51b815260206004820152601760248201527f596f752063616e206f6e6c79206c6f77657220666565730000000000000000006044820152606401610687565b600d849055600c8390556108d1826064611b97565b600a8190556040519081527f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c9190602001610835565b61090e610d56565b600047116109535760405162461bcd60e51b81526020600482015260126024820152714e6f2045544820746f20776974686472617760701b6044820152606401610687565b60405147906000906001600160a01b0384169083908381818185875af1925050503d80600081146109a0576040519150601f19603f3d011682016040523d82523d6000602084013e6109a5565b606091505b50509050806109ed5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610687565b826001600160a01b03167f94b2de810873337ed265c5f8cf98c9cffefa06b8607f9a2f1fbaebdfbcfbef1c83604051610a2891815260200190565b60405180910390a2505050565b610a3d610d56565b60098190556040518181527fee131fa00e37f4b10e0ad1bffe4a204cdc5e73b4c9bfab1e2de9ae163dde1edc9060200160405180910390a150565b610a80610d56565b610a8a600061113e565b565b60606004805461059790611a36565b600033610628818585610e01565b610ab1610d56565b6000610abc60025490565b90506000610acc61271083611b75565b905060006103e8610ade846005611b97565b610ae89190611b75565b9050818410158015610afa5750808411155b610b5d5760405162461bcd60e51b815260206004820152602e60248201527f536e4c205468726573686f6c64206d7573742062652077697468696e2074686560448201526d20616c6c6f7765642072616e676560901b6064820152608401610687565b60088490556040518481527fd9865007332e13f0dcab58b7d2a784fb5276e18f0c72e90c1a404e88a562898190602001610835565b610b9a610d56565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610be1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c059190611bae565b905060008111610c575760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000006044820152606401610687565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015610ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cca9190611bc7565b50816001600160a01b03167f7e2c99819371db0a6fc6f4269fe872496e44f502df19ba3eae594b7a1598746082604051610a2891815260200190565b610d0e610d56565b6001600160a01b038116610d3857604051631e4fbdf760e01b815260006004820152602401610687565b610d418161113e565b50565b610d518383836001611190565b505050565b6005546001600160a01b03163314610a8a5760405163118cdaa760e01b8152336004820152602401610687565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610dfb5781811015610dec57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610687565b610dfb84848484036000611190565b50505050565b60008111610e605760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610687565b6001600160a01b03831660009081526011602052604090205460ff161580610ea157506001600160a01b03821660009081526011602052604090205460ff16155b15610eee57600b54610100900460ff16610eee5760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c810db1bdcd95960921b6044820152606401610687565b6007546000906001600160a01b038581169116148015610f1c57506006546001600160a01b03848116911614155b8015610f4157506001600160a01b03831660009081526011602052604090205460ff16155b15610fc457612710600954610f5560025490565b610f5f9190611b97565b610f699190611b75565b821115610fc45760405162461bcd60e51b815260206004820152602360248201527f416d6f756e742065786365656473206d617820707572636861736520616d6f75604482015262373a1760e91b6064820152608401610687565b6001600160a01b03841660009081526011602052604090205460ff16158061100557506001600160a01b03831660009081526011602052604090205460ff16155b801561101a57506001600160a01b0384163014155b15611083576007546001600160a01b038581169116148061104857506007546001600160a01b038481169116145b801561105657506000600a54115b1561108357612710600a548361106c9190611b97565b6110769190611b75565b9050611083843083611265565b600b5460ff161580156110a357506007546001600160a01b038481169116145b80156110c857506001600160a01b03841660009081526011602052604090205460ff16155b1561112a5730600090815260208190526040902054600854811061112857600060056008546110f79190611b75565b6008546111049190611b62565b905080821061111b57611116816112c4565b611126565b6111266008546112c4565b505b505b610dfb84846111398486611be4565b611265565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166111ba5760405163e602df0560e01b815260006004820152602401610687565b6001600160a01b0383166111e457604051634a1406b160e11b815260006004820152602401610687565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610dfb57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161125791815260200190565b60405180910390a350505050565b6001600160a01b03831661128f57604051634b637e8f60e11b815260006004820152602401610687565b6001600160a01b0382166112b95760405163ec442f0560e01b815260006004820152602401610687565b610d51838383611481565b600b5460ff16156113175760405162461bcd60e51b815260206004820152601d60248201527f43757272656e746c7920696e207377617020616e64206c6971756966790000006044820152606401610687565b600b805460ff19166001179055600a54479060009061133890606490611b75565b9050600081600d548561134b9190611b97565b6113559190611b75565b9050600082600c54866113689190611b97565b6113729190611b75565b90506000611381600283611b75565b9050600061138f8284611be4565b9050600061139d8386611b62565b90506113a8816115ab565b60006113b48847611be4565b90506000896113c38884611b97565b6113cd9190611b75565b905060006113db8284611be4565b90506113e78582611705565b6010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611421573d6000803e3d6000fd5b506040805185815260208101879052908101829052606081018390527fada09296b37f942dad4a0318731be5f9df8af6bf0364ffc08234b0a7d84218619060800160405180910390a15050600b805460ff19169055505050505050505050565b6001600160a01b0383166114ac5780600260008282546114a19190611b62565b9091555061151e9050565b6001600160a01b038316600090815260208190526040902054818110156114ff5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610687565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661153a57600280548290039055611559565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161159e91815260200190565b60405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115e0576115e0611a70565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190611bf7565b8160018151811061167057611670611a70565b6001600160a01b0392831660209182029290920101526006546116969130911684610d44565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906116cf908590600090869030904290600401611c14565b600060405180830381600087803b1580156116e957600080fd5b505af11580156116fd573d6000803e3d6000fd5b505050505050565b60065461171d9030906001600160a01b031684610d44565b6006546001600160a01b031663f305d7198230856000806117466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156117ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117d39190611c85565b5050505050565b600060208083528351808285015260005b81811015611807578581018301518582016040015282016117eb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d4157600080fd5b6000806040838503121561185057600080fd5b823561185b81611828565b946020939093013593505050565b8015158114610d4157600080fd5b6000806040838503121561188a57600080fd5b823561189581611828565b915060208301356118a581611869565b809150509250929050565b6000806000606084860312156118c557600080fd5b83356118d081611828565b925060208401356118e081611828565b929592945050506040919091013590565b60008083601f84011261190357600080fd5b50813567ffffffffffffffff81111561191b57600080fd5b6020830191508360208260051b850101111561193657600080fd5b9250929050565b6000806000806040858703121561195357600080fd5b843567ffffffffffffffff8082111561196b57600080fd5b611977888389016118f1565b9096509450602087013591508082111561199057600080fd5b5061199d878288016118f1565b95989497509550505050565b600080604083850312156119bc57600080fd5b50508035926020909101359150565b6000602082840312156119dd57600080fd5b81356119e881611828565b9392505050565b600060208284031215611a0157600080fd5b5035919050565b60008060408385031215611a1b57600080fd5b8235611a2681611828565b915060208301356118a581611828565b600181811c90821680611a4a57607f821691505b602082108103611a6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a9857600080fd5b81356119e881611869565b634e487b7160e01b600052601160045260246000fd5b600060018201611acb57611acb611aa3565b5060010190565b6040808252810184905260008560608301825b87811015611b15578235611af881611828565b6001600160a01b0316825260209283019290910190600101611ae5565b5083810360208581019190915285825291508590820160005b86811015611b55578235611b4181611869565b151582529183019190830190600101611b2e565b5098975050505050505050565b8082018082111561062e5761062e611aa3565b600082611b9257634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761062e5761062e611aa3565b600060208284031215611bc057600080fd5b5051919050565b600060208284031215611bd957600080fd5b81516119e881611869565b8181038181111561062e5761062e611aa3565b600060208284031215611c0957600080fd5b81516119e881611828565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c645784516001600160a01b031683529383019391830191600101611c3f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611c9a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122095887ff4b5f1c5774b3c4c0c429ab5fb0a57d8d63104de02944308ab257f37d664736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000c07822977057f6082a382589d3e4eb5e7cd598a6

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80636edc4388116100f7578063a9059cbb11610095578063ecfbe70c11610064578063ecfbe70c14610509578063f25f4b5614610529578063f2fde38b14610549578063ffb54a991461056957600080fd5b8063a9059cbb1461046d578063b62f6e041461048d578063ce40fc15146104a3578063dd62ed3e146104c357600080fd5b80638da5cb5b116100d15780638da5cb5b1461040e57806395d89b411461042c57806396e1c7d11461044157806398118cb41461045757600080fd5b80636edc4388146103a357806370a08231146103c3578063715018a6146103f957600080fd5b806323b872dd116101645780634cf1115d1161013e5780634cf1115d1461032d5780635e7f2dc11461034357806361231f7714610363578063690d83201461038357600080fd5b806323b872dd146102d1578063313ce567146102f157806349bd5a5e1461030d57600080fd5b806318160ddd116101a057806318160ddd1461026557806318886657146102845780631eed1ac81461029a5780632333f9f1146102b157600080fd5b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461022d57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610588565b6040516101f491906117da565b60405180910390f35b34801561020957600080fd5b5061021d61021836600461183d565b61061a565b60405190151581526020016101f4565b34801561023957600080fd5b5060065461024d906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b34801561027157600080fd5b506002545b6040519081526020016101f4565b34801561029057600080fd5b5061027660095481565b3480156102a657600080fd5b506102af610634565b005b3480156102bd57600080fd5b506102af6102cc366004611877565b6106d5565b3480156102dd57600080fd5b5061021d6102ec3660046118b0565b61073c565b3480156102fd57600080fd5b50604051601281526020016101f4565b34801561031957600080fd5b5060075461024d906001600160a01b031681565b34801561033957600080fd5b50610276600d5481565b34801561034f57600080fd5b506102af61035e36600461193d565b610760565b34801561036f57600080fd5b506102af61037e3660046119a9565b610843565b34801561038f57600080fd5b506102af61039e3660046119cb565b610906565b3480156103af57600080fd5b506102af6103be3660046119ef565b610a35565b3480156103cf57600080fd5b506102766103de3660046119cb565b6001600160a01b031660009081526020819052604090205490565b34801561040557600080fd5b506102af610a78565b34801561041a57600080fd5b506005546001600160a01b031661024d565b34801561043857600080fd5b506101e7610a8c565b34801561044d57600080fd5b50610276600a5481565b34801561046357600080fd5b50610276600c5481565b34801561047957600080fd5b5061021d61048836600461183d565b610a9b565b34801561049957600080fd5b5061027660085481565b3480156104af57600080fd5b506102af6104be3660046119ef565b610aa9565b3480156104cf57600080fd5b506102766104de366004611a08565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051557600080fd5b506102af610524366004611a08565b610b92565b34801561053557600080fd5b5060105461024d906001600160a01b031681565b34801561055557600080fd5b506102af6105643660046119cb565b610d06565b34801561057557600080fd5b50600b5461021d90610100900460ff1681565b60606003805461059790611a36565b80601f01602080910402602001604051908101604052809291908181526020018280546105c390611a36565b80156106105780601f106105e557610100808354040283529160200191610610565b820191906000526020600020905b8154815290600101906020018083116105f357829003601f168201915b5050505050905090565b600033610628818585610d44565b60019150505b92915050565b61063c610d56565b600b54610100900460ff16156106905760405162461bcd60e51b81526020600482015260146024820152732a3930b234b7339030b63932b0b23c9037b832b760611b60448201526064015b60405180910390fd5b600b805461ff001916610100179055604051600181527f44025b4c6266facf728a25ba1ed858c89e2215e03094486152577b87636ea7ab9060200160405180910390a1565b6106dd610d56565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527fb662f3bfb1735e6cf86c62e0de5e8ded221db1f328a15d104be3fd29977cf23e910160405180910390a25050565b60003361074a858285610d83565b610755858585610e01565b506001949350505050565b610768610d56565b60005b838110156107ff5782828281811061078557610785611a70565b905060200201602081019061079a9190611a86565b601160008787858181106107b0576107b0611a70565b90506020020160208101906107c591906119cb565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806107f781611ab9565b91505061076b565b507fec332beaa25122e2aaf782a4144424379d8b725b55f4656dc18bf72b40508199848484846040516108359493929190611ad2565b60405180910390a150505050565b61084b610d56565b60006108578284611b62565b905060006064600a5461086a9190611b75565b9050808211156108bc5760405162461bcd60e51b815260206004820152601760248201527f596f752063616e206f6e6c79206c6f77657220666565730000000000000000006044820152606401610687565b600d849055600c8390556108d1826064611b97565b600a8190556040519081527f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c9190602001610835565b61090e610d56565b600047116109535760405162461bcd60e51b81526020600482015260126024820152714e6f2045544820746f20776974686472617760701b6044820152606401610687565b60405147906000906001600160a01b0384169083908381818185875af1925050503d80600081146109a0576040519150601f19603f3d011682016040523d82523d6000602084013e6109a5565b606091505b50509050806109ed5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610687565b826001600160a01b03167f94b2de810873337ed265c5f8cf98c9cffefa06b8607f9a2f1fbaebdfbcfbef1c83604051610a2891815260200190565b60405180910390a2505050565b610a3d610d56565b60098190556040518181527fee131fa00e37f4b10e0ad1bffe4a204cdc5e73b4c9bfab1e2de9ae163dde1edc9060200160405180910390a150565b610a80610d56565b610a8a600061113e565b565b60606004805461059790611a36565b600033610628818585610e01565b610ab1610d56565b6000610abc60025490565b90506000610acc61271083611b75565b905060006103e8610ade846005611b97565b610ae89190611b75565b9050818410158015610afa5750808411155b610b5d5760405162461bcd60e51b815260206004820152602e60248201527f536e4c205468726573686f6c64206d7573742062652077697468696e2074686560448201526d20616c6c6f7765642072616e676560901b6064820152608401610687565b60088490556040518481527fd9865007332e13f0dcab58b7d2a784fb5276e18f0c72e90c1a404e88a562898190602001610835565b610b9a610d56565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610be1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c059190611bae565b905060008111610c575760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000006044820152606401610687565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015610ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cca9190611bc7565b50816001600160a01b03167f7e2c99819371db0a6fc6f4269fe872496e44f502df19ba3eae594b7a1598746082604051610a2891815260200190565b610d0e610d56565b6001600160a01b038116610d3857604051631e4fbdf760e01b815260006004820152602401610687565b610d418161113e565b50565b610d518383836001611190565b505050565b6005546001600160a01b03163314610a8a5760405163118cdaa760e01b8152336004820152602401610687565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610dfb5781811015610dec57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610687565b610dfb84848484036000611190565b50505050565b60008111610e605760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610687565b6001600160a01b03831660009081526011602052604090205460ff161580610ea157506001600160a01b03821660009081526011602052604090205460ff16155b15610eee57600b54610100900460ff16610eee5760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c810db1bdcd95960921b6044820152606401610687565b6007546000906001600160a01b038581169116148015610f1c57506006546001600160a01b03848116911614155b8015610f4157506001600160a01b03831660009081526011602052604090205460ff16155b15610fc457612710600954610f5560025490565b610f5f9190611b97565b610f699190611b75565b821115610fc45760405162461bcd60e51b815260206004820152602360248201527f416d6f756e742065786365656473206d617820707572636861736520616d6f75604482015262373a1760e91b6064820152608401610687565b6001600160a01b03841660009081526011602052604090205460ff16158061100557506001600160a01b03831660009081526011602052604090205460ff16155b801561101a57506001600160a01b0384163014155b15611083576007546001600160a01b038581169116148061104857506007546001600160a01b038481169116145b801561105657506000600a54115b1561108357612710600a548361106c9190611b97565b6110769190611b75565b9050611083843083611265565b600b5460ff161580156110a357506007546001600160a01b038481169116145b80156110c857506001600160a01b03841660009081526011602052604090205460ff16155b1561112a5730600090815260208190526040902054600854811061112857600060056008546110f79190611b75565b6008546111049190611b62565b905080821061111b57611116816112c4565b611126565b6111266008546112c4565b505b505b610dfb84846111398486611be4565b611265565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166111ba5760405163e602df0560e01b815260006004820152602401610687565b6001600160a01b0383166111e457604051634a1406b160e11b815260006004820152602401610687565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610dfb57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161125791815260200190565b60405180910390a350505050565b6001600160a01b03831661128f57604051634b637e8f60e11b815260006004820152602401610687565b6001600160a01b0382166112b95760405163ec442f0560e01b815260006004820152602401610687565b610d51838383611481565b600b5460ff16156113175760405162461bcd60e51b815260206004820152601d60248201527f43757272656e746c7920696e207377617020616e64206c6971756966790000006044820152606401610687565b600b805460ff19166001179055600a54479060009061133890606490611b75565b9050600081600d548561134b9190611b97565b6113559190611b75565b9050600082600c54866113689190611b97565b6113729190611b75565b90506000611381600283611b75565b9050600061138f8284611be4565b9050600061139d8386611b62565b90506113a8816115ab565b60006113b48847611be4565b90506000896113c38884611b97565b6113cd9190611b75565b905060006113db8284611be4565b90506113e78582611705565b6010546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015611421573d6000803e3d6000fd5b506040805185815260208101879052908101829052606081018390527fada09296b37f942dad4a0318731be5f9df8af6bf0364ffc08234b0a7d84218619060800160405180910390a15050600b805460ff19169055505050505050505050565b6001600160a01b0383166114ac5780600260008282546114a19190611b62565b9091555061151e9050565b6001600160a01b038316600090815260208190526040902054818110156114ff5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610687565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661153a57600280548290039055611559565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161159e91815260200190565b60405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115e0576115e0611a70565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190611bf7565b8160018151811061167057611670611a70565b6001600160a01b0392831660209182029290920101526006546116969130911684610d44565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906116cf908590600090869030904290600401611c14565b600060405180830381600087803b1580156116e957600080fd5b505af11580156116fd573d6000803e3d6000fd5b505050505050565b60065461171d9030906001600160a01b031684610d44565b6006546001600160a01b031663f305d7198230856000806117466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156117ae573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117d39190611c85565b5050505050565b600060208083528351808285015260005b81811015611807578581018301518582016040015282016117eb565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d4157600080fd5b6000806040838503121561185057600080fd5b823561185b81611828565b946020939093013593505050565b8015158114610d4157600080fd5b6000806040838503121561188a57600080fd5b823561189581611828565b915060208301356118a581611869565b809150509250929050565b6000806000606084860312156118c557600080fd5b83356118d081611828565b925060208401356118e081611828565b929592945050506040919091013590565b60008083601f84011261190357600080fd5b50813567ffffffffffffffff81111561191b57600080fd5b6020830191508360208260051b850101111561193657600080fd5b9250929050565b6000806000806040858703121561195357600080fd5b843567ffffffffffffffff8082111561196b57600080fd5b611977888389016118f1565b9096509450602087013591508082111561199057600080fd5b5061199d878288016118f1565b95989497509550505050565b600080604083850312156119bc57600080fd5b50508035926020909101359150565b6000602082840312156119dd57600080fd5b81356119e881611828565b9392505050565b600060208284031215611a0157600080fd5b5035919050565b60008060408385031215611a1b57600080fd5b8235611a2681611828565b915060208301356118a581611828565b600181811c90821680611a4a57607f821691505b602082108103611a6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a9857600080fd5b81356119e881611869565b634e487b7160e01b600052601160045260246000fd5b600060018201611acb57611acb611aa3565b5060010190565b6040808252810184905260008560608301825b87811015611b15578235611af881611828565b6001600160a01b0316825260209283019290910190600101611ae5565b5083810360208581019190915285825291508590820160005b86811015611b55578235611b4181611869565b151582529183019190830190600101611b2e565b5098975050505050505050565b8082018082111561062e5761062e611aa3565b600082611b9257634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761062e5761062e611aa3565b600060208284031215611bc057600080fd5b5051919050565b600060208284031215611bd957600080fd5b81516119e881611869565b8181038181111561062e5761062e611aa3565b600060208284031215611c0957600080fd5b81516119e881611828565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c645784516001600160a01b031683529383019391830191600101611c3f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611c9a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122095887ff4b5f1c5774b3c4c0c429ab5fb0a57d8d63104de02944308ab257f37d664736f6c63430008140033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000c07822977057f6082a382589d3e4eb5e7cd598a6

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _buySellTax (uint256): 500
Arg [2] : __ethFeeInPercent (uint256): 4
Arg [3] : __liquidityFeeInPercent (uint256): 1
Arg [4] : __purchaseLimit (uint256): 200
Arg [5] : _feeWallet (address): 0xC07822977057f6082A382589D3e4Eb5e7cD598A6

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [5] : 000000000000000000000000c07822977057f6082a382589d3e4eb5e7cd598a6


Deployed Bytecode Sourcemap

197:8688:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2039:89:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4258:186;;;;;;;;;;-1:-1:-1;4258:186:1;;;;;:::i;:::-;;:::i;:::-;;;1188:14:10;;1181:22;1163:41;;1151:2;1136:18;4258:186:1;1023:187:10;236:41:8;;;;;;;;;;-1:-1:-1;236:41:8;;;;-1:-1:-1;;;;;236:41:8;;;;;;-1:-1:-1;;;;;1406:32:10;;;1388:51;;1376:2;1361:18;236:41:8;1215:230:10;3109:97:1;;;;;;;;;;-1:-1:-1;3187:12:1;;3109:97;;;1596:25:10;;;1584:2;1569:18;3109:97:1;1450:177:10;393:25:8;;;;;;;;;;;;;;;;6835:176;;;;;;;;;;;;;:::i;:::-;;7740:192;;;;;;;;;;-1:-1:-1;7740:192:8;;;;;:::i;:::-;;:::i;5004:244:1:-;;;;;;;;;;-1:-1:-1;5004:244:1;;;;;:::i;:::-;;:::i;2967:82::-;;;;;;;;;;-1:-1:-1;2967:82:1;;3040:2;2745:36:10;;2733:2;2718:18;2967:82:1;2603:184:10;283:28:8;;;;;;;;;;-1:-1:-1;283:28:8;;;;-1:-1:-1;;;;;283:28:8;;;551:21;;;;;;;;;;;;;;;;7938:298;;;;;;;;;;-1:-1:-1;7938:298:8;;;;;:::i;:::-;;:::i;6282:547::-;;;;;;;;;;-1:-1:-1;6282:547:8;;;;;:::i;:::-;;:::i;8242:322::-;;;;;;;;;;-1:-1:-1;8242:322:8;;;;;:::i;:::-;;:::i;7017:140::-;;;;;;;;;;-1:-1:-1;7017:140:8;;;;;:::i;:::-;;:::i;3264:116:1:-;;;;;;;;;;-1:-1:-1;3264:116:1;;;;;:::i;:::-;-1:-1:-1;;;;;3355:18:1;3329:7;3355:18;;;;;;;;;;;;3264:116;2286:101:7;;;;;;;;;;;;;:::i;1631:85::-;;;;;;;;;;-1:-1:-1;1703:6:7;;-1:-1:-1;;;;;1703:6:7;1631:85;;2241:93:1;;;;;;;;;;;;;:::i;424:22:8:-;;;;;;;;;;;;;;;;518:27;;;;;;;;;;;;;;;;3575:178:1;;;;;;;;;;-1:-1:-1;3575:178:1;;;;;:::i;:::-;;:::i;318:43:8:-;;;;;;;;;;;;;;;;7163:571;;;;;;;;;;-1:-1:-1;7163:571:8;;;;;:::i;:::-;;:::i;3811:140:1:-;;;;;;;;;;-1:-1:-1;3811:140:1;;;;;:::i;:::-;-1:-1:-1;;;;;3917:18:1;;;3891:7;3917:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3811:140;8570:313:8;;;;;;;;;;-1:-1:-1;8570:313:8;;;;;:::i;:::-;;:::i;654:24::-;;;;;;;;;;-1:-1:-1;654:24:8;;;;-1:-1:-1;;;;;654:24:8;;;2536:215:7;;;;;;;;;;-1:-1:-1;2536:215:7;;;;;:::i;:::-;;:::i;488:23:8:-;;;;;;;;;;-1:-1:-1;488:23:8;;;;;;;;;;;2039:89:1;2084:13;2116:5;2109:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2039:89;:::o;4258:186::-;4331:4;735:10:0;4385:31:1;735:10:0;4401:7:1;4410:5;4385:8;:31::i;:::-;4433:4;4426:11;;;4258:186;;;;;:::o;6835:176:8:-;1524:13:7;:11;:13::i;:::-;6899:11:8::1;::::0;::::1;::::0;::::1;;;6898:12;6890:45;;;::::0;-1:-1:-1;;;6890:45:8;;6077:2:10;6890:45:8::1;::::0;::::1;6059:21:10::0;6116:2;6096:18;;;6089:30;-1:-1:-1;;;6135:18:10;;;6128:50;6195:18;;6890:45:8::1;;;;;;;;;6945:11;:18:::0;;-1:-1:-1;;6945:18:8::1;;;::::0;;6978:26:::1;::::0;-1:-1:-1;1163:41:10;;6978:26:8::1;::::0;1151:2:10;1136:18;6978:26:8::1;;;;;;;6835:176::o:0;7740:192::-;1524:13:7;:11;:13::i;:::-;-1:-1:-1;;;;;7830:29:8;::::1;;::::0;;;:20:::1;:29;::::0;;;;;;;;:40;;-1:-1:-1;;7830:40:8::1;::::0;::::1;;::::0;;::::1;::::0;;;7885;;1163:41:10;;;7885:40:8::1;::::0;1136:18:10;7885:40:8::1;;;;;;;7740:192:::0;;:::o;5004:244:1:-;5091:4;735:10:0;5147:37:1;5163:4;735:10:0;5178:5:1;5147:15;:37::i;:::-;5194:26;5204:4;5210:2;5214:5;5194:9;:26::i;:::-;-1:-1:-1;5237:4:1;;5004:244;-1:-1:-1;;;;5004:244:1:o;7938:298:8:-;1524:13:7;:11;:13::i;:::-;8059:6:8::1;8055:115;8072:18:::0;;::::1;8055:115;;;8148:8;;8157:1;8148:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8113:20;:32;8134:7;;8142:1;8134:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;8113:32:8::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;8113:32:8;:46;;-1:-1:-1;;8113:46:8::1;::::0;::::1;;::::0;;;::::1;::::0;;8093:4;::::1;::::0;::::1;:::i;:::-;;;;8055:115;;;;8184:45;8211:7;;8220:8;;8184:45;;;;;;;;;:::i;:::-;;;;;;;;7938:298:::0;;;;:::o;6282:547::-;1524:13:7;:11;:13::i;:::-;6405:23:8::1;6431:51;6458:24:::0;6431;:51:::1;:::i;:::-;6405:77;;6492:30;6538:3;6525:10;;:16;;;;:::i;:::-;6492:49;;6578:22;6559:15;:41;;6551:77;;;::::0;-1:-1:-1;;;6551:77:8;;8739:2:10;6551:77:8::1;::::0;::::1;8721:21:10::0;8778:2;8758:18;;;8751:30;8817:25;8797:18;;;8790:53;8860:18;;6551:77:8::1;8537:347:10::0;6551:77:8::1;6649:6;:33:::0;;;6692:12:::1;:39:::0;;;6755:21:::1;:15:::0;6773:3:::1;6755:21;:::i;:::-;6742:10;:34:::0;;;6800:22:::1;::::0;1596:25:10;;;6800:22:8::1;::::0;1584:2:10;1569:18;6800:22:8::1;1450:177:10::0;8242:322:8;1524:13:7;:11;:13::i;:::-;8345:1:8::1;8321:21;:25;8313:56;;;::::0;-1:-1:-1;;;8313:56:8;;9264:2:10;8313:56:8::1;::::0;::::1;9246:21:10::0;9303:2;9283:18;;;9276:30;-1:-1:-1;;;9322:18:10;;;9315:48;9380:18;;8313:56:8::1;9062:342:10::0;8313:56:8::1;8443:27;::::0;8396:21:::1;::::0;8379:14:::1;::::0;-1:-1:-1;;;;;8443:8:8;::::1;::::0;8396:21;;8379:14;8443:27;8379:14;8443:27;8396:21;8443:8;:27:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8427:43;;;8488:4;8480:37;;;::::0;-1:-1:-1;;;8480:37:8;;9821:2:10;8480:37:8::1;::::0;::::1;9803:21:10::0;9860:2;9840:18;;;9833:30;-1:-1:-1;;;9879:18:10;;;9872:50;9939:18;;8480:37:8::1;9619:344:10::0;8480:37:8::1;8545:3;-1:-1:-1::0;;;;;8532:25:8::1;;8550:6;8532:25;;;;1596::10::0;;1584:2;1569:18;;1450:177;8532:25:8::1;;;;;;;;8303:261;;8242:322:::0;:::o;7017:140::-;1524:13:7;:11;:13::i;:::-;7085::8::1;:22:::0;;;7122:28:::1;::::0;1596:25:10;;;7122:28:8::1;::::0;1584:2:10;1569:18;7122:28:8::1;;;;;;;7017:140:::0;:::o;2286:101:7:-;1524:13;:11;:13::i;:::-;2350:30:::1;2377:1;2350:18;:30::i;:::-;2286:101::o:0;2241:93:1:-;2288:13;2320:7;2313:14;;;;;:::i;3575:178::-;3644:4;735:10:0;3698:27:1;735:10:0;3715:2:1;3719:5;3698:9;:27::i;7163:571:8:-;1524:13:7;:11;:13::i;:::-;7238:26:8::1;7267:13;3187:12:1::0;;;3109:97;7267:13:8::1;7238:42:::0;-1:-1:-1;7290:30:8::1;7323:26;7344:5;7238:42:::0;7323:26:::1;:::i;:::-;7290:59:::0;-1:-1:-1;7402:30:8::1;7460:4;7435:22;:18:::0;7456:1:::1;7435:22;:::i;:::-;:29;;;;:::i;:::-;7402:62;;7535:22;7525:6;:32;;:68;;;;;7571:22;7561:6;:32;;7525:68;7517:127;;;::::0;-1:-1:-1;;;7517:127:8;;10170:2:10;7517:127:8::1;::::0;::::1;10152:21:10::0;10209:2;10189:18;;;10182:30;10248:34;10228:18;;;10221:62;-1:-1:-1;;;10299:18:10;;;10292:44;10353:19;;7517:127:8::1;9968:410:10::0;7517:127:8::1;7654:19;:28:::0;;;7697:30:::1;::::0;1596:25:10;;;7697:30:8::1;::::0;1584:2:10;1569:18;7697:30:8::1;1450:177:10::0;8570:313:8;1524:13:7;:11;:13::i;:::-;8670:47:8::1;::::0;-1:-1:-1;;;8670:47:8;;8711:4:::1;8670:47;::::0;::::1;1388:51:10::0;8652:15:8::1;::::0;-1:-1:-1;;;;;8670:32:8;::::1;::::0;::::1;::::0;1361:18:10;;8670:47:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8652:65;;8745:1;8735:7;:11;8727:53;;;::::0;-1:-1:-1;;;8727:53:8;;10774:2:10;8727:53:8::1;::::0;::::1;10756:21:10::0;10813:2;10793:18;;;10786:30;10852:31;10832:18;;;10825:59;10901:18;;8727:53:8::1;10572:353:10::0;8727:53:8::1;8790:44;::::0;-1:-1:-1;;;8790:44:8;;-1:-1:-1;;;;;11122:32:10;;;8790:44:8::1;::::0;::::1;11104:51:10::0;11171:18;;;11164:34;;;8790:31:8;::::1;::::0;::::1;::::0;11077:18:10;;8790:44:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8864:2;-1:-1:-1::0;;;;;8849:27:8::1;;8868:7;8849:27;;;;1596:25:10::0;;1584:2;1569:18;;1450:177;2536:215:7;1524:13;:11;:13::i;:::-;-1:-1:-1;;;;;2620:22:7;::::1;2616:91;;2665:31;::::0;-1:-1:-1;;;2665:31:7;;2693:1:::1;2665:31;::::0;::::1;1388:51:10::0;1361:18;;2665:31:7::1;1215:230:10::0;2616:91:7::1;2716:28;2735:8;2716:18;:28::i;:::-;2536:215:::0;:::o;8962:128:1:-;9046:37;9055:5;9062:7;9071:5;9078:4;9046:8;:37::i;:::-;8962:128;;;:::o;1789:162:7:-;1703:6;;-1:-1:-1;;;;;1703:6:7;735:10:0;1848:23:7;1844:101;;1894:40;;-1:-1:-1;;;1894:40:7;;735:10:0;1894:40:7;;;1388:51:10;1361:18;;1894:40:7;1215:230:10;10636:477:1;-1:-1:-1;;;;;3917:18:1;;;10735:24;3917:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10801:37:1;;10797:310;;10877:5;10858:16;:24;10854:130;;;10909:60;;-1:-1:-1;;;10909:60:1;;-1:-1:-1;;;;;11679:32:10;;10909:60:1;;;11661:51:10;11728:18;;;11721:34;;;11771:18;;;11764:34;;;11634:18;;10909:60:1;11459:345:10;10854:130:1;11025:57;11034:5;11041:7;11069:5;11050:16;:24;11076:5;11025:8;:57::i;:::-;10725:388;10636:477;;;:::o;4699:1577:8:-;4805:1;4796:6;:10;4788:61;;;;-1:-1:-1;;;4788:61:8;;12011:2:10;4788:61:8;;;11993:21:10;12050:2;12030:18;;;12023:30;12089:34;12069:18;;;12062:62;-1:-1:-1;;;12140:18:10;;;12133:36;12186:19;;4788:61:8;11809:402:10;4788:61:8;-1:-1:-1;;;;;4863:26:8;;;;;;:20;:26;;;;;;;;4862:27;;:56;;-1:-1:-1;;;;;;4894:24:8;;;;;;:20;:24;;;;;;;;4893:25;4862:56;4859:124;;;4942:11;;;;;;;4934:38;;;;-1:-1:-1;;;4934:38:8;;12418:2:10;4934:38:8;;;12400:21:10;12457:2;12437:18;;;12430:30;-1:-1:-1;;;12476:18:10;;;12469:44;12530:18;;4934:38:8;12216:338:10;4934:38:8;5072:13;;4993:17;;-1:-1:-1;;;;;5064:21:8;;;5072:13;;5064:21;:55;;;;-1:-1:-1;5103:15:8;;-1:-1:-1;;;;;5089:30:8;;;5103:15;;5089:30;;5064:55;:84;;;;-1:-1:-1;;;;;;5124:24:8;;;;;;:20;:24;;;;;;;;5123:25;5064:84;5060:209;;;5215:3;5199:13;;5183;3187:12:1;;;3109:97;5183:13:8;:29;;;;:::i;:::-;:35;;;;:::i;:::-;5173:6;:45;;5165:93;;;;-1:-1:-1;;;5165:93:8;;12761:2:10;5165:93:8;;;12743:21:10;12800:2;12780:18;;;12773:30;12839:34;12819:18;;;12812:62;-1:-1:-1;;;12890:18:10;;;12883:33;12933:19;;5165:93:8;12559:399:10;5165:93:8;-1:-1:-1;;;;;5284:26:8;;;;;;:20;:26;;;;;;;;5283:27;;:56;;-1:-1:-1;;;;;;5315:24:8;;;;;;:20;:24;;;;;;;;5314:25;5283:56;5282:83;;;;-1:-1:-1;;;;;;5344:21:8;;5360:4;5344:21;;5282:83;5279:379;;;5457:13;;-1:-1:-1;;;;;5449:21:8;;;5457:13;;5449:21;;:44;;-1:-1:-1;5480:13:8;;-1:-1:-1;;;;;5474:19:8;;;5480:13;;5474:19;5449:44;5448:64;;;;;5511:1;5498:10;;:14;5448:64;5445:203;;;5565:3;5552:10;;5543:6;:19;;;;:::i;:::-;:25;;;;:::i;:::-;5531:37;;5586:47;5602:4;5616;5623:9;5586:15;:47::i;:::-;5673:16;;;;5672:17;:40;;;;-1:-1:-1;5699:13:8;;-1:-1:-1;;;;;5693:19:8;;;5699:13;;5693:19;5672:40;:71;;;;-1:-1:-1;;;;;;5717:26:8;;;;;;:20;:26;;;;;;;;5716:27;5672:71;5668:546;;;5795:4;5759:15;3355:18:1;;;;;;;;;;;5829:19:8;;5818:30;;5815:389;;5868:21;5937:1;5915:19;;:23;;;;:::i;:::-;5892:19;;:47;;;;:::i;:::-;5868:71;;6008:13;5997:7;:24;5994:196;;6044:29;6059:13;6044:14;:29::i;:::-;5994:196;;;6136:35;6151:19;;6136:14;:35::i;:::-;5850:354;5815:389;5745:469;5668:546;6224:45;6240:4;6246:2;6251:16;6258:9;6251:6;:16;:::i;:::-;6224:15;:45::i;2905:187:7:-;2997:6;;;-1:-1:-1;;;;;3013:17:7;;;-1:-1:-1;;;;;;3013:17:7;;;;;;;3045:40;;2997:6;;;3013:17;2997:6;;3045:40;;2978:16;;3045:40;2968:124;2905:187;:::o;9922:432:1:-;-1:-1:-1;;;;;10034:19:1;;10030:89;;10076:32;;-1:-1:-1;;;10076:32:1;;10105:1;10076:32;;;1388:51:10;1361:18;;10076:32:1;1215:230:10;10030:89:1;-1:-1:-1;;;;;10132:21:1;;10128:90;;10176:31;;-1:-1:-1;;;10176:31:1;;10204:1;10176:31;;;1388:51:10;1361:18;;10176:31:1;1215:230:10;10128:90:1;-1:-1:-1;;;;;10227:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10272:76;;;;10322:7;-1:-1:-1;;;;;10306:31:1;10315:5;-1:-1:-1;;;;;10306:31:1;;10331:5;10306:31;;;;1596:25:10;;1584:2;1569:18;;1450:177;10306:31:1;;;;;;;;9922:432;;;;:::o;5621:308::-;-1:-1:-1;;;;;5712:18:1;;5708:86;;5753:30;;-1:-1:-1;;;5753:30:1;;5780:1;5753:30;;;1388:51:10;1361:18;;5753:30:1;1215:230:10;5708:86:1;-1:-1:-1;;;;;5807:16:1;;5803:86;;5846:32;;-1:-1:-1;;;5846:32:1;;5875:1;5846:32;;;1388:51:10;1361:18;;5846:32:1;1215:230:10;5803:86:1;5898:24;5906:4;5912:2;5916:5;5898:7;:24::i;2677:965:8:-;1390:16;;;;1389:17;1381:59;;;;-1:-1:-1;;;1381:59:8;;13298:2:10;1381:59:8;;;13280:21:10;13337:2;13317:18;;;13310:30;13376:31;13356:18;;;13349:59;13425:18;;1381:59:8;13096:353:10;1381:59:8;1450:16;:23;;-1:-1:-1;;1450:23:8;1469:4;1450:23;;;2833:10:::1;::::0;2782:21:::1;::::0;1450:16;;2833::::1;::::0;2846:3:::1;::::0;2833:16:::1;:::i;:::-;2814:35;;2860:14;2904:8;2895:6;;2877:15;:24;;;;:::i;:::-;:35;;;;:::i;:::-;2860:52;;2922:20;2978:8;2963:12;;2945:15;:30;;;;:::i;:::-;:41;;;;:::i;:::-;2922:64:::0;-1:-1:-1;3005:26:8::1;3034:16;3049:1;2922:64:::0;3034:16:::1;:::i;:::-;3005:45:::0;-1:-1:-1;3060:22:8::1;3085:33;3005:45:::0;3085:12;:33:::1;:::i;:::-;3060:58:::0;-1:-1:-1;3129:14:8::1;3146:25;3153:18:::0;3146:6;:25:::1;:::i;:::-;3129:42;;3182:24;3199:6;3182:16;:24::i;:::-;3225:22;3250:38;3274:14:::0;3250:21:::1;:38;:::i;:::-;3225:63:::0;-1:-1:-1;3299:23:8::1;3351:15:::0;3325:23:::1;3342:6:::0;3225:63;3325:23:::1;:::i;:::-;:41;;;;:::i;:::-;3299:67:::0;-1:-1:-1;3376:23:8::1;3402:32;3299:67:::0;3402:14;:32:::1;:::i;:::-;3376:58;;3445:45;3458:14;3474:15;3445:12;:45::i;:::-;3509:9;::::0;3501:44:::1;::::0;-1:-1:-1;;;;;3509:9:8;;::::1;::::0;3501:44;::::1;;;::::0;3529:15;;3509:9:::1;3501:44:::0;3509:9;3501:44;3529:15;3509:9;3501:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;3561:74:8::1;::::0;;13685:25:10;;;13741:2;13726:18;;13719:34;;;13769:18;;;13762:34;;;13827:2;13812:18;;13805:34;;;3561:74:8::1;::::0;13672:3:10;13657:19;3561:74:8::1;;;;;;;-1:-1:-1::0;;1494:16:8;:24;;-1:-1:-1;;1494:24:8;;;-1:-1:-1;;;;;;;;;2677:965:8:o;6244:1107:1:-;-1:-1:-1;;;;;6333:18:1;;6329:540;;6485:5;6469:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6329:540:1;;-1:-1:-1;6329:540:1;;-1:-1:-1;;;;;6543:15:1;;6521:19;6543:15;;;;;;;;;;;6576:19;;;6572:115;;;6622:50;;-1:-1:-1;;;6622:50:1;;-1:-1:-1;;;;;11679:32:10;;6622:50:1;;;11661:51:10;11728:18;;;11721:34;;;11771:18;;;11764:34;;;11634:18;;6622:50:1;11459:345:10;6572:115:1;-1:-1:-1;;;;;6807:15:1;;:9;:15;;;;;;;;;;6825:19;;;;6807:37;;6329:540;-1:-1:-1;;;;;6883:16:1;;6879:425;;7046:12;:21;;;;;;;6879:425;;;-1:-1:-1;;;;;7257:13:1;;:9;:13;;;;;;;;;;:22;;;;;;6879:425;7334:2;-1:-1:-1;;;;;7319:25:1;7328:4;-1:-1:-1;;;;;7319:25:1;;7338:5;7319:25;;;;1596::10;;1584:2;1569:18;;1450:177;7319:25:1;;;;;;;;6244:1107;;;:::o;4154:461:8:-;4243:16;;;4257:1;4243:16;;;;;;;;4219:21;;4243:16;;;;;;;;;;-1:-1:-1;4243:16:8;4219:40;;4287:4;4269;4274:1;4269:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4269:23:8;;;:7;;;;;;;;;;:23;;;;4312:15;;:22;;;-1:-1:-1;;;4312:22:8;;;;:15;;;;;:20;;:22;;;;;4269:7;;4312:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4302:4;4307:1;4302:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4302:32:8;;;:7;;;;;;;;;:32;4377:15;;4345:62;;4362:4;;4377:15;4395:11;4345:8;:62::i;:::-;4418:15;;:190;;-1:-1:-1;;;4418:190:8;;-1:-1:-1;;;;;4418:15:8;;;;:66;;:190;;4498:11;;4418:15;;4538:4;;4564;;4583:15;;4418:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4209:406;4154:461;:::o;3648:500::-;3826:15;;3794:62;;3811:4;;-1:-1:-1;;;;;3826:15:8;3844:11;3794:8;:62::i;:::-;3896:15;;-1:-1:-1;;;;;3896:15:8;:31;3935:9;3967:4;3986:11;3896:15;;4095:7;1703:6:7;;-1:-1:-1;;;;;1703:6:7;;1631:85;4095:7:8;3896:245;;;;;;-1:-1:-1;;;;;;3896:245:8;;;-1:-1:-1;;;;;15582:15:10;;;3896:245:8;;;15564:34:10;15614:18;;;15607:34;;;;15657:18;;;15650:34;;;;15700:18;;;15693:34;15764:15;;;15743:19;;;15736:44;4116:15:8;15796:19:10;;;15789:35;15498:19;;3896:245:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;3648:500;;:::o;14:548:10:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:10;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:10:o;1632:118::-;1718:5;1711:13;1704:21;1697:5;1694:32;1684:60;;1740:1;1737;1730:12;1755:382;1820:6;1828;1881:2;1869:9;1860:7;1856:23;1852:32;1849:52;;;1897:1;1894;1887:12;1849:52;1936:9;1923:23;1955:31;1980:5;1955:31;:::i;:::-;2005:5;-1:-1:-1;2062:2:10;2047:18;;2034:32;2075:30;2034:32;2075:30;:::i;:::-;2124:7;2114:17;;;1755:382;;;;;:::o;2142:456::-;2219:6;2227;2235;2288:2;2276:9;2267:7;2263:23;2259:32;2256:52;;;2304:1;2301;2294:12;2256:52;2343:9;2330:23;2362:31;2387:5;2362:31;:::i;:::-;2412:5;-1:-1:-1;2469:2:10;2454:18;;2441:32;2482:33;2441:32;2482:33;:::i;:::-;2142:456;;2534:7;;-1:-1:-1;;;2588:2:10;2573:18;;;;2560:32;;2142:456::o;3000:367::-;3063:8;3073:6;3127:3;3120:4;3112:6;3108:17;3104:27;3094:55;;3145:1;3142;3135:12;3094:55;-1:-1:-1;3168:20:10;;3211:18;3200:30;;3197:50;;;3243:1;3240;3233:12;3197:50;3280:4;3272:6;3268:17;3256:29;;3340:3;3333:4;3323:6;3320:1;3316:14;3308:6;3304:27;3300:38;3297:47;3294:67;;;3357:1;3354;3347:12;3294:67;3000:367;;;;;:::o;3372:770::-;3491:6;3499;3507;3515;3568:2;3556:9;3547:7;3543:23;3539:32;3536:52;;;3584:1;3581;3574:12;3536:52;3624:9;3611:23;3653:18;3694:2;3686:6;3683:14;3680:34;;;3710:1;3707;3700:12;3680:34;3749:70;3811:7;3802:6;3791:9;3787:22;3749:70;:::i;:::-;3838:8;;-1:-1:-1;3723:96:10;-1:-1:-1;3926:2:10;3911:18;;3898:32;;-1:-1:-1;3942:16:10;;;3939:36;;;3971:1;3968;3961:12;3939:36;;4010:72;4074:7;4063:8;4052:9;4048:24;4010:72;:::i;:::-;3372:770;;;;-1:-1:-1;4101:8:10;-1:-1:-1;;;;3372:770:10:o;4147:248::-;4215:6;4223;4276:2;4264:9;4255:7;4251:23;4247:32;4244:52;;;4292:1;4289;4282:12;4244:52;-1:-1:-1;;4315:23:10;;;4385:2;4370:18;;;4357:32;;-1:-1:-1;4147:248:10:o;4400:255::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4575:9;4562:23;4594:31;4619:5;4594:31;:::i;:::-;4644:5;4400:255;-1:-1:-1;;;4400:255:10:o;4660:180::-;4719:6;4772:2;4760:9;4751:7;4747:23;4743:32;4740:52;;;4788:1;4785;4778:12;4740:52;-1:-1:-1;4811:23:10;;4660:180;-1:-1:-1;4660:180:10:o;5097:388::-;5165:6;5173;5226:2;5214:9;5205:7;5201:23;5197:32;5194:52;;;5242:1;5239;5232:12;5194:52;5281:9;5268:23;5300:31;5325:5;5300:31;:::i;:::-;5350:5;-1:-1:-1;5407:2:10;5392:18;;5379:32;5420:33;5379:32;5420:33;:::i;5490:380::-;5569:1;5565:12;;;;5612;;;5633:61;;5687:4;5679:6;5675:17;5665:27;;5633:61;5740:2;5732:6;5729:14;5709:18;5706:38;5703:161;;5786:10;5781:3;5777:20;5774:1;5767:31;5821:4;5818:1;5811:15;5849:4;5846:1;5839:15;5703:161;;5490:380;;;:::o;6224:127::-;6285:10;6280:3;6276:20;6273:1;6266:31;6316:4;6313:1;6306:15;6340:4;6337:1;6330:15;6356:241;6412:6;6465:2;6453:9;6444:7;6440:23;6436:32;6433:52;;;6481:1;6478;6471:12;6433:52;6520:9;6507:23;6539:28;6561:5;6539:28;:::i;6602:127::-;6663:10;6658:3;6654:20;6651:1;6644:31;6694:4;6691:1;6684:15;6718:4;6715:1;6708:15;6734:135;6773:3;6794:17;;;6791:43;;6814:18;;:::i;:::-;-1:-1:-1;6861:1:10;6850:13;;6734:135::o;6874:1306::-;7156:2;7168:21;;;7141:18;;7224:22;;;7108:4;7303:6;7277:2;7262:18;;7108:4;7337:304;7351:6;7348:1;7345:13;7337:304;;;7426:6;7413:20;7446:31;7471:5;7446:31;:::i;:::-;-1:-1:-1;;;;;7502:31:10;7490:44;;7557:4;7616:15;;;;7581:12;;;;7530:1;7366:9;7337:304;;;-1:-1:-1;7700:19:10;;;7660:4;7680:18;;;7673:47;;;;7754:19;;;7660:4;-1:-1:-1;7828:6:10;;7791:12;;7854:1;7864:288;7880:6;7875:3;7872:15;7864:288;;;7961:8;7948:22;7983:30;8005:7;7983:30;:::i;:::-;8047:15;8040:23;8026:38;;8125:17;;;;8086:14;;;;7906:1;7897:11;7864:288;;;-1:-1:-1;8169:5:10;6874:1306;-1:-1:-1;;;;;;;;6874:1306:10:o;8185:125::-;8250:9;;;8271:10;;;8268:36;;;8284:18;;:::i;8315:217::-;8355:1;8381;8371:132;;8425:10;8420:3;8416:20;8413:1;8406:31;8460:4;8457:1;8450:15;8488:4;8485:1;8478:15;8371:132;-1:-1:-1;8517:9:10;;8315:217::o;8889:168::-;8962:9;;;8993;;9010:15;;;9004:22;;8990:37;8980:71;;9031:18;;:::i;10383:184::-;10453:6;10506:2;10494:9;10485:7;10481:23;10477:32;10474:52;;;10522:1;10519;10512:12;10474:52;-1:-1:-1;10545:16:10;;10383:184;-1:-1:-1;10383:184:10:o;11209:245::-;11276:6;11329:2;11317:9;11308:7;11304:23;11300:32;11297:52;;;11345:1;11342;11335:12;11297:52;11377:9;11371:16;11396:28;11418:5;11396:28;:::i;12963:128::-;13030:9;;;13051:11;;;13048:37;;;13065:18;;:::i;13982:251::-;14052:6;14105:2;14093:9;14084:7;14080:23;14076:32;14073:52;;;14121:1;14118;14111:12;14073:52;14153:9;14147:16;14172:31;14197:5;14172:31;:::i;14238:980::-;14500:4;14548:3;14537:9;14533:19;14579:6;14568:9;14561:25;14605:2;14643:6;14638:2;14627:9;14623:18;14616:34;14686:3;14681:2;14670:9;14666:18;14659:31;14710:6;14745;14739:13;14776:6;14768;14761:22;14814:3;14803:9;14799:19;14792:26;;14853:2;14845:6;14841:15;14827:29;;14874:1;14884:195;14898:6;14895:1;14892:13;14884:195;;;14963:13;;-1:-1:-1;;;;;14959:39:10;14947:52;;15054:15;;;;15019:12;;;;14995:1;14913:9;14884:195;;;-1:-1:-1;;;;;;;15135:32:10;;;;15130:2;15115:18;;15108:60;-1:-1:-1;;;15199:3:10;15184:19;15177:35;15096:3;14238:980;-1:-1:-1;;;14238:980:10:o;15835:306::-;15923:6;15931;15939;15992:2;15980:9;15971:7;15967:23;15963:32;15960:52;;;16008:1;16005;15998:12;15960:52;16037:9;16031:16;16021:26;;16087:2;16076:9;16072:18;16066:25;16056:35;;16131:2;16120:9;16116:18;16110:25;16100:35;;15835:306;;;;;:::o

Swarm Source

ipfs://95887ff4b5f1c5774b3c4c0c429ab5fb0a57d8d63104de02944308ab257f37d6
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.