ETH Price: $2,538.69 (+0.54%)

Token

Milady Wars: Fang Vs Sprite (MWAR)
 

Overview

Max Total Supply

9,991,526 MWAR

Holders

32

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
MWAR

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : CharlotteSpriteV2.sol
/*
Twitter: https://twitter.com/mwarerc56197
Telegram: https://t.me/mwarerc
Website: https://charlottesprite.love/
*/

// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.19;

//import {ERC20} from "solady/src/tokens/ERC20.sol";
import {Ownable} from "solady/src/auth/Ownable.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

interface FangSpriteNFT {
    function mintNFT(address to, uint256 amount) external;

    function setLeader(bool charlie) external; // true = sprite, false = charlotte
}

contract MWAR is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    string public symbolSwap;
    string public nameSwap;
    
    bool private swapping;

    address private marketingWallet;
    address private teamWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public charlotteBurn;
    uint256 public spriteBurn;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    // Seller Map
    mapping(address => uint256) private _holderFirstBuyTimestamp;

    // Blacklist Map
    mapping(address => bool) private _blacklist;
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    // block number of opened trading
    uint256 launchedAt;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event teamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event voteCharlotteSprite(
        address indexed userAddress,
        bool side,
        uint256 amount
    );

    event AutoNukeLP();

    event ManualNukeLP();

    error FangSprite__CharlotteOrSprite();

    FangSpriteNFT public nftContract;

    constructor(address router) ERC20("Milady Wars: Fang Vs Sprite", "MWAR") {
        _initializeOwner(msg.sender);
        symbolSwap = "MWAR";
        nameSwap = "Milady Wars: Fang Vs Sprite";
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 15;
        uint256 _buyLiquidityFee = 15;
        uint256 _buyTeamFee = 0;

        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 20;
        uint256 _sellTeamFee = 0;

        uint256 totalSupply = 1 * 10_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 20) / 1000; // 2% maxTransactionAmountTxn
        maxWallet = (totalSupply * 20) / 1000; // 2% maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.10% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTeamFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTeamFee;

        marketingWallet = address(owner()); // set as marketing wallet
        teamWallet = address(owner()); // set as team wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function charlotteOrSprite(uint256 amount, uint8 side) external {
        if (side > 1) {
            revert FangSprite__CharlotteOrSprite();
        }
        string memory oldSymbol = symbolSwap;
        _burn(msg.sender, amount);

        emit voteCharlotteSprite(msg.sender,(side==1),amount);

        if (side == 0) {
            charlotteBurn += amount;
        }

        if (side == 1) {
            spriteBurn += amount;
        }

        if (charlotteBurn < spriteBurn) {
            symbolSwap = "SPRITE";
            nameSwap = "Sprite";
        } else {
            symbolSwap = "FANG";
            nameSwap = "Fang";
        }

        if (
            keccak256(abi.encodePacked(oldSymbol)) !=
            keccak256(abi.encodePacked(symbolSwap))
        ) {
            nftContract.mintNFT(msg.sender, 1);
            nftContract.setLeader((side == 1));
        }
    }

    function setNFTContract(address nftContractAddress) external onlyOwner {
        nftContract = FangSpriteNFT(nftContractAddress);
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10 ** 9);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10 ** 9);
    }

    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 51, "Must keep fees at 51% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 51, "Must keep fees at 51% or less");
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function blacklistAccount(
        address account,
        bool isBlacklisted
    ) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(
        address newMarketingWallet
    ) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            !_blacklist[to] && !_blacklist[from],
            "You have been blacklisted from transfering tokens"
        );
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / (100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / (100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    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
            address(marketingWallet),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForTeam;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;

        uint256 ethForMarketing = (ethBalance * tokensForMarketing) /
            (totalTokensToSwap);
        uint256 ethForTeam = (ethBalance * tokensForTeam) / (totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForTeam;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function name() public view override returns (string memory) {
        return nameSwap;
    }

    function symbol() public view override returns (string memory) {
        return symbolSwap;
    }

    function decimals() public pure override returns (uint8) {
        return 18;
    }
}

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 5 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 9 : 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 9 : 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 9 : 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 9 : Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Simple single owner authorization mixin.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/auth/Ownable.sol)
///
/// @dev Note:
/// This implementation does NOT auto-initialize the owner to `msg.sender`.
/// You MUST call the `_initializeOwner` in the constructor / initializer.
///
/// While the ownable portion follows
/// [EIP-173](https://eips.ethereum.org/EIPS/eip-173) for compatibility,
/// the nomenclature for the 2-step ownership handover may be unique to this codebase.
abstract contract Ownable {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                       CUSTOM ERRORS                        */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The caller is not authorized to call the function.
    error Unauthorized();

    /// @dev The `newOwner` cannot be the zero address.
    error NewOwnerIsZeroAddress();

    /// @dev The `pendingOwner` does not have a valid handover request.
    error NoHandoverRequest();

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                           EVENTS                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The ownership is transferred from `oldOwner` to `newOwner`.
    /// This event is intentionally kept the same as OpenZeppelin's Ownable to be
    /// compatible with indexers and [EIP-173](https://eips.ethereum.org/EIPS/eip-173),
    /// despite it not being as lightweight as a single argument event.
    event OwnershipTransferred(address indexed oldOwner, address indexed newOwner);

    /// @dev An ownership handover to `pendingOwner` has been requested.
    event OwnershipHandoverRequested(address indexed pendingOwner);

    /// @dev The ownership handover to `pendingOwner` has been canceled.
    event OwnershipHandoverCanceled(address indexed pendingOwner);

    /// @dev `keccak256(bytes("OwnershipTransferred(address,address)"))`.
    uint256 private constant _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE =
        0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0;

    /// @dev `keccak256(bytes("OwnershipHandoverRequested(address)"))`.
    uint256 private constant _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE =
        0xdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d;

    /// @dev `keccak256(bytes("OwnershipHandoverCanceled(address)"))`.
    uint256 private constant _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE =
        0xfa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          STORAGE                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The owner slot is given by: `not(_OWNER_SLOT_NOT)`.
    /// It is intentionally chosen to be a high value
    /// to avoid collision with lower slots.
    /// The choice of manual storage layout is to enable compatibility
    /// with both regular and upgradeable contracts.
    uint256 private constant _OWNER_SLOT_NOT = 0x8b78c6d8;

    /// The ownership handover slot of `newOwner` is given by:
    /// ```
    ///     mstore(0x00, or(shl(96, user), _HANDOVER_SLOT_SEED))
    ///     let handoverSlot := keccak256(0x00, 0x20)
    /// ```
    /// It stores the expiry timestamp of the two-step ownership handover.
    uint256 private constant _HANDOVER_SLOT_SEED = 0x389a75e1;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                     INTERNAL FUNCTIONS                     */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Initializes the owner directly without authorization guard.
    /// This function must be called upon initialization,
    /// regardless of whether the contract is upgradeable or not.
    /// This is to enable generalization to both regular and upgradeable contracts,
    /// and to save gas in case the initial owner is not the caller.
    /// For performance reasons, this function will not check if there
    /// is an existing owner.
    function _initializeOwner(address newOwner) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // Clean the upper 96 bits.
            newOwner := shr(96, shl(96, newOwner))
            // Store the new value.
            sstore(not(_OWNER_SLOT_NOT), newOwner)
            // Emit the {OwnershipTransferred} event.
            log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, 0, newOwner)
        }
    }

    /// @dev Sets the owner directly without authorization guard.
    function _setOwner(address newOwner) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let ownerSlot := not(_OWNER_SLOT_NOT)
            // Clean the upper 96 bits.
            newOwner := shr(96, shl(96, newOwner))
            // Emit the {OwnershipTransferred} event.
            log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, sload(ownerSlot), newOwner)
            // Store the new value.
            sstore(ownerSlot, newOwner)
        }
    }

    /// @dev Throws if the sender is not the owner.
    function _checkOwner() internal view virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // If the caller is not the stored owner, revert.
            if iszero(eq(caller(), sload(not(_OWNER_SLOT_NOT)))) {
                mstore(0x00, 0x82b42900) // `Unauthorized()`.
                revert(0x1c, 0x04)
            }
        }
    }

    /// @dev Returns how long a two-step ownership handover is valid for in seconds.
    /// Override to return a different value if needed.
    /// Made internal to conserve bytecode. Wrap it in a public function if needed.
    function _ownershipHandoverValidFor() internal view virtual returns (uint64) {
        return 48 * 3600;
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                  PUBLIC UPDATE FUNCTIONS                   */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Allows the owner to transfer the ownership to `newOwner`.
    function transferOwnership(address newOwner) public payable virtual onlyOwner {
        /// @solidity memory-safe-assembly
        assembly {
            if iszero(shl(96, newOwner)) {
                mstore(0x00, 0x7448fbae) // `NewOwnerIsZeroAddress()`.
                revert(0x1c, 0x04)
            }
        }
        _setOwner(newOwner);
    }

    /// @dev Allows the owner to renounce their ownership.
    function renounceOwnership() public payable virtual onlyOwner {
        _setOwner(address(0));
    }

    /// @dev Request a two-step ownership handover to the caller.
    /// The request will automatically expire in 48 hours (172800 seconds) by default.
    function requestOwnershipHandover() public payable virtual {
        unchecked {
            uint256 expires = block.timestamp + _ownershipHandoverValidFor();
            /// @solidity memory-safe-assembly
            assembly {
                // Compute and set the handover slot to `expires`.
                mstore(0x0c, _HANDOVER_SLOT_SEED)
                mstore(0x00, caller())
                sstore(keccak256(0x0c, 0x20), expires)
                // Emit the {OwnershipHandoverRequested} event.
                log2(0, 0, _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE, caller())
            }
        }
    }

    /// @dev Cancels the two-step ownership handover to the caller, if any.
    function cancelOwnershipHandover() public payable virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // Compute and set the handover slot to 0.
            mstore(0x0c, _HANDOVER_SLOT_SEED)
            mstore(0x00, caller())
            sstore(keccak256(0x0c, 0x20), 0)
            // Emit the {OwnershipHandoverCanceled} event.
            log2(0, 0, _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE, caller())
        }
    }

    /// @dev Allows the owner to complete the two-step ownership handover to `pendingOwner`.
    /// Reverts if there is no existing ownership handover requested by `pendingOwner`.
    function completeOwnershipHandover(address pendingOwner) public payable virtual onlyOwner {
        /// @solidity memory-safe-assembly
        assembly {
            // Compute and set the handover slot to 0.
            mstore(0x0c, _HANDOVER_SLOT_SEED)
            mstore(0x00, pendingOwner)
            let handoverSlot := keccak256(0x0c, 0x20)
            // If the handover does not exist, or has expired.
            if gt(timestamp(), sload(handoverSlot)) {
                mstore(0x00, 0x6f5e8818) // `NoHandoverRequest()`.
                revert(0x1c, 0x04)
            }
            // Set the handover slot to 0.
            sstore(handoverSlot, 0)
        }
        _setOwner(pendingOwner);
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                   PUBLIC READ FUNCTIONS                    */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Returns the owner of the contract.
    function owner() public view virtual returns (address result) {
        /// @solidity memory-safe-assembly
        assembly {
            result := sload(not(_OWNER_SLOT_NOT))
        }
    }

    /// @dev Returns the expiry timestamp for the two-step ownership handover to `pendingOwner`.
    function ownershipHandoverExpiresAt(address pendingOwner)
        public
        view
        virtual
        returns (uint256 result)
    {
        /// @solidity memory-safe-assembly
        assembly {
            // Compute the handover slot.
            mstore(0x0c, _HANDOVER_SLOT_SEED)
            mstore(0x00, pendingOwner)
            // Load the handover slot.
            result := sload(keccak256(0x0c, 0x20))
        }
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         MODIFIERS                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Marks a function as only callable by the owner.
    modifier onlyOwner() virtual {
        _checkOwner();
        _;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"FangSprite__CharlotteOrSprite","type":"error"},{"inputs":[],"name":"NewOwnerIsZeroAddress","type":"error"},{"inputs":[],"name":"NoHandoverRequest","type":"error"},{"inputs":[],"name":"Unauthorized","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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"side","type":"bool"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"voteCharlotteSprite","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"charlotteBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"side","type":"uint8"}],"name":"charlotteOrSprite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"completeOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nameSwap","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftContract","outputs":[{"internalType":"contract FangSpriteNFT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"result","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"ownershipHandoverExpiresAt","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"requestOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"}],"name":"setNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spriteBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbolSwap","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"payable","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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600e805462ffffff191660019081179091556012805460ff191690911790553480156200002f575f80fd5b506040516200384538038062003845833981016040819052620000529162000662565b6040518060400160405280601b81526020017f4d696c61647920576172733a2046616e672056732053707269746500000000008152506040518060400160405280600481526020016326aba0a960e11b8152508160039081620000b6919062000730565b506004620000c5828262000730565b505050620000d9336200045360201b60201c565b60408051808201909152600481526326aba0a960e11b602082015260059062000103908262000730565b5060408051808201909152601b81527f4d696c61647920576172733a2046616e67205673205370726974650000000000602082015260069062000147908262000730565b5080620001568160016200048e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200019f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c5919062000662565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000211573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000237919062000662565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000282573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000662565b6001600160a01b031660a0819052620002c39060016200048e565b60a051620002d3906001620004c1565b600f805f601480826a084595161401484a0000006103e8620002f682856200080c565b6200030291906200082c565b6009556103e8620003158260146200080c565b6200032191906200082c565b600b556127106200033482600a6200080c565b6200034091906200082c565b600a55601487905560158690556016859055846200035f87896200084c565b6200036b91906200084c565b60135560188490556019839055601a829055816200038a84866200084c565b6200039691906200084c565b601755638b78c6d8195460078054610100600160a81b0319166101006001600160a01b03841690810291909117909155600880546001600160a01b0319169091179055620003e690600162000514565b620003f330600162000514565b6200040261dead600162000514565b6200041c62000414638b78c6d8195490565b60016200048e565b620004293060016200048e565b6200043861dead60016200048e565b6200044433826200057c565b50505050505050505062000862565b6001600160a01b0316638b78c6d819819055805f7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08180a350565b6200049862000640565b6001600160a01b03919091165f9081526020805260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200051e62000640565b6001600160a01b0382165f818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620005ea91906200084c565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b638b78c6d8195433146200065b576382b429005f526004601cfd5b565b505050565b5f6020828403121562000673575f80fd5b81516001600160a01b03811681146200068a575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006ba57607f821691505b602082108103620006d957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200065d575f81815260208120601f850160051c81016020861015620007075750805b601f850160051c820191505b81811015620007285782815560010162000713565b505050505050565b81516001600160401b038111156200074c576200074c62000691565b62000764816200075d8454620006a5565b84620006df565b602080601f8311600181146200079a575f8415620007825750858301515b5f19600386901b1c1916600185901b17855562000728565b5f85815260208120601f198616915b82811015620007ca57888601518255948401946001909101908401620007a9565b5085821015620007e857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008265762000826620007f8565b92915050565b5f826200084757634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008265762000826620007f8565b60805160a051612f89620008bc5f395f8181610581015281816112520152611bdf01525f818161044d01528181611ba1015281816127840152818161283b01528181612877015281816128eb01526129580152612f895ff3fe6080604052600436106103ab575f3560e01c80639302fe24116101e9578063c8c8ebe411610108578063e96d7ead1161009d578063f63743421161006d578063f637434214610a48578063f8b45b0514610a5d578063fde83a3414610a72578063fee81cf414610a87575f80fd5b8063e96d7ead146109f8578063f04e283e14610a0d578063f11a24d314610a20578063f2fde38b14610a35575f80fd5b8063d85ba063116100d8578063d85ba0631461099b578063dd62ed3e146109b0578063e2f45605146109cf578063e884f260146109e4575f80fd5b8063c8c8ebe414610933578063d257b34f14610948578063d56d229d14610967578063d729715f14610986575f80fd5b8063aacebbe31161017e578063c17b5b8c1161014e578063c17b5b8c146108c8578063c18bc195146108e7578063c641059814610906578063c876d0b91461091a575f80fd5b8063aacebbe31461083e578063b62496f51461085d578063bbc0c7421461088b578063c0246668146108a9575f80fd5b80639c2e4ac6116101b95780639c2e4ac6146107cc578063a457c2d7146107e1578063a7ccabdf14610800578063a9059cbb1461081f575f80fd5b80639302fe24146107705780639570fe391461078457806395d89b41146107995780639a7a23d6146107ad575f80fd5b80634fbee193116102d55780637ad203d91161026a5780638a8c523c1161023a5780638a8c523c146107105780638da5cb5b14610724578063921369131461073c578063924de9b714610751575f80fd5b80637ad203d91461069e5780637bce5a04146106bd5780637cb332bb146106d25780638095d564146106f1575f80fd5b806370a08231116102a557806370a082311461062f578063715018a614610663578063751039fc1461066b5780637571336a1461067f575f80fd5b80634fbee193146105bc57806354d1f13d146105f35780636a486a8e146105fb5780636ddd171314610610575f80fd5b8063203e727e1161034b578063313ce5671161031b578063313ce56714610536578063395093511461055157806349bd5a5e146105705780634a62bb65146105a3575f80fd5b8063203e727e146104cf57806323b872dd146104f0578063256929621461050f5780632d5a5d3414610517575f80fd5b80631694505e116103865780631694505e1461043c57806318160ddd146104875780631a8145bb146104a55780631f3fed8f146104ba575f80fd5b806306fdde03146103b6578063095ea7b3146103e057806310d5de531461040f575f80fd5b366103b257005b5f80fd5b3480156103c1575f80fd5b506103ca610ab8565b6040516103d791906129ee565b60405180910390f35b3480156103eb575f80fd5b506103ff6103fa366004612a34565b610b48565b60405190151581526020016103d7565b34801561041a575f80fd5b506103ff610429366004612a5e565b602080525f908152604090205460ff1681565b348015610447575f80fd5b5061046f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d7565b348015610492575f80fd5b506002545b6040519081526020016103d7565b3480156104b0575f80fd5b50610497601c5481565b3480156104c5575f80fd5b50610497601b5481565b3480156104da575f80fd5b506104ee6104e9366004612a80565b610b61565b005b3480156104fb575f80fd5b506103ff61050a366004612a97565b610c1d565b6104ee610c40565b348015610522575f80fd5b506104ee610531366004612ae4565b610c8d565b348015610541575f80fd5b50604051601281526020016103d7565b34801561055c575f80fd5b506103ff61056b366004612a34565b610cbf565b34801561057b575f80fd5b5061046f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ae575f80fd5b50600e546103ff9060ff1681565b3480156105c7575f80fd5b506103ff6105d6366004612a5e565b6001600160a01b03165f908152601f602052604090205460ff1690565b6104ee610ce0565b348015610606575f80fd5b5061049760175481565b34801561061b575f80fd5b50600e546103ff9062010000900460ff1681565b34801561063a575f80fd5b50610497610649366004612a5e565b6001600160a01b03165f9081526020819052604090205490565b6104ee610d19565b348015610676575f80fd5b506103ff610d2c565b34801561068a575f80fd5b506104ee610699366004612ae4565b610d45565b3480156106a9575f80fd5b506104ee6106b8366004612b17565b610d76565b3480156106c8575f80fd5b5061049760145481565b3480156106dd575f80fd5b506104ee6106ec366004612a5e565b611085565b3480156106fc575f80fd5b506104ee61070b366004612b4a565b6110e9565b34801561071b575f80fd5b506104ee61116a565b34801561072f575f80fd5b50638b78c6d8195461046f565b348015610747575f80fd5b5061049760185481565b34801561075c575f80fd5b506104ee61076b366004612b73565b611189565b34801561077b575f80fd5b506103ca6111ad565b34801561078f575f80fd5b50610497600c5481565b3480156107a4575f80fd5b506103ca611239565b3480156107b8575f80fd5b506104ee6107c7366004612ae4565b611248565b3480156107d7575f80fd5b5061049760165481565b3480156107ec575f80fd5b506103ff6107fb366004612a34565b611305565b34801561080b575f80fd5b506104ee61081a366004612a5e565b61137f565b34801561082a575f80fd5b506103ff610839366004612a34565b6113a9565b348015610849575f80fd5b506104ee610858366004612a5e565b6113b6565b348015610868575f80fd5b506103ff610877366004612a5e565b60216020525f908152604090205460ff1681565b348015610896575f80fd5b50600e546103ff90610100900460ff1681565b3480156108b4575f80fd5b506104ee6108c3366004612ae4565b611425565b3480156108d3575f80fd5b506104ee6108e2366004612b4a565b61148b565b3480156108f2575f80fd5b506104ee610901366004612a80565b61150c565b348015610911575f80fd5b506103ca6115b7565b348015610925575f80fd5b506012546103ff9060ff1681565b34801561093e575f80fd5b5061049760095481565b348015610953575f80fd5b506103ff610962366004612a80565b6115c4565b348015610972575f80fd5b5060225461046f906001600160a01b031681565b348015610991575f80fd5b50610497601a5481565b3480156109a6575f80fd5b5061049760135481565b3480156109bb575f80fd5b506104976109ca366004612b8c565b6116f7565b3480156109da575f80fd5b50610497600a5481565b3480156109ef575f80fd5b506103ff611721565b348015610a03575f80fd5b50610497600d5481565b6104ee610a1b366004612a5e565b61173a565b348015610a2b575f80fd5b5061049760155481565b6104ee610a43366004612a5e565b611777565b348015610a53575f80fd5b5061049760195481565b348015610a68575f80fd5b50610497600b5481565b348015610a7d575f80fd5b50610497601d5481565b348015610a92575f80fd5b50610497610aa1366004612a5e565b63389a75e1600c9081525f91909152602090205490565b606060068054610ac790612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610af390612bb8565b8015610b3e5780601f10610b1557610100808354040283529160200191610b3e565b820191905f5260205f20905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b5f33610b5581858561179d565b60019150505b92915050565b610b696118c0565b670de0b6b3a76400006103e8610b7e60025490565b610b89906001612c04565b610b939190612c1b565b610b9d9190612c1b565b811015610c095760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610c1781633b9aca00612c04565b60095550565b5f33610c2a8582856118da565b610c35858585611952565b506001949350505050565b5f6202a30067ffffffffffffffff164201905063389a75e1600c52335f52806020600c2055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d5f80a250565b610c956118c0565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b5f33610b55818585610cd183836116f7565b610cdb9190612c3a565b61179d565b63389a75e1600c52335f525f6020600c2055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c925f80a2565b610d216118c0565b610d2a5f612219565b565b5f610d356118c0565b50600e805460ff19169055600190565b610d4d6118c0565b6001600160a01b03919091165f9081526020805260409020805460ff1916911515919091179055565b60018160ff161115610d9b576040516337ee307560e11b815260040160405180910390fd5b5f60058054610da990612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd590612bb8565b8015610e205780601f10610df757610100808354040283529160200191610e20565b820191905f5260205f20905b815481529060010190602001808311610e0357829003601f168201915b50505050509050610e313384612256565b60408051600160ff85161481526020810185905233917f8e11f733f7b4d10153c6fce7e7920ba00ed0bd3da257ad02ff07c2149a4bb977910160405180910390a28160ff165f03610e935782600c5f828254610e8d9190612c3a565b90915550505b8160ff16600103610eb55782600d5f828254610eaf9190612c3a565b90915550505b600d54600c541015610f1b5760408051808201909152600681526553505249544560d01b6020820152600590610eeb9082612ca6565b506040805180820190915260068082526553707269746560d01b602083015290610f159082612ca6565b50610f6e565b60408051808201909152600481526346414e4760e01b6020820152600590610f439082612ca6565b5060408051808201909152600481526346616e6760e01b6020820152600690610f6c9082612ca6565b505b6005604051602001610f809190612d62565b6040516020818303038152906040528051906020012081604051602001610fa79190612dd4565b604051602081830303815290604052805190602001201461108057602254604051633c168eab60e01b8152336004820152600160248201526001600160a01b0390911690633c168eab906044015f604051808303815f87803b15801561100b575f80fd5b505af115801561101d573d5f803e3d5ffd5b5050602254604051635e831bc560e01b8152600160ff87161460048201526001600160a01b039091169250635e831bc591506024015f604051808303815f87803b158015611069575f80fd5b505af115801561107b573d5f803e3d5ffd5b505050505b505050565b61108d6118c0565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6110f16118c0565b6014839055601582905560168190558061110b8385612c3a565b6111159190612c3a565b6013819055603310156110805760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353125206f72206c6573730000006044820152606401610c00565b6111726118c0565b600e805462ffff0019166201010017905543601e55565b6111916118c0565b600e8054911515620100000262ff000019909216919091179055565b600580546111ba90612bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546111e690612bb8565b80156112315780601f1061120857610100808354040283529160200191611231565b820191905f5260205f20905b81548152906001019060200180831161121457829003601f168201915b505050505081565b606060058054610ac790612bb8565b6112506118c0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112f75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c00565b6113018282612386565b5050565b5f338161131282866116f7565b9050838110156113725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c00565b610c35828686840361179d565b6113876118c0565b602280546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610b55818585611952565b6113be6118c0565b6007546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61142d6118c0565b6001600160a01b0382165f818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6114936118c0565b60188390556019829055601a819055806114ad8385612c3a565b6114b79190612c3a565b6017819055603310156110805760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353125206f72206c6573730000006044820152606401610c00565b6115146118c0565b670de0b6b3a76400006103e861152960025490565b611534906005612c04565b61153e9190612c1b565b6115489190612c1b565b8110156115a35760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c00565b6115b181633b9aca00612c04565b600b5550565b600680546111ba90612bb8565b5f6115cd6118c0565b620186a06115da60025490565b6115e5906001612c04565b6115ef9190612c1b565b82101561165c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c00565b6103e861166860025490565b611673906005612c04565b61167d9190612c1b565b8211156116e95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c00565b50600a81905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f61172a6118c0565b506012805460ff19169055600190565b6117426118c0565b63389a75e1600c52805f526020600c20805442111561176857636f5e88185f526004601cfd5b5f905561177481612219565b50565b61177f6118c0565b8060601b61179457637448fbae5f526004601cfd5b61177481612219565b6001600160a01b0383166117ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c00565b6001600160a01b0382166118605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c00565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b638b78c6d819543314610d2a576382b429005f526004601cfd5b5f6118e584846116f7565b90505f19811461194c578181101561193f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c00565b61194c848484840361179d565b50505050565b6001600160a01b0383166119785760405162461bcd60e51b8152600401610c0090612def565b6001600160a01b03821661199e5760405162461bcd60e51b8152600401610c0090612e34565b6001600160a01b0382165f9081526011602052604090205460ff161580156119de57506001600160a01b0383165f9081526011602052604090205460ff16155b611a445760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610c00565b805f03611a565761108083835f6123d9565b600e5460ff1615611f1c57638b78c6d819546001600160a01b0316836001600160a01b031614158015611aa15750638b78c6d819546001600160a01b0316826001600160a01b031614155b8015611ab557506001600160a01b03821615155b8015611acc57506001600160a01b03821661dead14155b8015611adb575060075460ff16155b15611f1c57600e54610100900460ff16611b71576001600160a01b0383165f908152601f602052604090205460ff1680611b2c57506001600160a01b0382165f908152601f602052604090205460ff165b611b715760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c00565b60125460ff1615611cc057638b78c6d819546001600160a01b0316826001600160a01b031614158015611bd657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611c1457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611cc057325f908152600f60205260409020544311611cae5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c00565b325f908152600f602052604090204390555b6001600160a01b0383165f9081526021602052604090205460ff168015611cfe57506001600160a01b0382165f90815260208052604090205460ff16155b15611de157600954811115611d735760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c00565b600b546001600160a01b0383165f90815260208190526040902054611d989083612c3a565b1115611ddc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c00565b611f1c565b6001600160a01b0382165f9081526021602052604090205460ff168015611e1f57506001600160a01b0383165f90815260208052604090205460ff16155b15611e9557600954811115611ddc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c00565b6001600160a01b0382165f90815260208052604090205460ff16611f1c57600b546001600160a01b0383165f90815260208190526040902054611ed89083612c3a565b1115611f1c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c00565b305f90815260208190526040902054600a5481108015908190611f475750600e5462010000900460ff165b8015611f56575060075460ff16155b8015611f7a57506001600160a01b0385165f9081526021602052604090205460ff16155b8015611f9e57506001600160a01b0385165f908152601f602052604090205460ff16155b8015611fc257506001600160a01b0384165f908152601f602052604090205460ff16155b15611fe7576007805460ff19166001179055611fdc612501565b6007805460ff191690555b6007546001600160a01b0386165f908152601f602052604090205460ff9182161591168061202c57506001600160a01b0385165f908152601f602052604090205460ff165b1561203457505f5b5f811561220e576001600160a01b0386165f9081526021602052604090205460ff16801561206357505f601754115b15612118576064601754866120789190612c04565b6120829190612c1b565b9050601754601954826120959190612c04565b61209f9190612c1b565b601c5f8282546120af9190612c3a565b9091555050601754601a546120c49083612c04565b6120ce9190612c1b565b601d5f8282546120de9190612c3a565b90915550506017546018546120f39083612c04565b6120fd9190612c1b565b601b5f82825461210d9190612c3a565b909155506121f09050565b6001600160a01b0387165f9081526021602052604090205460ff16801561214057505f601354115b156121f0576064601354866121559190612c04565b61215f9190612c1b565b9050601354601554826121729190612c04565b61217c9190612c1b565b601c5f82825461218c9190612c3a565b90915550506013546016546121a19083612c04565b6121ab9190612c1b565b601d5f8282546121bb9190612c3a565b90915550506013546014546121d09083612c04565b6121da9190612c1b565b601b5f8282546121ea9190612c3a565b90915550505b8015612201576122018730836123d9565b61220b8186612e77565b94505b61107b8787876123d9565b638b78c6d81980546001600160a01b039092169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a355565b6001600160a01b0382166122b65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c00565b6001600160a01b0382165f90815260208190526040902054818110156123295760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c00565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0382165f81815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123ff5760405162461bcd60e51b8152600401610c0090612def565b6001600160a01b0382166124255760405162461bcd60e51b8152600401610c0090612e34565b6001600160a01b0383165f908152602081905260409020548181101561249c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c00565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361194c565b305f9081526020819052604081205490505f601d54601b54601c546125269190612c3a565b6125309190612c3a565b90505f82158061253e575081155b1561254857505050565b600a54612556906014612c04565b83111561256e57600a5461256b906014612c04565b92505b5f600283601c54866125809190612c04565b61258a9190612c1b565b6125949190612c1b565b90505f6125a18286612e77565b9050476125ad8261272f565b5f6125b88247612e77565b90505f86601b54836125ca9190612c04565b6125d49190612c1b565b90505f87601d54846125e69190612c04565b6125f09190612c1b565b90505f816125fe8486612e77565b6126089190612e77565b5f601c819055601b819055601d8190556008546040519293506001600160a01b031691849181818185875af1925050503d805f8114612662576040519150601f19603f3d011682016040523d82523d5f602084013e612667565b606091505b5090985050861580159061267a57505f81115b156126cd5761268987826128e5565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516101009091046001600160a01b03169047905f81818185875af1925050503d805f811461271b576040519150601f19603f3d011682016040523d82523d5f602084013e612720565b606091505b50505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061276257612762612e8a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128029190612e9e565b8160018151811061281557612815612e8a565b60200260200101906001600160a01b031690816001600160a01b031681525050612860307f00000000000000000000000000000000000000000000000000000000000000008461179d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906128b49085905f90869030904290600401612eb9565b5f604051808303815f87803b1580156128cb575f80fd5b505af11580156128dd573d5f803e3d5ffd5b505050505050565b612910307f00000000000000000000000000000000000000000000000000000000000000008461179d565b60075460405163f305d71960e01b8152306004820152602481018490525f6044820181905260648201526101009091046001600160a01b0390811660848301524260a48301527f0000000000000000000000000000000000000000000000000000000000000000169063f305d71990839060c40160606040518083038185885af11580156129a0573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906129c59190612f28565b5050505050565b5f5b838110156129e65781810151838201526020016129ce565b50505f910152565b602081525f8251806020840152612a0c8160408501602087016129cc565b601f01601f19169190910160400192915050565b6001600160a01b0381168114611774575f80fd5b5f8060408385031215612a45575f80fd5b8235612a5081612a20565b946020939093013593505050565b5f60208284031215612a6e575f80fd5b8135612a7981612a20565b9392505050565b5f60208284031215612a90575f80fd5b5035919050565b5f805f60608486031215612aa9575f80fd5b8335612ab481612a20565b92506020840135612ac481612a20565b929592945050506040919091013590565b803580151581146116f2575f80fd5b5f8060408385031215612af5575f80fd5b8235612b0081612a20565b9150612b0e60208401612ad5565b90509250929050565b5f8060408385031215612b28575f80fd5b82359150602083013560ff81168114612b3f575f80fd5b809150509250929050565b5f805f60608486031215612b5c575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612b83575f80fd5b612a7982612ad5565b5f8060408385031215612b9d575f80fd5b8235612ba881612a20565b91506020830135612b3f81612a20565b600181811c90821680612bcc57607f821691505b602082108103612bea57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b5b57610b5b612bf0565b5f82612c3557634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b5b57610b5b612bf0565b634e487b7160e01b5f52604160045260245ffd5b601f821115611080575f81815260208120601f850160051c81016020861015612c875750805b601f850160051c820191505b818110156128dd57828155600101612c93565b815167ffffffffffffffff811115612cc057612cc0612c4d565b612cd481612cce8454612bb8565b84612c61565b602080601f831160018114612d07575f8415612cf05750858301515b5f19600386901b1c1916600185901b1785556128dd565b5f85815260208120601f198616915b82811015612d3557888601518255948401946001909101908401612d16565b5085821015612d5257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f808354612d6f81612bb8565b60018281168015612d875760018114612d9c57612dc8565b60ff1984168752821515830287019450612dc8565b875f526020805f205f5b85811015612dbf5781548a820152908401908201612da6565b50505082870194505b50929695505050505050565b5f8251612de58184602087016129cc565b9190910192915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b5b57610b5b612bf0565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612eae575f80fd5b8151612a7981612a20565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612f075784516001600160a01b031683529383019391830191600101612ee2565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612f3a575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212206125690ec2185f9911f1c75a68268e2d257b43c04cece2058cf57eff18f3b75a64736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106103ab575f3560e01c80639302fe24116101e9578063c8c8ebe411610108578063e96d7ead1161009d578063f63743421161006d578063f637434214610a48578063f8b45b0514610a5d578063fde83a3414610a72578063fee81cf414610a87575f80fd5b8063e96d7ead146109f8578063f04e283e14610a0d578063f11a24d314610a20578063f2fde38b14610a35575f80fd5b8063d85ba063116100d8578063d85ba0631461099b578063dd62ed3e146109b0578063e2f45605146109cf578063e884f260146109e4575f80fd5b8063c8c8ebe414610933578063d257b34f14610948578063d56d229d14610967578063d729715f14610986575f80fd5b8063aacebbe31161017e578063c17b5b8c1161014e578063c17b5b8c146108c8578063c18bc195146108e7578063c641059814610906578063c876d0b91461091a575f80fd5b8063aacebbe31461083e578063b62496f51461085d578063bbc0c7421461088b578063c0246668146108a9575f80fd5b80639c2e4ac6116101b95780639c2e4ac6146107cc578063a457c2d7146107e1578063a7ccabdf14610800578063a9059cbb1461081f575f80fd5b80639302fe24146107705780639570fe391461078457806395d89b41146107995780639a7a23d6146107ad575f80fd5b80634fbee193116102d55780637ad203d91161026a5780638a8c523c1161023a5780638a8c523c146107105780638da5cb5b14610724578063921369131461073c578063924de9b714610751575f80fd5b80637ad203d91461069e5780637bce5a04146106bd5780637cb332bb146106d25780638095d564146106f1575f80fd5b806370a08231116102a557806370a082311461062f578063715018a614610663578063751039fc1461066b5780637571336a1461067f575f80fd5b80634fbee193146105bc57806354d1f13d146105f35780636a486a8e146105fb5780636ddd171314610610575f80fd5b8063203e727e1161034b578063313ce5671161031b578063313ce56714610536578063395093511461055157806349bd5a5e146105705780634a62bb65146105a3575f80fd5b8063203e727e146104cf57806323b872dd146104f0578063256929621461050f5780632d5a5d3414610517575f80fd5b80631694505e116103865780631694505e1461043c57806318160ddd146104875780631a8145bb146104a55780631f3fed8f146104ba575f80fd5b806306fdde03146103b6578063095ea7b3146103e057806310d5de531461040f575f80fd5b366103b257005b5f80fd5b3480156103c1575f80fd5b506103ca610ab8565b6040516103d791906129ee565b60405180910390f35b3480156103eb575f80fd5b506103ff6103fa366004612a34565b610b48565b60405190151581526020016103d7565b34801561041a575f80fd5b506103ff610429366004612a5e565b602080525f908152604090205460ff1681565b348015610447575f80fd5b5061046f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103d7565b348015610492575f80fd5b506002545b6040519081526020016103d7565b3480156104b0575f80fd5b50610497601c5481565b3480156104c5575f80fd5b50610497601b5481565b3480156104da575f80fd5b506104ee6104e9366004612a80565b610b61565b005b3480156104fb575f80fd5b506103ff61050a366004612a97565b610c1d565b6104ee610c40565b348015610522575f80fd5b506104ee610531366004612ae4565b610c8d565b348015610541575f80fd5b50604051601281526020016103d7565b34801561055c575f80fd5b506103ff61056b366004612a34565b610cbf565b34801561057b575f80fd5b5061046f7f00000000000000000000000026c7d1d6a4a474888b9716de03b35716760dc59c81565b3480156105ae575f80fd5b50600e546103ff9060ff1681565b3480156105c7575f80fd5b506103ff6105d6366004612a5e565b6001600160a01b03165f908152601f602052604090205460ff1690565b6104ee610ce0565b348015610606575f80fd5b5061049760175481565b34801561061b575f80fd5b50600e546103ff9062010000900460ff1681565b34801561063a575f80fd5b50610497610649366004612a5e565b6001600160a01b03165f9081526020819052604090205490565b6104ee610d19565b348015610676575f80fd5b506103ff610d2c565b34801561068a575f80fd5b506104ee610699366004612ae4565b610d45565b3480156106a9575f80fd5b506104ee6106b8366004612b17565b610d76565b3480156106c8575f80fd5b5061049760145481565b3480156106dd575f80fd5b506104ee6106ec366004612a5e565b611085565b3480156106fc575f80fd5b506104ee61070b366004612b4a565b6110e9565b34801561071b575f80fd5b506104ee61116a565b34801561072f575f80fd5b50638b78c6d8195461046f565b348015610747575f80fd5b5061049760185481565b34801561075c575f80fd5b506104ee61076b366004612b73565b611189565b34801561077b575f80fd5b506103ca6111ad565b34801561078f575f80fd5b50610497600c5481565b3480156107a4575f80fd5b506103ca611239565b3480156107b8575f80fd5b506104ee6107c7366004612ae4565b611248565b3480156107d7575f80fd5b5061049760165481565b3480156107ec575f80fd5b506103ff6107fb366004612a34565b611305565b34801561080b575f80fd5b506104ee61081a366004612a5e565b61137f565b34801561082a575f80fd5b506103ff610839366004612a34565b6113a9565b348015610849575f80fd5b506104ee610858366004612a5e565b6113b6565b348015610868575f80fd5b506103ff610877366004612a5e565b60216020525f908152604090205460ff1681565b348015610896575f80fd5b50600e546103ff90610100900460ff1681565b3480156108b4575f80fd5b506104ee6108c3366004612ae4565b611425565b3480156108d3575f80fd5b506104ee6108e2366004612b4a565b61148b565b3480156108f2575f80fd5b506104ee610901366004612a80565b61150c565b348015610911575f80fd5b506103ca6115b7565b348015610925575f80fd5b506012546103ff9060ff1681565b34801561093e575f80fd5b5061049760095481565b348015610953575f80fd5b506103ff610962366004612a80565b6115c4565b348015610972575f80fd5b5060225461046f906001600160a01b031681565b348015610991575f80fd5b50610497601a5481565b3480156109a6575f80fd5b5061049760135481565b3480156109bb575f80fd5b506104976109ca366004612b8c565b6116f7565b3480156109da575f80fd5b50610497600a5481565b3480156109ef575f80fd5b506103ff611721565b348015610a03575f80fd5b50610497600d5481565b6104ee610a1b366004612a5e565b61173a565b348015610a2b575f80fd5b5061049760155481565b6104ee610a43366004612a5e565b611777565b348015610a53575f80fd5b5061049760195481565b348015610a68575f80fd5b50610497600b5481565b348015610a7d575f80fd5b50610497601d5481565b348015610a92575f80fd5b50610497610aa1366004612a5e565b63389a75e1600c9081525f91909152602090205490565b606060068054610ac790612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610af390612bb8565b8015610b3e5780601f10610b1557610100808354040283529160200191610b3e565b820191905f5260205f20905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b5f33610b5581858561179d565b60019150505b92915050565b610b696118c0565b670de0b6b3a76400006103e8610b7e60025490565b610b89906001612c04565b610b939190612c1b565b610b9d9190612c1b565b811015610c095760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610c1781633b9aca00612c04565b60095550565b5f33610c2a8582856118da565b610c35858585611952565b506001949350505050565b5f6202a30067ffffffffffffffff164201905063389a75e1600c52335f52806020600c2055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d5f80a250565b610c956118c0565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b5f33610b55818585610cd183836116f7565b610cdb9190612c3a565b61179d565b63389a75e1600c52335f525f6020600c2055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c925f80a2565b610d216118c0565b610d2a5f612219565b565b5f610d356118c0565b50600e805460ff19169055600190565b610d4d6118c0565b6001600160a01b03919091165f9081526020805260409020805460ff1916911515919091179055565b60018160ff161115610d9b576040516337ee307560e11b815260040160405180910390fd5b5f60058054610da990612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd590612bb8565b8015610e205780601f10610df757610100808354040283529160200191610e20565b820191905f5260205f20905b815481529060010190602001808311610e0357829003601f168201915b50505050509050610e313384612256565b60408051600160ff85161481526020810185905233917f8e11f733f7b4d10153c6fce7e7920ba00ed0bd3da257ad02ff07c2149a4bb977910160405180910390a28160ff165f03610e935782600c5f828254610e8d9190612c3a565b90915550505b8160ff16600103610eb55782600d5f828254610eaf9190612c3a565b90915550505b600d54600c541015610f1b5760408051808201909152600681526553505249544560d01b6020820152600590610eeb9082612ca6565b506040805180820190915260068082526553707269746560d01b602083015290610f159082612ca6565b50610f6e565b60408051808201909152600481526346414e4760e01b6020820152600590610f439082612ca6565b5060408051808201909152600481526346616e6760e01b6020820152600690610f6c9082612ca6565b505b6005604051602001610f809190612d62565b6040516020818303038152906040528051906020012081604051602001610fa79190612dd4565b604051602081830303815290604052805190602001201461108057602254604051633c168eab60e01b8152336004820152600160248201526001600160a01b0390911690633c168eab906044015f604051808303815f87803b15801561100b575f80fd5b505af115801561101d573d5f803e3d5ffd5b5050602254604051635e831bc560e01b8152600160ff87161460048201526001600160a01b039091169250635e831bc591506024015f604051808303815f87803b158015611069575f80fd5b505af115801561107b573d5f803e3d5ffd5b505050505b505050565b61108d6118c0565b6008546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6110f16118c0565b6014839055601582905560168190558061110b8385612c3a565b6111159190612c3a565b6013819055603310156110805760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353125206f72206c6573730000006044820152606401610c00565b6111726118c0565b600e805462ffff0019166201010017905543601e55565b6111916118c0565b600e8054911515620100000262ff000019909216919091179055565b600580546111ba90612bb8565b80601f01602080910402602001604051908101604052809291908181526020018280546111e690612bb8565b80156112315780601f1061120857610100808354040283529160200191611231565b820191905f5260205f20905b81548152906001019060200180831161121457829003601f168201915b505050505081565b606060058054610ac790612bb8565b6112506118c0565b7f00000000000000000000000026c7d1d6a4a474888b9716de03b35716760dc59c6001600160a01b0316826001600160a01b0316036112f75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c00565b6113018282612386565b5050565b5f338161131282866116f7565b9050838110156113725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c00565b610c35828686840361179d565b6113876118c0565b602280546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610b55818585611952565b6113be6118c0565b6007546040516001600160a01b036101009092048216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61142d6118c0565b6001600160a01b0382165f818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6114936118c0565b60188390556019829055601a819055806114ad8385612c3a565b6114b79190612c3a565b6017819055603310156110805760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353125206f72206c6573730000006044820152606401610c00565b6115146118c0565b670de0b6b3a76400006103e861152960025490565b611534906005612c04565b61153e9190612c1b565b6115489190612c1b565b8110156115a35760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c00565b6115b181633b9aca00612c04565b600b5550565b600680546111ba90612bb8565b5f6115cd6118c0565b620186a06115da60025490565b6115e5906001612c04565b6115ef9190612c1b565b82101561165c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c00565b6103e861166860025490565b611673906005612c04565b61167d9190612c1b565b8211156116e95760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c00565b50600a81905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f61172a6118c0565b506012805460ff19169055600190565b6117426118c0565b63389a75e1600c52805f526020600c20805442111561176857636f5e88185f526004601cfd5b5f905561177481612219565b50565b61177f6118c0565b8060601b61179457637448fbae5f526004601cfd5b61177481612219565b6001600160a01b0383166117ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c00565b6001600160a01b0382166118605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c00565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b638b78c6d819543314610d2a576382b429005f526004601cfd5b5f6118e584846116f7565b90505f19811461194c578181101561193f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c00565b61194c848484840361179d565b50505050565b6001600160a01b0383166119785760405162461bcd60e51b8152600401610c0090612def565b6001600160a01b03821661199e5760405162461bcd60e51b8152600401610c0090612e34565b6001600160a01b0382165f9081526011602052604090205460ff161580156119de57506001600160a01b0383165f9081526011602052604090205460ff16155b611a445760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610c00565b805f03611a565761108083835f6123d9565b600e5460ff1615611f1c57638b78c6d819546001600160a01b0316836001600160a01b031614158015611aa15750638b78c6d819546001600160a01b0316826001600160a01b031614155b8015611ab557506001600160a01b03821615155b8015611acc57506001600160a01b03821661dead14155b8015611adb575060075460ff16155b15611f1c57600e54610100900460ff16611b71576001600160a01b0383165f908152601f602052604090205460ff1680611b2c57506001600160a01b0382165f908152601f602052604090205460ff165b611b715760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c00565b60125460ff1615611cc057638b78c6d819546001600160a01b0316826001600160a01b031614158015611bd657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611c1457507f00000000000000000000000026c7d1d6a4a474888b9716de03b35716760dc59c6001600160a01b0316826001600160a01b031614155b15611cc057325f908152600f60205260409020544311611cae5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c00565b325f908152600f602052604090204390555b6001600160a01b0383165f9081526021602052604090205460ff168015611cfe57506001600160a01b0382165f90815260208052604090205460ff16155b15611de157600954811115611d735760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c00565b600b546001600160a01b0383165f90815260208190526040902054611d989083612c3a565b1115611ddc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c00565b611f1c565b6001600160a01b0382165f9081526021602052604090205460ff168015611e1f57506001600160a01b0383165f90815260208052604090205460ff16155b15611e9557600954811115611ddc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c00565b6001600160a01b0382165f90815260208052604090205460ff16611f1c57600b546001600160a01b0383165f90815260208190526040902054611ed89083612c3a565b1115611f1c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c00565b305f90815260208190526040902054600a5481108015908190611f475750600e5462010000900460ff165b8015611f56575060075460ff16155b8015611f7a57506001600160a01b0385165f9081526021602052604090205460ff16155b8015611f9e57506001600160a01b0385165f908152601f602052604090205460ff16155b8015611fc257506001600160a01b0384165f908152601f602052604090205460ff16155b15611fe7576007805460ff19166001179055611fdc612501565b6007805460ff191690555b6007546001600160a01b0386165f908152601f602052604090205460ff9182161591168061202c57506001600160a01b0385165f908152601f602052604090205460ff165b1561203457505f5b5f811561220e576001600160a01b0386165f9081526021602052604090205460ff16801561206357505f601754115b15612118576064601754866120789190612c04565b6120829190612c1b565b9050601754601954826120959190612c04565b61209f9190612c1b565b601c5f8282546120af9190612c3a565b9091555050601754601a546120c49083612c04565b6120ce9190612c1b565b601d5f8282546120de9190612c3a565b90915550506017546018546120f39083612c04565b6120fd9190612c1b565b601b5f82825461210d9190612c3a565b909155506121f09050565b6001600160a01b0387165f9081526021602052604090205460ff16801561214057505f601354115b156121f0576064601354866121559190612c04565b61215f9190612c1b565b9050601354601554826121729190612c04565b61217c9190612c1b565b601c5f82825461218c9190612c3a565b90915550506013546016546121a19083612c04565b6121ab9190612c1b565b601d5f8282546121bb9190612c3a565b90915550506013546014546121d09083612c04565b6121da9190612c1b565b601b5f8282546121ea9190612c3a565b90915550505b8015612201576122018730836123d9565b61220b8186612e77565b94505b61107b8787876123d9565b638b78c6d81980546001600160a01b039092169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a355565b6001600160a01b0382166122b65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c00565b6001600160a01b0382165f90815260208190526040902054818110156123295760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c00565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0382165f81815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123ff5760405162461bcd60e51b8152600401610c0090612def565b6001600160a01b0382166124255760405162461bcd60e51b8152600401610c0090612e34565b6001600160a01b0383165f908152602081905260409020548181101561249c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c00565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361194c565b305f9081526020819052604081205490505f601d54601b54601c546125269190612c3a565b6125309190612c3a565b90505f82158061253e575081155b1561254857505050565b600a54612556906014612c04565b83111561256e57600a5461256b906014612c04565b92505b5f600283601c54866125809190612c04565b61258a9190612c1b565b6125949190612c1b565b90505f6125a18286612e77565b9050476125ad8261272f565b5f6125b88247612e77565b90505f86601b54836125ca9190612c04565b6125d49190612c1b565b90505f87601d54846125e69190612c04565b6125f09190612c1b565b90505f816125fe8486612e77565b6126089190612e77565b5f601c819055601b819055601d8190556008546040519293506001600160a01b031691849181818185875af1925050503d805f8114612662576040519150601f19603f3d011682016040523d82523d5f602084013e612667565b606091505b5090985050861580159061267a57505f81115b156126cd5761268987826128e5565b601c54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516101009091046001600160a01b03169047905f81818185875af1925050503d805f811461271b576040519150601f19603f3d011682016040523d82523d5f602084013e612720565b606091505b50505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061276257612762612e8a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128029190612e9e565b8160018151811061281557612815612e8a565b60200260200101906001600160a01b031690816001600160a01b031681525050612860307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461179d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906128b49085905f90869030904290600401612eb9565b5f604051808303815f87803b1580156128cb575f80fd5b505af11580156128dd573d5f803e3d5ffd5b505050505050565b612910307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461179d565b60075460405163f305d71960e01b8152306004820152602481018490525f6044820181905260648201526101009091046001600160a01b0390811660848301524260a48301527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d71990839060c40160606040518083038185885af11580156129a0573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906129c59190612f28565b5050505050565b5f5b838110156129e65781810151838201526020016129ce565b50505f910152565b602081525f8251806020840152612a0c8160408501602087016129cc565b601f01601f19169190910160400192915050565b6001600160a01b0381168114611774575f80fd5b5f8060408385031215612a45575f80fd5b8235612a5081612a20565b946020939093013593505050565b5f60208284031215612a6e575f80fd5b8135612a7981612a20565b9392505050565b5f60208284031215612a90575f80fd5b5035919050565b5f805f60608486031215612aa9575f80fd5b8335612ab481612a20565b92506020840135612ac481612a20565b929592945050506040919091013590565b803580151581146116f2575f80fd5b5f8060408385031215612af5575f80fd5b8235612b0081612a20565b9150612b0e60208401612ad5565b90509250929050565b5f8060408385031215612b28575f80fd5b82359150602083013560ff81168114612b3f575f80fd5b809150509250929050565b5f805f60608486031215612b5c575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612b83575f80fd5b612a7982612ad5565b5f8060408385031215612b9d575f80fd5b8235612ba881612a20565b91506020830135612b3f81612a20565b600181811c90821680612bcc57607f821691505b602082108103612bea57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b5b57610b5b612bf0565b5f82612c3557634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b5b57610b5b612bf0565b634e487b7160e01b5f52604160045260245ffd5b601f821115611080575f81815260208120601f850160051c81016020861015612c875750805b601f850160051c820191505b818110156128dd57828155600101612c93565b815167ffffffffffffffff811115612cc057612cc0612c4d565b612cd481612cce8454612bb8565b84612c61565b602080601f831160018114612d07575f8415612cf05750858301515b5f19600386901b1c1916600185901b1785556128dd565b5f85815260208120601f198616915b82811015612d3557888601518255948401946001909101908401612d16565b5085821015612d5257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f808354612d6f81612bb8565b60018281168015612d875760018114612d9c57612dc8565b60ff1984168752821515830287019450612dc8565b875f526020805f205f5b85811015612dbf5781548a820152908401908201612da6565b50505082870194505b50929695505050505050565b5f8251612de58184602087016129cc565b9190910192915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b5b57610b5b612bf0565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612eae575f80fd5b8151612a7981612a20565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612f075784516001600160a01b031683529383019391830191600101612ee2565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612f3a575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212206125690ec2185f9911f1c75a68268e2d257b43c04cece2058cf57eff18f3b75a64736f6c63430008140033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.