ETH Price: $3,473.88 (-1.54%)
Gas: 3 Gwei

Token

Finn (Finn)
 

Overview

Max Total Supply

1,000,000,000 Finn

Holders

194

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,233,007.841719106419660768 Finn

Value
$0.00
0x07765A5d2adb086A0f31597634B80637128C2cA9
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:
finn

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 10 : finn.sol
// SPDX-License-Identifier: MIT

// Telegram: http://t.me/FinnTokenERC20
// Website: https://www.finnthecat.com/
// Twitter: https://twitter.com/FinnTheCatERC20

pragma solidity ^0.8.20;

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

import "../uniswap/IUniswapV2Router02.sol";
import "../uniswap/IUniswapV2Factory.sol";

contract finn is ERC20, Ownable(msg.sender) {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    uint128 public launchBlock;
    uint128 public 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 buyTeamFeePct;

    uint16 public sellTotalFees;
    uint16 public sellTeamFeePct;

    uint256 public tokensForTeam;

    bool private _swapping;
    bool public limitsInEffect = true;
    bool public blacklistRenounced = false;
    address[] private grosMichel;

    mapping(address => bool) _blacklisted;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public isExcludedMaxTransactionAmount;

    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, address[] memory _snipers) 
                ERC20("Finn", "Finn") {

        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 = 1_000_000_000 * 1e18;

        maxTransactionAmount = totalSupply * 150 / 10000; 
        maxWallet = totalSupply * 150 / 10000; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyTeamFeePct = 100;
        buyTotalFees = 1;

        sellTeamFeePct = 100;
        sellTotalFees = 1;

        teamWallet = owner();

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

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

        grosMichel = _snipers;

        _mint(address(this), totalSupply);
    }

    receive() external payable {}

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        buyTotalFees = 0;
        sellTotalFees = 0;
        return true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "swap amount cannot be lower than .001% total supply"
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "swap amount cannot be higher than .5% total supply"
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function updateBuyFees(
        uint16 _teamFeePercent,
        uint16 _buyTotalFees
    ) external onlyOwner {
        buyTeamFeePct = _teamFeePercent;
        buyTotalFees = _buyTotalFees;
        require(_buyTotalFees <= 5, "buy fees must be <= 5");
    }

    function updateSellFees(
        uint16 _teamFeePercent,
        uint16 _sellTotalFees
    ) external onlyOwner {
        sellTeamFeePct = _teamFeePercent;
        sellTotalFees = _sellTotalFees;
        require(_sellTotalFees <= 5, "sell fees must be <= 5");
    }

    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);
    }

    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 tokens v2 router or v2 pool"
        );
        _blacklisted[_addr] = true;
    }

    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(uniswapV2Router), 
            "cannot blacklist tokens v2 router or v2 pool"
        );
        _blacklisted[lpAddress] = true;
    }

    function unblacklist(address _addr) public onlyOwner {
        _blacklisted[_addr] = false;
    }

    function addSnipers(address[] memory _snipers) external onlyOwner {
        for(uint i; i < _snipers.length; i++) {
            grosMichel.push(_snipers[i]);
        }
    }

    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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount * _getSellTotalFees(_limitsInEffect, to, from) / 100;
                tokensForTeam += (fees * sellTeamFeePct) / 100;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * _getBuyTotalFees(_limitsInEffect, to, from) / 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 {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }

    function _swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForTeam;
        bool success;

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

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

        uint256 amountToSwapForETH = contractBalance;
        _swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;
        uint256 ethForTeam = ethBalance;
        tokensForTeam = 0;
        (success, ) = address(teamWallet).call{value: ethForTeam}("");   
    }

    function _getSellTotalFees(bool _limitsInEffect, address _to, address _from) 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 = 25 - ((25 * progressThroughAntibot) / uint(_antibotPeriod));
        if(antiBotTax < _sellTotalFees)
            antiBotTax = _sellTotalFees;

        return antiBotTax;
    }

    function _getBuyTotalFees(bool _limitsInEffect, address _to, address _from) 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 = 25 - ((25 * progressThroughAntibot) / uint(_antibotPeriod));
        if(antiBotTax < _buyTotalFees)
            antiBotTax = _buyTotalFees;
        
        return antiBotTax;
    }

    function launchToken(uint _ethAmount, uint128 _antibotPeriod) external onlyOwner {
        launchBlock = uint128(block.number);
        antibotPeriod = _antibotPeriod;
        uint cBalance = balanceOf(address(this));

        _addLiquidity(cBalance, _ethAmount);
    }
}

File 2 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

import './IUniswapV2Router01.sol';

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

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

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

pragma solidity ^0.8.20;

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

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

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 6 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

