ETH Price: $2,853.77 (-10.25%)
Gas: 14 Gwei

Token

MELLSTROY (MELLSTROY)
 

Overview

Max Total Supply

21,000,000,000 MELLSTROY

Holders

2,548

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: MELLSTROY 5
Balance
334,768,948.789392989378149392 MELLSTROY

Value
$0.00
0xdfdc7baa7e9fa5c491fd2b453c4bc54249323406
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:
MELLSTROY

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 999999 runs

Other Settings:
cancun EvmVersion
File 1 of 10 : MELLSTROY.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract MELLSTROY is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 21_000_000_000 * 10 ** 18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "MELLSTROY";
    string private _symbol = "MELLSTROY";
    uint8 private _decimals = 18;

    // Base Fees
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 1;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _burnFee = 1;
    uint256 private _previousBurnFee = _burnFee;

    uint256 public _marketingFee = 2;
    address public marketingWallet;
    uint256 private _previousMarketingFee = _marketingFee;

    // Sell Fees
    uint256 public _sellTaxFee;
    uint256 public _sellLiquidityFee;
    uint256 public _sellMarketingFee;
    uint256 public _sellBurnFee;

    // Anti whale
    uint256 public constant MAX_HOLDING_PERCENTS_DIVISOR = 10000;
    uint256 public _maxHoldingPercents = 25;
    bool public antiWhaleEnabled;

    // Anti manager
    address public antiManager;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 public numTokensSellToAddToLiquidity = 5000000 * 10 ** 18;
    uint256 public numTokensSellToMarketing = 10000000 * 10 ** 18;

    bool public feePercentagesLocked;
    mapping(address => bool) public antiWhaleWhitelist;

    mapping(address => bool) public blacklist;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    modifier feePercentagesNotLocked {
        require(!feePercentagesLocked, "Fee percentages are locked");
        _;
    }

    constructor(IUniswapV2Router02 _uniswapV2Router, address _owner, address _marketingWallet, address _antiManager, address[] memory _emissionAddresses, uint256[] memory _emissionPercentages) {
        _transferOwnership(_owner);
        marketingWallet = _marketingWallet;
        antiManager = _antiManager;

        uint256 rSum;
        uint256 tSum;
        for (uint256 i; i < _emissionAddresses.length; i++) {
            uint256 rAmount = (_rTotal / 100) * _emissionPercentages[i];
            _rOwned[_emissionAddresses[i]] = rAmount;
            rSum += rAmount;
            uint256 tAmount = (_tTotal * _emissionPercentages[i]) / 100;
            tSum += tAmount;
            emit Transfer(address(0), _emissionAddresses[i], tAmount);
        }
        _rOwned[_owner] = _rTotal - rSum;

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

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        //exclude owner, anti manager and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[_antiManager] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), _owner, _tTotal - tSum);
    }

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

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

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(account != address(uniswapV2Router), 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    //to receive ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(10 ** 2);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(10 ** 2);
    }

    function activateSellFee() private {
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousBurnFee = _burnFee;
        _previousMarketingFee = _marketingFee;

        _taxFee = _sellTaxFee;
        _liquidityFee = _sellLiquidityFee;
        _marketingFee = _sellMarketingFee;
        _burnFee = _sellBurnFee;
    }

    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0 && _burnFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousBurnFee = _burnFee;
        _previousMarketingFee = _marketingFee;

        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _burnFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _burnFee = _previousBurnFee;
        _marketingFee = _previousMarketingFee;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        require(!blacklist[from], "Blacklisted");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= (numTokensSellToAddToLiquidity + numTokensSellToMarketing);
        if (overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && to == uniswapV2Pair && swapAndLiquifyEnabled) {
            //add liquidity
            swapAndLiquify(numTokensSellToAddToLiquidity, numTokensSellToMarketing);
        }

        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from, to, amount);

        if (antiWhaleEnabled) {
            uint maxAllowed = _tTotal * _maxHoldingPercents / MAX_HOLDING_PERCENTS_DIVISOR;
            if (to == uniswapV2Pair) {
                require(amount <= maxAllowed, "Transacted amount exceed the max allowed value");
            } else {
                require(balanceOf(to) <= maxAllowed || antiWhaleWhitelist[to], "Wallet balance exceeds the max limit");
            }
        }
    }

    function swapAndLiquify(uint256 liquidity, uint256 marketing) private lockTheSwap {

        swapTokensForEth(marketing);
        payable(marketingWallet).transfer(address(this).balance);

        // split the contract balance into halves
        uint256 half = liquidity.div(2);
        uint256 otherHalf = liquidity.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half);
        // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount) private {
        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            removeAllFee();
        } else if (recipient == uniswapV2Pair) {
            activateSellFee();
        }

        //Calculate burn amount and marketing amount
        uint256 burnAmt = amount.mul(_burnFee).div(100);
        uint256 marketingAmt = amount.mul(_marketingFee).div(100);

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        } else {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
        }

        //Temporarily remove fees to transfer to burn address and marketing wallet
        _taxFee = 0;
        _liquidityFee = 0;

        _transferStandard(sender, address(0), burnAmt);
        _transferStandard(sender, address(this), marketingAmt);

        //Restore tax and liquidity fees
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;

        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient] || recipient == uniswapV2Pair) {
            restoreAllFee();
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setMarketingWallet(address newWallet) external onlyOwner() {
        marketingWallet = newWallet;
    }

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() feePercentagesNotLocked() {
        require(taxFee <= 1, "Tax fee cannot be more than 1%");
        _taxFee = taxFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() feePercentagesNotLocked() {
        require(liquidityFee <= 1, "Liquidity fee cannot be more than 1%");
        _liquidityFee = liquidityFee;
    }

    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() feePercentagesNotLocked() {
        require(marketingFee <= 2, "Marketing fee cannot be more than 2%");
        _marketingFee = marketingFee;
    }

    function setBurnFeePercent(uint256 burnFee) external onlyOwner() feePercentagesNotLocked() {
        require(burnFee <= 1, "Burn fee cannot be more than 1%");
        _burnFee = burnFee;
    }

    function setSellBurnFeePercent(uint256 sellBurnFee) external onlyOwner() feePercentagesNotLocked() {
        require(sellBurnFee <= 2, "Sell burn fee cannot be more than 2%");
        _sellBurnFee = sellBurnFee;
    }

    function setSellMarketingFeePercent(uint256 sellMarketingFee) external onlyOwner() feePercentagesNotLocked() {
        require(sellMarketingFee <= 28, "Sell marketing fee cannot be more than 28%");
        _sellMarketingFee = sellMarketingFee;
    }

    function setSellLiquidityFeePercent(uint256 sellLiquidityFee) external onlyOwner() feePercentagesNotLocked() {
        require(sellLiquidityFee <= 5, "Sell liquidity fee cannot be more than 5%");
        _sellLiquidityFee = sellLiquidityFee;
    }

    function setSellTaxFeePercent(uint256 sellTaxFee) external onlyOwner() feePercentagesNotLocked() {
        require(sellTaxFee <= 5, "Sell tax fee cannot be more than 5%");
        _sellTaxFee = sellTaxFee;
    }

    function setMaxHoldingPercents(uint256 maxHoldingPercents) external onlyOwner() {
        require(maxHoldingPercents >= 10, "Max holding percents cannot be less than 0.1%");
        require(maxHoldingPercents <= 300, "Max holding percents cannot be more than 3%");
        _maxHoldingPercents = maxHoldingPercents;
    }

    function lockFeePercentages() external onlyOwner feePercentagesNotLocked {
        feePercentagesLocked = true;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setAntiWhale(bool enabled) external {
        require(msg.sender == owner() || msg.sender == antiManager, "Only admin or anti manager allowed");
        antiWhaleEnabled = enabled;
    }

    function editAntiWhaleWhitelist(address[] calldata account, bool[] calldata enabled) external onlyOwner {
        require(account.length == enabled.length, "Non-matching length");
        for (uint256 i; i < account.length; i++) {
            antiWhaleWhitelist[account[i]] = enabled[i];
        }
    }

    function setNumTokensSellToAddToLiquidity(uint256 _numTokensSellToAddToLiquidity) external onlyOwner {
        require(_numTokensSellToAddToLiquidity > 0, "Cannot set zero");
        numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity;
    }

    function setNumTokensSellToMarketing(uint256 _numTokensSellToMarketing) external onlyOwner {
        require(_numTokensSellToMarketing > 0, "Cannot set zero");
        numTokensSellToMarketing = _numTokensSellToMarketing;
    }

    function getETHFromContract() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }

    function editBlacklist(address[] calldata account, bool[] calldata enabled) external onlyOwner {
        require(account.length == enabled.length, "Non-matching length");
        for (uint256 i; i < account.length; i++) {
            blacklist[account[i]] = enabled[i];
        }
    }
}

File 2 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 3 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 4 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 5 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 6 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

File 8 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_antiManager","type":"address"},{"internalType":"address[]","name":"_emissionAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_emissionPercentages","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_HOLDING_PERCENTS_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxHoldingPercents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiWhaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"antiWhaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"bool[]","name":"enabled","type":"bool[]"}],"name":"editAntiWhaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"bool[]","name":"enabled","type":"bool[]"}],"name":"editBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePercentagesLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getETHFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHoldingPercents","type":"uint256"}],"name":"setMaxHoldingPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToLiquidity","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToMarketing","type":"uint256"}],"name":"setNumTokensSellToMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellBurnFee","type":"uint256"}],"name":"setSellBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"name":"setSellLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"}],"name":"setSellMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellTaxFee","type":"uint256"}],"name":"setSellTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526b43dacaf91c1a84ff080000006007819055610021905f19610545565b61002c905f1961056c565b6008556040805180820190915260098152684d454c4c5354524f5960b81b6020820152600a9061005c908261061d565b506040805180820190915260098152684d454c4c5354524f5960b81b6020820152600b9061008a908261061d565b50600c805460ff191660129081179091556001600d819055600e819055600f819055601081905560118190559055600260138190556015556019601a55601d805460ff60a81b191690556a0422ca8b0a00a425000000601e556a084595161401484a000000601f553480156100fd575f80fd5b50604051614a2d380380614a2d83398101604081905261011c916107b1565b610125336104e2565b61012e856104e2565b601480546001600160a01b0319166001600160a01b0386811691909117909155601b8054610100600160a81b031916610100928616929092029190911790555f80805b8451811015610294575f84828151811061018d5761018d6108bb565b602002602001015160646008546101a491906108cf565b6101ae91906108e2565b90508060015f8885815181106101c6576101c66108bb565b6020908102919091018101516001600160a01b031682528101919091526040015f20556101f381856108f9565b93505f606486848151811061020a5761020a6108bb565b602002602001015160075461021f91906108e2565b61022991906108cf565b905061023581856108f9565b9350868381518110610249576102496108bb565b60200260200101516001600160a01b03165f6001600160a01b03165f80516020614a0d8339815191528360405161028291815260200190565b60405180910390a35050600101610171565b50816008546102a3919061056c565b60015f896001600160a01b03166001600160a01b031681526020019081526020015f2081905550876001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610306573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061032a919061090c565b6001600160a01b031663c9c65396308a6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610375573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610399919061090c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156103e3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610407919061090c565b601d80546001600160a01b03199081166001600160a01b0393841617909155601c8054909116918a16919091179055600160045f61044c5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055898216815260049093528183208054851660019081179091553084529183208054909416909117909255600754918916915f80516020614a0d833981519152906104c490859061056c565b60405190815260200160405180910390a3505050505050505061092e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52601260045260245ffd5b5f8261055357610553610531565b500690565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561057f5761057f610558565b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806105ad57607f821691505b6020821081036105cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561061857805f5260205f20601f840160051c810160208510156105f65750805b601f840160051c820191505b81811015610615575f8155600101610602565b50505b505050565b81516001600160401b0381111561063657610636610585565b61064a816106448454610599565b846105d1565b602080601f83116001811461067d575f84156106665750858301515b5f19600386901b1c1916600185901b1785556106d4565b5f85815260208120601f198616915b828110156106ab5788860151825594840194600190910190840161068c565b50858210156106c857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b6001600160a01b03811681146106f0575f80fd5b50565b604051601f8201601f191681016001600160401b038111828210171561071b5761071b610585565b604052919050565b5f6001600160401b0382111561073b5761073b610585565b5060051b60200190565b5f82601f830112610754575f80fd5b8151602061076961076483610723565b6106f3565b8083825260208201915060208460051b87010193508684111561078a575f80fd5b602086015b848110156107a6578051835291830191830161078f565b509695505050505050565b5f805f805f8060c087890312156107c6575f80fd5b86516107d1816106dc565b809650506020808801516107e4816106dc565b60408901519096506107f5816106dc565b6060890151909550610806816106dc565b60808901519094506001600160401b0380821115610822575f80fd5b818a0191508a601f830112610835575f80fd5b815161084361076482610723565b81815260059190911b8301840190848101908d831115610861575f80fd5b938501935b82851015610888578451610879816106dc565b82529385019390850190610866565b60a08d015190975094505050808311156108a0575f80fd5b50506108ae89828a01610745565b9150509295509295509295565b634e487b7160e01b5f52603260045260245ffd5b5f826108dd576108dd610531565b500490565b808202811582820484141761057f5761057f610558565b8082018082111561057f5761057f610558565b5f6020828403121561091c575f80fd5b8151610927816106dc565b9392505050565b6140d28061093b5f395ff3fe6080604052600436106103ab575f3560e01c8063686aaa0c116101e9578063b9ebdf0e11610108578063d5bde46c1161009d578063eed7eb8d1161006d578063eed7eb8d14610b53578063f0f165af14610b67578063f2fde38b14610b86578063f9f92be414610ba5575f80fd5b8063d5bde46c14610a93578063dd62ed3e14610ac4578063ea2f0b3714610b15578063ebf7866314610b34575f80fd5b8063c8607952116100d8578063c860795214610a2b578063cea2695814610a40578063d0e0352314610a5f578063d12a768814610a7e575f80fd5b8063b9ebdf0e146109c4578063c0ac57eb146109e3578063c0b0fda2146109f7578063c49b9a8014610a0c575f80fd5b80638da5cb5b1161017e5780639ff779511161014e5780639ff7795114610952578063a457c2d714610967578063a9059cbb14610986578063a928681c146109a5575f80fd5b80638da5cb5b146108d75780638ee88c531461090057806395d89b411461091f5780639655cab514610933575f80fd5b806375f0a874116101b957806375f0a8741461083d5780637abdc1ca1461086957806388790a681461087e57806388f8202014610893575f80fd5b8063686aaa0c146107dc5780636bc87c3a146107f557806370a082311461080a578063715018a614610829575f80fd5b80633bd5d173116102d557806352390c021161026a5780635876ccc51161023a5780635876ccc51461075b5780635d098b381461077a5780636332a99b1461079957806364a06e80146107c7575f80fd5b806352390c02146106c05780635342acb4146106df57806353e7c2ac1461072357806357d87f0d14610742575f80fd5b8063457c194c116102a5578063457c194c1461062457806349bd5a5e146106435780634a5566bf1461066f5780634a74bb021461068e575f80fd5b80633bd5d173146105a85780633c9d6db1146105c7578063437823ec146105e65780634549b03914610605575f80fd5b8063200a692d1161034b578063313ce5671161031b578063313ce567146105345780633685d4191461055557806339509351146105745780633b124fe714610593575f80fd5b8063200a692d146104cc57806322976e0d146104e157806323b872dd146104f65780632d83811914610515575f80fd5b80630a7d2d87116103865780630a7d2d871461043057806313114a9d146104535780631694505e1461046757806318160ddd146104b8575f80fd5b8063061c82d0146103b657806306fdde03146103d7578063095ea7b314610401575f80fd5b366103b257005b5f80fd5b3480156103c1575f80fd5b506103d56103d0366004613be6565b610bd3565b005b3480156103e2575f80fd5b506103eb610cbd565b6040516103f89190613bfd565b60405180910390f35b34801561040c575f80fd5b5061042061041b366004613c71565b610d4d565b60405190151581526020016103f8565b34801561043b575f80fd5b50610445601a5481565b6040519081526020016103f8565b34801561045e575f80fd5b50600954610445565b348015610472575f80fd5b50601c546104939073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103f8565b3480156104c3575f80fd5b50600754610445565b3480156104d7575f80fd5b5061044560165481565b3480156104ec575f80fd5b5061044560135481565b348015610501575f80fd5b50610420610510366004613c9b565b610d63565b348015610520575f80fd5b5061044561052f366004613be6565b610dd7565b34801561053f575f80fd5b50600c5460405160ff90911681526020016103f8565b348015610560575f80fd5b506103d561056f366004613cd9565b610e86565b34801561057f575f80fd5b5061042061058e366004613c71565b6110d1565b34801561059e575f80fd5b50610445600d5481565b3480156105b3575f80fd5b506103d56105c2366004613be6565b611113565b3480156105d2575f80fd5b506103d56105e1366004613d3c565b61123e565b3480156105f1575f80fd5b506103d5610600366004613cd9565b61136b565b348015610610575f80fd5b5061044561061f366004613db7565b6113c1565b34801561062f575f80fd5b506103d561063e366004613be6565b611465565b34801561064e575f80fd5b50601d546104939073ffffffffffffffffffffffffffffffffffffffff1681565b34801561067a575f80fd5b506103d5610689366004613de1565b61156f565b348015610699575f80fd5b50601d54610420907501000000000000000000000000000000000000000000900460ff1681565b3480156106cb575f80fd5b506103d56106da366004613cd9565b61166d565b3480156106ea575f80fd5b506104206106f9366004613cd9565b73ffffffffffffffffffffffffffffffffffffffff165f9081526004602052604090205460ff1690565b34801561072e575f80fd5b506103d561073d366004613d3c565b6118d5565b34801561074d575f80fd5b50601b546104209060ff1681565b348015610766575f80fd5b506103d5610775366004613be6565b6119fb565b348015610785575f80fd5b506103d5610794366004613cd9565b611b06565b3480156107a4575f80fd5b506104206107b3366004613cd9565b60216020525f908152604090205460ff1681565b3480156107d2575f80fd5b5061044561271081565b3480156107e7575f80fd5b506020546104209060ff1681565b348015610800575f80fd5b50610445600f5481565b348015610815575f80fd5b50610445610824366004613cd9565b611b55565b348015610834575f80fd5b506103d5611bd8565b348015610848575f80fd5b506014546104939073ffffffffffffffffffffffffffffffffffffffff1681565b348015610874575f80fd5b5061044560195481565b348015610889575f80fd5b5061044560175481565b34801561089e575f80fd5b506104206108ad366004613cd9565b73ffffffffffffffffffffffffffffffffffffffff165f9081526005602052604090205460ff1690565b3480156108e2575f80fd5b505f5473ffffffffffffffffffffffffffffffffffffffff16610493565b34801561090b575f80fd5b506103d561091a366004613be6565b611beb565b34801561092a575f80fd5b506103eb611cf5565b34801561093e575f80fd5b506103d561094d366004613be6565b611d04565b34801561095d575f80fd5b50610445601f5481565b348015610972575f80fd5b50610420610981366004613c71565b611e34565b348015610991575f80fd5b506104206109a0366004613c71565b611e8e565b3480156109b0575f80fd5b506103d56109bf366004613be6565b611e9a565b3480156109cf575f80fd5b506103d56109de366004613be6565b611fa5565b3480156109ee575f80fd5b506103d561201b565b348015610a02575f80fd5b5061044560115481565b348015610a17575f80fd5b506103d5610a26366004613de1565b61204f565b348015610a36575f80fd5b5061044560185481565b348015610a4b575f80fd5b506103d5610a5a366004613be6565b6120dc565b348015610a6a575f80fd5b506103d5610a79366004613be6565b6121c1565b348015610a89575f80fd5b50610445601e5481565b348015610a9e575f80fd5b50601b5461049390610100900473ffffffffffffffffffffffffffffffffffffffff1681565b348015610acf575f80fd5b50610445610ade366004613dfa565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260036020908152604080832093909416825291909152205490565b348015610b20575f80fd5b506103d5610b2f366004613cd9565b6122cc565b348015610b3f575f80fd5b506103d5610b4e366004613be6565b61231f565b348015610b5e575f80fd5b506103d5612429565b348015610b72575f80fd5b506103d5610b81366004613be6565b6124cb565b348015610b91575f80fd5b506103d5610ba0366004613cd9565b612541565b348015610bb0575f80fd5b50610420610bbf366004613cd9565b60226020525f908152604090205460ff1681565b610bdb6125f5565b60205460ff1615610c4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b656400000000000060448201526064015b60405180910390fd5b6001811115610cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f546178206665652063616e6e6f74206265206d6f7265207468616e20312500006044820152606401610c44565b600d55565b6060600a8054610ccc90613e31565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf890613e31565b8015610d435780601f10610d1a57610100808354040283529160200191610d43565b820191905f5260205f20905b815481529060010190602001808311610d2657829003601f168201915b5050505050905090565b5f610d59338484612675565b5060015b92915050565b5f610d6f848484612827565b610dcd8433610dc8856040518060600160405280602881526020016140506028913973ffffffffffffffffffffffffffffffffffffffff8a165f9081526003602090815260408083203384529091529020549190612c76565b612675565b5060019392505050565b5f600854821115610e6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610c44565b5f610e73612cbb565b9050610e7f8382612cdc565b9392505050565b610e8e6125f5565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff16610f1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610c44565b5f5b6006548110156110cd578173ffffffffffffffffffffffffffffffffffffffff1660068281548110610f5257610f52613e82565b5f9182526020909120015473ffffffffffffffffffffffffffffffffffffffff16036110c55760068054610f8890600190613edc565b81548110610f9857610f98613e82565b5f918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff9092169183908110610fd057610fd0613e82565b5f91825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600680548061106a5761106a613eef565b5f8281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b600101610f1e565b5050565b335f81815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d59918590610dc89086612ce7565b335f8181526005602052604090205460ff16156111b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610c44565b5f6111bc83612cf2565b5050505073ffffffffffffffffffffffffffffffffffffffff84165f908152600160205260409020549192506111f491905082612d3a565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600160205260409020556008546112269082612d3a565b6008556009546112369084612ce7565b600955505050565b6112466125f5565b8281146112af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610c44565b5f5b83811015611364578282828181106112cb576112cb613e82565b90506020020160208101906112e09190613de1565b60225f8787858181106112f5576112f5613e82565b905060200201602081019061130a9190613cd9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016112b1565b5050505050565b6113736125f5565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b5f60075483111561142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610c44565b8161144c575f61143d84612cf2565b50939550610d5d945050505050565b5f61145684612cf2565b50929550610d5d945050505050565b61146d6125f5565b60205460ff16156114da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b600281111561156a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e67206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601355565b5f5473ffffffffffffffffffffffffffffffffffffffff163314806115b05750601b54610100900473ffffffffffffffffffffffffffffffffffffffff1633145b61163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4f6e6c792061646d696e206f7220616e7469206d616e6167657220616c6c6f7760448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6116756125f5565b601c5473ffffffffffffffffffffffffffffffffffffffff90811690821603611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f75746560448201527f722e0000000000000000000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff16156117af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610c44565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600160205260409020541561182d5773ffffffffffffffffffffffffffffffffffffffff81165f9081526001602052604090205461180790610dd7565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff165f81815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6118dd6125f5565b828114611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610c44565b5f5b838110156113645782828281811061196257611962613e82565b90506020020160208101906119779190613de1565b60215f87878581811061198c5761198c613e82565b90506020020160208101906119a19190613cd9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611948565b611a036125f5565b60205460ff1615611a70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b6005811115611b01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f53656c6c206c6971756964697479206665652063616e6e6f74206265206d6f7260448201527f65207468616e20352500000000000000000000000000000000000000000000006064820152608401610c44565b601755565b611b0e6125f5565b601480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604081205460ff1615611baa575073ffffffffffffffffffffffffffffffffffffffff165f9081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260016020526040902054610d5d90610dd7565b611be06125f5565b611be95f612d45565b565b611bf36125f5565b60205460ff1615611c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b6001811115611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4c6971756964697479206665652063616e6e6f74206265206d6f72652074686160448201527f6e203125000000000000000000000000000000000000000000000000000000006064820152608401610c44565b600f55565b6060600b8054610ccc90613e31565b611d0c6125f5565b600a811015611d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206c60448201527f657373207468616e20302e3125000000000000000000000000000000000000006064820152608401610c44565b61012c811115611e2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206d60448201527f6f7265207468616e2033250000000000000000000000000000000000000000006064820152608401610c44565b601a55565b5f610d593384610dc88560405180606001604052806025815260200161407860259139335f90815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190612c76565b5f610d59338484612827565b611ea26125f5565b60205460ff1615611f0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b601c811115611fa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c206d61726b6574696e67206665652063616e6e6f74206265206d6f7260448201527f65207468616e20323825000000000000000000000000000000000000000000006064820152608401610c44565b601855565b611fad6125f5565b5f8111612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610c44565b601f55565b6120236125f5565b60405133904780156108fc02915f818181858888f1935050505015801561204c573d5f803e3d5ffd5b50565b6120576125f5565b601d80548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906120d190831515815260200190565b60405180910390a150565b6120e46125f5565b60205460ff1615612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b60018111156121bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4275726e206665652063616e6e6f74206265206d6f7265207468616e203125006044820152606401610c44565b601155565b6121c96125f5565b60205460ff1615612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b60058111156122c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f53656c6c20746178206665652063616e6e6f74206265206d6f7265207468616e60448201527f20352500000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601655565b6122d46125f5565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6123276125f5565b60205460ff1615612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b6002811115612424576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c206275726e206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601955565b6124316125f5565b60205460ff161561249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b602080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6124d36125f5565b5f811161253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610c44565b601e55565b6125496125f5565b73ffffffffffffffffffffffffffffffffffffffff81166125ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c44565b61204c81612d45565b5f5473ffffffffffffffffffffffffffffffffffffffff163314611be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c44565b73ffffffffffffffffffffffffffffffffffffffff8316612717576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff82166127ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166128ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c44565b5f8111612959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526022602052604090205460ff16156129e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f426c61636b6c69737465640000000000000000000000000000000000000000006044820152606401610c44565b5f6129f230611b55565b90505f601f54601e54612a059190613f1c565b8210159050808015612a325750601d5474010000000000000000000000000000000000000000900460ff16155b8015612a595750601d5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015612a7f5750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015612aa65750601d547501000000000000000000000000000000000000000000900460ff165b15612ab957612ab9601e54601f54612db9565b612ac4858585612ef2565b601b5460ff1615611364575f612710601a54600754612ae39190613f2f565b612aed9190613f46565b601d5490915073ffffffffffffffffffffffffffffffffffffffff90811690861603612ba85780841115612ba3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5472616e73616374656420616d6f756e742065786365656420746865206d617860448201527f20616c6c6f7765642076616c75650000000000000000000000000000000000006064820152608401610c44565b612c6e565b80612bb286611b55565b111580612be3575073ffffffffffffffffffffffffffffffffffffffff85165f9081526021602052604090205460ff165b612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f57616c6c65742062616c616e6365206578636565647320746865206d6178206c60448201527f696d6974000000000000000000000000000000000000000000000000000000006064820152608401610c44565b505050505050565b5f8184841115612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c449190613bfd565b505050900390565b5f805f612cc66132b9565b9092509050612cd58282612cdc565b9250505090565b5f610e7f8284613f46565b5f610e7f8284613f1c565b5f805f805f805f805f612d048a61345c565b9250925092505f805f612d208d8686612d1b612cbb565b613494565b919f909e50909c50959a5093985091965092945050505050565b5f610e7f8284613edc565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612e01816134e0565b60145460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02915f818181858888f19350505050158015612e44573d5f803e3d5ffd5b505f612e51836002612cdc565b90505f612e5e8483612d3a565b905047612e6a836134e0565b5f612e754783612d3a565b9050612e818382613681565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526004602052604090205460ff1680612f49575073ffffffffffffffffffffffffffffffffffffffff82165f9081526004602052604090205460ff165b15612f5b57612f56613797565b612fb6565b601d5473ffffffffffffffffffffffffffffffffffffffff90811690831603612fb657612fb6600d8054600e55600f805460105560118054601255601380546015556016549093556017549091556018549091556019549055565b5f612fd76064612fd1601154856137f290919063ffffffff16565b90612cdc565b90505f612ff46064612fd1601354866137f290919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526005602052604090205490915060ff168015613050575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b1561307857613073858561306e846130688888612d3a565b90612d3a565b6137fd565b6131ed565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff161580156130d1575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b156130ee5761307385856130e9846130688888612d3a565b61396a565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff16158015613148575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b15613165576130738585613160846130688888612d3a565b613a34565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff1680156131bd575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b156131da5761307385856131d5846130688888612d3a565b613a81565b6131ed8585613160846130688888612d3a565b5f600d819055600f81905561320490869084613a34565b61320f853083613a34565b600e54600d55601054600f5573ffffffffffffffffffffffffffffffffffffffff85165f9081526004602052604090205460ff1680613272575073ffffffffffffffffffffffffffffffffffffffff84165f9081526004602052604090205460ff165b806132975750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b1561136457611364600e54600d55601054600f55601254601155601554601355565b6008546007545f918291825b60065481101561342c578260015f600684815481106132e6576132e6613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054118061336857508160025f6006848154811061333557613335613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561337e57600854600754945094505050509091565b6133cf60015f6006848154811061339757613397613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548490612d3a565b925061342260025f600684815481106133ea576133ea613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548390612d3a565b91506001016132c5565b5060075460085461343c91612cdc565b821015613453576008546007549350935050509091565b90939092509050565b5f805f8061346985613b09565b90505f61347586613b24565b90505f613486826130688986612d3a565b979296509094509092505050565b5f8080806134a288866137f2565b90505f6134af88876137f2565b90505f6134bc88886137f2565b90505f6134cd826130688686612d3a565b939b939a50919850919650505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061351357613513613e82565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601c54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613590573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135b49190613f7e565b816001815181106135c7576135c7613e82565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c546135fa9130911684612675565b601c546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac947906136589085905f90869030904290600401613f99565b5f604051808303815f87803b15801561366f575f80fd5b505af1158015612c6e573d5f803e3d5ffd5b601c546136a690309073ffffffffffffffffffffffffffffffffffffffff1684612675565b601c5473ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806136e75f5473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613772573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906113649190614024565b600d541580156137a75750600f54155b80156137b35750601354155b80156137bf5750601154155b156137c657565b600d8054600e55600f805460105560118054601255601380546015555f93849055918390559082905555565b5f610e7f8284613f2f565b5f805f805f8061380c87612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b5093995091975095509350915061384a9088612d3a565b73ffffffffffffffffffffffffffffffffffffffff8a165f908152600260209081526040808320939093556001905220546138859087612d3a565b73ffffffffffffffffffffffffffffffffffffffff808b165f9081526001602052604080822093909355908a16815220546138c09086612ce7565b73ffffffffffffffffffffffffffffffffffffffff89165f908152600160205260409020556138ee81613b3f565b6138f88483613bc2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161395791815260200190565b60405180910390a3505050505050505050565b5f805f805f8061397987612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b509399509197509550935091506139b79087612d3a565b73ffffffffffffffffffffffffffffffffffffffff808b165f90815260016020908152604080832094909455918b168152600290915220546139f99084612ce7565b73ffffffffffffffffffffffffffffffffffffffff89165f908152600260209081526040808320939093556001905220546138c09086612ce7565b5f805f805f80613a4387612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b509399509197509550935091506138859087612d3a565b5f805f805f80613a9087612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b50939950919750955093509150613ace9088612d3a565b73ffffffffffffffffffffffffffffffffffffffff8a165f908152600260209081526040808320939093556001905220546139b79087612d3a565b5f610d5d6064612fd1600d54856137f290919063ffffffff16565b5f610d5d6064612fd1600f54856137f290919063ffffffff16565b5f613b48612cbb565b90505f613b5583836137f2565b305f90815260016020526040902054909150613b719082612ce7565b305f9081526001602090815260408083209390935560059052205460ff1615613bbd57305f90815260026020526040902054613bad9084612ce7565b305f908152600260205260409020555b505050565b600854613bcf9083612d3a565b600855600954613bdf9082612ce7565b6009555050565b5f60208284031215613bf6575f80fd5b5035919050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461204c575f80fd5b5f8060408385031215613c82575f80fd5b8235613c8d81613c50565b946020939093013593505050565b5f805f60608486031215613cad575f80fd5b8335613cb881613c50565b92506020840135613cc881613c50565b929592945050506040919091013590565b5f60208284031215613ce9575f80fd5b8135610e7f81613c50565b5f8083601f840112613d04575f80fd5b50813567ffffffffffffffff811115613d1b575f80fd5b6020830191508360208260051b8501011115613d35575f80fd5b9250929050565b5f805f8060408587031215613d4f575f80fd5b843567ffffffffffffffff80821115613d66575f80fd5b613d7288838901613cf4565b90965094506020870135915080821115613d8a575f80fd5b50613d9787828801613cf4565b95989497509550505050565b80358015158114613db2575f80fd5b919050565b5f8060408385031215613dc8575f80fd5b82359150613dd860208401613da3565b90509250929050565b5f60208284031215613df1575f80fd5b610e7f82613da3565b5f8060408385031215613e0b575f80fd5b8235613e1681613c50565b91506020830135613e2681613c50565b809150509250929050565b600181811c90821680613e4557607f821691505b602082108103613e7c577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b81810381811115610d5d57610d5d613eaf565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b80820180821115610d5d57610d5d613eaf565b8082028115828204841417610d5d57610d5d613eaf565b5f82613f79577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f60208284031215613f8e575f80fd5b8151610e7f81613c50565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015613ff657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613fc4565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b5f805f60608486031215614036575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e31951f977a7ea12a3353689ecc0ac271277d353b8ca2814b69545539b6c5db964736f6c63430008190033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000365015e58ecb1c65a833da79c44dde10c298b745000000000000000000000000aabe29be63c0c90d3fddc450ca34f94229b62b73000000000000000000000000461e50b07ece7c2762011af91664fa0c3c1a524400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000040000000000000000000000006b3e8954cc4935bbc289a1fe70d951d84b5e574a000000000000000000000000aef2cd818f9db4ada970c69621c815a21601ad4b0000000000000000000000007b3eae75d01bc26d706c07f7f871a4642cdbf05c0000000000000000000000007507aa43606861acfce4267b7904cd62eeced22200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002

