ETH Price: $3,411.49 (-0.97%)
Gas: 1 Gwei

Token

Newsly (NEWS)
 

Overview

Max Total Supply

100,000,000 NEWS

Holders

1,284

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

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 800 runs

Other Settings:
paris EvmVersion, MIT license
File 1 of 9 : NewslyToken.sol
// SPDX-License-Identifier: MIT

/*
 Newsly - The News Trading Terminal in Your Pocket
 Website: https://www.newsly.news/
 Twitter: https://twitter.com/newslybot
 Community: https://t.me/+Jm3OIlXxemc5ZDI0
 TG Bot: https://t.me/NewslyNews_bot
*/

pragma solidity ^0.8.19;

import "openzeppelin/token/ERC20/ERC20.sol";
import "openzeppelin/access/Ownable.sol";

import "uniswap/periphery/interfaces/IUniswapV2Router02.sol";
import "uniswap/core/interfaces/IUniswapV2Factory.sol";

contract NewslyToken is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    uint128 public immutable launchBlock;
    uint128 public immutable antibotPeriod;
    address public constant DEAD_ADDRESS = address(0xdead);

    address public teamWallet;

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

    uint16 public buyTotalFees;
    uint16 public buyLiquidityFeePct;
    uint16 public buyTeamFeePct;

    uint16 public sellTotalFees;
    uint16 public sellLiquidityFeePct;
    uint16 public sellTeamFeePct;

    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    bool private _swapping;
    bool public limitsInEffect = true;
    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) _blacklisted;

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

    // 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 TeamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    constructor(IUniswapV2Router02 _uniswapRouter, uint128 _antibotPeriod) ERC20("Newsly", "NEWS") {

        launchBlock = uint128(block.number);
        antibotPeriod = _antibotPeriod; 

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

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

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = totalSupply * 25 / 10000; // 0.25%
        maxWallet = totalSupply * 25 / 10000; // 0.25%
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyLiquidityFeePct = 20;
        buyTeamFeePct = 80;
        buyTotalFees = 5;

        sellLiquidityFeePct = 20;
        sellTeamFeePct = 80;
        sellTotalFees = 5;

        teamWallet = 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 {}

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

    function updateBuyFees(
        uint16 _liquidityFeePercent,
        uint16 _teamFeePercent,
        uint16 _buyTotalFees
    ) external onlyOwner {
        buyLiquidityFeePct = _liquidityFeePercent;
        buyTeamFeePct = _teamFeePercent;
        require(_liquidityFeePercent + _teamFeePercent == 100, 'Total percent must be 100');
        buyTotalFees = _buyTotalFees;
        require(_buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint16 _liquidityFeePercent,
        uint16 _teamFeePercent,
        uint16 _sellTotalFees
    ) external onlyOwner {
        sellLiquidityFeePct = _liquidityFeePercent;
        sellTeamFeePct = _teamFeePercent;
        require(_liquidityFeePercent + _teamFeePercent == 100, 'Total percent must be 100');
        sellTotalFees = _sellTotalFees;
        require(_sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

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

    function withdrawStuckToken() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckErc20(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(uniswapV2Router), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        _blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(uniswapV2Router), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        _blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        _blacklisted[_addr] = false;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return _blacklisted[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(!_blacklisted[from],"Sender _blacklisted");
        require(!_blacklisted[to],"Receiver _blacklisted");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        bool _limitsInEffect = limitsInEffect;

        if (_limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !_swapping
            ) {
                //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 &&
            !_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 * _getSellTotalFees(_limitsInEffect) / 100;
                tokensForLiquidity += (fees * sellLiquidityFeePct) / 100;
                tokensForTeam += (fees * sellTeamFeePct) / 100;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * _getBuyTotalFees(_limitsInEffect) / 100;
                tokensForLiquidity += (fees * buyLiquidityFeePct) / 100;
                tokensForTeam += (fees * buyTeamFeePct) / 100;
            }

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

            amount -= fees;
        }

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function _swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + 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 ethForTeam = (ethBalance * tokensForTeam) / (totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForTeam;

        tokensForLiquidity = 0;
        tokensForTeam = 0;

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

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

    function _getSellTotalFees(bool _limitsInEffect) private view returns (uint256) {
        if(!_limitsInEffect)
            return sellTotalFees;

        uint256 _sellTotalFees = sellTotalFees;
        uint256 _launchBlock = launchBlock;
        uint256 _antibotPeriod = antibotPeriod;

        if(block.number > _launchBlock + _antibotPeriod)
            return sellTotalFees;

        uint256 progressThroughAntibot = block.number - _launchBlock;
        uint256 antiBotTax = 100 - (100 * progressThroughAntibot / _antibotPeriod);
        if(antiBotTax < _sellTotalFees)
            antiBotTax = _sellTotalFees;

        return antiBotTax;
    }

    function _getBuyTotalFees(bool _limitsInEffect) private view returns (uint256) {
        if(!_limitsInEffect)
            return buyTotalFees;
        
        uint256 _buyTotalFees = buyTotalFees;
        uint256 _launchBlock = launchBlock;
        uint256 _antibotPeriod = antibotPeriod;

        if(block.number > _launchBlock + _antibotPeriod)
            return _buyTotalFees;

        uint256 progressThroughAntibot = block.number - _launchBlock;
        uint256 antiBotTax = 100 - (100 * progressThroughAntibot / _antibotPeriod);
        if(antiBotTax < _buyTotalFees)
            antiBotTax = _buyTotalFees;

        return antiBotTax;
    }
}

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 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 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 5 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 6 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 7 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 8 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 9 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);
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "solmate/=lib/token-vesting-contracts/lib/solmate/src/",
    "token-vesting-contracts/=lib/token-vesting-contracts/",
    "uniswap/core/=lib/v2-core/contracts/",
    "uniswap/periphery/=lib/v2-periphery/contracts/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/",
    "vesting/=lib/token-vesting-contracts/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "metadata": {
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapRouter","type":"address"},{"internalType":"uint128","name":"_antibotPeriod","type":"uint128"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","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"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antibotPeriod","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"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":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFeePct","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFeePct","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFeePct","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFeePct","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_liquidityFeePercent","type":"uint16"},{"internalType":"uint16","name":"_teamFeePercent","type":"uint16"},{"internalType":"uint16","name":"_buyTotalFees","type":"uint16"}],"name":"updateBuyFees","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":"uint16","name":"_liquidityFeePercent","type":"uint16"},{"internalType":"uint16","name":"_teamFeePercent","type":"uint16"},{"internalType":"uint16","name":"_sellTotalFees","type":"uint16"}],"name":"updateSellFees","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"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101006040819052600d805462ffff00191690911790553480156200002357600080fd5b50604051620037c0380380620037c0833981016040819052620000469162000620565b604051806040016040528060068152602001654e6577736c7960d01b815250604051806040016040528060048152602001634e45575360e01b81525081600390816200009391906200070e565b506004620000a282826200070e565b505050620000bf620000b96200039560201b60201c565b62000399565b6001600160801b0343811660c052811660e052620000df826001620003eb565b6001600160a01b03821660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001509190620007da565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c49190620007da565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000212573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002389190620007da565b6001600160a01b031660a081905262000253906001620003eb565b60a0516200026390600162000420565b6a52b7d2dcc80cd2e40000006127106200027f82601962000817565b6200028b919062000837565b6007556127106200029e82601962000817565b620002aa919062000837565b600955612710620002bd82600562000817565b620002c9919062000837565b600855600a80546001600160601b0319166a5000140005005000140005179055620002fc6005546001600160a01b031690565b600680546001600160a01b0319166001600160a01b03928316179055600554620003299116600162000474565b6200033630600162000474565b6200034561dead600162000474565b620003646200035c6005546001600160a01b031690565b6001620003eb565b62000371306001620003eb565b6200038061dead6001620003eb565b6200038c3382620004dd565b50505062000870565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003f5620005a4565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200047e620005a4565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200054d91906200085a565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000530565b565b505050565b6001600160a01b03811681146200061d57600080fd5b50565b600080604083850312156200063457600080fd5b8251620006418162000607565b60208401519092506001600160801b03811681146200065f57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069557607f821691505b602082108103620006b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200060257600081815260208120601f850160051c81016020861015620006e55750805b601f850160051c820191505b818110156200070657828155600101620006f1565b505050505050565b81516001600160401b038111156200072a576200072a6200066a565b62000742816200073b845462000680565b84620006bc565b602080601f8311600181146200077a5760008415620007615750858301515b600019600386901b1c1916600185901b17855562000706565b600085815260208120601f198616915b82811015620007ab578886015182559484019460019091019084016200078a565b5085821015620007ca5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007ed57600080fd5b8151620007fa8162000607565b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000831576200083162000801565b92915050565b6000826200085557634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000831576200083162000801565b60805160a05160c05160e051612ec2620008fe600039600081816104e7015281816126e001526127c401526000818161095a015281816126bc01526127a00152600081816105e00152818161118c01526117010152600081816104260152818161173e015281816128550152818161290e0152818161294a015281816129c401526129eb0152612ec26000f3fe6080604052600436106103595760003560e01c80637571336a116101bb578063c8c8ebe4116100f7578063e2f4560511610095578063f98a9c021161006f578063f98a9c0214610a69578063f9f92be4146109fd578063fde83a3414610a92578063fe575a8714610aa857600080fd5b8063e2f4560514610a1d578063f2fde38b14610a33578063f8b45b0514610a5357600080fd5b8063d257b34f116100d1578063d257b34f1461097c578063d85ba0631461099c578063dd62ed3e146109b7578063e19b2823146109fd57600080fd5b8063c8c8ebe414610912578063cdb5f8c614610928578063d00efb2f1461094857600080fd5b806395d89b4111610164578063a9059cbb1161013e578063a9059cbb14610882578063b62496f5146108a2578063c0246668146108d2578063c18bc195146108f257600080fd5b806395d89b411461082d5780639a7a23d614610842578063a457c2d71461086257600080fd5b80637cb332bb116101955780637cb332bb146107da57806384dd4452146107fa5780638da5cb5b1461080f57600080fd5b80637571336a1461077a57806375e3661e1461079a5780637ca8448a146107ba57600080fd5b80633dc599ff1161029557806359927044116102335780636a486a8e1161020d5780636a486a8e146106f557806370a082311461071a578063715018a614610750578063751039fc1461076557600080fd5b806359927044146106a05780635f189361146106c057806363f54101146106d557600080fd5b80634a62bb651161026f5780634a62bb65146106025780634bb2c785146106215780634e6fd6c4146106515780634fbee1931461066757600080fd5b80633dc599ff1461058d5780633f07c0ce146105ad57806349bd5a5e146105ce57600080fd5b80631a8145bb1161030257806330b878ff116102dc57806330b878ff146104d5578063313ce5671461052a57806339509351146105465780633b48874a1461056657600080fd5b80631a8145bb1461047f578063203e727e1461049557806323b872dd146104b557600080fd5b8063095ea7b311610333578063095ea7b3146103e45780631694505e1461041457806318160ddd1461046057600080fd5b80630408d7561461036557806306d8eb1a146103a057806306fdde03146103c257600080fd5b3661036057005b600080fd5b34801561037157600080fd5b50600a5461038890640100000000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b3480156103ac57600080fd5b506103c06103bb366004612aee565b610ae1565b005b3480156103ce57600080fd5b506103d7610beb565b6040516103979190612b31565b3480156103f057600080fd5b506104046103ff366004612b94565b610c7d565b6040519015158152602001610397565b34801561042057600080fd5b506104487f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610397565b34801561046c57600080fd5b506002545b604051908152602001610397565b34801561048b57600080fd5b50610471600b5481565b3480156104a157600080fd5b506103c06104b0366004612bc0565b610c97565b3480156104c157600080fd5b506104046104d0366004612bd9565b610d60565b3480156104e157600080fd5b506105097f000000000000000000000000000000000000000000000000000000000000000081565b6040516fffffffffffffffffffffffffffffffff9091168152602001610397565b34801561053657600080fd5b5060405160128152602001610397565b34801561055257600080fd5b50610404610561366004612b94565b610d84565b34801561057257600080fd5b50600a546103889068010000000000000000900461ffff1681565b34801561059957600080fd5b50600d546104049062010000900460ff1681565b3480156105b957600080fd5b50600a546103889062010000900461ffff1681565b3480156105da57600080fd5b506104487f000000000000000000000000000000000000000000000000000000000000000081565b34801561060e57600080fd5b50600d5461040490610100900460ff1681565b34801561062d57600080fd5b5061040461063c366004612c1a565b60106020526000908152604090205460ff1681565b34801561065d57600080fd5b5061044861dead81565b34801561067357600080fd5b50610404610682366004612c1a565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156106ac57600080fd5b50600654610448906001600160a01b031681565b3480156106cc57600080fd5b506103c0610dc3565b3480156106e157600080fd5b506103c06106f0366004612aee565b610dde565b34801561070157600080fd5b50600a54610388906601000000000000900461ffff1681565b34801561072657600080fd5b50610471610735366004612c1a565b6001600160a01b031660009081526020819052604090205490565b34801561075c57600080fd5b506103c0610f08565b34801561077157600080fd5b50610404610f1c565b34801561078657600080fd5b506103c0610795366004612c4c565b610f37565b3480156107a657600080fd5b506103c06107b5366004612c1a565b610f6a565b3480156107c657600080fd5b506103c06107d5366004612c1a565b610f93565b3480156107e657600080fd5b506103c06107f5366004612c1a565b610fff565b34801561080657600080fd5b506103c0611071565b34801561081b57600080fd5b506005546001600160a01b0316610448565b34801561083957600080fd5b506103d7611173565b34801561084e57600080fd5b506103c061085d366004612c4c565b611182565b34801561086e57600080fd5b5061040461087d366004612b94565b61123b565b34801561088e57600080fd5b5061040461089d366004612b94565b6112e5565b3480156108ae57600080fd5b506104046108bd366004612c1a565b60116020526000908152604090205460ff1681565b3480156108de57600080fd5b506103c06108ed366004612c4c565b6112f3565b3480156108fe57600080fd5b506103c061090d366004612bc0565b61135a565b34801561091e57600080fd5b5061047160075481565b34801561093457600080fd5b506103c0610943366004612c85565b611409565b34801561095457600080fd5b506105097f000000000000000000000000000000000000000000000000000000000000000081565b34801561098857600080fd5b50610404610997366004612bc0565b61154f565b3480156109a857600080fd5b50600a546103889061ffff1681565b3480156109c357600080fd5b506104716109d2366004612c85565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a0957600080fd5b506103c0610a18366004612c1a565b611694565b348015610a2957600080fd5b5061047160085481565b348015610a3f57600080fd5b506103c0610a4e366004612c1a565b611809565b348015610a5f57600080fd5b5061047160095481565b348015610a7557600080fd5b50600a54610388906a0100000000000000000000900461ffff1681565b348015610a9e57600080fd5b50610471600c5481565b348015610ab457600080fd5b50610404610ac3366004612c1a565b6001600160a01b03166000908152600e602052604090205460ff1690565b610ae9611899565b600a805461ffff8481166401000000000265ffff000000001991871662010000029190911665ffffffff00001990921691909117179055610b2a8284612cc9565b61ffff16606414610b825760405162461bcd60e51b815260206004820152601960248201527f546f74616c2070657263656e74206d757374206265203130300000000000000060448201526064015b60405180910390fd5b600a805461ffff191661ffff831690811790915560051015610be65760405162461bcd60e51b815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610b79565b505050565b606060038054610bfa90612ceb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2690612ceb565b8015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b5050505050905090565b600033610c8b8185856118f3565b60019150505b92915050565b610c9f611899565b670de0b6b3a76400006103e8610cb460025490565b610cbf906005612d25565b610cc99190612d3c565b610cd39190612d3c565b811015610d485760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610b79565b610d5a81670de0b6b3a7640000612d25565b60075550565b600033610d6e858285611a17565b610d79858585611aa3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610c8b9082908690610dbe908790612d5e565b6118f3565b610dcb611899565b600d805462ff0000191662010000179055565b610de6611899565b600a805461ffff8481166a0100000000000000000000026bffff00000000000000000000199187166801000000000000000002919091166bffffffff00000000000000001990921691909117179055610e3f8284612cc9565b61ffff16606414610e925760405162461bcd60e51b815260206004820152601960248201527f546f74616c2070657263656e74206d75737420626520313030000000000000006044820152606401610b79565b600a805467ffff0000000000001916660100000000000061ffff84169081029190911790915560051015610be65760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610b79565b610f10611899565b610f1a600061224b565b565b6000610f26611899565b50600d805461ff0019169055600190565b610f3f611899565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b610f72611899565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b610f9b611899565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fe8576040519150601f19603f3d011682016040523d82523d6000602084013e610fed565b606091505b5050905080610ffb57600080fd5b5050565b611007611899565b6006546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309590600090a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b611079611899565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa1580156110b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110db9190612d71565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111469190612d8a565b5060405133904780156108fc02916000818181858888f19350505050158015610ffb573d6000803e3d6000fd5b606060048054610bfa90612ceb565b61118a611899565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112315760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b79565b610ffb82826122aa565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156112d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610b79565b610d7982868684036118f3565b600033610c8b818585611aa3565b6112fb611899565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611362611899565b670de0b6b3a76400006103e861137760025490565b61138290600a612d25565b61138c9190612d3c565b6113969190612d3c565b8110156113f15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610b79565b61140381670de0b6b3a7640000612d25565b60095550565b611411611899565b6001600160a01b0382166114675760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b79565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d29190612d71565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115499190612d8a565b50505050565b6000611559611899565b620186a061156660025490565b611571906001612d25565b61157b9190612d3c565b8210156115f05760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610b79565b6103e86115fc60025490565b611607906005612d25565b6116119190612d3c565b8211156116865760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610b79565b50600881905560015b919050565b61169c611899565b600d5462010000900460ff16156116ff5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610b79565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561177357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b6117e55760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610b79565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b611811611899565b6001600160a01b03811661188d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b79565b6118968161224b565b50565b6005546001600160a01b03163314610f1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b79565b6001600160a01b0383166119555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b79565b6001600160a01b0382166119b65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b79565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146115495781811015611a965760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b79565b61154984848484036118f3565b6001600160a01b038316611b075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b79565b6001600160a01b038216611b695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b79565b6001600160a01b0383166000908152600e602052604090205460ff1615611bd25760405162461bcd60e51b815260206004820152601360248201527f53656e646572205f626c61636b6c6973746564000000000000000000000000006044820152606401610b79565b6001600160a01b0382166000908152600e602052604090205460ff1615611c3b5760405162461bcd60e51b815260206004820152601560248201527f5265636569766572205f626c61636b6c697374656400000000000000000000006044820152606401610b79565b80600003611c4f57610be6838360006122fe565b600d54610100900460ff168015611f54576005546001600160a01b03858116911614801590611c8c57506005546001600160a01b03848116911614155b8015611ca057506001600160a01b03831615155b8015611cb757506001600160a01b03831661dead14155b8015611cc65750600d5460ff16155b15611f54576001600160a01b03841660009081526011602052604090205460ff168015611d0c57506001600160a01b03831660009081526010602052604090205460ff16155b15611e0257600754821115611d895760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610b79565b6009546001600160a01b038416600090815260208190526040902054611daf9084612d5e565b1115611dfd5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b79565b611f54565b6001600160a01b03831660009081526011602052604090205460ff168015611e4357506001600160a01b03841660009081526010602052604090205460ff16155b15611ec057600754821115611dfd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610b79565b6001600160a01b03831660009081526010602052604090205460ff16611f54576009546001600160a01b038416600090815260208190526040902054611f069084612d5e565b1115611f545760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b79565b3060009081526020819052604090205460085481108015908190611f7b5750600d5460ff16155b8015611fa057506001600160a01b03861660009081526011602052604090205460ff16155b8015611fc557506001600160a01b0386166000908152600f602052604090205460ff16155b8015611fea57506001600160a01b0385166000908152600f602052604090205460ff16155b1561200f57600d805460ff191660011790556120046124b9565b600d805460ff191690555b600d546001600160a01b0387166000908152600f602052604090205460ff9182161591168061205657506001600160a01b0386166000908152600f602052604090205460ff165b1561205f575060005b60008115612236576001600160a01b03871660009081526011602052604090205460ff16801561209e5750600a546601000000000000900461ffff1615155b1561214d5760646120ae8661267a565b6120b89088612d25565b6120c29190612d3c565b600a549091506064906120e59068010000000000000000900461ffff1683612d25565b6120ef9190612d3c565b600b60008282546121009190612d5e565b9091555050600a54606490612127906a0100000000000000000000900461ffff1683612d25565b6121319190612d3c565b600c60008282546121429190612d5e565b909155506122189050565b6001600160a01b03881660009081526011602052604090205460ff16801561217a5750600a5461ffff1615155b1561221857606461218a86612773565b6121949088612d25565b61219e9190612d3c565b600a549091506064906121bb9062010000900461ffff1683612d25565b6121c59190612d3c565b600b60008282546121d69190612d5e565b9091555050600a546064906121f790640100000000900461ffff1683612d25565b6122019190612d3c565b600c60008282546122129190612d5e565b90915550505b8015612229576122298830836122fe565b6122338187612da7565b95505b6122418888886122fe565b5050505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b79565b6001600160a01b0382166123c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b79565b6001600160a01b038316600090815260208190526040902054818110156124535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610b79565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611549565b3060009081526020819052604081205490506000600c54600b546124dd9190612d5e565b905060008215806124ec575081155b156124f657505050565b600854612504906014612d25565b83111561251c57600854612519906014612d25565b92505b6000600283600b548661252f9190612d25565b6125399190612d3c565b6125439190612d3c565b905060006125518286612da7565b90504761255d826127fe565b60006125698247612da7565b905060006002600b5461257c9190612d3c565b6125869088612da7565b600c546125939084612d25565b61259d9190612d3c565b905060006125ab8284612da7565b6000600b819055600c8190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612603576040519150601f19603f3d011682016040523d82523d6000602084013e612608565b606091505b5090975050851580159061261c5750600081115b1561266f5761262b86826129be565b600b54604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b600081612697575050600a546601000000000000900461ffff1690565b600a5461ffff6601000000000000909104166fffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116907f00000000000000000000000000000000000000000000000000000000000000001661270a8183612d5e565b43111561272b575050600a546601000000000000900461ffff169392505050565b60006127378343612da7565b9050600082612747836064612d25565b6127519190612d3c565b61275c906064612da7565b9050848110156127695750835b9695505050505050565b600081612786575050600a5461ffff1690565b600a5461ffff166fffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116907f0000000000000000000000000000000000000000000000000000000000000000166127ee8183612d5e565b43111561272b5750909392505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061283357612833612dba565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d59190612dd0565b816001815181106128e8576128e8612dba565b60200260200101906001600160a01b031690816001600160a01b031681525050612933307f0000000000000000000000000000000000000000000000000000000000000000846118f3565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612988908590600090869030904290600401612ded565b600060405180830381600087803b1580156129a257600080fd5b505af11580156129b6573d6000803e3d6000fd5b505050505050565b6129e9307f0000000000000000000000000000000000000000000000000000000000000000846118f3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612a306005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612ab0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ad59190612e5e565b5050505050565b803561ffff8116811461168f57600080fd5b600080600060608486031215612b0357600080fd5b612b0c84612adc565b9250612b1a60208501612adc565b9150612b2860408501612adc565b90509250925092565b600060208083528351808285015260005b81811015612b5e57858101830151858201604001528201612b42565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461189657600080fd5b60008060408385031215612ba757600080fd5b8235612bb281612b7f565b946020939093013593505050565b600060208284031215612bd257600080fd5b5035919050565b600080600060608486031215612bee57600080fd5b8335612bf981612b7f565b92506020840135612c0981612b7f565b929592945050506040919091013590565b600060208284031215612c2c57600080fd5b8135612c3781612b7f565b9392505050565b801515811461189657600080fd5b60008060408385031215612c5f57600080fd5b8235612c6a81612b7f565b91506020830135612c7a81612c3e565b809150509250929050565b60008060408385031215612c9857600080fd5b8235612ca381612b7f565b91506020830135612c7a81612b7f565b634e487b7160e01b600052601160045260246000fd5b61ffff818116838216019080821115612ce457612ce4612cb3565b5092915050565b600181811c90821680612cff57607f821691505b602082108103612d1f57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610c9157610c91612cb3565b600082612d5957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c9157610c91612cb3565b600060208284031215612d8357600080fd5b5051919050565b600060208284031215612d9c57600080fd5b8151612c3781612c3e565b81810381811115610c9157610c91612cb3565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612de257600080fd5b8151612c3781612b7f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e3d5784516001600160a01b031683529383019391830191600101612e18565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e7357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220bafc9f057fe6792e82b4d09609fb528f4947fe120bc70476905c4e82423212fb64736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000005

Deployed Bytecode

0x6080604052600436106103595760003560e01c80637571336a116101bb578063c8c8ebe4116100f7578063e2f4560511610095578063f98a9c021161006f578063f98a9c0214610a69578063f9f92be4146109fd578063fde83a3414610a92578063fe575a8714610aa857600080fd5b8063e2f4560514610a1d578063f2fde38b14610a33578063f8b45b0514610a5357600080fd5b8063d257b34f116100d1578063d257b34f1461097c578063d85ba0631461099c578063dd62ed3e146109b7578063e19b2823146109fd57600080fd5b8063c8c8ebe414610912578063cdb5f8c614610928578063d00efb2f1461094857600080fd5b806395d89b4111610164578063a9059cbb1161013e578063a9059cbb14610882578063b62496f5146108a2578063c0246668146108d2578063c18bc195146108f257600080fd5b806395d89b411461082d5780639a7a23d614610842578063a457c2d71461086257600080fd5b80637cb332bb116101955780637cb332bb146107da57806384dd4452146107fa5780638da5cb5b1461080f57600080fd5b80637571336a1461077a57806375e3661e1461079a5780637ca8448a146107ba57600080fd5b80633dc599ff1161029557806359927044116102335780636a486a8e1161020d5780636a486a8e146106f557806370a082311461071a578063715018a614610750578063751039fc1461076557600080fd5b806359927044146106a05780635f189361146106c057806363f54101146106d557600080fd5b80634a62bb651161026f5780634a62bb65146106025780634bb2c785146106215780634e6fd6c4146106515780634fbee1931461066757600080fd5b80633dc599ff1461058d5780633f07c0ce146105ad57806349bd5a5e146105ce57600080fd5b80631a8145bb1161030257806330b878ff116102dc57806330b878ff146104d5578063313ce5671461052a57806339509351146105465780633b48874a1461056657600080fd5b80631a8145bb1461047f578063203e727e1461049557806323b872dd146104b557600080fd5b8063095ea7b311610333578063095ea7b3146103e45780631694505e1461041457806318160ddd1461046057600080fd5b80630408d7561461036557806306d8eb1a146103a057806306fdde03146103c257600080fd5b3661036057005b600080fd5b34801561037157600080fd5b50600a5461038890640100000000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b3480156103ac57600080fd5b506103c06103bb366004612aee565b610ae1565b005b3480156103ce57600080fd5b506103d7610beb565b6040516103979190612b31565b3480156103f057600080fd5b506104046103ff366004612b94565b610c7d565b6040519015158152602001610397565b34801561042057600080fd5b506104487f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610397565b34801561046c57600080fd5b506002545b604051908152602001610397565b34801561048b57600080fd5b50610471600b5481565b3480156104a157600080fd5b506103c06104b0366004612bc0565b610c97565b3480156104c157600080fd5b506104046104d0366004612bd9565b610d60565b3480156104e157600080fd5b506105097f000000000000000000000000000000000000000000000000000000000000000581565b6040516fffffffffffffffffffffffffffffffff9091168152602001610397565b34801561053657600080fd5b5060405160128152602001610397565b34801561055257600080fd5b50610404610561366004612b94565b610d84565b34801561057257600080fd5b50600a546103889068010000000000000000900461ffff1681565b34801561059957600080fd5b50600d546104049062010000900460ff1681565b3480156105b957600080fd5b50600a546103889062010000900461ffff1681565b3480156105da57600080fd5b506104487f0000000000000000000000006fdf03d96c40736f787b6354aed7ca3ae8e3d37281565b34801561060e57600080fd5b50600d5461040490610100900460ff1681565b34801561062d57600080fd5b5061040461063c366004612c1a565b60106020526000908152604090205460ff1681565b34801561065d57600080fd5b5061044861dead81565b34801561067357600080fd5b50610404610682366004612c1a565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156106ac57600080fd5b50600654610448906001600160a01b031681565b3480156106cc57600080fd5b506103c0610dc3565b3480156106e157600080fd5b506103c06106f0366004612aee565b610dde565b34801561070157600080fd5b50600a54610388906601000000000000900461ffff1681565b34801561072657600080fd5b50610471610735366004612c1a565b6001600160a01b031660009081526020819052604090205490565b34801561075c57600080fd5b506103c0610f08565b34801561077157600080fd5b50610404610f1c565b34801561078657600080fd5b506103c0610795366004612c4c565b610f37565b3480156107a657600080fd5b506103c06107b5366004612c1a565b610f6a565b3480156107c657600080fd5b506103c06107d5366004612c1a565b610f93565b3480156107e657600080fd5b506103c06107f5366004612c1a565b610fff565b34801561080657600080fd5b506103c0611071565b34801561081b57600080fd5b506005546001600160a01b0316610448565b34801561083957600080fd5b506103d7611173565b34801561084e57600080fd5b506103c061085d366004612c4c565b611182565b34801561086e57600080fd5b5061040461087d366004612b94565b61123b565b34801561088e57600080fd5b5061040461089d366004612b94565b6112e5565b3480156108ae57600080fd5b506104046108bd366004612c1a565b60116020526000908152604090205460ff1681565b3480156108de57600080fd5b506103c06108ed366004612c4c565b6112f3565b3480156108fe57600080fd5b506103c061090d366004612bc0565b61135a565b34801561091e57600080fd5b5061047160075481565b34801561093457600080fd5b506103c0610943366004612c85565b611409565b34801561095457600080fd5b506105097f00000000000000000000000000000000000000000000000000000000011277a081565b34801561098857600080fd5b50610404610997366004612bc0565b61154f565b3480156109a857600080fd5b50600a546103889061ffff1681565b3480156109c357600080fd5b506104716109d2366004612c85565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a0957600080fd5b506103c0610a18366004612c1a565b611694565b348015610a2957600080fd5b5061047160085481565b348015610a3f57600080fd5b506103c0610a4e366004612c1a565b611809565b348015610a5f57600080fd5b5061047160095481565b348015610a7557600080fd5b50600a54610388906a0100000000000000000000900461ffff1681565b348015610a9e57600080fd5b50610471600c5481565b348015610ab457600080fd5b50610404610ac3366004612c1a565b6001600160a01b03166000908152600e602052604090205460ff1690565b610ae9611899565b600a805461ffff8481166401000000000265ffff000000001991871662010000029190911665ffffffff00001990921691909117179055610b2a8284612cc9565b61ffff16606414610b825760405162461bcd60e51b815260206004820152601960248201527f546f74616c2070657263656e74206d757374206265203130300000000000000060448201526064015b60405180910390fd5b600a805461ffff191661ffff831690811790915560051015610be65760405162461bcd60e51b815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610b79565b505050565b606060038054610bfa90612ceb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2690612ceb565b8015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b5050505050905090565b600033610c8b8185856118f3565b60019150505b92915050565b610c9f611899565b670de0b6b3a76400006103e8610cb460025490565b610cbf906005612d25565b610cc99190612d3c565b610cd39190612d3c565b811015610d485760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610b79565b610d5a81670de0b6b3a7640000612d25565b60075550565b600033610d6e858285611a17565b610d79858585611aa3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610c8b9082908690610dbe908790612d5e565b6118f3565b610dcb611899565b600d805462ff0000191662010000179055565b610de6611899565b600a805461ffff8481166a0100000000000000000000026bffff00000000000000000000199187166801000000000000000002919091166bffffffff00000000000000001990921691909117179055610e3f8284612cc9565b61ffff16606414610e925760405162461bcd60e51b815260206004820152601960248201527f546f74616c2070657263656e74206d75737420626520313030000000000000006044820152606401610b79565b600a805467ffff0000000000001916660100000000000061ffff84169081029190911790915560051015610be65760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610b79565b610f10611899565b610f1a600061224b565b565b6000610f26611899565b50600d805461ff0019169055600190565b610f3f611899565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b610f72611899565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b610f9b611899565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fe8576040519150601f19603f3d011682016040523d82523d6000602084013e610fed565b606091505b5050905080610ffb57600080fd5b5050565b611007611899565b6006546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309590600090a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b611079611899565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa1580156110b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110db9190612d71565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111469190612d8a565b5060405133904780156108fc02916000818181858888f19350505050158015610ffb573d6000803e3d6000fd5b606060048054610bfa90612ceb565b61118a611899565b7f0000000000000000000000006fdf03d96c40736f787b6354aed7ca3ae8e3d3726001600160a01b0316826001600160a01b0316036112315760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b79565b610ffb82826122aa565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156112d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610b79565b610d7982868684036118f3565b600033610c8b818585611aa3565b6112fb611899565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611362611899565b670de0b6b3a76400006103e861137760025490565b61138290600a612d25565b61138c9190612d3c565b6113969190612d3c565b8110156113f15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610b79565b61140381670de0b6b3a7640000612d25565b60095550565b611411611899565b6001600160a01b0382166114675760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b79565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d29190612d71565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115499190612d8a565b50505050565b6000611559611899565b620186a061156660025490565b611571906001612d25565b61157b9190612d3c565b8210156115f05760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610b79565b6103e86115fc60025490565b611607906005612d25565b6116119190612d3c565b8211156116865760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610b79565b50600881905560015b919050565b61169c611899565b600d5462010000900460ff16156116ff5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610b79565b7f0000000000000000000000006fdf03d96c40736f787b6354aed7ca3ae8e3d3726001600160a01b0316816001600160a01b03161415801561177357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316816001600160a01b031614155b6117e55760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610b79565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b611811611899565b6001600160a01b03811661188d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b79565b6118968161224b565b50565b6005546001600160a01b03163314610f1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b79565b6001600160a01b0383166119555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b79565b6001600160a01b0382166119b65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b79565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146115495781811015611a965760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b79565b61154984848484036118f3565b6001600160a01b038316611b075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b79565b6001600160a01b038216611b695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b79565b6001600160a01b0383166000908152600e602052604090205460ff1615611bd25760405162461bcd60e51b815260206004820152601360248201527f53656e646572205f626c61636b6c6973746564000000000000000000000000006044820152606401610b79565b6001600160a01b0382166000908152600e602052604090205460ff1615611c3b5760405162461bcd60e51b815260206004820152601560248201527f5265636569766572205f626c61636b6c697374656400000000000000000000006044820152606401610b79565b80600003611c4f57610be6838360006122fe565b600d54610100900460ff168015611f54576005546001600160a01b03858116911614801590611c8c57506005546001600160a01b03848116911614155b8015611ca057506001600160a01b03831615155b8015611cb757506001600160a01b03831661dead14155b8015611cc65750600d5460ff16155b15611f54576001600160a01b03841660009081526011602052604090205460ff168015611d0c57506001600160a01b03831660009081526010602052604090205460ff16155b15611e0257600754821115611d895760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610b79565b6009546001600160a01b038416600090815260208190526040902054611daf9084612d5e565b1115611dfd5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b79565b611f54565b6001600160a01b03831660009081526011602052604090205460ff168015611e4357506001600160a01b03841660009081526010602052604090205460ff16155b15611ec057600754821115611dfd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610b79565b6001600160a01b03831660009081526010602052604090205460ff16611f54576009546001600160a01b038416600090815260208190526040902054611f069084612d5e565b1115611f545760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b79565b3060009081526020819052604090205460085481108015908190611f7b5750600d5460ff16155b8015611fa057506001600160a01b03861660009081526011602052604090205460ff16155b8015611fc557506001600160a01b0386166000908152600f602052604090205460ff16155b8015611fea57506001600160a01b0385166000908152600f602052604090205460ff16155b1561200f57600d805460ff191660011790556120046124b9565b600d805460ff191690555b600d546001600160a01b0387166000908152600f602052604090205460ff9182161591168061205657506001600160a01b0386166000908152600f602052604090205460ff165b1561205f575060005b60008115612236576001600160a01b03871660009081526011602052604090205460ff16801561209e5750600a546601000000000000900461ffff1615155b1561214d5760646120ae8661267a565b6120b89088612d25565b6120c29190612d3c565b600a549091506064906120e59068010000000000000000900461ffff1683612d25565b6120ef9190612d3c565b600b60008282546121009190612d5e565b9091555050600a54606490612127906a0100000000000000000000900461ffff1683612d25565b6121319190612d3c565b600c60008282546121429190612d5e565b909155506122189050565b6001600160a01b03881660009081526011602052604090205460ff16801561217a5750600a5461ffff1615155b1561221857606461218a86612773565b6121949088612d25565b61219e9190612d3c565b600a549091506064906121bb9062010000900461ffff1683612d25565b6121c59190612d3c565b600b60008282546121d69190612d5e565b9091555050600a546064906121f790640100000000900461ffff1683612d25565b6122019190612d3c565b600c60008282546122129190612d5e565b90915550505b8015612229576122298830836122fe565b6122338187612da7565b95505b6122418888886122fe565b5050505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b79565b6001600160a01b0382166123c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b79565b6001600160a01b038316600090815260208190526040902054818110156124535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610b79565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611549565b3060009081526020819052604081205490506000600c54600b546124dd9190612d5e565b905060008215806124ec575081155b156124f657505050565b600854612504906014612d25565b83111561251c57600854612519906014612d25565b92505b6000600283600b548661252f9190612d25565b6125399190612d3c565b6125439190612d3c565b905060006125518286612da7565b90504761255d826127fe565b60006125698247612da7565b905060006002600b5461257c9190612d3c565b6125869088612da7565b600c546125939084612d25565b61259d9190612d3c565b905060006125ab8284612da7565b6000600b819055600c8190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612603576040519150601f19603f3d011682016040523d82523d6000602084013e612608565b606091505b5090975050851580159061261c5750600081115b1561266f5761262b86826129be565b600b54604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b600081612697575050600a546601000000000000900461ffff1690565b600a5461ffff6601000000000000909104166fffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000011277a08116907f00000000000000000000000000000000000000000000000000000000000000051661270a8183612d5e565b43111561272b575050600a546601000000000000900461ffff169392505050565b60006127378343612da7565b9050600082612747836064612d25565b6127519190612d3c565b61275c906064612da7565b9050848110156127695750835b9695505050505050565b600081612786575050600a5461ffff1690565b600a5461ffff166fffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000011277a08116907f0000000000000000000000000000000000000000000000000000000000000005166127ee8183612d5e565b43111561272b5750909392505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061283357612833612dba565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d59190612dd0565b816001815181106128e8576128e8612dba565b60200260200101906001600160a01b031690816001600160a01b031681525050612933307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118f3565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612988908590600090869030904290600401612ded565b600060405180830381600087803b1580156129a257600080fd5b505af11580156129b6573d6000803e3d6000fd5b505050505050565b6129e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118f3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612a306005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612ab0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ad59190612e5e565b5050505050565b803561ffff8116811461168f57600080fd5b600080600060608486031215612b0357600080fd5b612b0c84612adc565b9250612b1a60208501612adc565b9150612b2860408501612adc565b90509250925092565b600060208083528351808285015260005b81811015612b5e57858101830151858201604001528201612b42565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461189657600080fd5b60008060408385031215612ba757600080fd5b8235612bb281612b7f565b946020939093013593505050565b600060208284031215612bd257600080fd5b5035919050565b600080600060608486031215612bee57600080fd5b8335612bf981612b7f565b92506020840135612c0981612b7f565b929592945050506040919091013590565b600060208284031215612c2c57600080fd5b8135612c3781612b7f565b9392505050565b801515811461189657600080fd5b60008060408385031215612c5f57600080fd5b8235612c6a81612b7f565b91506020830135612c7a81612c3e565b809150509250929050565b60008060408385031215612c9857600080fd5b8235612ca381612b7f565b91506020830135612c7a81612b7f565b634e487b7160e01b600052601160045260246000fd5b61ffff818116838216019080821115612ce457612ce4612cb3565b5092915050565b600181811c90821680612cff57607f821691505b602082108103612d1f57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610c9157610c91612cb3565b600082612d5957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c9157610c91612cb3565b600060208284031215612d8357600080fd5b5051919050565b600060208284031215612d9c57600080fd5b8151612c3781612c3e565b81810381811115610c9157610c91612cb3565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612de257600080fd5b8151612c3781612b7f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e3d5784516001600160a01b031683529383019391830191600101612e18565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e7357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220bafc9f057fe6792e82b4d09609fb528f4947fe120bc70476905c4e82423212fb64736f6c63430008130033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000005

-----Decoded View---------------
Arg [0] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _antibotPeriod (uint128): 5

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


Deployed Bytecode Sourcemap

497:16615:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1018:27;;;;;;;;;;-1:-1:-1;1018:27:8;;;;;;;;;;;;;;188:6:9;176:19;;;158:38;;146:2;131:18;1018:27:8;;;;;;;;5372:450;;;;;;;;;;-1:-1:-1;5372:450:8;;;;;:::i;:::-;;:::i;:::-;;2219:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4579:201::-;;;;;;;;;;-1:-1:-1;4579:201:1;;;;;:::i;:::-;;:::i;:::-;;;1901:14:9;;1894:22;1876:41;;1864:2;1849:18;4579:201:1;1736:187:9;543:51:8;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2119:55:9;;;2101:74;;2089:2;2074:18;543:51:8;1928:253:9;3348:108:1;;;;;;;;;;-1:-1:-1;3436:12:1;;3348:108;;;2332:25:9;;;2320:2;2305:18;3348:108:1;2186:177:9;1165:33:8;;;;;;;;;;;;;;;;4824:275;;;;;;;;;;-1:-1:-1;4824:275:8;;;;;:::i;:::-;;:::i;5360:261:1:-;;;;;;;;;;-1:-1:-1;5360:261:1;;;;;:::i;:::-;;:::i;689:38:8:-;;;;;;;;;;;;;;;;;;3190:34:9;3178:47;;;3160:66;;3148:2;3133:18;689:38:8;3014:218:9;3190:93:1;;;;;;;;;;-1:-1:-1;3190:93:1;;3273:2;3379:36:9;;3367:2;3352:18;3190:93:1;3237:184:9;6030:238:1;;;;;;;;;;-1:-1:-1;6030:238:1;;;;;:::i;:::-;;:::i;1088:33:8:-;;;;;;;;;;-1:-1:-1;1088:33:8;;;;;;;;;;;1311:38;;;;;;;;;;-1:-1:-1;1311:38:8;;;;;;;;;;;979:32;;;;;;;;;;-1:-1:-1;979:32:8;;;;;;;;;;;601:38;;;;;;;;;;;;;;;1271:33;;;;;;;;;;-1:-1:-1;1271:33:8;;;;;;;;;;;1599:62;;;;;;;;;;-1:-1:-1;1599:62:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;734:54;;;;;;;;;;;;781:6;734:54;;9081:126;;;;;;;;;;-1:-1:-1;9081:126:8;;;;;:::i;:::-;-1:-1:-1;;;;;9171:28:8;9147:4;9171:28;;;:19;:28;;;;;;;;;9081:126;797:25;;;;;;;;;;-1:-1:-1;797:25:8;;;;-1:-1:-1;;;;;797:25:8;;;7915:90;;;;;;;;;;;;;:::i;5830:458::-;;;;;;;;;;-1:-1:-1;5830:458:8;;;;;:::i;:::-;;:::i;1054:27::-;;;;;;;;;;-1:-1:-1;1054:27:8;;;;;;;;;;;3519:127:1;;;;;;;;;;-1:-1:-1;3519:127:1;;;;;:::i;:::-;-1:-1:-1;;;;;3620:18:1;3593:7;3620:18;;;;;;;;;;;;3519:127;1884:103:0;;;;;;;;;;;;;:::i;4128:121:8:-;;;;;;;;;;;;;:::i;7419:148::-;;;;;;;;;;-1:-1:-1;7419:148:8;;;;;:::i;:::-;;:::i;8974:99::-;;;;;;;;;;-1:-1:-1;8974:99:8;;;;;:::i;:::-;;:::i;7025:196::-;;;;;;;;;;-1:-1:-1;7025:196:8;;;;;:::i;:::-;;:::i;6296:161::-;;;;;;;;;;-1:-1:-1;6296:161:8;;;;;:::i;:::-;;:::i;6465:256::-;;;;;;;;;;;;;:::i;1243:87:0:-;;;;;;;;;;-1:-1:-1;1316:6:0;;-1:-1:-1;;;;;1316:6:0;1243:87;;2438:104:1;;;;;;;;;;;;;:::i;7575:286:8:-;;;;;;;;;;-1:-1:-1;7575:286:8;;;;;:::i;:::-;;:::i;6771:436:1:-;;;;;;;;;;-1:-1:-1;6771:436:1;;;;;:::i;:::-;;:::i;3852:193::-;;;;;;;;;;-1:-1:-1;3852:193:1;;;;;:::i;:::-;;:::i;1819:57:8:-;;;;;;;;;;-1:-1:-1;1819:57:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;7229:182;;;;;;;;;;-1:-1:-1;7229:182:8;;;;;:::i;:::-;;:::i;5107:257::-;;;;;;;;;;-1:-1:-1;5107:257:8;;;;;:::i;:::-;;:::i;831:35::-;;;;;;;;;;;;;;;;6729:288;;;;;;;;;;-1:-1:-1;6729:288:8;;;;;:::i;:::-;;:::i;646:36::-;;;;;;;;;;;;;;;4319:497;;;;;;;;;;-1:-1:-1;4319:497:8;;;;;:::i;:::-;;:::i;946:26::-;;;;;;;;;;-1:-1:-1;946:26:8;;;;;;;;4108:151:1;;;;;;;;;;-1:-1:-1;4108:151:1;;;;;:::i;:::-;-1:-1:-1;;;;;4224:18:1;;;4197:7;4224:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4108:151;8464:377:8;;;;;;;;;;-1:-1:-1;8464:377:8;;;;;:::i;:::-;;:::i;873:33::-;;;;;;;;;;;;;;;;2142:201:0;;;;;;;;;;-1:-1:-1;2142:201:0;;;;;:::i;:::-;;:::i;913:24:8:-;;;;;;;;;;;;;;;;1128:28;;;;;;;;;;-1:-1:-1;1128:28:8;;;;;;;;;;;1205;;;;;;;;;;;;;;;;9215:114;;;;;;;;;;-1:-1:-1;9215:114:8;;;;;:::i;:::-;-1:-1:-1;;;;;9300:21:8;9276:4;9300:21;;;:12;:21;;;;;;;;;9215:114;5372:450;1129:13:0;:11;:13::i;:::-;5534:18:8::1;:41:::0;;::::1;5586:31:::0;;::::1;::::0;::::1;-1:-1:-1::0;;5534:41:8;;::::1;::::0;::::1;5586:31:::0;;;;-1:-1:-1;;5586:31:8;;;;;;;::::1;::::0;;5636:38:::1;5602:15:::0;5555:20;5636:38:::1;:::i;:::-;:45;;5678:3;5636:45;5628:83;;;::::0;-1:-1:-1;;;5628:83:8;;5319:2:9;5628:83:8::1;::::0;::::1;5301:21:9::0;5358:2;5338:18;;;5331:30;5397:27;5377:18;;;5370:55;5442:18;;5628:83:8::1;;;;;;;;;5722:12;:28:::0;;-1:-1:-1;;5722:28:8::1;;::::0;::::1;::::0;;::::1;::::0;;;5786:1:::1;-1:-1:-1::0;5769:18:8::1;5761:53;;;::::0;-1:-1:-1;;;5761:53:8;;5673:2:9;5761:53:8::1;::::0;::::1;5655:21:9::0;5712:2;5692:18;;;5685:30;5751:24;5731:18;;;5724:52;5793:18;;5761:53:8::1;5471:346:9::0;5761:53:8::1;5372:450:::0;;;:::o;2219:100:1:-;2273:13;2306:5;2299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2219:100;:::o;4579:201::-;4662:4;736:10:4;4718:32:1;736:10:4;4734:7:1;4743:6;4718:8;:32::i;:::-;4768:4;4761:11;;;4579:201;;;;;:::o;4824:275:8:-;1129:13:0;:11;:13::i;:::-;4961:4:8::1;4953;4932:13;3436:12:1::0;;;3348:108;4932:13:8::1;:17;::::0;4948:1:::1;4932:17;:::i;:::-;4931:26;;;;:::i;:::-;4930:35;;;;:::i;:::-;4920:6;:45;;4898:142;;;::::0;-1:-1:-1;;;4898:142:8;;6804:2:9;4898:142:8::1;::::0;::::1;6786:21:9::0;6843:2;6823:18;;;6816:30;6882:34;6862:18;;;6855:62;6953:17;6933:18;;;6926:45;6988:19;;4898:142:8::1;6602:411:9::0;4898:142:8::1;5074:17;:6:::0;5084::::1;5074:17;:::i;:::-;5051:20;:40:::0;-1:-1:-1;4824:275:8:o;5360:261:1:-;5457:4;736:10:4;5515:38:1;5531:4;736:10:4;5546:6:1;5515:15;:38::i;:::-;5564:27;5574:4;5580:2;5584:6;5564:9;:27::i;:::-;-1:-1:-1;5609:4:1;;5360:261;-1:-1:-1;;;;5360:261:1:o;6030:238::-;736:10:4;6118:4:1;4224:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4224:27:1;;;;;;;;;;6118:4;;736:10:4;6174:64:1;;736:10:4;;4224:27:1;;6199:38;;6227:10;;6199:38;:::i;:::-;6174:8;:64::i;7915:90:8:-;1129:13:0;:11;:13::i;:::-;7972:18:8::1;:25:::0;;-1:-1:-1;;7972:25:8::1;::::0;::::1;::::0;;7915:90::o;5830:458::-;1129:13:0;:11;:13::i;:::-;5994:19:8::1;:42:::0;;::::1;6047:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;5994:42:8;;::::1;::::0;::::1;6047:32:::0;;;;-1:-1:-1;;6047:32:8;;;;;;;::::1;::::0;;6098:38:::1;6064:15:::0;6016:20;6098:38:::1;:::i;:::-;:45;;6140:3;6098:45;6090:83;;;::::0;-1:-1:-1;;;6090:83:8;;5319:2:9;6090:83:8::1;::::0;::::1;5301:21:9::0;5358:2;5338:18;;;5331:30;5397:27;5377:18;;;5370:55;5442:18;;6090:83:8::1;5117:349:9::0;6090:83:8::1;6184:13;:30:::0;;-1:-1:-1;;6184:30:8::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;6251:1:::1;-1:-1:-1::0;6233:19:8::1;6225:55;;;::::0;-1:-1:-1;;;6225:55:8;;7350:2:9;6225:55:8::1;::::0;::::1;7332:21:9::0;7389:2;7369:18;;;7362:30;7428:25;7408:18;;;7401:53;7471:18;;6225:55:8::1;7148:347:9::0;1884:103:0;1129:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;4128:121:8:-;4180:4;1129:13:0;:11;:13::i;:::-;-1:-1:-1;4197:14:8::1;:22:::0;;-1:-1:-1;;4197:22:8::1;::::0;;:14:::1;4128:121:::0;:::o;7419:148::-;1129:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;7514:38:8;;;::::1;;::::0;;;:30:::1;:38;::::0;;;;:45;;-1:-1:-1;;7514:45:8::1;::::0;::::1;;::::0;;;::::1;::::0;;7419:148::o;8974:99::-;1129:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;9038:19:8::1;9060:5;9038:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;9038:27:8::1;::::0;;8974:99::o;7025:196::-;1129:13:0;:11;:13::i;:::-;7098:12:8::1;7116:6;-1:-1:-1::0;;;;;7116:11:8::1;7149:21;7116:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7097:89;;;7205:7;7197:16;;;::::0;::::1;;7086:135;7025:196:::0;:::o;6296:161::-;1129:13:0;:11;:13::i;:::-;6405:10:8::1;::::0;6376:40:::1;::::0;-1:-1:-1;;;;;6405:10:8;;::::1;::::0;6376:40;::::1;::::0;::::1;::::0;6405:10:::1;::::0;6376:40:::1;6427:10;:22:::0;;-1:-1:-1;;6427:22:8::1;-1:-1:-1::0;;;;;6427:22:8;;;::::1;::::0;;;::::1;::::0;;6296:161::o;6465:256::-;1129:13:0;:11;:13::i;:::-;6543:46:8::1;::::0;-1:-1:-1;;;6543:46:8;;6558:4:::1;6543:46;::::0;::::1;2101:74:9::0;;;6525:15:8::1;::::0;6543:31:::1;::::0;2074:18:9;;6543:46:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6600:51;::::0;-1:-1:-1;;;6600:51:8;;6631:10:::1;6600:51;::::0;::::1;8073:74:9::0;8163:18;;;8156:34;;;6525:64:8;;-1:-1:-1;6615:4:8::1;::::0;6600:30:::1;::::0;8046:18:9;;6600:51:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;6662:51:8::1;::::0;6670:10:::1;::::0;6691:21:::1;6662:51:::0;::::1;;;::::0;::::1;::::0;;;6691:21;6670:10;6662:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;2438:104:1::0;2494:13;2527:7;2520:14;;;;;:::i;7575:286:8:-;1129:13:0;:11;:13::i;:::-;7701::8::1;-1:-1:-1::0;;;;;7693:21:8::1;:4;-1:-1:-1::0;;;;;7693:21:8::1;::::0;7671:128:::1;;;::::0;-1:-1:-1;;;7671:128:8;;8653:2:9;7671:128:8::1;::::0;::::1;8635:21:9::0;8692:2;8672:18;;;8665:30;8731:34;8711:18;;;8704:62;8802:27;8782:18;;;8775:55;8847:19;;7671:128:8::1;8451:421:9::0;7671:128:8::1;7812:41;7841:4;7847:5;7812:28;:41::i;6771:436:1:-:0;736:10:4;6864:4:1;4224:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4224:27:1;;;;;;;;;;6864:4;;736:10:4;7011:15:1;6991:16;:35;;6983:85;;;;-1:-1:-1;;;6983:85:1;;9079:2:9;6983:85:1;;;9061:21:9;9118:2;9098:18;;;9091:30;9157:34;9137:18;;;9130:62;9228:7;9208:18;;;9201:35;9253:19;;6983:85:1;8877:401:9;6983:85:1;7104:60;7113:5;7120:7;7148:15;7129:16;:34;7104:8;:60::i;3852:193::-;3931:4;736:10:4;3987:28:1;736:10:4;4004:2:1;4008:6;3987:9;:28::i;7229:182:8:-;1129:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;7314:28:8;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;7314:39:8::1;::::0;::::1;;::::0;;::::1;::::0;;;7369:34;;1876:41:9;;;7369:34:8::1;::::0;1849:18:9;7369:34:8::1;;;;;;;7229:182:::0;;:::o;5107:257::-;1129:13:0;:11;:13::i;:::-;5248:4:8::1;5240;5218:13;3436:12:1::0;;;3348:108;5218:13:8::1;:18;::::0;5234:2:::1;5218:18;:::i;:::-;5217:27;;;;:::i;:::-;5216:36;;;;:::i;:::-;5206:6;:46;;5184:132;;;::::0;-1:-1:-1;;;5184:132:8;;9485:2:9;5184:132:8::1;::::0;::::1;9467:21:9::0;9524:2;9504:18;;;9497:30;9563:34;9543:18;;;9536:62;-1:-1:-1;;;9614:18:9;;;9607:34;9658:19;;5184:132:8::1;9283:400:9::0;5184:132:8::1;5339:17;:6:::0;5349::::1;5339:17;:::i;:::-;5327:9;:29:::0;-1:-1:-1;5107:257:8:o;6729:288::-;1129:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;6824:20:8;::::1;6816:59;;;::::0;-1:-1:-1;;;6816:59:8;;9890:2:9;6816:59:8::1;::::0;::::1;9872:21:9::0;9929:2;9909:18;;;9902:30;9968:28;9948:18;;;9941:56;10014:18;;6816:59:8::1;9688:350:9::0;6816:59:8::1;6913:39;::::0;-1:-1:-1;;;6913:39:8;;6946:4:::1;6913:39;::::0;::::1;2101:74:9::0;6886:24:8::1;::::0;-1:-1:-1;;;;;6913:24:8;::::1;::::0;::::1;::::0;2074:18:9;;6913:39:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6963:46;::::0;-1:-1:-1;;;6963:46:8;;-1:-1:-1;;;;;8091:55:9;;;6963:46:8::1;::::0;::::1;8073:74:9::0;8163:18;;;8156:34;;;6886:66:8;;-1:-1:-1;6963:23:8;;::::1;::::0;::::1;::::0;8046:18:9;;6963:46:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6805:212;6729:288:::0;;:::o;4319:497::-;4427:4;1129:13:0;:11;:13::i;:::-;4506:6:8::1;4485:13;3436:12:1::0;;;3348:108;4485:13:8::1;:17;::::0;4501:1:::1;4485:17;:::i;:::-;4484:28;;;;:::i;:::-;4471:9;:41;;4449:144;;;::::0;-1:-1:-1;;;4449:144:8;;10245:2:9;4449:144:8::1;::::0;::::1;10227:21:9::0;10284:2;10264:18;;;10257:30;10323:34;10303:18;;;10296:62;10394:23;10374:18;;;10367:51;10435:19;;4449:144:8::1;10043:417:9::0;4449:144:8::1;4661:4;4640:13;3436:12:1::0;;;3348:108;4640:13:8::1;:17;::::0;4656:1:::1;4640:17;:::i;:::-;4639:26;;;;:::i;:::-;4626:9;:39;;4604:141;;;::::0;-1:-1:-1;;;4604:141:8;;10667:2:9;4604:141:8::1;::::0;::::1;10649:21:9::0;10706:2;10686:18;;;10679:30;10745:34;10725:18;;;10718:62;10816:22;10796:18;;;10789:50;10856:19;;4604:141:8::1;10465:416:9::0;4604:141:8::1;-1:-1:-1::0;4756:18:8::1;:30:::0;;;4804:4:::1;1153:1:0;4319:497:8::0;;;:::o;8464:377::-;1129:13:0;:11;:13::i;:::-;8552:18:8::1;::::0;;;::::1;;;8551:19;8543:65;;;::::0;-1:-1:-1;;;8543:65:8;;11088:2:9;8543:65:8::1;::::0;::::1;11070:21:9::0;11127:2;11107:18;;;11100:30;11166:34;11146:18;;;11139:62;-1:-1:-1;;;11217:18:9;;;11210:31;11258:19;;8543:65:8::1;10886:397:9::0;8543:65:8::1;8662:13;-1:-1:-1::0;;;;;8641:35:8::1;:9;-1:-1:-1::0;;;;;8641:35:8::1;;;:76;;;;;8701:15;-1:-1:-1::0;;;;;8680:37:8::1;:9;-1:-1:-1::0;;;;;8680:37:8::1;;;8641:76;8619:173;;;::::0;-1:-1:-1;;;8619:173:8;;11490:2:9;8619:173:8::1;::::0;::::1;11472:21:9::0;11529:2;11509:18;;;11502:30;11568:34;11548:18;;;11541:62;11639:16;11619:18;;;11612:44;11673:19;;8619:173:8::1;11288:410:9::0;8619:173:8::1;-1:-1:-1::0;;;;;8803:23:8::1;;::::0;;;:12:::1;:23;::::0;;;;:30;;-1:-1:-1;;8803:30:8::1;8829:4;8803:30;::::0;;8464:377::o;2142:201:0:-;1129:13;:11;:13::i;:::-;-1:-1:-1;;;;;2231:22:0;::::1;2223:73;;;::::0;-1:-1:-1;;;2223:73:0;;11905:2:9;2223:73:0::1;::::0;::::1;11887:21:9::0;11944:2;11924:18;;;11917:30;11983:34;11963:18;;;11956:62;12054:8;12034:18;;;12027:36;12080:19;;2223:73:0::1;11703:402:9::0;2223:73:0::1;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1408:132::-;1316:6;;-1:-1:-1;;;;;1316:6:0;736:10:4;1472:23:0;1464:68;;;;-1:-1:-1;;;1464:68:0;;12312:2:9;1464:68:0;;;12294:21:9;;;12331:18;;;12324:30;12390:34;12370:18;;;12363:62;12442:18;;1464:68:0;12110:356:9;10764:346:1;-1:-1:-1;;;;;10866:19:1;;10858:68;;;;-1:-1:-1;;;10858:68:1;;12673:2:9;10858:68:1;;;12655:21:9;12712:2;12692:18;;;12685:30;12751:34;12731:18;;;12724:62;-1:-1:-1;;;12802:18:9;;;12795:34;12846:19;;10858:68:1;12471:400:9;10858:68:1;-1:-1:-1;;;;;10945:21:1;;10937:68;;;;-1:-1:-1;;;10937:68:1;;13078:2:9;10937:68:1;;;13060:21:9;13117:2;13097:18;;;13090:30;13156:34;13136:18;;;13129:62;-1:-1:-1;;;13207:18:9;;;13200:32;13249:19;;10937:68:1;12876:398:9;10937:68:1;-1:-1:-1;;;;;11018:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11070:32;;2332:25:9;;;11070:32:1;;2305:18:9;11070:32:1;;;;;;;10764:346;;;:::o;11401:419::-;-1:-1:-1;;;;;4224:18:1;;;11502:24;4224:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;11569:37:1;;11565:248;;11651:6;11631:16;:26;;11623:68;;;;-1:-1:-1;;;11623:68:1;;13481:2:9;11623:68:1;;;13463:21:9;13520:2;13500:18;;;13493:30;13559:31;13539:18;;;13532:59;13608:18;;11623:68:1;13279:353:9;11623:68:1;11735:51;11744:5;11751:7;11779:6;11760:16;:25;11735:8;:51::i;9337:3675:8:-;-1:-1:-1;;;;;9469:18:8;;9461:68;;;;-1:-1:-1;;;9461:68:8;;13839:2:9;9461:68:8;;;13821:21:9;13878:2;13858:18;;;13851:30;13917:34;13897:18;;;13890:62;-1:-1:-1;;;13968:18:9;;;13961:35;14013:19;;9461:68:8;13637:401:9;9461:68:8;-1:-1:-1;;;;;9548:16:8;;9540:64;;;;-1:-1:-1;;;9540:64:8;;14245:2:9;9540:64:8;;;14227:21:9;14284:2;14264:18;;;14257:30;14323:34;14303:18;;;14296:62;-1:-1:-1;;;14374:18:9;;;14367:33;14417:19;;9540:64:8;14043:399:9;9540:64:8;-1:-1:-1;;;;;9624:18:8;;;;;;:12;:18;;;;;;;;9623:19;9615:50;;;;-1:-1:-1;;;9615:50:8;;14649:2:9;9615:50:8;;;14631:21:9;14688:2;14668:18;;;14661:30;14727:21;14707:18;;;14700:49;14766:18;;9615:50:8;14447:343:9;9615:50:8;-1:-1:-1;;;;;9685:16:8;;;;;;:12;:16;;;;;;;;9684:17;9676:50;;;;-1:-1:-1;;;9676:50:8;;14997:2:9;9676:50:8;;;14979:21:9;15036:2;15016:18;;;15009:30;15075:23;15055:18;;;15048:51;15116:18;;9676:50:8;14795:345:9;9676:50:8;9743:6;9753:1;9743:11;9739:93;;9771:28;9787:4;9793:2;9797:1;9771:15;:28::i;9739:93::-;9867:14;;;;;;;9894:1450;;;;1316:6:0;;-1:-1:-1;;;;;9952:15:8;;;1316:6:0;;9952:15:8;;;;:49;;-1:-1:-1;1316:6:0;;-1:-1:-1;;;;;9988:13:8;;;1316:6:0;;9988:13:8;;9952:49;:86;;;;-1:-1:-1;;;;;;10022:16:8;;;;9952:86;:128;;;;-1:-1:-1;;;;;;10059:21:8;;10073:6;10059:21;;9952:128;:159;;;;-1:-1:-1;10102:9:8;;;;10101:10;9952:159;9930:1403;;;-1:-1:-1;;;;;10200:31:8;;;;;;:25;:31;;;;;;;;:91;;;;-1:-1:-1;;;;;;10257:34:8;;;;;;:30;:34;;;;;;;;10256:35;10200:91;10174:1144;;;10378:20;;10368:6;:30;;10334:169;;;;-1:-1:-1;;;10334:169:8;;15347:2:9;10334:169:8;;;15329:21:9;15386:2;15366:18;;;15359:30;15425:34;15405:18;;;15398:62;15496:23;15476:18;;;15469:51;15537:19;;10334:169:8;15145:417:9;10334:169:8;10586:9;;-1:-1:-1;;;;;3620:18:1;;3593:7;3620:18;;;;;;;;;;;10560:22:8;;:6;:22;:::i;:::-;:35;;10526:140;;;;-1:-1:-1;;;10526:140:8;;15769:2:9;10526:140:8;;;15751:21:9;15808:2;15788:18;;;15781:30;15847:21;15827:18;;;15820:49;15886:18;;10526:140:8;15567:343:9;10526:140:8;10174:1144;;;-1:-1:-1;;;;;10764:29:8;;;;;;:25;:29;;;;;;;;:91;;;;-1:-1:-1;;;;;;10819:36:8;;;;;;:30;:36;;;;;;;;10818:37;10764:91;10738:580;;;10942:20;;10932:6;:30;;10898:170;;;;-1:-1:-1;;;10898:170:8;;16117:2:9;10898:170:8;;;16099:21:9;16156:2;16136:18;;;16129:30;16195:34;16175:18;;;16168:62;16266:24;16246:18;;;16239:52;16308:19;;10898:170:8;15915:418:9;10738:580:8;-1:-1:-1;;;;;11099:34:8;;;;;;:30;:34;;;;;;;;11094:224;;11218:9;;-1:-1:-1;;;;;3620:18:1;;3593:7;3620:18;;;;;;;;;;;11192:22:8;;:6;:22;:::i;:::-;:35;;11158:140;;;;-1:-1:-1;;;11158:140:8;;15769:2:9;11158:140:8;;;15751:21:9;15808:2;15788:18;;;15781:30;15847:21;15827:18;;;15820:49;15886:18;;11158:140:8;15567:343:9;11158:140:8;11405:4;11356:28;3620:18:1;;;;;;;;;;;11463::8;;11439:42;;;;;;;11512:34;;-1:-1:-1;11537:9:8;;;;11536:10;11512:34;:83;;;;-1:-1:-1;;;;;;11564:31:8;;;;;;:25;:31;;;;;;;;11563:32;11512:83;:126;;;;-1:-1:-1;;;;;;11613:25:8;;;;;;:19;:25;;;;;;;;11612:26;11512:126;:167;;;;-1:-1:-1;;;;;;11656:23:8;;;;;;:19;:23;;;;;;;;11655:24;11512:167;11494:302;;;11706:9;:16;;-1:-1:-1;;11706:16:8;11718:4;11706:16;;;11739:11;:9;:11::i;:::-;11767:9;:17;;-1:-1:-1;;11767:17:8;;;11494:302;11824:9;;-1:-1:-1;;;;;11935:25:8;;11808:12;11935:25;;;:19;:25;;;;;;11824:9;;;;11823:10;;11935:25;;:52;;-1:-1:-1;;;;;;11964:23:8;;;;;;:19;:23;;;;;;;;11935:52;11931:100;;;-1:-1:-1;12014:5:8;11931:100;12043:12;12148:7;12144:815;;;-1:-1:-1;;;;;12200:29:8;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;12233:13:8;;;;;;;:17;;12200:50;12196:614;;;12324:3;12287:34;12305:15;12287:17;:34::i;:::-;12278:43;;:6;:43;:::i;:::-;:49;;;;:::i;:::-;12376:19;;12271:56;;-1:-1:-1;12399:3:8;;12369:26;;12376:19;;;;;12271:56;12369:26;:::i;:::-;12368:34;;;;:::i;:::-;12346:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;12446:14:8;;12464:3;;12439:21;;12446:14;;;;;12439:4;:21;:::i;:::-;12438:29;;;;:::i;:::-;12421:13;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;12196:614:8;;-1:-1:-1;12196:614:8;;-1:-1:-1;;;;;12529:31:8;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;12564:12:8;;;;:16;;12529:51;12525:285;;;12653:3;12617:33;12634:15;12617:16;:33::i;:::-;12608:42;;:6;:42;:::i;:::-;:48;;;;:::i;:::-;12705:18;;12601:55;;-1:-1:-1;12727:3:8;;12698:25;;12705:18;;;;;12601:55;12698:25;:::i;:::-;12697:33;;;;:::i;:::-;12675:18;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;12774:13:8;;12791:3;;12767:20;;12774:13;;;;;12767:4;:20;:::i;:::-;12766:28;;;;:::i;:::-;12749:13;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;12525:285:8;12830:8;;12826:91;;12859:42;12875:4;12889;12896;12859:15;:42::i;:::-;12933:14;12943:4;12933:14;;:::i;:::-;;;12144:815;12971:33;12987:4;12993:2;12997:6;12971:15;:33::i;:::-;9450:3562;;;;;9337:3675;;;:::o;2503:191:0:-;2596:6;;;-1:-1:-1;;;;;2613:17:0;;;-1:-1:-1;;2613:17:0;;;;;;;2646:40;;2596:6;;;2613:17;2596:6;;2646:40;;2577:16;;2646:40;2566:128;2503:191;:::o;13020:188:8:-;-1:-1:-1;;;;;13103:31:8;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;13103:39:8;;;;;;;;;;13160:40;;13103:39;;:31;13160:40;;;13020:188;;:::o;7677:806:1:-;-1:-1:-1;;;;;7774:18:1;;7766:68;;;;-1:-1:-1;;;7766:68:1;;13839:2:9;7766:68:1;;;13821:21:9;13878:2;13858:18;;;13851:30;13917:34;13897:18;;;13890:62;-1:-1:-1;;;13968:18:9;;;13961:35;14013:19;;7766:68:1;13637:401:9;7766:68:1;-1:-1:-1;;;;;7853:16:1;;7845:64;;;;-1:-1:-1;;;7845:64:1;;14245:2:9;7845:64:1;;;14227:21:9;14284:2;14264:18;;;14257:30;14323:34;14303:18;;;14296:62;-1:-1:-1;;;14374:18:9;;;14367:33;14417:19;;7845:64:1;14043:399:9;7845:64:1;-1:-1:-1;;;;;7995:15:1;;7973:19;7995:15;;;;;;;;;;;8029:21;;;;8021:72;;;;-1:-1:-1;;;8021:72:1;;16673:2:9;8021:72:1;;;16655:21:9;16712:2;16692:18;;;16685:30;16751:34;16731:18;;;16724:62;16822:8;16802:18;;;16795:36;16848:19;;8021:72:1;16471:402:9;8021:72:1;-1:-1:-1;;;;;8129:15:1;;;:9;:15;;;;;;;;;;;8147:20;;;8129:38;;8347:13;;;;;;;;;;:23;;;;;;8399:26;;2332:25:9;;;8347:13:1;;8399:26;;2305:18:9;8399:26:1;;;;;;;8438:37;5372:450:8;14336:1427;14420:4;14376:23;3620:18:1;;;;;;;;;;;14376:50:8;;14437:25;14486:13;;14465:18;;:34;;;;:::i;:::-;14437:62;-1:-1:-1;14510:12:8;14539:20;;;:46;;-1:-1:-1;14563:22:8;;14539:46;14535:85;;;14602:7;;;14336:1427::o;14535:85::-;14654:18;;:23;;14675:2;14654:23;:::i;:::-;14636:15;:41;14632:115;;;14712:18;;:23;;14733:2;14712:23;:::i;:::-;14694:41;;14632:115;14808:23;14895:1;14875:17;14853:18;;14835:15;:36;;;;:::i;:::-;14834:58;;;;:::i;:::-;:62;;;;:::i;:::-;14808:88;-1:-1:-1;14907:26:8;14936:33;14808:88;14936:15;:33;:::i;:::-;14907:62;-1:-1:-1;15010:21:8;15044:37;14907:62;15044:17;:37::i;:::-;15094:18;15115:41;15139:17;15115:21;:41;:::i;:::-;15094:62;;15167:18;15262:1;15241:18;;:22;;;;:::i;:::-;15220:44;;:17;:44;:::i;:::-;15202:13;;15189:26;;:10;:26;:::i;:::-;15188:77;;;;:::i;:::-;15167:98;-1:-1:-1;15278:23:8;15304;15167:98;15304:10;:23;:::i;:::-;15361:1;15340:18;:22;;;15373:13;:17;;;15425:10;;15417:47;;15278:49;;-1:-1:-1;;;;;;15425:10:8;;15449;;15417:47;15361:1;15417:47;15449:10;15425;15417:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15403:61:8;;-1:-1:-1;;15481:19:8;;;;;:42;;;15522:1;15504:15;:19;15481:42;15477:279;;;15540:47;15554:15;15571;15540:13;:47::i;:::-;15711:18;;15607:137;;;17080:25:9;;;17136:2;17121:18;;17114:34;;;17164:18;;;17157:34;;;;15607:137:8;;;;;;17068:2:9;15607:137:8;;;15477:279;14365:1398;;;;;;;;;14336:1427::o;15771:664::-;15842:7;15866:15;15862:54;;-1:-1:-1;;15903:13:8;;;;;;;;15771:664::o;15862:54::-;15954:13;;;;;;;;15978:34;16001:11;15978:34;;;16048:13;16023:38;16092:29;16023:38;15978:34;16092:29;:::i;:::-;16077:12;:44;16074:82;;;-1:-1:-1;;16143:13:8;;;;;;;;;-1:-1:-1;;;15771:664:8:o;16074:82::-;16169:30;16202:27;16217:12;16202;:27;:::i;:::-;16169:60;-1:-1:-1;16240:18:8;16299:14;16268:28;16169:60;16268:3;:28;:::i;:::-;:45;;;;:::i;:::-;16261:53;;:3;:53;:::i;:::-;16240:74;;16341:14;16328:10;:27;16325:72;;;-1:-1:-1;16383:14:8;16325:72;16417:10;15771:664;-1:-1:-1;;;;;;15771:664:8:o;16443:666::-;16513:7;16537:15;16533:53;;-1:-1:-1;;16574:12:8;;;;;16443:666::o;16533:53::-;16631:12;;;;16654:34;16677:11;16654:34;;;16724:13;16699:38;16768:29;16699:38;16654:34;16768:29;:::i;:::-;16753:12;:44;16750:82;;;-1:-1:-1;16819:13:8;;16443:666;-1:-1:-1;;;16443:666:8:o;13216:590::-;13367:16;;;13381:1;13367:16;;;;;;;;13343:21;;13367:16;;;;;;;;;;-1:-1:-1;13367:16:8;13343:40;;13412:4;13394;13399:1;13394:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;13394:23:8;;;-1:-1:-1;;;;;13394:23:8;;;;;13438:15;-1:-1:-1;;;;;13438:20:8;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13428:4;13433:1;13428:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;13428:32:8;;;-1:-1:-1;;;;;13428:32:8;;;;;13473:62;13490:4;13505:15;13523:11;13473:8;:62::i;:::-;13574:224;;-1:-1:-1;;;13574:224:8;;-1:-1:-1;;;;;13574:15:8;:66;;;;:224;;13655:11;;13681:1;;13725:4;;13752;;13772:15;;13574:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13272:534;13216:590;:::o;13814:514::-;13963:62;13980:4;13995:15;14013:11;13963:8;:62::i;:::-;14068:15;-1:-1:-1;;;;;14068:31:8;;14107:9;14140:4;14160:11;14186:1;14229;14272:7;1316:6:0;;-1:-1:-1;;;;;1316:6:0;;1243:87;14272:7:8;14068:252;;;;;;;;;;-1:-1:-1;;;;;19135:15:9;;;14068:252:8;;;19117:34:9;19167:18;;;19160:34;;;;19210:18;;;19203:34;;;;19253:18;;;19246:34;19317:15;;;19296:19;;;19289:44;14294:15:8;19349:19:9;;;19342:35;19028:19;;14068:252:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;13814:514;;:::o;207:159:9:-;274:20;;334:6;323:18;;313:29;;303:57;;356:1;353;346:12;371:328;445:6;453;461;514:2;502:9;493:7;489:23;485:32;482:52;;;530:1;527;520:12;482:52;553:28;571:9;553:28;:::i;:::-;543:38;;600:37;633:2;622:9;618:18;600:37;:::i;:::-;590:47;;656:37;689:2;678:9;674:18;656:37;:::i;:::-;646:47;;371:328;;;;;:::o;704:548::-;816:4;845:2;874;863:9;856:21;906:6;900:13;949:6;944:2;933:9;929:18;922:34;974:1;984:140;998:6;995:1;992:13;984:140;;;1093:14;;;1089:23;;1083:30;1059:17;;;1078:2;1055:26;1048:66;1013:10;;984:140;;;988:3;1173:1;1168:2;1159:6;1148:9;1144:22;1140:31;1133:42;1243:2;1236;1232:7;1227:2;1219:6;1215:15;1211:29;1200:9;1196:45;1192:54;1184:62;;;;704:548;;;;:::o;1257:154::-;-1:-1:-1;;;;;1336:5:9;1332:54;1325:5;1322:65;1312:93;;1401:1;1398;1391:12;1416:315;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:52;;;1561:1;1558;1551:12;1513:52;1600:9;1587:23;1619:31;1644:5;1619:31;:::i;:::-;1669:5;1721:2;1706:18;;;;1693:32;;-1:-1:-1;;;1416:315:9:o;2368:180::-;2427:6;2480:2;2468:9;2459:7;2455:23;2451:32;2448:52;;;2496:1;2493;2486:12;2448:52;-1:-1:-1;2519:23:9;;2368:180;-1:-1:-1;2368:180:9:o;2553:456::-;2630:6;2638;2646;2699:2;2687:9;2678:7;2674:23;2670:32;2667:52;;;2715:1;2712;2705:12;2667:52;2754:9;2741:23;2773:31;2798:5;2773:31;:::i;:::-;2823:5;-1:-1:-1;2880:2:9;2865:18;;2852:32;2893:33;2852:32;2893:33;:::i;:::-;2553:456;;2945:7;;-1:-1:-1;;;2999:2:9;2984:18;;;;2971:32;;2553:456::o;3657:247::-;3716:6;3769:2;3757:9;3748:7;3744:23;3740:32;3737:52;;;3785:1;3782;3775:12;3737:52;3824:9;3811:23;3843:31;3868:5;3843:31;:::i;:::-;3893:5;3657:247;-1:-1:-1;;;3657:247:9:o;3909:118::-;3995:5;3988:13;3981:21;3974:5;3971:32;3961:60;;4017:1;4014;4007:12;4032:382;4097:6;4105;4158:2;4146:9;4137:7;4133:23;4129:32;4126:52;;;4174:1;4171;4164:12;4126:52;4213:9;4200:23;4232:31;4257:5;4232:31;:::i;:::-;4282:5;-1:-1:-1;4339:2:9;4324:18;;4311:32;4352:30;4311:32;4352:30;:::i;:::-;4401:7;4391:17;;;4032:382;;;;;:::o;4419:388::-;4487:6;4495;4548:2;4536:9;4527:7;4523:23;4519:32;4516:52;;;4564:1;4561;4554:12;4516:52;4603:9;4590:23;4622:31;4647:5;4622:31;:::i;:::-;4672:5;-1:-1:-1;4729:2:9;4714:18;;4701:32;4742:33;4701:32;4742:33;:::i;4812:127::-;4873:10;4868:3;4864:20;4861:1;4854:31;4904:4;4901:1;4894:15;4928:4;4925:1;4918:15;4944:168;5011:6;5037:10;;;5049;;;5033:27;;5072:11;;;5069:37;;;5086:18;;:::i;:::-;5069:37;4944:168;;;;:::o;5822:380::-;5901:1;5897:12;;;;5944;;;5965:61;;6019:4;6011:6;6007:17;5997:27;;5965:61;6072:2;6064:6;6061:14;6041:18;6038:38;6035:161;;6118:10;6113:3;6109:20;6106:1;6099:31;6153:4;6150:1;6143:15;6181:4;6178:1;6171:15;6035:161;;5822:380;;;:::o;6207:168::-;6280:9;;;6311;;6328:15;;;6322:22;;6308:37;6298:71;;6349:18;;:::i;6380:217::-;6420:1;6446;6436:132;;6490:10;6485:3;6481:20;6478:1;6471:31;6525:4;6522:1;6515:15;6553:4;6550:1;6543:15;6436:132;-1:-1:-1;6582:9:9;;6380:217::o;7018:125::-;7083:9;;;7104:10;;;7101:36;;;7117:18;;:::i;7710:184::-;7780:6;7833:2;7821:9;7812:7;7808:23;7804:32;7801:52;;;7849:1;7846;7839:12;7801:52;-1:-1:-1;7872:16:9;;7710:184;-1:-1:-1;7710:184:9:o;8201:245::-;8268:6;8321:2;8309:9;8300:7;8296:23;8292:32;8289:52;;;8337:1;8334;8327:12;8289:52;8369:9;8363:16;8388:28;8410:5;8388:28;:::i;16338:128::-;16405:9;;;16426:11;;;16423:37;;;16440:18;;:::i;17334:127::-;17395:10;17390:3;17386:20;17383:1;17376:31;17426:4;17423:1;17416:15;17450:4;17447:1;17440:15;17466:251;17536:6;17589:2;17577:9;17568:7;17564:23;17560:32;17557:52;;;17605:1;17602;17595:12;17557:52;17637:9;17631:16;17656:31;17681:5;17656:31;:::i;17722:1026::-;17984:4;18032:3;18021:9;18017:19;18063:6;18052:9;18045:25;18089:2;18127:6;18122:2;18111:9;18107:18;18100:34;18170:3;18165:2;18154:9;18150:18;18143:31;18194:6;18229;18223:13;18260:6;18252;18245:22;18298:3;18287:9;18283:19;18276:26;;18337:2;18329:6;18325:15;18311:29;;18358:1;18368:218;18382:6;18379:1;18376:13;18368:218;;;18447:13;;-1:-1:-1;;;;;18443:62:9;18431:75;;18561:15;;;;18526:12;;;;18404:1;18397:9;18368:218;;;-1:-1:-1;;;;;;;18642:55:9;;;;18637:2;18622:18;;18615:83;-1:-1:-1;;;18729:3:9;18714:19;18707:35;18603:3;17722:1026;-1:-1:-1;;;17722:1026:9:o;19388:306::-;19476:6;19484;19492;19545:2;19533:9;19524:7;19520:23;19516:32;19513:52;;;19561:1;19558;19551:12;19513:52;19590:9;19584:16;19574:26;;19640:2;19629:9;19625:18;19619:25;19609:35;;19684:2;19673:9;19669:18;19663:25;19653:35;;19388:306;;;;;:::o

Swarm Source

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