File 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapRouter","type":"address"},{"internalType":"address[]","name":"_snipers","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_snipers","type":"address[]"}],"name":"addSnipers","outputs":[],"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"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":"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":[{"internalType":"uint256","name":"_ethAmount","type":"uint256"},{"internalType":"uint128","name":"_antibotPeriod","type":"uint128"}],"name":"launchToken","outputs":[],"stateMutability":"nonpayable","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":"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":"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_teamFeePercent","type":"uint16"},{"internalType":"uint16","name":"_buyTotalFees","type":"uint16"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_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"}]

60c0604052600d805462ffff00191661010017905534801562000020575f80fd5b50604051620031ac380380620031ac833981016040819052620000439162000734565b6040805180820182526004808252632334b73760e11b602080840182905284518086019095529184529083015233916003620000808382620008a6565b5060046200008f8282620008a6565b5050506001600160a01b038116620000c157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000cc816200039c565b50620000da826001620003ed565b6001600160a01b03821660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000123573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200014991906200096e565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000195573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001bb91906200096e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000206573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022c91906200096e565b6001600160a01b031660a081905262000247906001620003ed565b60a0516200025790600162000421565b6b033b2e3c9fd0803ce800000061271062000274826096620009a7565b620002809190620009c7565b60085561271062000293826096620009a7565b6200029f9190620009c7565b600a55612710620002b2826005620009a7565b620002be9190620009c7565b600955600b80546001600160401b0319166664000100640001179055620002ed6005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200031a9116600162000474565b6200032730600162000474565b6200033661dead600162000474565b620003556200034d6005546001600160a01b031690565b6001620003ed565b62000362306001620003ed565b6200037161dead6001620003ed565b81516200038690600e90602085019062000678565b50620003933082620004dc565b505050620009fd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620003f762000518565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200047e62000518565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005075760405163ec442f0560e01b81525f6004820152602401620000b8565b620005145f838362000549565b5050565b6005546001600160a01b03163314620005475760405163118cdaa760e01b8152336004820152602401620000b8565b565b6001600160a01b03831662000577578060025f8282546200056b9190620009e7565b90915550620005e99050565b6001600160a01b0383165f9081526020819052604090205481811015620005cb5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000b8565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620006075760028054829003905562000625565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200066b91815260200190565b60405180910390a3505050565b828054828255905f5260205f20908101928215620006ce579160200282015b82811115620006ce57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000697565b50620006dc929150620006e0565b5090565b5b80821115620006dc575f8155600101620006e1565b6001600160a01b03811681146200070b575f80fd5b50565b634e487b7160e01b5f52604160045260245ffd5b80516200072f81620006f6565b919050565b5f806040838503121562000746575f80fd5b82516200075381620006f6565b602084810151919350906001600160401b038082111562000772575f80fd5b818601915086601f83011262000786575f80fd5b8151818111156200079b576200079b6200070e565b8060051b604051601f19603f83011681018181108582111715620007c357620007c36200070e565b604052918252848201925083810185019189831115620007e1575f80fd5b938501935b828510156200080a57620007fa8562000722565b84529385019392850192620007e6565b8096505050505050509250929050565b600181811c908216806200082f57607f821691505b6020821081036200084e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620008a1575f81815260208120601f850160051c810160208610156200087c5750805b601f850160051c820191505b818110156200089d5782815560010162000888565b5050505b505050565b81516001600160401b03811115620008c257620008c26200070e565b620008da81620008d384546200081a565b8462000854565b602080601f83116001811462000910575f8415620008f85750858301515b5f19600386901b1c1916600185901b1785556200089d565b5f85815260208120601f198616915b8281101562000940578886015182559484019460019091019084016200091f565b50858210156200095e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200097f575f80fd5b81516200098c81620006f6565b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620009c157620009c162000993565b92915050565b5f82620009e257634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620009c157620009c162000993565b60805160a05161275562000a575f395f818161046d01528181610d6c015261128b01525f818161036d015281816112c801528181611b4c01528181611b73015281816121570152818161220e015261224a01526127555ff3fe6080604052600436106102a8575f3560e01c80637ca8448a1161016f578063ce3b9aa3116100d8578063e2f4560511610092578063f98a9c021161006d578063f98a9c02146108b9578063f9f92be414610851578063fde83a34146108da578063fe575a87146108ef575f80fd5b8063e2f4560514610870578063f2fde38b14610885578063f8b45b05146108a4575f80fd5b8063ce3b9aa314610796578063d00efb2f146107b5578063d257b34f146107d4578063d85ba063146107f3578063dd62ed3e1461080d578063e19b282314610851575f80fd5b8063a9059cbb11610129578063a9059cbb146106d7578063b62496f5146106f6578063c024666814610724578063c18bc19514610743578063c8c8ebe414610762578063cdb5f8c614610777575f80fd5b80637ca8448a1461063557806384dd445214610654578063858e4a02146106685780638da5cb5b1461068757806395d89b41146106a45780639a7a23d6146106b8575f80fd5b80634bb2c785116102115780636a486a8e116101cb5780636a486a8e1461057957806370a082311461059b578063715018a6146105cf578063751039fc146105e35780637571336a146105f757806375e3661e14610616575f80fd5b80634bb2c785146104ad5780634e6fd6c4146104db5780634fbee193146104f0578063564dd11f1461052757806359927044146105465780635f18936114610565575f80fd5b806323b872dd1161026257806323b872dd146103c557806330b878ff146103e4578063313ce567146104225780633dc599ff1461043d57806349bd5a5e1461045c5780634a62bb651461048f575f80fd5b8063039bed0b146102b35780630408d756146102d457806306fdde031461030c578063095ea7b31461032d5780631694505e1461035c57806318160ddd146103a7575f80fd5b366102af57005b5f80fd5b3480156102be575f80fd5b506102d26102cd3660046122c9565b610926565b005b3480156102df575f80fd5b50600b546102f49062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b348015610317575f80fd5b506103206109aa565b60405161030391906122fa565b348015610338575f80fd5b5061034c610347366004612364565b610a3a565b6040519015158152602001610303565b348015610367575f80fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610303565b3480156103b2575f80fd5b506002545b604051908152602001610303565b3480156103d0575f80fd5b5061034c6103df36600461238e565b610a53565b3480156103ef575f80fd5b5060065461040a90600160801b90046001600160801b031681565b6040516001600160801b039091168152602001610303565b34801561042d575f80fd5b5060405160128152602001610303565b348015610448575f80fd5b50600d5461034c9062010000900460ff1681565b348015610467575f80fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561049a575f80fd5b50600d5461034c90610100900460ff1681565b3480156104b8575f80fd5b5061034c6104c73660046123cc565b60116020525f908152604090205460ff1681565b3480156104e6575f80fd5b5061038f61dead81565b3480156104fb575f80fd5b5061034c61050a3660046123cc565b6001600160a01b03165f9081526010602052604090205460ff1690565b348015610532575f80fd5b506102d26105413660046123e7565b610a78565b348015610551575f80fd5b5060075461038f906001600160a01b031681565b348015610570575f80fd5b506102d2610aba565b348015610584575f80fd5b50600b546102f490640100000000900461ffff1681565b3480156105a6575f80fd5b506103b76105b53660046123cc565b6001600160a01b03165f9081526020819052604090205490565b3480156105da575f80fd5b506102d2610ad5565b3480156105ee575f80fd5b5061034c610ae8565b348015610602575f80fd5b506102d261061136600461242d565b610b11565b348015610621575f80fd5b506102d26106303660046123cc565b610b43565b348015610640575f80fd5b506102d261064f3660046123cc565b610b6b565b34801561065f575f80fd5b506102d2610bce565b348015610673575f80fd5b506102d26106823660046122c9565b610cc7565b348015610692575f80fd5b506005546001600160a01b031661038f565b3480156106af575f80fd5b50610320610d53565b3480156106c3575f80fd5b506102d26106d236600461242d565b610d62565b3480156106e2575f80fd5b5061034c6106f1366004612364565b610e1b565b348015610701575f80fd5b5061034c6107103660046123cc565b60126020525f908152604090205460ff1681565b34801561072f575f80fd5b506102d261073e36600461242d565b610e28565b34801561074e575f80fd5b506102d261075d366004612459565b610e8e565b34801561076d575f80fd5b506103b760085481565b348015610782575f80fd5b506102d2610791366004612470565b610f3c565b3480156107a1575f80fd5b506102d26107b03660046124b0565b61107c565b3480156107c0575f80fd5b5060065461040a906001600160801b031681565b3480156107df575f80fd5b5061034c6107ee366004612459565b6110ef565b3480156107fe575f80fd5b50600b546102f49061ffff1681565b348015610818575f80fd5b506103b7610827366004612470565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561085c575f80fd5b506102d261086b3660046123cc565b61121e565b34801561087b575f80fd5b506103b760095481565b348015610890575f80fd5b506102d261089f3660046123cc565b611381565b3480156108af575f80fd5b506103b7600a5481565b3480156108c4575f80fd5b50600b546102f490600160301b900461ffff1681565b3480156108e5575f80fd5b506103b7600c5481565b3480156108fa575f80fd5b5061034c6109093660046123cc565b6001600160a01b03165f908152600f602052604090205460ff1690565b61092e6113be565b600b805463ffffffff19166201000061ffff8581169190910261ffff191691909117908316908117909155600510156109a65760405162461bcd60e51b81526020600482015260156024820152746275792066656573206d757374206265203c3d203560581b60448201526064015b60405180910390fd5b5050565b6060600380546109b990612564565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590612564565b8015610a305780601f10610a0757610100808354040283529160200191610a30565b820191905f5260205f20905b815481529060010190602001808311610a1357829003601f168201915b5050505050905090565b5f33610a478185856113eb565b60019150505b92915050565b5f33610a608582856113f8565b610a6b85858561146d565b60019150505b9392505050565b610a806113be565b6001600160801b03818116600160801b02439190911617600655305f908152602081905260408120549050610ab58184611b46565b505050565b610ac26113be565b600d805462ff0000191662010000179055565b610add6113be565b610ae65f611c49565b565b5f610af16113be565b50600d805461ff0019169055600b805465ffff0000ffff19169055600190565b610b196113be565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b610b4b6113be565b6001600160a01b03165f908152600f60205260409020805460ff19169055565b610b736113be565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610bbc576040519150601f19603f3d011682016040523d82523d5f602084013e610bc1565b606091505b50509050806109a6575f80fd5b610bd66113be565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610c11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c35919061259c565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610c79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9d91906125b3565b5060405133904780156108fc02915f818181858888f193505050501580156109a6573d5f803e3d5ffd5b610ccf6113be565b600b805467ffffffff000000001916600160301b61ffff8581169190910265ffff0000000019169190911764010000000091841691820217909155600510156109a65760405162461bcd60e51b815260206004820152601660248201527573656c6c2066656573206d757374206265203c3d203560501b604482015260640161099d565b6060600480546109b990612564565b610d6a6113be565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610e115760405162461bcd60e51b815260206004820152603960248201527f74686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465646d61726b65746d616b6572706169727300000000000000606482015260840161099d565b6109a68282611c9a565b5f33610a4781858561146d565b610e306113be565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610e966113be565b670de0b6b3a76400006103e8610eab60025490565b610eb690600a6125e2565b610ec091906125f9565b610eca91906125f9565b811015610f245760405162461bcd60e51b815260206004820152602260248201527f63616e6e6f7420736574206d617877616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161099d565b610f3681670de0b6b3a76400006125e2565b600a5550565b610f446113be565b6001600160a01b038216610f9a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161099d565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611002919061259c565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611052573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061107691906125b3565b50505050565b6110846113be565b5f5b81518110156109a657600e8282815181106110a3576110a3612618565b60209081029190910181015182546001810184555f938452919092200180546001600160a01b0319166001600160a01b03909216919091179055806110e78161262c565b915050611086565b5f6110f86113be565b620186a061110560025490565b6111109060016125e2565b61111a91906125f9565b8210156111855760405162461bcd60e51b815260206004820152603360248201527f7377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272202e3030312520746f74616c20737570706c7960681b606482015260840161099d565b6103e861119160025490565b61119c9060056125e2565b6111a691906125f9565b8211156112105760405162461bcd60e51b815260206004820152603260248201527f7377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152716e202e352520746f74616c20737570706c7960701b606482015260840161099d565b50600981905560015b919050565b6112266113be565b600d5462010000900460ff16156112895760405162461bcd60e51b815260206004820152602160248201527f7465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b606482015260840161099d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316141580156112fd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b61135e5760405162461bcd60e51b815260206004820152602c60248201527f63616e6e6f7420626c61636b6c69737420746f6b656e7320763220726f75746560448201526b1c881bdc881d8c881c1bdbdb60a21b606482015260840161099d565b6001600160a01b03165f908152600f60205260409020805460ff19166001179055565b6113896113be565b6001600160a01b0381166113b257604051631e4fbdf760e01b81525f600482015260240161099d565b6113bb81611c49565b50565b6005546001600160a01b03163314610ae65760405163118cdaa760e01b815233600482015260240161099d565b610ab58383836001611ced565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114611076578181101561145f57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161099d565b61107684848484035f611ced565b6001600160a01b0383166114d15760405162461bcd60e51b815260206004820152602560248201527f65726332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161099d565b6001600160a01b0382166115335760405162461bcd60e51b815260206004820152602360248201527f65726332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161099d565b6001600160a01b0383165f908152600f602052604090205460ff16156115905760405162461bcd60e51b81526020600482015260126024820152711cd95b99195c88189b1858dadb1a5cdd195960721b604482015260640161099d565b6001600160a01b0382165f908152600f602052604090205460ff16156115ef5760405162461bcd60e51b81526020600482015260146024820152731c9958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161099d565b805f0361160157610ab583835f611dbf565b600d54610100900460ff1680156118dc576005546001600160a01b0385811691161480159061163e57506005546001600160a01b03848116911614155b801561165257506001600160a01b03831615155b801561166957506001600160a01b03831661dead14155b80156116785750600d5460ff16155b156118dc576001600160a01b0384165f9081526012602052604090205460ff1680156116bc57506001600160a01b0383165f9081526011602052604090205460ff16155b1561179f576008548211156117315760405162461bcd60e51b815260206004820152603560248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760591b606482015260840161099d565b600a546001600160a01b0384165f908152602081905260409020546117569084612644565b111561179a5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b604482015260640161099d565b6118dc565b6001600160a01b0383165f9081526012602052604090205460ff1680156117de57506001600160a01b0384165f9081526011602052604090205460ff16155b156118545760085482111561179a5760405162461bcd60e51b815260206004820152603660248201527f73656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760511b606482015260840161099d565b6001600160a01b0383165f9081526011602052604090205460ff166118dc57600a546001600160a01b0384165f908152602081905260409020546118989084612644565b11156118dc5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b604482015260640161099d565b305f90815260208190526040902054600954811080159081906119025750600d5460ff16155b801561192657506001600160a01b0386165f9081526012602052604090205460ff16155b801561194a57506001600160a01b0386165f9081526010602052604090205460ff16155b801561196e57506001600160a01b0385165f9081526010602052604090205460ff16155b1561199357600d805460ff19166001179055611988611e1c565b600d805460ff191690555b600d546001600160a01b0387165f9081526010602052604090205460ff918216159116806119d857506001600160a01b0386165f9081526010602052604090205460ff165b156119e057505f5b5f8115611b31576001600160a01b0387165f9081526012602052604090205460ff168015611a1b5750600b54640100000000900461ffff1615155b15611a84576064611a2d86898b611ed6565b611a3790886125e2565b611a4191906125f9565b600b54909150606490611a5f90600160301b900461ffff16836125e2565b611a6991906125f9565b600c5f828254611a799190612644565b90915550611b139050565b6001600160a01b0388165f9081526012602052604090205460ff168015611ab05750600b5461ffff1615155b15611b13576064611ac286898b611f8c565b611acc90886125e2565b611ad691906125f9565b600b54909150606490611af39062010000900461ffff16836125e2565b611afd91906125f9565b600c5f828254611b0d9190612644565b90915550505b8015611b2457611b24883083611dbf565b611b2e8187612657565b95505b611b3c888888611dbf565b5050505050505050565b611b71307f0000000000000000000000000000000000000000000000000000000000000000846113eb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611bb76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611c1d573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c42919061266a565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611d165760405163e602df0560e01b81525f600482015260240161099d565b6001600160a01b038316611d3f57604051634a1406b160e11b81525f600482015260240161099d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561107657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611db191815260200190565b60405180910390a350505050565b6001600160a01b038316611de857604051634b637e8f60e11b81525f600482015260240161099d565b6001600160a01b038216611e115760405163ec442f0560e01b81525f600482015260240161099d565b610ab5838383611fdc565b305f90815260208190526040812054600c549091821580611e3b575081155b15611e4557505050565b600954611e539060146125e2565b831115611e6b57600954611e689060146125e2565b92505b82611e7581612102565b5f600c819055600754604051479283926001600160a01b031691839181818185875af1925050503d805f8114611ec6576040519150601f19603f3d011682016040523d82523d5f602084013e611ecb565b606091505b505050505050505050565b5f83611ef15750600b54640100000000900461ffff16610a71565b600b5460065464010000000090910461ffff16906001600160801b0380821691600160801b900416611f238183612644565b431115611f44575050600b54640100000000900461ffff169150610a719050565b5f611f4f8343612657565b90505f82611f5e8360196125e2565b611f6891906125f9565b611f73906019612657565b905084811015611f805750835b98975050505050505050565b5f83611f9f5750600b5461ffff16610a71565b600b5460065461ffff909116906001600160801b0380821691600160801b900416611fca8183612644565b431115611f4457829350505050610a71565b6001600160a01b038316612006578060025f828254611ffb9190612644565b909155506120769050565b6001600160a01b0383165f90815260208190526040902054818110156120585760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161099d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216612092576002805482900390556120b0565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120f591815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061213557612135612618565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d59190612695565b816001815181106121e8576121e8612618565b60200260200101906001600160a01b031690816001600160a01b031681525050612233307f0000000000000000000000000000000000000000000000000000000000000000846113eb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122879085905f908690309042906004016126b0565b5f604051808303815f87803b15801561229e575f80fd5b505af11580156122b0573d5f803e3d5ffd5b505050505050565b803561ffff81168114611219575f80fd5b5f80604083850312156122da575f80fd5b6122e3836122b8565b91506122f1602084016122b8565b90509250929050565b5f6020808352835180828501525f5b8181101561232557858101830151858201604001528201612309565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113bb575f80fd5b803561121981612345565b5f8060408385031215612375575f80fd5b823561238081612345565b946020939093013593505050565b5f805f606084860312156123a0575f80fd5b83356123ab81612345565b925060208401356123bb81612345565b929592945050506040919091013590565b5f602082840312156123dc575f80fd5b8135610a7181612345565b5f80604083850312156123f8575f80fd5b8235915060208301356001600160801b0381168114612415575f80fd5b809150509250929050565b80151581146113bb575f80fd5b5f806040838503121561243e575f80fd5b823561244981612345565b9150602083013561241581612420565b5f60208284031215612469575f80fd5b5035919050565b5f8060408385031215612481575f80fd5b823561248c81612345565b9150602083013561241581612345565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156124c1575f80fd5b823567ffffffffffffffff808211156124d8575f80fd5b818501915085601f8301126124eb575f80fd5b8135818111156124fd576124fd61249c565b8060051b604051601f19603f830116810181811085821117156125225761252261249c565b60405291825284820192508381018501918883111561253f575f80fd5b938501935b82851015611f805761255585612359565b84529385019392850192612544565b600181811c9082168061257857607f821691505b60208210810361259657634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156125ac575f80fd5b5051919050565b5f602082840312156125c3575f80fd5b8151610a7181612420565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a4d57610a4d6125ce565b5f8261261357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161263d5761263d6125ce565b5060010190565b80820180821115610a4d57610a4d6125ce565b81810381811115610a4d57610a4d6125ce565b5f805f6060848603121561267c575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156126a5575f80fd5b8151610a7181612345565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156126fe5784516001600160a01b0316835293830193918301916001016126d9565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122010d873b04a17d54b66afaa3dcab9715042aaff4bb901f5142774b0b035e106fc64736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000004000000000000000000000000db5889e35e379ef0498aae126fc2cce1fbd2321600000000000000000000000080a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e0000000000000000000000003999d2c5207c06bbc5cf8a6bea52966cabb76d410000000000000000000000002c2c82e7caf5f14e4995c366d9db8cdfdf7677e3

Deployed Bytecode

0x6080604052600436106102a8575f3560e01c80637ca8448a1161016f578063ce3b9aa3116100d8578063e2f4560511610092578063f98a9c021161006d578063f98a9c02146108b9578063f9f92be414610851578063fde83a34146108da578063fe575a87146108ef575f80fd5b8063e2f4560514610870578063f2fde38b14610885578063f8b45b05146108a4575f80fd5b8063ce3b9aa314610796578063d00efb2f146107b5578063d257b34f146107d4578063d85ba063146107f3578063dd62ed3e1461080d578063e19b282314610851575f80fd5b8063a9059cbb11610129578063a9059cbb146106d7578063b62496f5146106f6578063c024666814610724578063c18bc19514610743578063c8c8ebe414610762578063cdb5f8c614610777575f80fd5b80637ca8448a1461063557806384dd445214610654578063858e4a02146106685780638da5cb5b1461068757806395d89b41146106a45780639a7a23d6146106b8575f80fd5b80634bb2c785116102115780636a486a8e116101cb5780636a486a8e1461057957806370a082311461059b578063715018a6146105cf578063751039fc146105e35780637571336a146105f757806375e3661e14610616575f80fd5b80634bb2c785146104ad5780634e6fd6c4146104db5780634fbee193146104f0578063564dd11f1461052757806359927044146105465780635f18936114610565575f80fd5b806323b872dd1161026257806323b872dd146103c557806330b878ff146103e4578063313ce567146104225780633dc599ff1461043d57806349bd5a5e1461045c5780634a62bb651461048f575f80fd5b8063039bed0b146102b35780630408d756146102d457806306fdde031461030c578063095ea7b31461032d5780631694505e1461035c57806318160ddd146103a7575f80fd5b366102af57005b5f80fd5b3480156102be575f80fd5b506102d26102cd3660046122c9565b610926565b005b3480156102df575f80fd5b50600b546102f49062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b348015610317575f80fd5b506103206109aa565b60405161030391906122fa565b348015610338575f80fd5b5061034c610347366004612364565b610a3a565b6040519015158152602001610303565b348015610367575f80fd5b5061038f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610303565b3480156103b2575f80fd5b506002545b604051908152602001610303565b3480156103d0575f80fd5b5061034c6103df36600461238e565b610a53565b3480156103ef575f80fd5b5060065461040a90600160801b90046001600160801b031681565b6040516001600160801b039091168152602001610303565b34801561042d575f80fd5b5060405160128152602001610303565b348015610448575f80fd5b50600d5461034c9062010000900460ff1681565b348015610467575f80fd5b5061038f7f00000000000000000000000083a021caf6b6a8c068018e62c9b8ab83375e1ffe81565b34801561049a575f80fd5b50600d5461034c90610100900460ff1681565b3480156104b8575f80fd5b5061034c6104c73660046123cc565b60116020525f908152604090205460ff1681565b3480156104e6575f80fd5b5061038f61dead81565b3480156104fb575f80fd5b5061034c61050a3660046123cc565b6001600160a01b03165f9081526010602052604090205460ff1690565b348015610532575f80fd5b506102d26105413660046123e7565b610a78565b348015610551575f80fd5b5060075461038f906001600160a01b031681565b348015610570575f80fd5b506102d2610aba565b348015610584575f80fd5b50600b546102f490640100000000900461ffff1681565b3480156105a6575f80fd5b506103b76105b53660046123cc565b6001600160a01b03165f9081526020819052604090205490565b3480156105da575f80fd5b506102d2610ad5565b3480156105ee575f80fd5b5061034c610ae8565b348015610602575f80fd5b506102d261061136600461242d565b610b11565b348015610621575f80fd5b506102d26106303660046123cc565b610b43565b348015610640575f80fd5b506102d261064f3660046123cc565b610b6b565b34801561065f575f80fd5b506102d2610bce565b348015610673575f80fd5b506102d26106823660046122c9565b610cc7565b348015610692575f80fd5b506005546001600160a01b031661038f565b3480156106af575f80fd5b50610320610d53565b3480156106c3575f80fd5b506102d26106d236600461242d565b610d62565b3480156106e2575f80fd5b5061034c6106f1366004612364565b610e1b565b348015610701575f80fd5b5061034c6107103660046123cc565b60126020525f908152604090205460ff1681565b34801561072f575f80fd5b506102d261073e36600461242d565b610e28565b34801561074e575f80fd5b506102d261075d366004612459565b610e8e565b34801561076d575f80fd5b506103b760085481565b348015610782575f80fd5b506102d2610791366004612470565b610f3c565b3480156107a1575f80fd5b506102d26107b03660046124b0565b61107c565b3480156107c0575f80fd5b5060065461040a906001600160801b031681565b3480156107df575f80fd5b5061034c6107ee366004612459565b6110ef565b3480156107fe575f80fd5b50600b546102f49061ffff1681565b348015610818575f80fd5b506103b7610827366004612470565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561085c575f80fd5b506102d261086b3660046123cc565b61121e565b34801561087b575f80fd5b506103b760095481565b348015610890575f80fd5b506102d261089f3660046123cc565b611381565b3480156108af575f80fd5b506103b7600a5481565b3480156108c4575f80fd5b50600b546102f490600160301b900461ffff1681565b3480156108e5575f80fd5b506103b7600c5481565b3480156108fa575f80fd5b5061034c6109093660046123cc565b6001600160a01b03165f908152600f602052604090205460ff1690565b61092e6113be565b600b805463ffffffff19166201000061ffff8581169190910261ffff191691909117908316908117909155600510156109a65760405162461bcd60e51b81526020600482015260156024820152746275792066656573206d757374206265203c3d203560581b60448201526064015b60405180910390fd5b5050565b6060600380546109b990612564565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590612564565b8015610a305780601f10610a0757610100808354040283529160200191610a30565b820191905f5260205f20905b815481529060010190602001808311610a1357829003601f168201915b5050505050905090565b5f33610a478185856113eb565b60019150505b92915050565b5f33610a608582856113f8565b610a6b85858561146d565b60019150505b9392505050565b610a806113be565b6001600160801b03818116600160801b02439190911617600655305f908152602081905260408120549050610ab58184611b46565b505050565b610ac26113be565b600d805462ff0000191662010000179055565b610add6113be565b610ae65f611c49565b565b5f610af16113be565b50600d805461ff0019169055600b805465ffff0000ffff19169055600190565b610b196113be565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b610b4b6113be565b6001600160a01b03165f908152600f60205260409020805460ff19169055565b610b736113be565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610bbc576040519150601f19603f3d011682016040523d82523d5f602084013e610bc1565b606091505b50509050806109a6575f80fd5b610bd66113be565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610c11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c35919061259c565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610c79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9d91906125b3565b5060405133904780156108fc02915f818181858888f193505050501580156109a6573d5f803e3d5ffd5b610ccf6113be565b600b805467ffffffff000000001916600160301b61ffff8581169190910265ffff0000000019169190911764010000000091841691820217909155600510156109a65760405162461bcd60e51b815260206004820152601660248201527573656c6c2066656573206d757374206265203c3d203560501b604482015260640161099d565b6060600480546109b990612564565b610d6a6113be565b7f00000000000000000000000083a021caf6b6a8c068018e62c9b8ab83375e1ffe6001600160a01b0316826001600160a01b031603610e115760405162461bcd60e51b815260206004820152603960248201527f74686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465646d61726b65746d616b6572706169727300000000000000606482015260840161099d565b6109a68282611c9a565b5f33610a4781858561146d565b610e306113be565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610e966113be565b670de0b6b3a76400006103e8610eab60025490565b610eb690600a6125e2565b610ec091906125f9565b610eca91906125f9565b811015610f245760405162461bcd60e51b815260206004820152602260248201527f63616e6e6f7420736574206d617877616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161099d565b610f3681670de0b6b3a76400006125e2565b600a5550565b610f446113be565b6001600160a01b038216610f9a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161099d565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611002919061259c565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611052573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061107691906125b3565b50505050565b6110846113be565b5f5b81518110156109a657600e8282815181106110a3576110a3612618565b60209081029190910181015182546001810184555f938452919092200180546001600160a01b0319166001600160a01b03909216919091179055806110e78161262c565b915050611086565b5f6110f86113be565b620186a061110560025490565b6111109060016125e2565b61111a91906125f9565b8210156111855760405162461bcd60e51b815260206004820152603360248201527f7377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272202e3030312520746f74616c20737570706c7960681b606482015260840161099d565b6103e861119160025490565b61119c9060056125e2565b6111a691906125f9565b8211156112105760405162461bcd60e51b815260206004820152603260248201527f7377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152716e202e352520746f74616c20737570706c7960701b606482015260840161099d565b50600981905560015b919050565b6112266113be565b600d5462010000900460ff16156112895760405162461bcd60e51b815260206004820152602160248201527f7465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b606482015260840161099d565b7f00000000000000000000000083a021caf6b6a8c068018e62c9b8ab83375e1ffe6001600160a01b0316816001600160a01b0316141580156112fd57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316816001600160a01b031614155b61135e5760405162461bcd60e51b815260206004820152602c60248201527f63616e6e6f7420626c61636b6c69737420746f6b656e7320763220726f75746560448201526b1c881bdc881d8c881c1bdbdb60a21b606482015260840161099d565b6001600160a01b03165f908152600f60205260409020805460ff19166001179055565b6113896113be565b6001600160a01b0381166113b257604051631e4fbdf760e01b81525f600482015260240161099d565b6113bb81611c49565b50565b6005546001600160a01b03163314610ae65760405163118cdaa760e01b815233600482015260240161099d565b610ab58383836001611ced565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114611076578181101561145f57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161099d565b61107684848484035f611ced565b6001600160a01b0383166114d15760405162461bcd60e51b815260206004820152602560248201527f65726332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161099d565b6001600160a01b0382166115335760405162461bcd60e51b815260206004820152602360248201527f65726332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161099d565b6001600160a01b0383165f908152600f602052604090205460ff16156115905760405162461bcd60e51b81526020600482015260126024820152711cd95b99195c88189b1858dadb1a5cdd195960721b604482015260640161099d565b6001600160a01b0382165f908152600f602052604090205460ff16156115ef5760405162461bcd60e51b81526020600482015260146024820152731c9958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161099d565b805f0361160157610ab583835f611dbf565b600d54610100900460ff1680156118dc576005546001600160a01b0385811691161480159061163e57506005546001600160a01b03848116911614155b801561165257506001600160a01b03831615155b801561166957506001600160a01b03831661dead14155b80156116785750600d5460ff16155b156118dc576001600160a01b0384165f9081526012602052604090205460ff1680156116bc57506001600160a01b0383165f9081526011602052604090205460ff16155b1561179f576008548211156117315760405162461bcd60e51b815260206004820152603560248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760591b606482015260840161099d565b600a546001600160a01b0384165f908152602081905260409020546117569084612644565b111561179a5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b604482015260640161099d565b6118dc565b6001600160a01b0383165f9081526012602052604090205460ff1680156117de57506001600160a01b0384165f9081526011602052604090205460ff16155b156118545760085482111561179a5760405162461bcd60e51b815260206004820152603660248201527f73656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760511b606482015260840161099d565b6001600160a01b0383165f9081526011602052604090205460ff166118dc57600a546001600160a01b0384165f908152602081905260409020546118989084612644565b11156118dc5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b604482015260640161099d565b305f90815260208190526040902054600954811080159081906119025750600d5460ff16155b801561192657506001600160a01b0386165f9081526012602052604090205460ff16155b801561194a57506001600160a01b0386165f9081526010602052604090205460ff16155b801561196e57506001600160a01b0385165f9081526010602052604090205460ff16155b1561199357600d805460ff19166001179055611988611e1c565b600d805460ff191690555b600d546001600160a01b0387165f9081526010602052604090205460ff918216159116806119d857506001600160a01b0386165f9081526010602052604090205460ff165b156119e057505f5b5f8115611b31576001600160a01b0387165f9081526012602052604090205460ff168015611a1b5750600b54640100000000900461ffff1615155b15611a84576064611a2d86898b611ed6565b611a3790886125e2565b611a4191906125f9565b600b54909150606490611a5f90600160301b900461ffff16836125e2565b611a6991906125f9565b600c5f828254611a799190612644565b90915550611b139050565b6001600160a01b0388165f9081526012602052604090205460ff168015611ab05750600b5461ffff1615155b15611b13576064611ac286898b611f8c565b611acc90886125e2565b611ad691906125f9565b600b54909150606490611af39062010000900461ffff16836125e2565b611afd91906125f9565b600c5f828254611b0d9190612644565b90915550505b8015611b2457611b24883083611dbf565b611b2e8187612657565b95505b611b3c888888611dbf565b5050505050505050565b611b71307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113eb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611bb76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611c1d573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c42919061266a565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611d165760405163e602df0560e01b81525f600482015260240161099d565b6001600160a01b038316611d3f57604051634a1406b160e11b81525f600482015260240161099d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561107657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611db191815260200190565b60405180910390a350505050565b6001600160a01b038316611de857604051634b637e8f60e11b81525f600482015260240161099d565b6001600160a01b038216611e115760405163ec442f0560e01b81525f600482015260240161099d565b610ab5838383611fdc565b305f90815260208190526040812054600c549091821580611e3b575081155b15611e4557505050565b600954611e539060146125e2565b831115611e6b57600954611e689060146125e2565b92505b82611e7581612102565b5f600c819055600754604051479283926001600160a01b031691839181818185875af1925050503d805f8114611ec6576040519150601f19603f3d011682016040523d82523d5f602084013e611ecb565b606091505b505050505050505050565b5f83611ef15750600b54640100000000900461ffff16610a71565b600b5460065464010000000090910461ffff16906001600160801b0380821691600160801b900416611f238183612644565b431115611f44575050600b54640100000000900461ffff169150610a719050565b5f611f4f8343612657565b90505f82611f5e8360196125e2565b611f6891906125f9565b611f73906019612657565b905084811015611f805750835b98975050505050505050565b5f83611f9f5750600b5461ffff16610a71565b600b5460065461ffff909116906001600160801b0380821691600160801b900416611fca8183612644565b431115611f4457829350505050610a71565b6001600160a01b038316612006578060025f828254611ffb9190612644565b909155506120769050565b6001600160a01b0383165f90815260208190526040902054818110156120585760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161099d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216612092576002805482900390556120b0565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120f591815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061213557612135612618565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d59190612695565b816001815181106121e8576121e8612618565b60200260200101906001600160a01b031690816001600160a01b031681525050612233307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113eb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122879085905f908690309042906004016126b0565b5f604051808303815f87803b15801561229e575f80fd5b505af11580156122b0573d5f803e3d5ffd5b505050505050565b803561ffff81168114611219575f80fd5b5f80604083850312156122da575f80fd5b6122e3836122b8565b91506122f1602084016122b8565b90509250929050565b5f6020808352835180828501525f5b8181101561232557858101830151858201604001528201612309565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113bb575f80fd5b803561121981612345565b5f8060408385031215612375575f80fd5b823561238081612345565b946020939093013593505050565b5f805f606084860312156123a0575f80fd5b83356123ab81612345565b925060208401356123bb81612345565b929592945050506040919091013590565b5f602082840312156123dc575f80fd5b8135610a7181612345565b5f80604083850312156123f8575f80fd5b8235915060208301356001600160801b0381168114612415575f80fd5b809150509250929050565b80151581146113bb575f80fd5b5f806040838503121561243e575f80fd5b823561244981612345565b9150602083013561241581612420565b5f60208284031215612469575f80fd5b5035919050565b5f8060408385031215612481575f80fd5b823561248c81612345565b9150602083013561241581612345565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156124c1575f80fd5b823567ffffffffffffffff808211156124d8575f80fd5b818501915085601f8301126124eb575f80fd5b8135818111156124fd576124fd61249c565b8060051b604051601f19603f830116810181811085821117156125225761252261249c565b60405291825284820192508381018501918883111561253f575f80fd5b938501935b82851015611f805761255585612359565b84529385019392850192612544565b600181811c9082168061257857607f821691505b60208210810361259657634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156125ac575f80fd5b5051919050565b5f602082840312156125c3575f80fd5b8151610a7181612420565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a4d57610a4d6125ce565b5f8261261357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161263d5761263d6125ce565b5060010190565b80820180821115610a4d57610a4d6125ce565b81810381811115610a4d57610a4d6125ce565b5f805f6060848603121561267c575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156126a5575f80fd5b8151610a7181612345565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156126fe5784516001600160a01b0316835293830193918301916001016126d9565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122010d873b04a17d54b66afaa3dcab9715042aaff4bb901f5142774b0b035e106fc64736f6c63430008140033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000004000000000000000000000000db5889e35e379ef0498aae126fc2cce1fbd2321600000000000000000000000080a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e0000000000000000000000003999d2c5207c06bbc5cf8a6bea52966cabb76d410000000000000000000000002c2c82e7caf5f14e4995c366d9db8cdfdf7677e3

-----Decoded View---------------
Arg [0] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _snipers (address[]): 0xdB5889E35e379Ef0498aaE126fc2CCE1fbD23216,0x80a64c6D7f12C47B7c66c5B4E20E72bc1FCd5d9e,0x3999D2c5207C06BBC5cf8A6bEa52966cabB76d41,0x2C2C82e7CAf5F14e4995c366D9DB8CdFdf7677E3

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 000000000000000000000000db5889e35e379ef0498aae126fc2cce1fbd23216
Arg [4] : 00000000000000000000000080a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e
Arg [5] : 0000000000000000000000003999d2c5207c06bbc5cf8a6bea52966cabb76d41
Arg [6] : 0000000000000000000000002c2c82e7caf5f14e4995c366d9db8cdfdf7677e3


Deployed Bytecode Sourcemap

384:13933:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4168:265;;;;;;;;;;-1:-1:-1;4168:265:9;;;;;:::i;:::-;;:::i;:::-;;851:27;;;;;;;;;;-1:-1:-1;851:27:9;;;;;;;;;;;;;;613:6:10;601:19;;;583:38;;571:2;556:18;851:27:9;;;;;;;;2074:89:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4293:186::-;;;;;;;;;;-1:-1:-1;4293:186:2;;;;;:::i;:::-;;:::i;:::-;;;1945:14:10;;1938:22;1920:41;;1908:2;1893:18;4293:186:2;1780:187:10;435:51:9;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2163:32:10;;;2145:51;;2133:2;2118:18;435:51:9;1972:230:10;3144:97:2;;;;;;;;;;-1:-1:-1;3222:12:2;;3144:97;;;2353:25:10;;;2341:2;2326:18;3144:97:2;2207:177:10;5039:244:2;;;;;;;;;;-1:-1:-1;5039:244:2;;;;;:::i;:::-;;:::i;571:28:9:-;;;;;;;;;;-1:-1:-1;571:28:9;;;;-1:-1:-1;;;571:28:9;;-1:-1:-1;;;;;571:28:9;;;;;;-1:-1:-1;;;;;3014:47:10;;;2996:66;;2984:2;2969:18;571:28:9;2850:218:10;3002:82:2;;;;;;;;;;-1:-1:-1;3002:82:2;;3075:2;3215:36:10;;3203:2;3188:18;3002:82:2;3073:184:10;1064:38:9;;;;;;;;;;-1:-1:-1;1064:38:9;;;;;;;;;;;493;;;;;;;;;;;;;;;1024:33;;;;;;;;;;-1:-1:-1;1024:33:9;;;;;;;;;;;1249:62;;;;;;;;;;-1:-1:-1;1249:62:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;606:54;;;;;;;;;;;;653:6;606:54;;7252:126;;;;;;;;;;-1:-1:-1;7252:126:9;;;;;:::i;:::-;-1:-1:-1;;;;;7342:28:9;7318:4;7342:28;;;:19;:28;;;;;;;;;7252:126;14039:275;;;;;;;;;;-1:-1:-1;14039:275:9;;;;;:::i;:::-;;:::i;669:25::-;;;;;;;;;;-1:-1:-1;669:25:9;;;;-1:-1:-1;;;;;669:25:9;;;6125:90;;;;;;;;;;;;;:::i;887:27::-;;;;;;;;;;-1:-1:-1;887:27:9;;;;;;;;;;;3299:116:2;;;;;;;;;;-1:-1:-1;3299:116:2;;;;;:::i;:::-;-1:-1:-1;;;;;3390:18:2;3364:7;3390:18;;;;;;;;;;;;3299:116;2293:101:0;;;;;;;;;;;;;:::i;3220:176:9:-;;;;;;;;;;;;;:::i;5675:148::-;;;;;;;;;;-1:-1:-1;5675:148:9;;;;;:::i;:::-;;:::i;6960:99::-;;;;;;;;;;-1:-1:-1;6960:99:9;;;;;:::i;:::-;;:::i;5281:196::-;;;;;;;;;;-1:-1:-1;5281:196:9;;;;;:::i;:::-;;:::i;4721:256::-;;;;;;;;;;;;;:::i;4441:272::-;;;;;;;;;;-1:-1:-1;4441:272:9;;;;;:::i;:::-;;:::i;1638:85:0:-;;;;;;;;;;-1:-1:-1;1710:6:0;;-1:-1:-1;;;;;1710:6:0;1638:85;;2276:93:2;;;;;;;;;;;;;:::i;5831:286:9:-;;;;;;;;;;-1:-1:-1;5831:286:9;;;;;:::i;:::-;;:::i;3610:178:2:-;;;;;;;;;;-1:-1:-1;3610:178:2;;;;;:::i;:::-;;:::i;1320:57:9:-;;;;;;;;;;-1:-1:-1;1320:57:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;5485:182;;;;;;;;;;-1:-1:-1;5485:182:9;;;;;:::i;:::-;;:::i;3905:255::-;;;;;;;;;;-1:-1:-1;3905:255:9;;;;;:::i;:::-;;:::i;703:35::-;;;;;;;;;;;;;;;;4985:288;;;;;;;;;;-1:-1:-1;4985:288:9;;;;;:::i;:::-;;:::i;7067:177::-;;;;;;;;;;-1:-1:-1;7067:177:9;;;;;:::i;:::-;;:::i;538:26::-;;;;;;;;;;-1:-1:-1;538:26:9;;;;-1:-1:-1;;;;;538:26:9;;;3404:493;;;;;;;;;;-1:-1:-1;3404:493:9;;;;;:::i;:::-;;:::i;818:26::-;;;;;;;;;;-1:-1:-1;818:26:9;;;;;;;;3846:140:2;;;;;;;;;;-1:-1:-1;3846:140:2;;;;;:::i;:::-;-1:-1:-1;;;;;3952:18:2;;;3926:7;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3846:140;6577:375:9;;;;;;;;;;-1:-1:-1;6577:375:9;;;;;:::i;:::-;;:::i;745:33::-;;;;;;;;;;;;;;;;2543:215:0;;;;;;;;;;-1:-1:-1;2543:215:0;;;;;:::i;:::-;;:::i;785:24:9:-;;;;;;;;;;;;;;;;921:28;;;;;;;;;;-1:-1:-1;921:28:9;;;;-1:-1:-1;;;921:28:9;;;;;;958;;;;;;;;;;;;;;;;7386:114;;;;;;;;;;-1:-1:-1;7386:114:9;;;;;:::i;:::-;-1:-1:-1;;;;;7471:21:9;7447:4;7471:21;;;:12;:21;;;;;;;;;7386:114;4168:265;1531:13:0;:11;:13::i;:::-;4292::9::1;:31:::0;;-1:-1:-1;;4334:28:9;4292:31;::::1;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;4334:28:9;;;;;;;::::1;::::0;;::::1;::::0;;;4398:1:::1;-1:-1:-1::0;4381:18:9::1;4373:52;;;::::0;-1:-1:-1;;;4373:52:9;;6644:2:10;4373:52:9::1;::::0;::::1;6626:21:10::0;6683:2;6663:18;;;6656:30;-1:-1:-1;;;6702:18:10;;;6695:51;6763:18;;4373:52:9::1;;;;;;;;;4168:265:::0;;:::o;2074:89:2:-;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;735:10:5;4420:31:2;735:10:5;4436:7:2;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;;:::o;5039:244::-;5126:4;735:10:5;5182:37:2;5198:4;735:10:5;5213:5:2;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;;:::o;14039:275:9:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;14177:30:9;;::::1;-1:-1:-1::0;;;14177:30:9::1;14153:12;14131:35:::0;;;::::1;14177:30;14131:11;14177:30:::0;14252:4:::1;14131:11;3390:18:2::0;;;;;;;;;;;14218:40:9::1;;14271:35;14285:8;14295:10;14271:13;:35::i;:::-;14120:194;14039:275:::0;;:::o;6125:90::-;1531:13:0;:11;:13::i;:::-;6182:18:9::1;:25:::0;;-1:-1:-1;;6182:25:9::1;::::0;::::1;::::0;;6125:90::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;3220:176:9:-;3272:4;1531:13:0;:11;:13::i;:::-;-1:-1:-1;3289:14:9::1;:22:::0;;-1:-1:-1;;3289:22:9::1;::::0;;3322:12:::1;:16:::0;;-1:-1:-1;;3349:17:9;;;3289:14:::1;3220:176:::0;:::o;5675:148::-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5770:38:9;;;::::1;;::::0;;;:30:::1;:38;::::0;;;;:45;;-1:-1:-1;;5770:45:9::1;::::0;::::1;;::::0;;;::::1;::::0;;5675:148::o;6960:99::-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;7024:19:9::1;7046:5;7024:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;7024:27:9::1;::::0;;6960:99::o;5281:196::-;1531:13:0;:11;:13::i;:::-;5354:12:9::1;5372:6;-1:-1:-1::0;;;;;5372:11:9::1;5405:21;5372:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5353:89;;;5461:7;5453:16;;;::::0;::::1;4721:256:::0;1531:13:0;:11;:13::i;:::-;4799:46:9::1;::::0;-1:-1:-1;;;4799:46:9;;4814:4:::1;4799:46;::::0;::::1;2145:51:10::0;;;4781:15:9::1;::::0;4799:31:::1;::::0;2118:18:10;;4799:46:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4856:51;::::0;-1:-1:-1;;;4856:51:9;;4887:10:::1;4856:51;::::0;::::1;7750::10::0;7817:18;;;7810:34;;;4781:64:9;;-1:-1:-1;4871:4:9::1;::::0;4856:30:::1;::::0;7723:18:10;;4856:51:9::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;4918:51:9::1;::::0;4926:10:::1;::::0;4947:21:::1;4918:51:::0;::::1;;;::::0;::::1;::::0;;;4947:21;4926:10;4918:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;4441:272:::0;1531:13:0;:11;:13::i;:::-;4567:14:9::1;:32:::0;;-1:-1:-1;;4610:30:9;-1:-1:-1;;;4567:32:9::1;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;4610:30:9;;;;;;;;::::1;::::0;;::::1;;::::0;;;4677:1:::1;-1:-1:-1::0;4659:19:9::1;4651:54;;;::::0;-1:-1:-1;;;4651:54:9;;8307:2:10;4651:54:9::1;::::0;::::1;8289:21:10::0;8346:2;8326:18;;;8319:30;-1:-1:-1;;;8365:18:10;;;8358:52;8427:18;;4651:54:9::1;8105:346:10::0;2276:93:2;2323:13;2355:7;2348:14;;;;;:::i;5831:286:9:-;1531:13:0;:11;:13::i;:::-;5957::9::1;-1:-1:-1::0;;;;;5949:21:9::1;:4;-1:-1:-1::0;;;;;5949:21:9::1;::::0;5927:128:::1;;;::::0;-1:-1:-1;;;5927:128:9;;8658:2:10;5927:128:9::1;::::0;::::1;8640:21:10::0;8697:2;8677:18;;;8670:30;8736:34;8716:18;;;8709:62;8807:27;8787:18;;;8780:55;8852:19;;5927:128:9::1;8456:421:10::0;5927:128:9::1;6068:41;6097:4;6103:5;6068:28;:41::i;3610:178:2:-:0;3679:4;735:10:5;3733:27:2;735:10:5;3750:2:2;3754:5;3733:9;:27::i;5485:182:9:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5570:28:9;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;5570:39:9::1;::::0;::::1;;::::0;;::::1;::::0;;;5625:34;;1920:41:10;;;5625:34:9::1;::::0;1893:18:10;5625:34:9::1;;;;;;;5485:182:::0;;:::o;3905:255::-;1531:13:0;:11;:13::i;:::-;4046:4:9::1;4038;4016:13;3222:12:2::0;;;3144:97;4016:13:9::1;:18;::::0;4032:2:::1;4016:18;:::i;:::-;4015:27;;;;:::i;:::-;4014:36;;;;:::i;:::-;4004:6;:46;;3982:130;;;::::0;-1:-1:-1;;;3982:130:9;;9611:2:10;3982:130:9::1;::::0;::::1;9593:21:10::0;9650:2;9630:18;;;9623:30;9689:34;9669:18;;;9662:62;-1:-1:-1;;;9740:18:10;;;9733:32;9782:19;;3982:130:9::1;9409:398:10::0;3982:130:9::1;4135:17;:6:::0;4145::::1;4135:17;:::i;:::-;4123:9;:29:::0;-1:-1:-1;3905:255:9:o;4985:288::-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5080:20:9;::::1;5072:59;;;::::0;-1:-1:-1;;;5072:59:9;;10014:2:10;5072:59:9::1;::::0;::::1;9996:21:10::0;10053:2;10033:18;;;10026:30;10092:28;10072:18;;;10065:56;10138:18;;5072:59:9::1;9812:350:10::0;5072:59:9::1;5169:39;::::0;-1:-1:-1;;;5169:39:9;;5202:4:::1;5169:39;::::0;::::1;2145:51:10::0;5142:24:9::1;::::0;-1:-1:-1;;;;;5169:24:9;::::1;::::0;::::1;::::0;2118:18:10;;5169:39:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5219:46;::::0;-1:-1:-1;;;5219:46:9;;-1:-1:-1;;;;;7768:32:10;;;5219:46:9::1;::::0;::::1;7750:51:10::0;7817:18;;;7810:34;;;5142:66:9;;-1:-1:-1;5219:23:9;;::::1;::::0;::::1;::::0;7723:18:10;;5219:46:9::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5061:212;4985:288:::0;;:::o;7067:177::-;1531:13:0;:11;:13::i;:::-;7148:6:9::1;7144:93;7160:8;:15;7156:1;:19;7144:93;;;7197:10;7213:8;7222:1;7213:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;7197:28;;::::1;::::0;::::1;::::0;;-1:-1:-1;7197:28:9;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;7197:28:9::1;-1:-1:-1::0;;;;;7197:28:9;;::::1;::::0;;;::::1;::::0;;7177:3;::::1;::::0;::::1;:::i;:::-;;;;7144:93;;3404:493:::0;3512:4;1531:13:0;:11;:13::i;:::-;3591:6:9::1;3570:13;3222:12:2::0;;;3144:97;3570:13:9::1;:17;::::0;3586:1:::1;3570:17;:::i;:::-;3569:28;;;;:::i;:::-;3556:9;:41;;3534:142;;;::::0;-1:-1:-1;;;3534:142:9;;10641:2:10;3534:142:9::1;::::0;::::1;10623:21:10::0;10680:2;10660:18;;;10653:30;10719:34;10699:18;;;10692:62;-1:-1:-1;;;10770:18:10;;;10763:49;10829:19;;3534:142:9::1;10439:415:10::0;3534:142:9::1;3744:4;3723:13;3222:12:2::0;;;3144:97;3723:13:9::1;:17;::::0;3739:1:::1;3723:17;:::i;:::-;3722:26;;;;:::i;:::-;3709:9;:39;;3687:139;;;::::0;-1:-1:-1;;;3687:139:9;;11061:2:10;3687:139:9::1;::::0;::::1;11043:21:10::0;11100:2;11080:18;;;11073:30;11139:34;11119:18;;;11112:62;-1:-1:-1;;;11190:18:10;;;11183:48;11248:19;;3687:139:9::1;10859:414:10::0;3687:139:9::1;-1:-1:-1::0;3837:18:9::1;:30:::0;;;3885:4:::1;1554:1:0;3404:493:9::0;;;:::o;6577:375::-;1531:13:0;:11;:13::i;:::-;6665:18:9::1;::::0;;;::::1;;;6664:19;6656:65;;;::::0;-1:-1:-1;;;6656:65:9;;11480:2:10;6656:65:9::1;::::0;::::1;11462:21:10::0;11519:2;11499:18;;;11492:30;11558:34;11538:18;;;11531:62;-1:-1:-1;;;11609:18:10;;;11602:31;11650:19;;6656:65:9::1;11278:397:10::0;6656:65:9::1;6775:13;-1:-1:-1::0;;;;;6754:35:9::1;:9;-1:-1:-1::0;;;;;6754:35:9::1;;;:76;;;;;6814:15;-1:-1:-1::0;;;;;6793:37:9::1;:9;-1:-1:-1::0;;;;;6793:37:9::1;;;6754:76;6732:171;;;::::0;-1:-1:-1;;;6732:171:9;;11882:2:10;6732:171:9::1;::::0;::::1;11864:21:10::0;11921:2;11901:18;;;11894:30;11960:34;11940:18;;;11933:62;-1:-1:-1;;;12011:18:10;;;12004:42;12063:19;;6732:171:9::1;11680:408:10::0;6732:171:9::1;-1:-1:-1::0;;;;;6914:23:9::1;;::::0;;;:12:::1;:23;::::0;;;;:30;;-1:-1:-1;;6914:30:9::1;6940:4;6914:30;::::0;;6577:375::o;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;2145:51:10::0;2118:18;;2672:31:0::1;1972:230:10::0;2623:91:0::1;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;1796:162::-;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:5;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;2145:51:10;2118:18;;1901:40:0;1972:230:10;8997:128:2;9081:37;9090:5;9097:7;9106:5;9113:4;9081:8;:37::i;10671:477::-;-1:-1:-1;;;;;3952:18:2;;;10770:24;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10836:37:2;;10832:310;;10912:5;10893:16;:24;10889:130;;;10944:60;;-1:-1:-1;;;10944:60:2;;-1:-1:-1;;;;;12313:32:10;;10944:60:2;;;12295:51:10;12362:18;;;12355:34;;;12405:18;;;12398:34;;;12268:18;;10944:60:2;12093:345:10;10889:130:2;11060:57;11069:5;11076:7;11104:5;11085:16;:24;11111:5;11060:8;:57::i;7508:3338:9:-;-1:-1:-1;;;;;7640:18:9;;7632:68;;;;-1:-1:-1;;;7632:68:9;;12645:2:10;7632:68:9;;;12627:21:10;12684:2;12664:18;;;12657:30;12723:34;12703:18;;;12696:62;-1:-1:-1;;;12774:18:10;;;12767:35;12819:19;;7632:68:9;12443:401:10;7632:68:9;-1:-1:-1;;;;;7719:16:9;;7711:64;;;;-1:-1:-1;;;7711:64:9;;13051:2:10;7711:64:9;;;13033:21:10;13090:2;13070:18;;;13063:30;13129:34;13109:18;;;13102:62;-1:-1:-1;;;13180:18:10;;;13173:33;13223:19;;7711:64:9;12849:399:10;7711:64:9;-1:-1:-1;;;;;7795:18:9;;;;;;:12;:18;;;;;;;;7794:19;7786:49;;;;-1:-1:-1;;;7786:49:9;;13455:2:10;7786:49:9;;;13437:21:10;13494:2;13474:18;;;13467:30;-1:-1:-1;;;13513:18:10;;;13506:48;13571:18;;7786:49:9;13253:342:10;7786:49:9;-1:-1:-1;;;;;7855:16:9;;;;;;:12;:16;;;;;;;;7854:17;7846:49;;;;-1:-1:-1;;;7846:49:9;;13802:2:10;7846:49:9;;;13784:21:10;13841:2;13821:18;;;13814:30;-1:-1:-1;;;13860:18:10;;;13853:50;13920:18;;7846:49:9;13600:344:10;7846:49:9;7912:6;7922:1;7912:11;7908:93;;7940:28;7956:4;7962:2;7966:1;7940:15;:28::i;7908:93::-;8036:14;;;;;;;8063:1450;;;;1710:6:0;;-1:-1:-1;;;;;8121:15:9;;;1710:6:0;;8121:15:9;;;;:49;;-1:-1:-1;1710:6:0;;-1:-1:-1;;;;;8157:13:9;;;1710:6:0;;8157:13:9;;8121:49;:86;;;;-1:-1:-1;;;;;;8191:16:9;;;;8121:86;:128;;;;-1:-1:-1;;;;;;8228:21:9;;8242:6;8228:21;;8121:128;:159;;;;-1:-1:-1;8271:9:9;;;;8270:10;8121:159;8099:1403;;;-1:-1:-1;;;;;8369:31:9;;;;;;:25;:31;;;;;;;;:91;;;;-1:-1:-1;;;;;;8426:34:9;;;;;;:30;:34;;;;;;;;8425:35;8369:91;8343:1144;;;8547:20;;8537:6;:30;;8503:169;;;;-1:-1:-1;;;8503:169:9;;14151:2:10;8503:169:9;;;14133:21:10;14190:2;14170:18;;;14163:30;14229:34;14209:18;;;14202:62;-1:-1:-1;;;14280:18:10;;;14273:51;14341:19;;8503:169:9;13949:417:10;8503:169:9;8755:9;;-1:-1:-1;;;;;3390:18:2;;3364:7;3390:18;;;;;;;;;;;8729:22:9;;:6;:22;:::i;:::-;:35;;8695:140;;;;-1:-1:-1;;;8695:140:9;;14703:2:10;8695:140:9;;;14685:21:10;14742:2;14722:18;;;14715:30;-1:-1:-1;;;14761:18:10;;;14754:49;14820:18;;8695:140:9;14501:343:10;8695:140:9;8343:1144;;;-1:-1:-1;;;;;8933:29:9;;;;;;:25;:29;;;;;;;;:91;;;;-1:-1:-1;;;;;;8988:36:9;;;;;;:30;:36;;;;;;;;8987:37;8933:91;8907:580;;;9111:20;;9101:6;:30;;9067:170;;;;-1:-1:-1;;;9067:170:9;;15051:2:10;9067:170:9;;;15033:21:10;15090:2;15070:18;;;15063:30;15129:34;15109:18;;;15102:62;-1:-1:-1;;;15180:18:10;;;15173:52;15242:19;;9067:170:9;14849:418:10;8907:580:9;-1:-1:-1;;;;;9268:34:9;;;;;;:30;:34;;;;;;;;9263:224;;9387:9;;-1:-1:-1;;;;;3390:18:2;;3364:7;3390:18;;;;;;;;;;;9361:22:9;;:6;:22;:::i;:::-;:35;;9327:140;;;;-1:-1:-1;;;9327:140:9;;14703:2:10;9327:140:9;;;14685:21:10;14742:2;14722:18;;;14715:30;-1:-1:-1;;;14761:18:10;;;14754:49;14820:18;;9327:140:9;14501:343:10;9327:140:9;9574:4;9525:28;3390:18:2;;;;;;;;;;;9632::9;;9608:42;;;;;;;9681:34;;-1:-1:-1;9706:9:9;;;;9705:10;9681:34;:83;;;;-1:-1:-1;;;;;;9733:31:9;;;;;;:25;:31;;;;;;;;9732:32;9681:83;:126;;;;-1:-1:-1;;;;;;9782:25:9;;;;;;:19;:25;;;;;;;;9781:26;9681:126;:167;;;;-1:-1:-1;;;;;;9825:23:9;;;;;;:19;:23;;;;;;;;9824:24;9681:167;9663:302;;;9875:9;:16;;-1:-1:-1;;9875:16:9;9887:4;9875:16;;;9908:11;:9;:11::i;:::-;9936:9;:17;;-1:-1:-1;;9936:17:9;;;9663:302;9993:9;;-1:-1:-1;;;;;10019:25:9;;9977:12;10019:25;;;:19;:25;;;;;;9993:9;;;;9992:10;;10019:25;;:52;;-1:-1:-1;;;;;;10048:23:9;;;;;;:19;:23;;;;;;;;10019:52;10015:100;;;-1:-1:-1;10098:5:9;10015:100;10127:12;10158:7;10154:639;;;-1:-1:-1;;;;;10186:29:9;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;10219:13:9;;;;;;;:17;;10186:50;10182:462;;;10320:3;10273:44;10291:15;10308:2;10312:4;10273:17;:44::i;:::-;10264:53;;:6;:53;:::i;:::-;:59;;;;:::i;:::-;10367:14;;10257:66;;-1:-1:-1;10385:3:9;;10360:21;;-1:-1:-1;;;10367:14:9;;;;10257:66;10360:21;:::i;:::-;10359:29;;;;:::i;:::-;10342:13;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;10182:462:9;;-1:-1:-1;10182:462:9;;-1:-1:-1;;;;;10427:31:9;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;10462:12:9;;;;:16;;10427:51;10423:221;;;10561:3;10515:43;10532:15;10549:2;10553:4;10515:16;:43::i;:::-;10506:52;;:6;:52;:::i;:::-;:58;;;;:::i;:::-;10608:13;;10499:65;;-1:-1:-1;10625:3:9;;10601:20;;10608:13;;;;;10499:65;10601:20;:::i;:::-;10600:28;;;;:::i;:::-;10583:13;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;10423:221:9;10664:8;;10660:91;;10693:42;10709:4;10723;10730;10693:15;:42::i;:::-;10767:14;10777:4;10767:14;;:::i;:::-;;;10154:639;10805:33;10821:4;10827:2;10831:6;10805:15;:33::i;:::-;7621:3225;;;;;7508:3338;;;:::o;11534:365::-;11616:62;11633:4;11648:15;11666:11;11616:8;:62::i;:::-;11691:15;-1:-1:-1;;;;;11691:31:9;;11730:9;11763:4;11783:11;11809:1;11826;11843:7;1710:6:0;;-1:-1:-1;;;;;1710:6:0;;1638:85;11843:7:9;11691:200;;;;;;-1:-1:-1;;;;;;11691:200:9;;;-1:-1:-1;;;;;15764:15:10;;;11691:200:9;;;15746:34:10;15796:18;;;15789:34;;;;15839:18;;;15832:34;;;;15882:18;;;15875:34;15946:15;;;15925:19;;;15918:44;11865:15:9;15978:19:10;;;15971:35;15680:19;;11691:200:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;11534:365;;:::o;2912:187:0:-;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;10854:188:9:-;-1:-1:-1;;;;;10937:31:9;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;10937:39:9;;;;;;;;;;10994:40;;10937:39;;:31;10994:40;;;10854:188;;:::o;9957:432:2:-;-1:-1:-1;;;;;10069:19:2;;10065:89;;10111:32;;-1:-1:-1;;;10111:32:2;;10140:1;10111:32;;;2145:51:10;2118:18;;10111:32:2;1972:230:10;10065:89:2;-1:-1:-1;;;;;10167:21:2;;10163:90;;10211:31;;-1:-1:-1;;;10211:31:2;;10239:1;10211:31;;;2145:51:10;2118:18;;10211:31:2;1972:230:10;10163:90:2;-1:-1:-1;;;;;10262:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10307:76;;;;10357:7;-1:-1:-1;;;;;10341:31:2;10350:5;-1:-1:-1;;;;;10341:31:2;;10366:5;10341:31;;;;2353:25:10;;2341:2;2326:18;;2207:177;10341:31:2;;;;;;;;9957:432;;;;:::o;5656:308::-;-1:-1:-1;;;;;5747:18:2;;5743:86;;5788:30;;-1:-1:-1;;;5788:30:2;;5815:1;5788:30;;;2145:51:10;2118:18;;5788:30:2;1972:230:10;5743:86:2;-1:-1:-1;;;;;5842:16:2;;5838:86;;5881:32;;-1:-1:-1;;;5881:32:2;;5910:1;5881:32;;;2145:51:10;2118:18;;5881:32:2;1972:230:10;5838:86:2;5933:24;5941:4;5947:2;5951:5;5933:7;:24::i;11907:702:9:-;11991:4;11947:23;3390:18:2;;;;;;;;;;;12036:13:9;;3390:18:2;;12089:20:9;;;:46;;-1:-1:-1;12113:22:9;;12089:46;12085:85;;;12152:7;;;11907:702::o;12085:85::-;12204:18;;:23;;12225:2;12204:23;:::i;:::-;12186:15;:41;12182:115;;;12262:18;;:23;;12283:2;12262:23;:::i;:::-;12244:41;;12182:115;12338:15;12364:37;12338:15;12364:17;:37::i;:::-;12414:18;12509:13;:17;;;12559:10;;12551:47;;12435:21;;;;-1:-1:-1;;;;;12559:10:9;;12435:21;;12551:47;12414:18;12551:47;12435:21;12559:10;12551:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;11907:702:9:o;12617:698::-;12716:7;12740:15;12736:54;;-1:-1:-1;12777:13:9;;;;;;;12770:20;;12736:54;12828:13;;12875:11;;12828:13;;;;;;;-1:-1:-1;;;;;12875:11:9;;;;-1:-1:-1;;;12922:13:9;;;12966:29;12922:13;12875:11;12966:29;:::i;:::-;12951:12;:44;12948:82;;;-1:-1:-1;;13017:13:9;;;;;;;;-1:-1:-1;13010:20:9;;-1:-1:-1;13010:20:9;12948:82;13043:30;13076:27;13091:12;13076;:27;:::i;:::-;13043:60;-1:-1:-1;13114:18:9;13178:14;13142:27;13043:60;13142:2;:27;:::i;:::-;13141:52;;;;:::i;:::-;13135:59;;:2;:59;:::i;:::-;13114:80;;13221:14;13208:10;:27;13205:72;;;-1:-1:-1;13263:14:9;13205:72;13297:10;12617:698;-1:-1:-1;;;;;;;;12617:698:9:o;13323:708::-;13421:7;13445:15;13441:53;;-1:-1:-1;13482:12:9;;;;13475:19;;13441:53;13539:12;;13585:11;;13539:12;;;;;-1:-1:-1;;;;;13585:11:9;;;;-1:-1:-1;;;13632:13:9;;;13676:29;13632:13;13585:11;13676:29;:::i;:::-;13661:12;:44;13658:82;;;13727:13;13720:20;;;;;;;6279:1107:2;-1:-1:-1;;;;;6368:18:2;;6364:540;;6520:5;6504:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6364:540:2;;-1:-1:-1;6364:540:2;;-1:-1:-1;;;;;6578:15:2;;6556:19;6578:15;;;;;;;;;;;6611:19;;;6607:115;;;6657:50;;-1:-1:-1;;;6657:50:2;;-1:-1:-1;;;;;12313:32:10;;6657:50:2;;;12295:51:10;12362:18;;;12355:34;;;12405:18;;;12398:34;;;12268:18;;6657:50:2;12093:345:10;6607:115:2;-1:-1:-1;;;;;6842:15:2;;:9;:15;;;;;;;;;;6860:19;;;;6842:37;;6364:540;-1:-1:-1;;;;;6918:16:2;;6914:425;;7081:12;:21;;;;;;;6914:425;;;-1:-1:-1;;;;;7292:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6914:425;7369:2;-1:-1:-1;;;;;7354:25:2;7363:4;-1:-1:-1;;;;;7354:25:2;;7373:5;7354:25;;;;2353::10;;2341:2;2326:18;;2207:177;7354:25:2;;;;;;;;6279:1107;;;:::o;11050:476:9:-;11141:16;;;11155:1;11141:16;;;;;;;;11117:21;;11141:16;;;;;;;;;;-1:-1:-1;11141:16:9;11117:40;;11186:4;11168;11173:1;11168:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;11168:23:9;;;-1:-1:-1;;;;;11168:23:9;;;;;11212:15;-1:-1:-1;;;;;11212:20:9;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11202:4;11207:1;11202:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;11202:32:9;;;-1:-1:-1;;;;;11202:32:9;;;;;11247:62;11264:4;11279:15;11297:11;11247:8;:62::i;:::-;11322:196;;-1:-1:-1;;;11322:196:9;;-1:-1:-1;;;;;11322:15:9;:66;;;;:196;;11403:11;;11429:1;;11445:4;;11472;;11492:15;;11322:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11106:420;11050:476;:::o;14:159:10:-;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;178:256;244:6;252;305:2;293:9;284:7;280:23;276:32;273:52;;;321:1;318;311:12;273:52;344:28;362:9;344:28;:::i;:::-;334:38;;391:37;424:2;413:9;409:18;391:37;:::i;:::-;381:47;;178:256;;;;;:::o;632:548::-;744:4;773:2;802;791:9;784:21;834:6;828:13;877:6;872:2;861:9;857:18;850:34;902:1;912:140;926:6;923:1;920:13;912:140;;;1021:14;;;1017:23;;1011:30;987:17;;;1006:2;983:26;976:66;941:10;;912:140;;;916:3;1101:1;1096:2;1087:6;1076:9;1072:22;1068:31;1061:42;1171:2;1164;1160:7;1155:2;1147:6;1143:15;1139:29;1128:9;1124:45;1120:54;1112:62;;;;632:548;;;;:::o;1185:131::-;-1:-1:-1;;;;;1260:31:10;;1250:42;;1240:70;;1306:1;1303;1296:12;1321:134;1389:20;;1418:31;1389:20;1418:31;:::i;1460:315::-;1528:6;1536;1589:2;1577:9;1568:7;1564:23;1560:32;1557:52;;;1605:1;1602;1595:12;1557:52;1644:9;1631:23;1663:31;1688:5;1663:31;:::i;:::-;1713:5;1765:2;1750:18;;;;1737:32;;-1:-1:-1;;;1460:315:10:o;2389:456::-;2466:6;2474;2482;2535:2;2523:9;2514:7;2510:23;2506:32;2503:52;;;2551:1;2548;2541:12;2503:52;2590:9;2577:23;2609:31;2634:5;2609:31;:::i;:::-;2659:5;-1:-1:-1;2716:2:10;2701:18;;2688:32;2729:33;2688:32;2729:33;:::i;:::-;2389:456;;2781:7;;-1:-1:-1;;;2835:2:10;2820:18;;;;2807:32;;2389:456::o;3470:247::-;3529:6;3582:2;3570:9;3561:7;3557:23;3553:32;3550:52;;;3598:1;3595;3588:12;3550:52;3637:9;3624:23;3656:31;3681:5;3656:31;:::i;3722:369::-;3790:6;3798;3851:2;3839:9;3830:7;3826:23;3822:32;3819:52;;;3867:1;3864;3857:12;3819:52;3903:9;3890:23;3880:33;;3963:2;3952:9;3948:18;3935:32;-1:-1:-1;;;;;4000:5:10;3996:46;3989:5;3986:57;3976:85;;4057:1;4054;4047:12;3976:85;4080:5;4070:15;;;3722:369;;;;;:::o;4096:118::-;4182:5;4175:13;4168:21;4161:5;4158:32;4148:60;;4204:1;4201;4194:12;4219:382;4284:6;4292;4345:2;4333:9;4324:7;4320:23;4316:32;4313:52;;;4361:1;4358;4351:12;4313:52;4400:9;4387:23;4419:31;4444:5;4419:31;:::i;:::-;4469:5;-1:-1:-1;4526:2:10;4511:18;;4498:32;4539:30;4498:32;4539:30;:::i;4606:180::-;4665:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:52;;;4734:1;4731;4724:12;4686:52;-1:-1:-1;4757:23:10;;4606:180;-1:-1:-1;4606:180:10:o;4791:388::-;4859:6;4867;4920:2;4908:9;4899:7;4895:23;4891:32;4888:52;;;4936:1;4933;4926:12;4888:52;4975:9;4962:23;4994:31;5019:5;4994:31;:::i;:::-;5044:5;-1:-1:-1;5101:2:10;5086:18;;5073:32;5114:33;5073:32;5114:33;:::i;5184:127::-;5245:10;5240:3;5236:20;5233:1;5226:31;5276:4;5273:1;5266:15;5300:4;5297:1;5290:15;5316:1121;5400:6;5431:2;5474;5462:9;5453:7;5449:23;5445:32;5442:52;;;5490:1;5487;5480:12;5442:52;5530:9;5517:23;5559:18;5600:2;5592:6;5589:14;5586:34;;;5616:1;5613;5606:12;5586:34;5654:6;5643:9;5639:22;5629:32;;5699:7;5692:4;5688:2;5684:13;5680:27;5670:55;;5721:1;5718;5711:12;5670:55;5757:2;5744:16;5779:2;5775;5772:10;5769:36;;;5785:18;;:::i;:::-;5831:2;5828:1;5824:10;5863:2;5857:9;5926:2;5922:7;5917:2;5913;5909:11;5905:25;5897:6;5893:38;5981:6;5969:10;5966:22;5961:2;5949:10;5946:18;5943:46;5940:72;;;5992:18;;:::i;:::-;6028:2;6021:22;6078:18;;;6112:15;;;;-1:-1:-1;6154:11:10;;;6150:20;;;6182:19;;;6179:39;;;6214:1;6211;6204:12;6179:39;6238:11;;;;6258:148;6274:6;6269:3;6266:15;6258:148;;;6340:23;6359:3;6340:23;:::i;:::-;6328:36;;6291:12;;;;6384;;;;6258:148;;6792:380;6871:1;6867:12;;;;6914;;;6935:61;;6989:4;6981:6;6977:17;6967:27;;6935:61;7042:2;7034:6;7031:14;7011:18;7008:38;7005:161;;7088:10;7083:3;7079:20;7076:1;7069:31;7123:4;7120:1;7113:15;7151:4;7148:1;7141:15;7005:161;;6792:380;;;:::o;7387:184::-;7457:6;7510:2;7498:9;7489:7;7485:23;7481:32;7478:52;;;7526:1;7523;7516:12;7478:52;-1:-1:-1;7549:16:10;;7387:184;-1:-1:-1;7387:184:10:o;7855:245::-;7922:6;7975:2;7963:9;7954:7;7950:23;7946:32;7943:52;;;7991:1;7988;7981:12;7943:52;8023:9;8017:16;8042:28;8064:5;8042:28;:::i;8882:127::-;8943:10;8938:3;8934:20;8931:1;8924:31;8974:4;8971:1;8964:15;8998:4;8995:1;8988:15;9014:168;9087:9;;;9118;;9135:15;;;9129:22;;9115:37;9105:71;;9156:18;;:::i;9187:217::-;9227:1;9253;9243:132;;9297:10;9292:3;9288:20;9285:1;9278:31;9332:4;9329:1;9322:15;9360:4;9357:1;9350:15;9243:132;-1:-1:-1;9389:9:10;;9187:217::o;10167:127::-;10228:10;10223:3;10219:20;10216:1;10209:31;10259:4;10256:1;10249:15;10283:4;10280:1;10273:15;10299:135;10338:3;10359:17;;;10356:43;;10379:18;;:::i;:::-;-1:-1:-1;10426:1:10;10415:13;;10299:135::o;14371:125::-;14436:9;;;14457:10;;;14454:36;;;14470:18;;:::i;15272:128::-;15339:9;;;15360:11;;;15357:37;;;15374:18;;:::i;16017:306::-;16105:6;16113;16121;16174:2;16162:9;16153:7;16149:23;16145:32;16142:52;;;16190:1;16187;16180:12;16142:52;16219:9;16213:16;16203:26;;16269:2;16258:9;16254:18;16248:25;16238:35;;16313:2;16302:9;16298:18;16292:25;16282:35;;16017:306;;;;;:::o;16328:251::-;16398:6;16451:2;16439:9;16430:7;16426:23;16422:32;16419:52;;;16467:1;16464;16457:12;16419:52;16499:9;16493:16;16518:31;16543:5;16518:31;:::i;16584:980::-;16846:4;16894:3;16883:9;16879:19;16925:6;16914:9;16907:25;16951:2;16989:6;16984:2;16973:9;16969:18;16962:34;17032:3;17027:2;17016:9;17012:18;17005:31;17056:6;17091;17085:13;17122:6;17114;17107:22;17160:3;17149:9;17145:19;17138:26;;17199:2;17191:6;17187:15;17173:29;;17220:1;17230:195;17244:6;17241:1;17238:13;17230:195;;;17309:13;;-1:-1:-1;;;;;17305:39:10;17293:52;;17400:15;;;;17365:12;;;;17341:1;17259:9;17230:195;;;-1:-1:-1;;;;;;;17481:32:10;;;;17476:2;17461:18;;17454:60;-1:-1:-1;;;17545:3:10;17530:19;17523:35;17442:3;16584:980;-1:-1:-1;;;16584:980:10:o

Swarm Source

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