Deployed Bytecode

0x6080604052600436106103ab575f3560e01c8063686aaa0c116101e9578063b9ebdf0e11610108578063d5bde46c1161009d578063eed7eb8d1161006d578063eed7eb8d14610b53578063f0f165af14610b67578063f2fde38b14610b86578063f9f92be414610ba5575f80fd5b8063d5bde46c14610a93578063dd62ed3e14610ac4578063ea2f0b3714610b15578063ebf7866314610b34575f80fd5b8063c8607952116100d8578063c860795214610a2b578063cea2695814610a40578063d0e0352314610a5f578063d12a768814610a7e575f80fd5b8063b9ebdf0e146109c4578063c0ac57eb146109e3578063c0b0fda2146109f7578063c49b9a8014610a0c575f80fd5b80638da5cb5b1161017e5780639ff779511161014e5780639ff7795114610952578063a457c2d714610967578063a9059cbb14610986578063a928681c146109a5575f80fd5b80638da5cb5b146108d75780638ee88c531461090057806395d89b411461091f5780639655cab514610933575f80fd5b806375f0a874116101b957806375f0a8741461083d5780637abdc1ca1461086957806388790a681461087e57806388f8202014610893575f80fd5b8063686aaa0c146107dc5780636bc87c3a146107f557806370a082311461080a578063715018a614610829575f80fd5b80633bd5d173116102d557806352390c021161026a5780635876ccc51161023a5780635876ccc51461075b5780635d098b381461077a5780636332a99b1461079957806364a06e80146107c7575f80fd5b806352390c02146106c05780635342acb4146106df57806353e7c2ac1461072357806357d87f0d14610742575f80fd5b8063457c194c116102a5578063457c194c1461062457806349bd5a5e146106435780634a5566bf1461066f5780634a74bb021461068e575f80fd5b80633bd5d173146105a85780633c9d6db1146105c7578063437823ec146105e65780634549b03914610605575f80fd5b8063200a692d1161034b578063313ce5671161031b578063313ce567146105345780633685d4191461055557806339509351146105745780633b124fe714610593575f80fd5b8063200a692d146104cc57806322976e0d146104e157806323b872dd146104f65780632d83811914610515575f80fd5b80630a7d2d87116103865780630a7d2d871461043057806313114a9d146104535780631694505e1461046757806318160ddd146104b8575f80fd5b8063061c82d0146103b657806306fdde03146103d7578063095ea7b314610401575f80fd5b366103b257005b5f80fd5b3480156103c1575f80fd5b506103d56103d0366004613be6565b610bd3565b005b3480156103e2575f80fd5b506103eb610cbd565b6040516103f89190613bfd565b60405180910390f35b34801561040c575f80fd5b5061042061041b366004613c71565b610d4d565b60405190151581526020016103f8565b34801561043b575f80fd5b50610445601a5481565b6040519081526020016103f8565b34801561045e575f80fd5b50600954610445565b348015610472575f80fd5b50601c546104939073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103f8565b3480156104c3575f80fd5b50600754610445565b3480156104d7575f80fd5b5061044560165481565b3480156104ec575f80fd5b5061044560135481565b348015610501575f80fd5b50610420610510366004613c9b565b610d63565b348015610520575f80fd5b5061044561052f366004613be6565b610dd7565b34801561053f575f80fd5b50600c5460405160ff90911681526020016103f8565b348015610560575f80fd5b506103d561056f366004613cd9565b610e86565b34801561057f575f80fd5b5061042061058e366004613c71565b6110d1565b34801561059e575f80fd5b50610445600d5481565b3480156105b3575f80fd5b506103d56105c2366004613be6565b611113565b3480156105d2575f80fd5b506103d56105e1366004613d3c565b61123e565b3480156105f1575f80fd5b506103d5610600366004613cd9565b61136b565b348015610610575f80fd5b5061044561061f366004613db7565b6113c1565b34801561062f575f80fd5b506103d561063e366004613be6565b611465565b34801561064e575f80fd5b50601d546104939073ffffffffffffffffffffffffffffffffffffffff1681565b34801561067a575f80fd5b506103d5610689366004613de1565b61156f565b348015610699575f80fd5b50601d54610420907501000000000000000000000000000000000000000000900460ff1681565b3480156106cb575f80fd5b506103d56106da366004613cd9565b61166d565b3480156106ea575f80fd5b506104206106f9366004613cd9565b73ffffffffffffffffffffffffffffffffffffffff165f9081526004602052604090205460ff1690565b34801561072e575f80fd5b506103d561073d366004613d3c565b6118d5565b34801561074d575f80fd5b50601b546104209060ff1681565b348015610766575f80fd5b506103d5610775366004613be6565b6119fb565b348015610785575f80fd5b506103d5610794366004613cd9565b611b06565b3480156107a4575f80fd5b506104206107b3366004613cd9565b60216020525f908152604090205460ff1681565b3480156107d2575f80fd5b5061044561271081565b3480156107e7575f80fd5b506020546104209060ff1681565b348015610800575f80fd5b50610445600f5481565b348015610815575f80fd5b50610445610824366004613cd9565b611b55565b348015610834575f80fd5b506103d5611bd8565b348015610848575f80fd5b506014546104939073ffffffffffffffffffffffffffffffffffffffff1681565b348015610874575f80fd5b5061044560195481565b348015610889575f80fd5b5061044560175481565b34801561089e575f80fd5b506104206108ad366004613cd9565b73ffffffffffffffffffffffffffffffffffffffff165f9081526005602052604090205460ff1690565b3480156108e2575f80fd5b505f5473ffffffffffffffffffffffffffffffffffffffff16610493565b34801561090b575f80fd5b506103d561091a366004613be6565b611beb565b34801561092a575f80fd5b506103eb611cf5565b34801561093e575f80fd5b506103d561094d366004613be6565b611d04565b34801561095d575f80fd5b50610445601f5481565b348015610972575f80fd5b50610420610981366004613c71565b611e34565b348015610991575f80fd5b506104206109a0366004613c71565b611e8e565b3480156109b0575f80fd5b506103d56109bf366004613be6565b611e9a565b3480156109cf575f80fd5b506103d56109de366004613be6565b611fa5565b3480156109ee575f80fd5b506103d561201b565b348015610a02575f80fd5b5061044560115481565b348015610a17575f80fd5b506103d5610a26366004613de1565b61204f565b348015610a36575f80fd5b5061044560185481565b348015610a4b575f80fd5b506103d5610a5a366004613be6565b6120dc565b348015610a6a575f80fd5b506103d5610a79366004613be6565b6121c1565b348015610a89575f80fd5b50610445601e5481565b348015610a9e575f80fd5b50601b5461049390610100900473ffffffffffffffffffffffffffffffffffffffff1681565b348015610acf575f80fd5b50610445610ade366004613dfa565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260036020908152604080832093909416825291909152205490565b348015610b20575f80fd5b506103d5610b2f366004613cd9565b6122cc565b348015610b3f575f80fd5b506103d5610b4e366004613be6565b61231f565b348015610b5e575f80fd5b506103d5612429565b348015610b72575f80fd5b506103d5610b81366004613be6565b6124cb565b348015610b91575f80fd5b506103d5610ba0366004613cd9565b612541565b348015610bb0575f80fd5b50610420610bbf366004613cd9565b60226020525f908152604090205460ff1681565b610bdb6125f5565b60205460ff1615610c4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b656400000000000060448201526064015b60405180910390fd5b6001811115610cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f546178206665652063616e6e6f74206265206d6f7265207468616e20312500006044820152606401610c44565b600d55565b6060600a8054610ccc90613e31565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf890613e31565b8015610d435780601f10610d1a57610100808354040283529160200191610d43565b820191905f5260205f20905b815481529060010190602001808311610d2657829003601f168201915b5050505050905090565b5f610d59338484612675565b5060015b92915050565b5f610d6f848484612827565b610dcd8433610dc8856040518060600160405280602881526020016140506028913973ffffffffffffffffffffffffffffffffffffffff8a165f9081526003602090815260408083203384529091529020549190612c76565b612675565b5060019392505050565b5f600854821115610e6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610c44565b5f610e73612cbb565b9050610e7f8382612cdc565b9392505050565b610e8e6125f5565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff16610f1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610c44565b5f5b6006548110156110cd578173ffffffffffffffffffffffffffffffffffffffff1660068281548110610f5257610f52613e82565b5f9182526020909120015473ffffffffffffffffffffffffffffffffffffffff16036110c55760068054610f8890600190613edc565b81548110610f9857610f98613e82565b5f918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff9092169183908110610fd057610fd0613e82565b5f91825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600680548061106a5761106a613eef565b5f8281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b600101610f1e565b5050565b335f81815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d59918590610dc89086612ce7565b335f8181526005602052604090205460ff16156111b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610c44565b5f6111bc83612cf2565b5050505073ffffffffffffffffffffffffffffffffffffffff84165f908152600160205260409020549192506111f491905082612d3a565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600160205260409020556008546112269082612d3a565b6008556009546112369084612ce7565b600955505050565b6112466125f5565b8281146112af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610c44565b5f5b83811015611364578282828181106112cb576112cb613e82565b90506020020160208101906112e09190613de1565b60225f8787858181106112f5576112f5613e82565b905060200201602081019061130a9190613cd9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790556001016112b1565b5050505050565b6113736125f5565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b5f60075483111561142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610c44565b8161144c575f61143d84612cf2565b50939550610d5d945050505050565b5f61145684612cf2565b50929550610d5d945050505050565b61146d6125f5565b60205460ff16156114da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b600281111561156a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e67206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601355565b5f5473ffffffffffffffffffffffffffffffffffffffff163314806115b05750601b54610100900473ffffffffffffffffffffffffffffffffffffffff1633145b61163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4f6e6c792061646d696e206f7220616e7469206d616e6167657220616c6c6f7760448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6116756125f5565b601c5473ffffffffffffffffffffffffffffffffffffffff90811690821603611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f75746560448201527f722e0000000000000000000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff16156117af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610c44565b73ffffffffffffffffffffffffffffffffffffffff81165f908152600160205260409020541561182d5773ffffffffffffffffffffffffffffffffffffffff81165f9081526001602052604090205461180790610dd7565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff165f81815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6118dd6125f5565b828114611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610c44565b5f5b838110156113645782828281811061196257611962613e82565b90506020020160208101906119779190613de1565b60215f87878581811061198c5761198c613e82565b90506020020160208101906119a19190613cd9565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611948565b611a036125f5565b60205460ff1615611a70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b6005811115611b01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f53656c6c206c6971756964697479206665652063616e6e6f74206265206d6f7260448201527f65207468616e20352500000000000000000000000000000000000000000000006064820152608401610c44565b601755565b611b0e6125f5565b601480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604081205460ff1615611baa575073ffffffffffffffffffffffffffffffffffffffff165f9081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260016020526040902054610d5d90610dd7565b611be06125f5565b611be95f612d45565b565b611bf36125f5565b60205460ff1615611c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b6001811115611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4c6971756964697479206665652063616e6e6f74206265206d6f72652074686160448201527f6e203125000000000000000000000000000000000000000000000000000000006064820152608401610c44565b600f55565b6060600b8054610ccc90613e31565b611d0c6125f5565b600a811015611d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206c60448201527f657373207468616e20302e3125000000000000000000000000000000000000006064820152608401610c44565b61012c811115611e2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206d60448201527f6f7265207468616e2033250000000000000000000000000000000000000000006064820152608401610c44565b601a55565b5f610d593384610dc88560405180606001604052806025815260200161407860259139335f90815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190612c76565b5f610d59338484612827565b611ea26125f5565b60205460ff1615611f0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b601c811115611fa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c206d61726b6574696e67206665652063616e6e6f74206265206d6f7260448201527f65207468616e20323825000000000000000000000000000000000000000000006064820152608401610c44565b601855565b611fad6125f5565b5f8111612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610c44565b601f55565b6120236125f5565b60405133904780156108fc02915f818181858888f1935050505015801561204c573d5f803e3d5ffd5b50565b6120576125f5565b601d80548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906120d190831515815260200190565b60405180910390a150565b6120e46125f5565b60205460ff1615612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b60018111156121bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4275726e206665652063616e6e6f74206265206d6f7265207468616e203125006044820152606401610c44565b601155565b6121c96125f5565b60205460ff1615612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b60058111156122c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f53656c6c20746178206665652063616e6e6f74206265206d6f7265207468616e60448201527f20352500000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601655565b6122d46125f5565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6123276125f5565b60205460ff1615612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b6002811115612424576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c206275726e206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610c44565b601955565b6124316125f5565b60205460ff161561249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610c44565b602080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6124d36125f5565b5f811161253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610c44565b601e55565b6125496125f5565b73ffffffffffffffffffffffffffffffffffffffff81166125ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c44565b61204c81612d45565b5f5473ffffffffffffffffffffffffffffffffffffffff163314611be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c44565b73ffffffffffffffffffffffffffffffffffffffff8316612717576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff82166127ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166128ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c44565b5f8111612959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610c44565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526022602052604090205460ff16156129e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f426c61636b6c69737465640000000000000000000000000000000000000000006044820152606401610c44565b5f6129f230611b55565b90505f601f54601e54612a059190613f1c565b8210159050808015612a325750601d5474010000000000000000000000000000000000000000900460ff16155b8015612a595750601d5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015612a7f5750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015612aa65750601d547501000000000000000000000000000000000000000000900460ff165b15612ab957612ab9601e54601f54612db9565b612ac4858585612ef2565b601b5460ff1615611364575f612710601a54600754612ae39190613f2f565b612aed9190613f46565b601d5490915073ffffffffffffffffffffffffffffffffffffffff90811690861603612ba85780841115612ba3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5472616e73616374656420616d6f756e742065786365656420746865206d617860448201527f20616c6c6f7765642076616c75650000000000000000000000000000000000006064820152608401610c44565b612c6e565b80612bb286611b55565b111580612be3575073ffffffffffffffffffffffffffffffffffffffff85165f9081526021602052604090205460ff165b612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f57616c6c65742062616c616e6365206578636565647320746865206d6178206c60448201527f696d6974000000000000000000000000000000000000000000000000000000006064820152608401610c44565b505050505050565b5f8184841115612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c449190613bfd565b505050900390565b5f805f612cc66132b9565b9092509050612cd58282612cdc565b9250505090565b5f610e7f8284613f46565b5f610e7f8284613f1c565b5f805f805f805f805f612d048a61345c565b9250925092505f805f612d208d8686612d1b612cbb565b613494565b919f909e50909c50959a5093985091965092945050505050565b5f610e7f8284613edc565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612e01816134e0565b60145460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02915f818181858888f19350505050158015612e44573d5f803e3d5ffd5b505f612e51836002612cdc565b90505f612e5e8483612d3a565b905047612e6a836134e0565b5f612e754783612d3a565b9050612e818382613681565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526004602052604090205460ff1680612f49575073ffffffffffffffffffffffffffffffffffffffff82165f9081526004602052604090205460ff165b15612f5b57612f56613797565b612fb6565b601d5473ffffffffffffffffffffffffffffffffffffffff90811690831603612fb657612fb6600d8054600e55600f805460105560118054601255601380546015556016549093556017549091556018549091556019549055565b5f612fd76064612fd1601154856137f290919063ffffffff16565b90612cdc565b90505f612ff46064612fd1601354866137f290919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526005602052604090205490915060ff168015613050575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b1561307857613073858561306e846130688888612d3a565b90612d3a565b6137fd565b6131ed565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff161580156130d1575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b156130ee5761307385856130e9846130688888612d3a565b61396a565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff16158015613148575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b15613165576130738585613160846130688888612d3a565b613a34565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff1680156131bd575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b156131da5761307385856131d5846130688888612d3a565b613a81565b6131ed8585613160846130688888612d3a565b5f600d819055600f81905561320490869084613a34565b61320f853083613a34565b600e54600d55601054600f5573ffffffffffffffffffffffffffffffffffffffff85165f9081526004602052604090205460ff1680613272575073ffffffffffffffffffffffffffffffffffffffff84165f9081526004602052604090205460ff165b806132975750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b1561136457611364600e54600d55601054600f55601254601155601554601355565b6008546007545f918291825b60065481101561342c578260015f600684815481106132e6576132e6613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054118061336857508160025f6006848154811061333557613335613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561337e57600854600754945094505050509091565b6133cf60015f6006848154811061339757613397613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548490612d3a565b925061342260025f600684815481106133ea576133ea613e82565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020548390612d3a565b91506001016132c5565b5060075460085461343c91612cdc565b821015613453576008546007549350935050509091565b90939092509050565b5f805f8061346985613b09565b90505f61347586613b24565b90505f613486826130688986612d3a565b979296509094509092505050565b5f8080806134a288866137f2565b90505f6134af88876137f2565b90505f6134bc88886137f2565b90505f6134cd826130688686612d3a565b939b939a50919850919650505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061351357613513613e82565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601c54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613590573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135b49190613f7e565b816001815181106135c7576135c7613e82565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c546135fa9130911684612675565b601c546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac947906136589085905f90869030904290600401613f99565b5f604051808303815f87803b15801561366f575f80fd5b505af1158015612c6e573d5f803e3d5ffd5b601c546136a690309073ffffffffffffffffffffffffffffffffffffffff1684612675565b601c5473ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f806136e75f5473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613772573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906113649190614024565b600d541580156137a75750600f54155b80156137b35750601354155b80156137bf5750601154155b156137c657565b600d8054600e55600f805460105560118054601255601380546015555f93849055918390559082905555565b5f610e7f8284613f2f565b5f805f805f8061380c87612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b5093995091975095509350915061384a9088612d3a565b73ffffffffffffffffffffffffffffffffffffffff8a165f908152600260209081526040808320939093556001905220546138859087612d3a565b73ffffffffffffffffffffffffffffffffffffffff808b165f9081526001602052604080822093909355908a16815220546138c09086612ce7565b73ffffffffffffffffffffffffffffffffffffffff89165f908152600160205260409020556138ee81613b3f565b6138f88483613bc2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161395791815260200190565b60405180910390a3505050505050505050565b5f805f805f8061397987612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b509399509197509550935091506139b79087612d3a565b73ffffffffffffffffffffffffffffffffffffffff808b165f90815260016020908152604080832094909455918b168152600290915220546139f99084612ce7565b73ffffffffffffffffffffffffffffffffffffffff89165f908152600260209081526040808320939093556001905220546138c09086612ce7565b5f805f805f80613a4387612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b509399509197509550935091506138859087612d3a565b5f805f805f80613a9087612cf2565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b50939950919750955093509150613ace9088612d3a565b73ffffffffffffffffffffffffffffffffffffffff8a165f908152600260209081526040808320939093556001905220546139b79087612d3a565b5f610d5d6064612fd1600d54856137f290919063ffffffff16565b5f610d5d6064612fd1600f54856137f290919063ffffffff16565b5f613b48612cbb565b90505f613b5583836137f2565b305f90815260016020526040902054909150613b719082612ce7565b305f9081526001602090815260408083209390935560059052205460ff1615613bbd57305f90815260026020526040902054613bad9084612ce7565b305f908152600260205260409020555b505050565b600854613bcf9083612d3a565b600855600954613bdf9082612ce7565b6009555050565b5f60208284031215613bf6575f80fd5b5035919050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461204c575f80fd5b5f8060408385031215613c82575f80fd5b8235613c8d81613c50565b946020939093013593505050565b5f805f60608486031215613cad575f80fd5b8335613cb881613c50565b92506020840135613cc881613c50565b929592945050506040919091013590565b5f60208284031215613ce9575f80fd5b8135610e7f81613c50565b5f8083601f840112613d04575f80fd5b50813567ffffffffffffffff811115613d1b575f80fd5b6020830191508360208260051b8501011115613d35575f80fd5b9250929050565b5f805f8060408587031215613d4f575f80fd5b843567ffffffffffffffff80821115613d66575f80fd5b613d7288838901613cf4565b90965094506020870135915080821115613d8a575f80fd5b50613d9787828801613cf4565b95989497509550505050565b80358015158114613db2575f80fd5b919050565b5f8060408385031215613dc8575f80fd5b82359150613dd860208401613da3565b90509250929050565b5f60208284031215613df1575f80fd5b610e7f82613da3565b5f8060408385031215613e0b575f80fd5b8235613e1681613c50565b91506020830135613e2681613c50565b809150509250929050565b600181811c90821680613e4557607f821691505b602082108103613e7c577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b81810381811115610d5d57610d5d613eaf565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b80820180821115610d5d57610d5d613eaf565b8082028115828204841417610d5d57610d5d613eaf565b5f82613f79577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f60208284031215613f8e575f80fd5b8151610e7f81613c50565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015613ff657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613fc4565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b5f805f60608486031215614036575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e31951f977a7ea12a3353689ecc0ac271277d353b8ca2814b69545539b6c5db964736f6c63430008190033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000365015e58ecb1c65a833da79c44dde10c298b745000000000000000000000000aabe29be63c0c90d3fddc450ca34f94229b62b73000000000000000000000000461e50b07ece7c2762011af91664fa0c3c1a524400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000040000000000000000000000006b3e8954cc4935bbc289a1fe70d951d84b5e574a000000000000000000000000aef2cd818f9db4ada970c69621c815a21601ad4b0000000000000000000000007b3eae75d01bc26d706c07f7f871a4642cdbf05c0000000000000000000000007507aa43606861acfce4267b7904cd62eeced22200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002

-----Decoded View---------------
Arg [0] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _owner (address): 0x365015E58Ecb1C65A833dA79c44DDE10C298B745
Arg [2] : _marketingWallet (address): 0xAabE29BE63c0c90d3FddC450cA34F94229b62b73
Arg [3] : _antiManager (address): 0x461E50B07eCe7c2762011AF91664fA0c3C1a5244
Arg [4] : _emissionAddresses (address[]): 0x6b3e8954cc4935bBc289A1fe70d951d84b5E574a,0xAEF2cD818F9dB4ADA970C69621c815A21601Ad4b,0x7B3EAe75d01bC26D706C07F7f871A4642CdBF05c,0x7507aA43606861ACfCE4267b7904cd62EeCEd222
Arg [5] : _emissionPercentages (uint256[]): 1,2,3,2

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000365015e58ecb1c65a833da79c44dde10c298b745
Arg [2] : 000000000000000000000000aabe29be63c0c90d3fddc450ca34f94229b62b73
Arg [3] : 000000000000000000000000461e50b07ece7c2762011af91664fa0c3c1a5244
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 0000000000000000000000006b3e8954cc4935bbc289a1fe70d951d84b5e574a
Arg [8] : 000000000000000000000000aef2cd818f9db4ada970c69621c815a21601ad4b
Arg [9] : 0000000000000000000000007b3eae75d01bc26d706c07f7f871a4642cdbf05c
Arg [10] : 0000000000000000000000007507aa43606861acfce4267b7904cd62eeced222
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000002


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.