ETH Price: $3,100.85 (+5.08%)
Gas: 3 Gwei

Token

Lucky Panda (LUCKYP)
 

Overview

Max Total Supply

1,000,000,000,000 LUCKYP

Holders

76

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Disperse.app
Balance
325,585,614.725317045 LUCKYP

Value
$0.00
0xd152f549545093347a162dce210e7293f1452150
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:
LuckyPanda

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: luckyp.sol
// SPDX-License-Identifier: UNLICENSED

/**

   #Lucky Panda #LUCKYP

   TG: https://t.me/LuckyPandaPortal
   Website: https://luckypandatoken.net/

   2% fee auto add to the liquidity pool to locked forever when selling
   1% fee auto distribute to all holders
   5% fee auto moved to dev wallet
   4% lotto fee

 */

import "./libs.sol";
pragma solidity ^0.8.3;

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

    address[] private _addressList;
    mapping (address => bool) private _AddressExists;
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    //
    address constant public DEAD = 0x000000000000000000000000000000000000dEaD;
    mapping (address => bool) private _isSniperOrBlacklisted;
    bool private sniperProtection = true;
    bool public _hasLiqBeenAdded = false;
    uint256 private _liqAddBlock = 0;
    uint256 public snipersCaught = 0;
    uint256 private snipeBlockAmt = 2;
    //

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

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**12 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

	address payable private _devWallet;
	uint256 private _minLottoBalance = 1 * 10**9 * 10**9;
	uint256 public maxLottoWin = 0;
	address public maxLottoAddress;

    string private _name = "Lucky Panda";
    string private _symbol = "LUCKYP";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _lottoFee = 4;
    uint256 private _previousLottoFee = _lottoFee;

    uint256 public _percentOfSwapIsLP = 29;
    uint256 public _liquidityFee = 7;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public _shouldSwapToEth = false;
    bool public swapAndLiquifyEnabled = false;

    uint256 public _maxTxAmount = 125 * 10**8 * 10**9;
    uint256 public _maxWalletAmount = 20 * 10**9 * 10**9;
    uint256 private numTokensSellToAddToLiquidity =  25 * 10**8 * 10**9;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event SniperCaught(address sniperAddress);

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

    constructor (address router, address marketingWallet) {
        _rOwned[owner()] = _rTotal;

		addAddress(owner());
		_devWallet = payable(marketingWallet);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
         // 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 and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[_devWallet] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[_devWallet] = true;
        _isExcludedFromMaxWallet[owner()] = true;
        _isExcludedFromMaxWallet[_devWallet] = true;
        _isExcludedFromMaxWallet[address(this)] = true;
        _isExcludedFromMaxWallet[DEAD] = true;
        _isLottoExcluded[owner()] = true;
        _isLottoExcluded[_devWallet] = true;

        emit Transfer(address(0), owner(), _tTotal);
    }

    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 excludeFromLottoRewards(address addy) public onlyOwner {
        require(_isLottoExcluded[addy] == false, "User already excluded from lotto rewards");
        _isLottoExcluded[addy] = true;
    }

    function excludeFromMaxWallet(address addy) public onlyOwner {
        _isExcludedFromMaxWallet[addy] = true;
    }

    function includeInMaxWallet(address addy) public onlyOwner {
        _isExcludedFromMaxWallet[addy] = true;
    }

    function includeInLottoRewards(address addy) public onlyOwner {
        require(_isLottoExcluded[addy] == true, "User already included in lotto rewards");
        _isLottoExcluded[addy] = false;
    }

    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 setDevAddress(address payable dev) public onlyOwner() {
        _devWallet = dev;
    }

    function setMinLottoBalance(uint256 minBalance) public onlyOwner() {
        _minLottoBalance = minBalance * 10**9;
    }


    function setShouldSwapToEth(bool enabled) public onlyOwner() {
        _shouldSwapToEth = enabled;
    }

    function excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, '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 included");
        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, uint256 tLotto) = _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);
        _takeLotto(tLotto);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

    function excludeFromMaxTx(address account) public onlyOwner {
        _isExcludedFromMaxTx[account] = true;
    }

    function includeInMaxTx(address account) public onlyOwner {
        _isExcludedFromMaxTx[account] = false;
    }

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

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }

    function setLottoFeePercent(uint256 lottoFee) external onlyOwner() {
        _lottoFee = lottoFee;
    }

    function setPercentOfSwapIsLP(uint256 percentOfSwapIsLP) external onlyOwner() {
        _percentOfSwapIsLP = percentOfSwapIsLP;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }

    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _maxTxAmount = maxTxAmount*10**9;
    }

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

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

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

    struct TData {
        uint256 tAmount;
        uint256 tFee;
        uint256 tLiquidity;
        uint256 tLotto;
        uint256 currentRate;
    }


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

    function _getTValues(uint256 tAmount) private view returns (uint256, TData memory) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);

        uint256 tLotto = calculateLottoFee(tAmount);

        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tLotto);
        return (tTransferAmount, TData(0, tFee, tLiquidity, tLotto, 0));
    }

    function _getRValues( TData memory _data) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = _data.tAmount.mul(_data.currentRate);
        uint256 rFee = _data.tFee.mul(_data.currentRate);
        uint256 rLiquidity = _data.tLiquidity.mul(_data.currentRate);
        uint256 rLotto = _data.tLotto.mul(_data.currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rLotto);
        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 addAddress(address adr) private {
        if(!_AddressExists[adr]){
            _AddressExists[adr] = true;
            _addressList.push(adr);
        }
    }

    function random(uint256 r) private view returns (uint256) {
        return uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, r)));
    }

    function lotterize(uint256 r) private returns(address) {
        address randomAddress = _addressList[random(r).mod(_addressList.length)];

        if (balanceOf(randomAddress) >= _minLottoBalance && !_isLottoExcluded[randomAddress]) {
            if(r>maxLottoWin){
                maxLottoWin = r;
                maxLottoAddress = randomAddress;
            }
            return randomAddress;
        }
        return DEAD;
    }

    function _takeLotto(uint256 tLotto) private {
        uint256 currentRate =  _getRate();
        uint256 rLotto = tLotto.mul(currentRate);
        address _lottoWalletAddress = lotterize(tLotto);

        _rOwned[_lottoWalletAddress] = _rOwned[_lottoWalletAddress].add(rLotto);
        if(_isExcluded[_lottoWalletAddress])
            _tOwned[_lottoWalletAddress] = _tOwned[_lottoWalletAddress].add(tLotto);
    }


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

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

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

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

        _previousTaxFee = _taxFee;
        _previousLottoFee = _lottoFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _lottoFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _lottoFee = _previousLottoFee;
        _liquidityFee = _previousLiquidityFee;
    }

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

    function isExcludedFromMaxTx(address account) public view returns(bool) {
        return _isExcludedFromMaxTx[account];
    }

    function setNumTokensSellToAddToLiquidity(uint256 _numTokensSellToAddToLiquidity) public onlyOwner{
        numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity*10**9;
    }

    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(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner() && !_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to])
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        if(from != owner() && to != owner() && !_isExcludedFromMaxWallet[to])
            require(balanceOf(to).add(amount) <= _maxWalletAmount, "Transfer amount makes wallet hold more than max.");

        uint256 contractTokenBalance = balanceOf(address(this));

        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

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

		addAddress(from);
		addAddress(to);

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 autoLpAmount = contractTokenBalance.mul(_percentOfSwapIsLP).div(100);

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

        uint256 amountForDev = contractTokenBalance.sub(half).sub(otherHalf);

         uint256 tokenAmountToBeSwapped = amountForDev.add(otherHalf);

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(tokenAmountToBeSwapped);

        uint256 deltaBalance = address(this).balance.sub(initialBalance);


        uint256 lpEthRatio = otherHalf.mul(100).div(tokenAmountToBeSwapped);

        uint256 ethToBeAddedToLiquidity = deltaBalance.mul(lpEthRatio).div(100);

        addLiquidity(half, ethToBeAddedToLiquidity);

        _devWallet.transfer(deltaBalance-ethToBeAddedToLiquidity);

        emit SwapAndLiquify(half, ethToBeAddedToLiquidity, 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
        );
    }

    function _checkLiquidityAdd(address from, address to) private {
        require(!_hasLiqBeenAdded, "Liquidity already added and marked.");
        if (!_hasLimits(from, to) && to == uniswapV2Pair) {
            _liqAddBlock = block.number;
            _hasLiqBeenAdded = true;

            swapAndLiquifyEnabled = true;
            emit SwapAndLiquifyEnabledUpdated(true);
        }
    }

    function _hasLimits(address from, address to) private view returns (bool) {
        return from != owner()
            && to != owner()
            && to != DEAD
            && to != address(0)
            && from != address(this);
    }

    function excludeSniper(address sniper) public onlyOwner{
        require(_isSniperOrBlacklisted[sniper], "Address not considered a sniper.");
        _isSniperOrBlacklisted[sniper] = false;
        snipersCaught --;
    }

    function includeSniper(address sniper) public onlyOwner{
        require(!_isSniperOrBlacklisted[sniper], "Address already considered a sniper.");
        _isSniperOrBlacklisted[sniper] = true;
        snipersCaught ++;
    }

    function flipSniperProtection() public onlyOwner{
        sniperProtection = !sniperProtection;
    }

    //this method is responsible for taking all fee, if takeFee is true and checking/banning bots
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if (sniperProtection){
            if (_isSniperOrBlacklisted[sender] || _isSniperOrBlacklisted[recipient]) {
                revert("Sniper rejected.");
            }
            if (!_hasLiqBeenAdded) {
                _checkLiquidityAdd(sender, recipient);
                if (!_hasLiqBeenAdded && _hasLimits(sender, recipient)) {
                    revert("Only owner can transfer at this time.");
                }
            } else {
                if (_liqAddBlock > 0
                    && sender == uniswapV2Pair
                    && _hasLimits(sender, recipient)
                ) {
                    if (block.number - _liqAddBlock < snipeBlockAmt) {
                        _isSniperOrBlacklisted[recipient] = true;
                        snipersCaught ++;
                        emit SniperCaught(recipient);
                    }
                }
            }
        }

        if(!takeFee)
            removeAllFee();

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

        if(!takeFee)
            restoreAllFee();
    }

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

        _takeLotto(tLotto);

        _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, uint256 tLotto) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeLotto(tLotto);
        _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, uint256 tLotto) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeLotto(tLotto);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}


File 1 of 2: libs.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.3;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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);
}

// 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 no longer needed starting with Solidity 0.8. 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 substraction 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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;
        }
    }
}

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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://diligence.consensys.net/posts/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.5.11/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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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 () {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

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

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

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


Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"marketingWallet","type":"address"}],"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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"address","name":"sniperAddress","type":"address"}],"name":"SniperCaught","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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_hasLiqBeenAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lottoFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_percentOfSwapIsLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_shouldSwapToEth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":[],"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"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"excludeFromLottoRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniper","type":"address"}],"name":"excludeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSniperProtection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"includeInLottoRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"includeInMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniper","type":"address"}],"name":"includeSniper","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":"isExcludedFromMaxTx","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":"maxLottoAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLottoWin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address payable","name":"dev","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lottoFee","type":"uint256"}],"name":"setLottoFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minBalance","type":"uint256"}],"name":"setMinLottoBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToLiquidity","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentOfSwapIsLP","type":"uint256"}],"name":"setPercentOfSwapIsLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setShouldSwapToEth","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":"snipersCaught","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60c06040526007805461ffff19166001179055600060088190556009556002600a55683635c9adc5dea0000060118190556200003e90600019620007eb565b6200004c906000196200078a565b601255670de0b6b3a7640000601555600060165560408051808201909152600b8082526a4c75636b792050616e646160a81b602090920191825262000094916018916200066c565b506040805180820190915260068082526504c55434b59560d41b6020909201918252620000c4916019916200066c565b50601a805460ff191660091790556001601b819055601c556004601d818155601e91909155601f55600760208190556021556022805462ffff001916905567ad78ebc5ac6200006023556801158e460913d000006024556722b1c8c1227a00006025553480156200013457600080fd5b506040516200576c3803806200576c833981016040819052620001579162000753565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a360125460036000620001b06000546001600160a01b031690565b6001600160a01b03168152602081019190915260400160002055620001e7620001e16000546001600160a01b031690565b620005e5565b80601460006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000829050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024d57600080fd5b505afa15801562000262573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028891906200072f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002d157600080fd5b505afa158015620002e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030c91906200072f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200035557600080fd5b505af11580156200036a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039091906200072f565b6001600160601b0319606091821b811660a0529082901b166080526001600b6000620003c46000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556014549091168152600b90925280822080548416600190811790915530835290822080549093168117909255600c90620004346000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556014549091168152600c909252812080549092166001908117909255600d90620004946000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556014549091168152600d909252808220805484166001908117909155308352908220805484168217905561dead82527fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a80549093168117909255600f90620005326000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556014549091168152600f9092529020805490911660011790556200058c6000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef601154604051620005d491815260200190565b60405180910390a35050506200080c565b6001600160a01b03811660009081526002602052604090205460ff1662000669576001600160a01b0381166000818152600260205260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b03191690911790555b50565b8280546200067a90620007ae565b90600052602060002090601f0160209004810192826200069e5760008555620006e9565b82601f10620006b957805160ff1916838001178555620006e9565b82800160010185558215620006e9579182015b82811115620006e9578251825591602001919060010190620006cc565b50620006f7929150620006fb565b5090565b5b80821115620006f75760008155600101620006fc565b80516001600160a01b03811681146200072a57600080fd5b919050565b60006020828403121562000741578081fd5b6200074c8262000712565b9392505050565b6000806040838503121562000766578081fd5b620007718362000712565b9150620007816020840162000712565b90509250929050565b600082821015620007a957634e487b7160e01b81526011600452602481fd5b500390565b600181811c90821680620007c357607f821691505b60208210811415620007e557634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200080757634e487b7160e01b81526012600452602481fd5b500690565b60805160601c60a05160601c614efc62000870600039600081816106f201528181612ffc0152818161360e01526141440152600081816104bb01528181613d6001528181613e7601528181613ed801528181613f4a0152613f710152614efc6000f3fe6080604052600436106103905760003560e01c806352390c02116101dc57806395d89b4111610102578063db4cf1e0116100a0578063ea92df561161006f578063ea92df5614610b06578063ec28438a14610b1c578063f0f165af14610b3c578063f2fde38b14610b5c57610397565b8063db4cf1e014610a5d578063dd62ed3e14610a7d578063e79d416014610ad0578063ea2f0b3714610ae657610397565b8063bacc2242116100dc578063bacc2242146109dd578063c49b9a80146109fd578063ceed9b5014610a1d578063d0d41fe114610a3d57610397565b806395d89b4114610988578063a457c2d71461099d578063a9059cbb146109bd57610397565b80636c0a24eb1161017a5780637d1db4a5116101495780637d1db4a5146108e157806388f82020146108f75780638da5cb5b1461093d5780638ee88c531461096857610397565b80636c0a24eb1461086957806370a082311461087f578063715018a61461089f578063755855eb146108b457610397565b80635b700d91116101b65780635b700d9114610680578063658c27a9146107ed5780636787d184146108335780636bc87c3a1461085357610397565b806352390c02146107685780635342acb41461078857806353fb610e146107ce57610397565b8063313ce567116102c15780633e1892c11161025f57806349bd5a5e1161022e57806349bd5a5e146106e05780634a74bb021461071457806350a8e01614610734578063518004a41461075357610397565b80633e1892c1146106605780633f33e90914610680578063437823ec146106a05780634549b039146106c057610397565b8063395093511161029b57806339509351146105ea5780633a579b191461060a5780633b124fe71461062a5780633bd5d1731461064057610397565b8063313ce567146105885780633685d419146105aa57806339248ec9146105ca57610397565b80631694505e1161032e57806318ec24831161030857806318ec2483146105125780631bc8f15f1461052857806323b872dd146105485780632d8381191461056857610397565b80631694505e146104a957806318160ddd146104dd57806318621fe5146104f257610397565b80630783c6201161036a5780630783c6201461042057806307eb38c014610444578063095ea7b31461046457806313114a9d1461049457610397565b806303fd2a451461039c578063061c82d0146103dc57806306fdde03146103fe57610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103b261dead81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156103e857600080fd5b506103fc6103f7366004614b38565b610b7c565b005b34801561040a57600080fd5b50610413610c07565b6040516103d39190614ba8565b34801561042c57600080fd5b5061043660165481565b6040519081526020016103d3565b34801561045057600080fd5b506103fc61045f366004614b38565b610c99565b34801561047057600080fd5b5061048461047f366004614af3565b610d2e565b60405190151581526020016103d3565b3480156104a057600080fd5b50601354610436565b3480156104b557600080fd5b506103b27f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e957600080fd5b50601154610436565b3480156104fe57600080fd5b506103fc61050d366004614a43565b610d45565b34801561051e57600080fd5b50610436601f5481565b34801561053457600080fd5b506103fc610543366004614b1e565b610e12565b34801561055457600080fd5b50610484610563366004614ab3565b610eca565b34801561057457600080fd5b50610436610583366004614b38565b610f40565b34801561059457600080fd5b50601a5460405160ff90911681526020016103d3565b3480156105b657600080fd5b506103fc6105c5366004614a43565b610ff3565b3480156105d657600080fd5b506103fc6105e5366004614a43565b611365565b3480156105f657600080fd5b50610484610605366004614af3565b6114ec565b34801561061657600080fd5b506103fc610625366004614b38565b61152f565b34801561063657600080fd5b50610436601b5481565b34801561064c57600080fd5b506103fc61065b366004614b38565b6115b5565b34801561066c57600080fd5b506103fc61067b366004614a43565b6116e6565b34801561068c57600080fd5b506103fc61069b366004614a43565b61186c565b3480156106ac57600080fd5b506103fc6106bb366004614a43565b61193c565b3480156106cc57600080fd5b506104366106db366004614b50565b611a0c565b3480156106ec57600080fd5b506103b27f000000000000000000000000000000000000000000000000000000000000000081565b34801561072057600080fd5b506022546104849062010000900460ff1681565b34801561074057600080fd5b5060075461048490610100900460ff1681565b34801561075f57600080fd5b506103fc611ab5565b34801561077457600080fd5b506103fc610783366004614a43565b611b68565b34801561079457600080fd5b506104846107a3366004614a43565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205460ff1690565b3480156107da57600080fd5b5060225461048490610100900460ff1681565b3480156107f957600080fd5b50610484610808366004614a43565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c602052604090205460ff1690565b34801561083f57600080fd5b506103fc61084e366004614b38565b611da3565b34801561085f57600080fd5b5061043660205481565b34801561087557600080fd5b5061043660245481565b34801561088b57600080fd5b5061043661089a366004614a43565b611e29565b3480156108ab57600080fd5b506103fc611eb2565b3480156108c057600080fd5b506017546103b29073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108ed57600080fd5b5061043660235481565b34801561090357600080fd5b50610484610912366004614a43565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205460ff1690565b34801561094957600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103b2565b34801561097457600080fd5b506103fc610983366004614b38565b611fa2565b34801561099457600080fd5b50610413612028565b3480156109a957600080fd5b506104846109b8366004614af3565b612037565b3480156109c957600080fd5b506104846109d8366004614af3565b612093565b3480156109e957600080fd5b506103fc6109f8366004614a43565b6120a0565b348015610a0957600080fd5b506103fc610a18366004614b1e565b612211565b348015610a2957600080fd5b506103fc610a38366004614a43565b612304565b348015610a4957600080fd5b506103fc610a58366004614a43565b612496565b348015610a6957600080fd5b506103fc610a78366004614a43565b61255e565b348015610a8957600080fd5b50610436610a98366004614a7b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b348015610adc57600080fd5b5061043660095481565b348015610af257600080fd5b506103fc610b01366004614a43565b61262e565b348015610b1257600080fd5b50610436601d5481565b348015610b2857600080fd5b506103fc610b37366004614b38565b6126fb565b348015610b4857600080fd5b506103fc610b57366004614b38565b612790565b348015610b6857600080fd5b506103fc610b77366004614a43565b612825565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601b55565b606060188054610c1690614d58565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4290614d58565b8015610c8f5780601f10610c6457610100808354040283529160200191610c8f565b820191906000526020600020905b815481529060010190602001808311610c7257829003601f168201915b5050505050905090565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b610d2881633b9aca00614ccf565b60155550565b6000610d3b3384846129d6565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b60228054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6000610ed7848484612b89565b610f368433610f3185604051806060016040528060288152602001614e7a6028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260056020908152604080832033845290915290205491906130fd565b6129d6565b5060019392505050565b6000601254821115610fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610bf9565b6000610fde613143565b9050610fea8382613166565b9150505b919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602052604090205460ff16611103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610bf9565b60005b601054811015611361578173ffffffffffffffffffffffffffffffffffffffff1660108281548110611161577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561134f576010805461119990600190614d0c565b815481106111d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000918252602090912001546010805473ffffffffffffffffffffffffffffffffffffffff9092169183908110611230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559184168152600482526040808220829055600e9092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560108054806112f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055019055611361565b8061135981614dac565b915050611106565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600f602052604090205460ff1615156001146114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5573657220616c726561647920696e636c7564656420696e206c6f74746f207260448201527f65776172647300000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d3b918590610f319086613179565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b601f55565b336000818152600e602052604090205460ff1615611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610bf9565b600061166083613185565b50505073ffffffffffffffffffffffffffffffffffffffff861660009081526003602052604090205493945061169b939250849150506131f0565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260409020556012546116ce90826131f0565b6012556013546116de9084613179565b601355505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600f602052604090205460ff161561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5573657220616c7265616479206578636c756465642066726f6d206c6f74746f60448201527f20726577617264730000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146119bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6000601154831115611a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610bf9565b81611a9a576000611a8a84613185565b50949650610d3f95505050505050565b6000611aa584613185565b50939650610d3f95505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602052604090205460ff1615611c79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205415611cfa5773ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902054611cd390610f40565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020555b73ffffffffffffffffffffffffffffffffffffffff166000818152600e6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556010805491820181559091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b601d55565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602052604081205460ff1615611e83575073ffffffffffffffffffffffffffffffffffffffff8116600090815260046020526040902054610fee565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054610d3f90610f40565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b602055565b606060198054610c1690614d58565b6000610d3b3384610f3185604051806060016040528060258152602001614ea26025913933600090815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d16845290915290205491906130fd565b6000610d3b338484612b89565b60005473ffffffffffffffffffffffffffffffffffffffff163314612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff166121b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f41646472657373206e6f7420636f6e73696465726564206120736e697065722e6044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600980549161220983614d23565b919050555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6022805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906122f990831515815260200190565b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff163314612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff161561243a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4164647265737320616c726561647920636f6e73696465726564206120736e6960448201527f7065722e000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600980549161220983614dac565b60005473ffffffffffffffffffffffffffffffffffffffff163314612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b601480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b61278a81633b9aca00614ccf565b60235550565b60005473ffffffffffffffffffffffffffffffffffffffff163314612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b61281f81633b9aca00614ccf565b60255550565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8116612949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bf9565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8216612b1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8216612ccf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b60008111612d5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610bf9565b60005473ffffffffffffffffffffffffffffffffffffffff848116911614801590612da5575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612dd7575073ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff16155b8015612e09575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff16155b15612ea057602354811115612ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e0000000000000000000000000000000000000000000000006064820152608401610bf9565b60005473ffffffffffffffffffffffffffffffffffffffff848116911614801590612ee6575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612f18575073ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff16155b15612fc157602454612f3382612f2d85611e29565b90613179565b1115612fc1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f5472616e7366657220616d6f756e74206d616b65732077616c6c657420686f6c60448201527f64206d6f7265207468616e206d61782e000000000000000000000000000000006064820152608401610bf9565b6000612fcc30611e29565b90506023548110612fdc57506023545b60255481108015908190612ff3575060225460ff16155b801561304b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561305f575060225462010000900460ff165b15613072576025549150613072826131fc565b73ffffffffffffffffffffffffffffffffffffffff85166000908152600b602052604090205460019060ff16806130ce575073ffffffffffffffffffffffffffffffffffffffff85166000908152600b602052604090205460ff165b156130d7575060005b6130e086613396565b6130e985613396565b6130f58686868461346c565b505050505050565b6000818484111561313b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99190614ba8565b505050900390565b600080600061315061391e565b909250905061315f8282613166565b9250505090565b60006131728284614cbb565b9392505050565b60006131728284614ca3565b600080600080600080600080600061319c8a613b73565b8b815290925090506131ac613143565b6080820152600080806131be84613c19565b60208701516040880151606090980151939f50919d509b50959950949750929550929350505050919395979092949650565b60006131728284614d0c565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601f546000906132459060649061323f908590613cbc565b90613166565b90506000613254826002613166565b9050600061326283836131f0565b9050600061327a8261327487866131f0565b906131f0565b905060006132888284613179565b90504761329482613cc8565b60006132a047836131f0565b905060006132b38461323f886064613cbc565b905060006132c6606461323f8585613cbc565b90506132d28882613f44565b60145473ffffffffffffffffffffffffffffffffffffffff166108fc6132f88386614d0c565b6040518115909202916000818181858888f19350505050158015613320573d6000803e3d6000fd5b5060408051898152602081018390529081018890527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050505050505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604090205460ff166134695773ffffffffffffffffffffffffffffffffffffffff8116600081815260026020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690911790555b50565b60075460ff16156137335773ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604090205460ff16806134d0575073ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff165b15613537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f536e697065722072656a65637465642e000000000000000000000000000000006044820152606401610bf9565b600754610100900460ff166135ff576135508484614098565b600754610100900460ff1615801561356d575061356d8484614235565b156135fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4f6e6c79206f776e65722063616e207472616e7366657220617420746869732060448201527f74696d652e0000000000000000000000000000000000000000000000000000006064820152608401610bf9565b613733565b600060085411801561365c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561366d575061366d8484614235565b1561373357600a546008546136829043614d0c565b10156137335773ffffffffffffffffffffffffffffffffffffffff8316600090815260066020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560098054916136e483614dac565b909155505060405173ffffffffffffffffffffffffffffffffffffffff841681527f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59060200160405180910390a15b80613740576137406142e6565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff16801561379b575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b156137b0576137ab84848461432f565b6138fc565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff1615801561380b575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff165b1561381b576137ab8484846144d0565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff16158015613877575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b15613887576137ab8484846145c3565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff1680156138e1575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff165b156138f1576137ab848484614637565b6138fc8484846145c3565b8061391857613918601c54601b55601e54601d55602154602055565b50505050565b6012546011546000918291825b601054811015613b4157826003600060108481548110613974577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180613a2057508160046000601084815481106139ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15613a375760125460115494509450505050613b6f565b613ab16003600060108481548110613a78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906131f0565b9250613b2d6004600060108481548110613af4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906131f0565b915080613b3981614dac565b91505061392b565b50601154601254613b5191613166565b821015613b6957601254601154935093505050613b6f565b90925090505b9091565b6000613ba76040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b6000613bb2846146e7565b90506000613bbf85614703565b90506000613bcc8661471f565b90506000613be08261327485818b896131f0565b9050806040518060a001604052806000815260200186815260200185815260200184815260200160008152509550955050505050915091565b600080600080613c3a85608001518660000151613cbc90919063ffffffff16565b90506000613c5986608001518760200151613cbc90919063ffffffff16565b90506000613c7887608001518860400151613cbc90919063ffffffff16565b90506000613c9788608001518960600151613cbc90919063ffffffff16565b90506000613cab82613274858189896131f0565b949994985092965092945050505050565b60006131728284614ccf565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613d24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613dc457600080fd5b505afa158015613dd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfc9190614a5f565b81600181518110613e36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e9b307f0000000000000000000000000000000000000000000000000000000000000000846129d6565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613f16908590600090869030904290600401614c19565b600060405180830381600087803b158015613f3057600080fd5b505af11580156130f5573d6000803e3d6000fd5b613f6f307f0000000000000000000000000000000000000000000000000000000000000000846129d6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613fd060005473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561405857600080fd5b505af115801561406c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140919190614b7b565b5050505050565b600754610100900460ff1615614130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201527f65642e00000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b61413a8282614235565b15801561419257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156113615743600855600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff16620100001790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906142299060011515815260200190565b60405180910390a15050565b6000805473ffffffffffffffffffffffffffffffffffffffff84811691161480159061427c575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156142a0575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156142c1575073ffffffffffffffffffffffffffffffffffffffff821615155b80156131725750505073ffffffffffffffffffffffffffffffffffffffff1630141590565b601b541580156142f65750602054155b80156143025750601d54155b1561430c5761432d565b601b8054601c55601d8054601e556020805460215560009283905590829055555b565b600080600080600080600061434388613185565b96509650965096509650965096506143a388600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600460209081526040808320939093556003905220546143df90886131f0565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526003602052604080822093909355908b168152205461441b9087613179565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526003602052604090205561444a8261473b565b614453816147c4565b61445d85846148b2565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516144bc91815260200190565b60405180910390a350505050505050505050565b60008060008060008060006144e488613185565b965096509650965096509650965061454487600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260036020908152604080832094909455918c168152600490915220546145879085613179565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526004602090815260408083209390935560039052205461441b9087613179565b60008060008060008060006145d788613185565b96509650965096509650965096506143df87600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b600080600080600080600061464b88613185565b96509650965096509650965096506146ab88600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526004602090815260408083209390935560039052205461454490886131f0565b6000610d3f606461323f601b5485613cbc90919063ffffffff16565b6000610d3f606461323f60205485613cbc90919063ffffffff16565b6000610d3f606461323f601d5485613cbc90919063ffffffff16565b6000614745613143565b905060006147538383613cbc565b306000908152600360205260409020549091506147709082613179565b30600090815260036020908152604080832093909355600e9052205460ff16156147bf57306000908152600460205260409020546147ae9084613179565b306000908152600460205260409020555b505050565b60006147ce613143565b905060006147dc8383613cbc565b905060006147e9846148d6565b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205490915061481c9083613179565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020908152604080832093909355600e9052205460ff16156139185773ffffffffffffffffffffffffffffffffffffffff81166000908152600460205260409020546148869085613179565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205550505050565b6012546148bf90836131f0565b6012556013546148cf9082613179565b6013555050565b600080600161492460018054905061491e8660408051446020808301919091524282840152606080830194909452825180830390940184526080909101909152815191012090565b90614a27565b8154811061495b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60009182526020909120015460155473ffffffffffffffffffffffffffffffffffffffff909116915061498d82611e29565b101580156149c1575073ffffffffffffffffffffffffffffffffffffffff81166000908152600f602052604090205460ff16155b15614a1d57601654831115614a16576016839055601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555b9050610fee565b5061dead92915050565b60006131728284614de5565b80358015158114610fee57600080fd5b600060208284031215614a54578081fd5b813561317281614e57565b600060208284031215614a70578081fd5b815161317281614e57565b60008060408385031215614a8d578081fd5b8235614a9881614e57565b91506020830135614aa881614e57565b809150509250929050565b600080600060608486031215614ac7578081fd5b8335614ad281614e57565b92506020840135614ae281614e57565b929592945050506040919091013590565b60008060408385031215614b05578182fd5b8235614b1081614e57565b946020939093013593505050565b600060208284031215614b2f578081fd5b61317282614a33565b600060208284031215614b49578081fd5b5035919050565b60008060408385031215614b62578182fd5b82359150614b7260208401614a33565b90509250929050565b600080600060608486031215614b8f578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015614bd457858101830151858201604001528201614bb8565b81811115614be55783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015614c7557845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614c43565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008219821115614cb657614cb6614df9565b500190565b600082614cca57614cca614e28565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d0757614d07614df9565b500290565b600082821015614d1e57614d1e614df9565b500390565b600081614d3257614d32614df9565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c90821680614d6c57607f821691505b60208210811415614da6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dde57614dde614df9565b5060010190565b600082614df457614df4614e28565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461346957600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202e7a479db7352e736a6e793ad255e329042aa270f37f8c1f0c55f2e65a75a3d364736f6c634300080300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000009a589a5baaaabb74a0a2af0da1bf997f49cb492e

Deployed Bytecode

0x6080604052600436106103905760003560e01c806352390c02116101dc57806395d89b4111610102578063db4cf1e0116100a0578063ea92df561161006f578063ea92df5614610b06578063ec28438a14610b1c578063f0f165af14610b3c578063f2fde38b14610b5c57610397565b8063db4cf1e014610a5d578063dd62ed3e14610a7d578063e79d416014610ad0578063ea2f0b3714610ae657610397565b8063bacc2242116100dc578063bacc2242146109dd578063c49b9a80146109fd578063ceed9b5014610a1d578063d0d41fe114610a3d57610397565b806395d89b4114610988578063a457c2d71461099d578063a9059cbb146109bd57610397565b80636c0a24eb1161017a5780637d1db4a5116101495780637d1db4a5146108e157806388f82020146108f75780638da5cb5b1461093d5780638ee88c531461096857610397565b80636c0a24eb1461086957806370a082311461087f578063715018a61461089f578063755855eb146108b457610397565b80635b700d91116101b65780635b700d9114610680578063658c27a9146107ed5780636787d184146108335780636bc87c3a1461085357610397565b806352390c02146107685780635342acb41461078857806353fb610e146107ce57610397565b8063313ce567116102c15780633e1892c11161025f57806349bd5a5e1161022e57806349bd5a5e146106e05780634a74bb021461071457806350a8e01614610734578063518004a41461075357610397565b80633e1892c1146106605780633f33e90914610680578063437823ec146106a05780634549b039146106c057610397565b8063395093511161029b57806339509351146105ea5780633a579b191461060a5780633b124fe71461062a5780633bd5d1731461064057610397565b8063313ce567146105885780633685d419146105aa57806339248ec9146105ca57610397565b80631694505e1161032e57806318ec24831161030857806318ec2483146105125780631bc8f15f1461052857806323b872dd146105485780632d8381191461056857610397565b80631694505e146104a957806318160ddd146104dd57806318621fe5146104f257610397565b80630783c6201161036a5780630783c6201461042057806307eb38c014610444578063095ea7b31461046457806313114a9d1461049457610397565b806303fd2a451461039c578063061c82d0146103dc57806306fdde03146103fe57610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103b261dead81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156103e857600080fd5b506103fc6103f7366004614b38565b610b7c565b005b34801561040a57600080fd5b50610413610c07565b6040516103d39190614ba8565b34801561042c57600080fd5b5061043660165481565b6040519081526020016103d3565b34801561045057600080fd5b506103fc61045f366004614b38565b610c99565b34801561047057600080fd5b5061048461047f366004614af3565b610d2e565b60405190151581526020016103d3565b3480156104a057600080fd5b50601354610436565b3480156104b557600080fd5b506103b27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104e957600080fd5b50601154610436565b3480156104fe57600080fd5b506103fc61050d366004614a43565b610d45565b34801561051e57600080fd5b50610436601f5481565b34801561053457600080fd5b506103fc610543366004614b1e565b610e12565b34801561055457600080fd5b50610484610563366004614ab3565b610eca565b34801561057457600080fd5b50610436610583366004614b38565b610f40565b34801561059457600080fd5b50601a5460405160ff90911681526020016103d3565b3480156105b657600080fd5b506103fc6105c5366004614a43565b610ff3565b3480156105d657600080fd5b506103fc6105e5366004614a43565b611365565b3480156105f657600080fd5b50610484610605366004614af3565b6114ec565b34801561061657600080fd5b506103fc610625366004614b38565b61152f565b34801561063657600080fd5b50610436601b5481565b34801561064c57600080fd5b506103fc61065b366004614b38565b6115b5565b34801561066c57600080fd5b506103fc61067b366004614a43565b6116e6565b34801561068c57600080fd5b506103fc61069b366004614a43565b61186c565b3480156106ac57600080fd5b506103fc6106bb366004614a43565b61193c565b3480156106cc57600080fd5b506104366106db366004614b50565b611a0c565b3480156106ec57600080fd5b506103b27f000000000000000000000000467309af94411126c77131aea234238b89dc72ff81565b34801561072057600080fd5b506022546104849062010000900460ff1681565b34801561074057600080fd5b5060075461048490610100900460ff1681565b34801561075f57600080fd5b506103fc611ab5565b34801561077457600080fd5b506103fc610783366004614a43565b611b68565b34801561079457600080fd5b506104846107a3366004614a43565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205460ff1690565b3480156107da57600080fd5b5060225461048490610100900460ff1681565b3480156107f957600080fd5b50610484610808366004614a43565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c602052604090205460ff1690565b34801561083f57600080fd5b506103fc61084e366004614b38565b611da3565b34801561085f57600080fd5b5061043660205481565b34801561087557600080fd5b5061043660245481565b34801561088b57600080fd5b5061043661089a366004614a43565b611e29565b3480156108ab57600080fd5b506103fc611eb2565b3480156108c057600080fd5b506017546103b29073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108ed57600080fd5b5061043660235481565b34801561090357600080fd5b50610484610912366004614a43565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205460ff1690565b34801561094957600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103b2565b34801561097457600080fd5b506103fc610983366004614b38565b611fa2565b34801561099457600080fd5b50610413612028565b3480156109a957600080fd5b506104846109b8366004614af3565b612037565b3480156109c957600080fd5b506104846109d8366004614af3565b612093565b3480156109e957600080fd5b506103fc6109f8366004614a43565b6120a0565b348015610a0957600080fd5b506103fc610a18366004614b1e565b612211565b348015610a2957600080fd5b506103fc610a38366004614a43565b612304565b348015610a4957600080fd5b506103fc610a58366004614a43565b612496565b348015610a6957600080fd5b506103fc610a78366004614a43565b61255e565b348015610a8957600080fd5b50610436610a98366004614a7b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b348015610adc57600080fd5b5061043660095481565b348015610af257600080fd5b506103fc610b01366004614a43565b61262e565b348015610b1257600080fd5b50610436601d5481565b348015610b2857600080fd5b506103fc610b37366004614b38565b6126fb565b348015610b4857600080fd5b506103fc610b57366004614b38565b612790565b348015610b6857600080fd5b506103fc610b77366004614a43565b612825565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601b55565b606060188054610c1690614d58565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4290614d58565b8015610c8f5780601f10610c6457610100808354040283529160200191610c8f565b820191906000526020600020905b815481529060010190602001808311610c7257829003601f168201915b5050505050905090565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b610d2881633b9aca00614ccf565b60155550565b6000610d3b3384846129d6565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b60228054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6000610ed7848484612b89565b610f368433610f3185604051806060016040528060288152602001614e7a6028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260056020908152604080832033845290915290205491906130fd565b6129d6565b5060019392505050565b6000601254821115610fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610bf9565b6000610fde613143565b9050610fea8382613166565b9150505b919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602052604090205460ff16611103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610bf9565b60005b601054811015611361578173ffffffffffffffffffffffffffffffffffffffff1660108281548110611161577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561134f576010805461119990600190614d0c565b815481106111d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000918252602090912001546010805473ffffffffffffffffffffffffffffffffffffffff9092169183908110611230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9485161790559184168152600482526040808220829055600e9092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560108054806112f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055019055611361565b8061135981614dac565b915050611106565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600f602052604090205460ff1615156001146114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5573657220616c726561647920696e636c7564656420696e206c6f74746f207260448201527f65776172647300000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d3b918590610f319086613179565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b601f55565b336000818152600e602052604090205460ff1615611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610bf9565b600061166083613185565b50505073ffffffffffffffffffffffffffffffffffffffff861660009081526003602052604090205493945061169b939250849150506131f0565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260409020556012546116ce90826131f0565b6012556013546116de9084613179565b601355505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600f602052604090205460ff161561181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5573657220616c7265616479206578636c756465642066726f6d206c6f74746f60448201527f20726577617264730000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146119bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6000601154831115611a7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610bf9565b81611a9a576000611a8a84613185565b50949650610d3f95505050505050565b6000611aa584613185565b50939650610d3f95505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602052604090205460ff1615611c79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205415611cfa5773ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902054611cd390610f40565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260409020555b73ffffffffffffffffffffffffffffffffffffffff166000818152600e6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556010805491820181559091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b601d55565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602052604081205460ff1615611e83575073ffffffffffffffffffffffffffffffffffffffff8116600090815260046020526040902054610fee565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054610d3f90610f40565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b602055565b606060198054610c1690614d58565b6000610d3b3384610f3185604051806060016040528060258152602001614ea26025913933600090815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d16845290915290205491906130fd565b6000610d3b338484612b89565b60005473ffffffffffffffffffffffffffffffffffffffff163314612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff166121b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f41646472657373206e6f7420636f6e73696465726564206120736e697065722e6044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600980549161220983614d23565b919050555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6022805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906122f990831515815260200190565b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff163314612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604090205460ff161561243a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4164647265737320616c726561647920636f6e73696465726564206120736e6960448201527f7065722e000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600980549161220983614dac565b60005473ffffffffffffffffffffffffffffffffffffffff163314612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b601480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b61278a81633b9aca00614ccf565b60235550565b60005473ffffffffffffffffffffffffffffffffffffffff163314612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b61281f81633b9aca00614ccf565b60255550565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8116612949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bf9565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316612a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8216612b1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bf9565b73ffffffffffffffffffffffffffffffffffffffff8216612ccf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b60008111612d5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610bf9565b60005473ffffffffffffffffffffffffffffffffffffffff848116911614801590612da5575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612dd7575073ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff16155b8015612e09575073ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff16155b15612ea057602354811115612ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e0000000000000000000000000000000000000000000000006064820152608401610bf9565b60005473ffffffffffffffffffffffffffffffffffffffff848116911614801590612ee6575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612f18575073ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff16155b15612fc157602454612f3382612f2d85611e29565b90613179565b1115612fc1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f5472616e7366657220616d6f756e74206d616b65732077616c6c657420686f6c60448201527f64206d6f7265207468616e206d61782e000000000000000000000000000000006064820152608401610bf9565b6000612fcc30611e29565b90506023548110612fdc57506023545b60255481108015908190612ff3575060225460ff16155b801561304b57507f000000000000000000000000467309af94411126c77131aea234238b89dc72ff73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561305f575060225462010000900460ff165b15613072576025549150613072826131fc565b73ffffffffffffffffffffffffffffffffffffffff85166000908152600b602052604090205460019060ff16806130ce575073ffffffffffffffffffffffffffffffffffffffff85166000908152600b602052604090205460ff165b156130d7575060005b6130e086613396565b6130e985613396565b6130f58686868461346c565b505050505050565b6000818484111561313b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99190614ba8565b505050900390565b600080600061315061391e565b909250905061315f8282613166565b9250505090565b60006131728284614cbb565b9392505050565b60006131728284614ca3565b600080600080600080600080600061319c8a613b73565b8b815290925090506131ac613143565b6080820152600080806131be84613c19565b60208701516040880151606090980151939f50919d509b50959950949750929550929350505050919395979092949650565b60006131728284614d0c565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601f546000906132459060649061323f908590613cbc565b90613166565b90506000613254826002613166565b9050600061326283836131f0565b9050600061327a8261327487866131f0565b906131f0565b905060006132888284613179565b90504761329482613cc8565b60006132a047836131f0565b905060006132b38461323f886064613cbc565b905060006132c6606461323f8585613cbc565b90506132d28882613f44565b60145473ffffffffffffffffffffffffffffffffffffffff166108fc6132f88386614d0c565b6040518115909202916000818181858888f19350505050158015613320573d6000803e3d6000fd5b5060408051898152602081018390529081018890527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050505050505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604090205460ff166134695773ffffffffffffffffffffffffffffffffffffffff8116600081815260026020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690911790555b50565b60075460ff16156137335773ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604090205460ff16806134d0575073ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff165b15613537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f536e697065722072656a65637465642e000000000000000000000000000000006044820152606401610bf9565b600754610100900460ff166135ff576135508484614098565b600754610100900460ff1615801561356d575061356d8484614235565b156135fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4f6e6c79206f776e65722063616e207472616e7366657220617420746869732060448201527f74696d652e0000000000000000000000000000000000000000000000000000006064820152608401610bf9565b613733565b600060085411801561365c57507f000000000000000000000000467309af94411126c77131aea234238b89dc72ff73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561366d575061366d8484614235565b1561373357600a546008546136829043614d0c565b10156137335773ffffffffffffffffffffffffffffffffffffffff8316600090815260066020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560098054916136e483614dac565b909155505060405173ffffffffffffffffffffffffffffffffffffffff841681527f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59060200160405180910390a15b80613740576137406142e6565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff16801561379b575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b156137b0576137ab84848461432f565b6138fc565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff1615801561380b575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff165b1561381b576137ab8484846144d0565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff16158015613877575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b15613887576137ab8484846145c3565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600e602052604090205460ff1680156138e1575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff165b156138f1576137ab848484614637565b6138fc8484846145c3565b8061391857613918601c54601b55601e54601d55602154602055565b50505050565b6012546011546000918291825b601054811015613b4157826003600060108481548110613974577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180613a2057508160046000601084815481106139ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15613a375760125460115494509450505050613b6f565b613ab16003600060108481548110613a78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906131f0565b9250613b2d6004600060108481548110613af4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906131f0565b915080613b3981614dac565b91505061392b565b50601154601254613b5191613166565b821015613b6957601254601154935093505050613b6f565b90925090505b9091565b6000613ba76040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b6000613bb2846146e7565b90506000613bbf85614703565b90506000613bcc8661471f565b90506000613be08261327485818b896131f0565b9050806040518060a001604052806000815260200186815260200185815260200184815260200160008152509550955050505050915091565b600080600080613c3a85608001518660000151613cbc90919063ffffffff16565b90506000613c5986608001518760200151613cbc90919063ffffffff16565b90506000613c7887608001518860400151613cbc90919063ffffffff16565b90506000613c9788608001518960600151613cbc90919063ffffffff16565b90506000613cab82613274858189896131f0565b949994985092965092945050505050565b60006131728284614ccf565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613d24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613dc457600080fd5b505afa158015613dd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfc9190614a5f565b81600181518110613e36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e9b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129d6565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613f16908590600090869030904290600401614c19565b600060405180830381600087803b158015613f3057600080fd5b505af11580156130f5573d6000803e3d6000fd5b613f6f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129d6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613fd060005473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561405857600080fd5b505af115801561406c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140919190614b7b565b5050505050565b600754610100900460ff1615614130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201527f65642e00000000000000000000000000000000000000000000000000000000006064820152608401610bf9565b61413a8282614235565b15801561419257507f000000000000000000000000467309af94411126c77131aea234238b89dc72ff73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b156113615743600855600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff16620100001790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906142299060011515815260200190565b60405180910390a15050565b6000805473ffffffffffffffffffffffffffffffffffffffff84811691161480159061427c575060005473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156142a0575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156142c1575073ffffffffffffffffffffffffffffffffffffffff821615155b80156131725750505073ffffffffffffffffffffffffffffffffffffffff1630141590565b601b541580156142f65750602054155b80156143025750601d54155b1561430c5761432d565b601b8054601c55601d8054601e556020805460215560009283905590829055555b565b600080600080600080600061434388613185565b96509650965096509650965096506143a388600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600460209081526040808320939093556003905220546143df90886131f0565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526003602052604080822093909355908b168152205461441b9087613179565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526003602052604090205561444a8261473b565b614453816147c4565b61445d85846148b2565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516144bc91815260200190565b60405180910390a350505050505050505050565b60008060008060008060006144e488613185565b965096509650965096509650965061454487600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260036020908152604080832094909455918c168152600490915220546145879085613179565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526004602090815260408083209390935560039052205461441b9087613179565b60008060008060008060006145d788613185565b96509650965096509650965096506143df87600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b600080600080600080600061464b88613185565b96509650965096509650965096506146ab88600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131f090919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526004602090815260408083209390935560039052205461454490886131f0565b6000610d3f606461323f601b5485613cbc90919063ffffffff16565b6000610d3f606461323f60205485613cbc90919063ffffffff16565b6000610d3f606461323f601d5485613cbc90919063ffffffff16565b6000614745613143565b905060006147538383613cbc565b306000908152600360205260409020549091506147709082613179565b30600090815260036020908152604080832093909355600e9052205460ff16156147bf57306000908152600460205260409020546147ae9084613179565b306000908152600460205260409020555b505050565b60006147ce613143565b905060006147dc8383613cbc565b905060006147e9846148d6565b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604090205490915061481c9083613179565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020908152604080832093909355600e9052205460ff16156139185773ffffffffffffffffffffffffffffffffffffffff81166000908152600460205260409020546148869085613179565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205550505050565b6012546148bf90836131f0565b6012556013546148cf9082613179565b6013555050565b600080600161492460018054905061491e8660408051446020808301919091524282840152606080830194909452825180830390940184526080909101909152815191012090565b90614a27565b8154811061495b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60009182526020909120015460155473ffffffffffffffffffffffffffffffffffffffff909116915061498d82611e29565b101580156149c1575073ffffffffffffffffffffffffffffffffffffffff81166000908152600f602052604090205460ff16155b15614a1d57601654831115614a16576016839055601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555b9050610fee565b5061dead92915050565b60006131728284614de5565b80358015158114610fee57600080fd5b600060208284031215614a54578081fd5b813561317281614e57565b600060208284031215614a70578081fd5b815161317281614e57565b60008060408385031215614a8d578081fd5b8235614a9881614e57565b91506020830135614aa881614e57565b809150509250929050565b600080600060608486031215614ac7578081fd5b8335614ad281614e57565b92506020840135614ae281614e57565b929592945050506040919091013590565b60008060408385031215614b05578182fd5b8235614b1081614e57565b946020939093013593505050565b600060208284031215614b2f578081fd5b61317282614a33565b600060208284031215614b49578081fd5b5035919050565b60008060408385031215614b62578182fd5b82359150614b7260208401614a33565b90509250929050565b600080600060608486031215614b8f578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015614bd457858101830151858201604001528201614bb8565b81811115614be55783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015614c7557845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614c43565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008219821115614cb657614cb6614df9565b500190565b600082614cca57614cca614e28565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d0757614d07614df9565b500290565b600082821015614d1e57614d1e614df9565b500390565b600081614d3257614d32614df9565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c90821680614d6c57607f821691505b60208210811415614da6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dde57614dde614df9565b5060010190565b600082614df457614df4614e28565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461346957600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202e7a479db7352e736a6e793ad255e329042aa270f37f8c1f0c55f2e65a75a3d364736f6c63430008030033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000009a589a5baaaabb74a0a2af0da1bf997f49cb492e

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

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


Deployed Bytecode Sourcemap

365:25181:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756:73;;;;;;;;;;;;787:42;756:73;;;;;3648:42:2;3636:55;;;3618:74;;3606:2;3591:18;756:73:1;;;;;;;;10363:96;;;;;;;;;;-1:-1:-1;10363:96:1;;;;;:::i;:::-;;:::i;:::-;;4171:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1702:30::-;;;;;;;;;;;;;;;;;;;13856:25:2;;;13844:2;13829:18;1702:30:1;13811:76:2;8065:121:1;;;;;;;;;;-1:-1:-1;8065:121:1;;;;;:::i;:::-;;:::i;5053:158::-;;;;;;;;;;-1:-1:-1;5053:158:1;;;;;:::i;:::-;;:::i;:::-;;;4503:14:2;;4496:22;4478:41;;4466:2;4451:18;5053:158:1;4433:92:2;6149:85:1;;;;;;;;;;-1:-1:-1;6217:10:1;;6149:85;;2195:51;;;;;;;;;;;;;;;4436:93;;;;;;;;;;-1:-1:-1;4515:7:1;;4436:93;;10131:112;;;;;;;;;;-1:-1:-1;10131:112:1;;;;;:::i;:::-;;:::i;2053:38::-;;;;;;;;;;;;;;;;8193:104;;;;;;;;;;-1:-1:-1;8193:104:1;;;;;:::i;:::-;;:::i;5217:309::-;;;;;;;;;;-1:-1:-1;5217:309:1;;;;;:::i;:::-;;:::i;7708:249::-;;;;;;;;;;-1:-1:-1;7708:249:1;;;;;:::i;:::-;;:::i;4349:81::-;;;;;;;;;;-1:-1:-1;4414:9:1;;4349:81;;4414:9;;;;15392:36:2;;15380:2;15365:18;4349:81:1;15347:87:2;8748:468:1;;;;;;;;;;-1:-1:-1;8748:468:1;;;;;:::i;:::-;;:::i;7067:200::-;;;;;;;;;;-1:-1:-1;7067:200:1;;;;;:::i;:::-;;:::i;5532:215::-;;;;;;;;;;-1:-1:-1;5532:215:1;;;;;:::i;:::-;;:::i;10575:133::-;;;;;;;;;;-1:-1:-1;10575:133:1;;;;;:::i;:::-;;:::i;1887:26::-;;;;;;;;;;;;;;;;6240:371;;;;;;;;;;-1:-1:-1;6240:371:1;;;;;:::i;:::-;;:::i;6617:204::-;;;;;;;;;;-1:-1:-1;6617:204:1;;;;;:::i;:::-;;:::i;6948:113::-;;;;;;;;;;-1:-1:-1;6948:113:1;;;;;:::i;:::-;;:::i;9897:109::-;;;;;;;;;;-1:-1:-1;9897:109:1;;;;;:::i;:::-;;:::i;7273:429::-;;;;;;;;;;-1:-1:-1;7273:429:1;;;;;:::i;:::-;;:::i;2252:38::-;;;;;;;;;;;;;;;2366:41;;;;;;;;;;-1:-1:-1;2366:41:1;;;;;;;;;;;939:36;;;;;;;;;;-1:-1:-1;939:36:1;;;;;;;;;;;21865:101;;;;;;;;;;;;;:::i;8303:439::-;;;;;;;;;;-1:-1:-1;8303:439:1;;;;;:::i;:::-;;:::i;16137:121::-;;;;;;;;;;-1:-1:-1;16137:121:1;;;;;:::i;:::-;16224:27;;16201:4;16224:27;;;:18;:27;;;;;;;;;16137:121;2324:36;;;;;;;;;;-1:-1:-1;2324:36:1;;;;;;;;;;;16264:125;;;;;;;;;;-1:-1:-1;16264:125:1;;;;;:::i;:::-;16353:29;;16330:4;16353:29;;;:20;:29;;;;;;;;;16264:125;10465:104;;;;;;;;;;-1:-1:-1;10465:104:1;;;;;:::i;:::-;;:::i;2097:32::-;;;;;;;;;;;;;;;;2469:52;;;;;;;;;;;;;;;;4535:195;;;;;;;;;;-1:-1:-1;4535:195:1;;;;;:::i;:::-;;:::i;19667:145:0:-;;;;;;;;;;;;;:::i;1735:30:1:-;;;;;;;;;;-1:-1:-1;1735:30:1;;;;;;;;2414:49;;;;;;;;;;;;;;;;6025:118;;;;;;;;;;-1:-1:-1;6025:118:1;;;;;:::i;:::-;6116:20;;6093:4;6116:20;;;:11;:20;;;;;;;;;6025:118;19035:85:0;;;;;;;;;;-1:-1:-1;19081:7:0;19107:6;;;19035:85;;10714:120:1;;;;;;;;;;-1:-1:-1;10714:120:1;;;;;:::i;:::-;;:::i;4258:85::-;;;;;;;;;;;;;:::i;5753:266::-;;;;;;;;;;-1:-1:-1;5753:266:1;;;;;:::i;:::-;;:::i;4736:164::-;;;;;;;;;;-1:-1:-1;4736:164:1;;;;;:::i;:::-;;:::i;21407:221::-;;;;;;;;;;-1:-1:-1;21407:221:1;;;;;:::i;:::-;;:::i;10961:168::-;;;;;;;;;;-1:-1:-1;10961:168:1;;;;;:::i;:::-;;:::i;21634:225::-;;;;;;;;;;-1:-1:-1;21634:225:1;;;;;:::i;:::-;;:::i;7963:96::-;;;;;;;;;;-1:-1:-1;7963:96:1;;;;;:::i;:::-;;:::i;10012:113::-;;;;;;;;;;-1:-1:-1;10012:113:1;;;;;:::i;:::-;;:::i;4906:141::-;;;;;;;;;;-1:-1:-1;4906:141:1;;;;;:::i;:::-;5013:18;;;;4987:7;5013:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4906:141;1019:32;;;;;;;;;;;;;;;;10249:108;;;;;;;;;;-1:-1:-1;10249:108:1;;;;;:::i;:::-;;:::i;1967:28::-;;;;;;;;;;;;;;;;10840:115;;;;;;;;;;-1:-1:-1;10840:115:1;;;;;:::i;:::-;;:::i;16395:183::-;;;;;;;;;;-1:-1:-1;16395:183:1;;;;;:::i;:::-;;:::i;19961:240:0:-;;;;;;;;;;-1:-1:-1;19961:240:0;;;;;:::i;:::-;;:::i;10363:96:1:-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;;;;;;;;;10436:7:1::1;:16:::0;10363:96::o;4171:81::-;4208:13;4240:5;4233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4171:81;:::o;8065:121::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;8161:18:1::1;:10:::0;8174:5:::1;8161:18;:::i;:::-;8142:16;:37:::0;-1:-1:-1;8065:121:1:o;5053:158::-;5128:4;5144:39;10087:10:0;5167:7:1;5176:6;5144:8;:39::i;:::-;-1:-1:-1;5200:4:1;5053:158;;;;;:::o;10131:112::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;10199:29:1::1;;10231:5;10199:29:::0;;;:20:::1;:29;::::0;;;;:37;;;::::1;::::0;;10131:112::o;8193:104::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;8264:16:1::1;:26:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;8193:104::o;5217:309::-;5315:4;5331:36;5341:6;5349:9;5360:6;5331:9;:36::i;:::-;5377:121;5386:6;10087:10:0;5408:89:1;5446:6;5408:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;10087:10:0;5408:33:1;;;;;;;;;;:37;:89::i;:::-;5377:8;:121::i;:::-;-1:-1:-1;5515:4:1;5217:309;;;;;:::o;7708:249::-;7774:7;7812;;7801;:18;;7793:73;;;;;;;6061:2:2;7793:73:1;;;6043:21:2;6100:2;6080:18;;;6073:30;6139:34;6119:18;;;6112:62;6210:12;6190:18;;;6183:40;6240:19;;7793:73:1;6033:232:2;7793:73:1;7876:19;7899:10;:8;:10::i;:::-;7876:33;-1:-1:-1;7926:24:1;:7;7876:33;7926:11;:24::i;:::-;7919:31;;;7708:249;;;;:::o;8748:468::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;8829:20:1::1;::::0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;8821:60;;;::::0;::::1;::::0;;8448:2:2;8821:60:1::1;::::0;::::1;8430:21:2::0;8487:2;8467:18;;;8460:30;8526:29;8506:18;;;8499:57;8573:18;;8821:60:1::1;8420:177:2::0;8821:60:1::1;8896:9;8891:319;8915:9;:16:::0;8911:20;::::1;8891:319;;;8972:7;8956:23;;:9;8966:1;8956:12;;;;;;;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;:23;8952:248;;;9014:9;9024:16:::0;;:20:::1;::::0;9043:1:::1;::::0;9024:20:::1;:::i;:::-;9014:31;;;;;;;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;8999:9:::1;:12:::0;;9014:31:::1;::::0;;::::1;::::0;9009:1;;8999:12;::::1;;;;;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;;::::1;;::::0;;::::1;;::::0;;9063:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;9101:11:::1;:20:::0;;;;:28;;;::::1;::::0;;9147:9:::1;:15:::0;;;::::1;;;;;;;;;;;;;::::0;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;9180:5:::1;;8952:248;8933:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8891:319;;;;8748:468:::0;:::o;7067:200::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;7147:22:1::1;::::0;::::1;;::::0;;;:16:::1;:22;::::0;;;;;::::1;;:30;;:22:::0;:30:::1;7139:81;;;::::0;::::1;::::0;;11122:2:2;7139:81:1::1;::::0;::::1;11104:21:2::0;11161:2;11141:18;;;11134:30;11200:34;11180:18;;;11173:62;11271:8;11251:18;;;11244:36;11297:19;;7139:81:1::1;11094:228:2::0;7139:81:1::1;7230:22;;7255:5;7230:22:::0;;;:16:::1;:22;::::0;;;;:30;;;::::1;::::0;;7067:200::o;5532:215::-;10087:10:0;5620:4:1;5668:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;5620:4;;5636:83;;5659:7;;5668:50;;5707:10;5668:38;:50::i;10575:133::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;10663:18:1::1;:38:::0;10575:133::o;6240:371::-;10087:10:0;6291:14:1;6339:19;;;:11;:19;;;;;;;;6338:20;6330:77;;;;;;;13094:2:2;6330:77:1;;;13076:21:2;13133:2;13113:18;;;13106:30;13172:34;13152:18;;;13145:62;13243:14;13223:18;;;13216:42;13275:19;;6330:77:1;13066:234:2;6330:77:1;6418:15;6443:19;6454:7;6443:10;:19::i;:::-;-1:-1:-1;;;6490:15:1;;;;;;;:7;:15;;;;;;6417:45;;-1:-1:-1;6490:28:1;;:15;-1:-1:-1;6417:45:1;;-1:-1:-1;;6490:19:1;:28::i;:::-;6472:15;;;;;;;:7;:15;;;;;:46;6538:7;;:20;;6550:7;6538:11;:20::i;:::-;6528:7;:30;6581:10;;:23;;6596:7;6581:14;:23::i;:::-;6568:10;:36;-1:-1:-1;;;6240:371:1:o;6617:204::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;6699:22:1::1;::::0;::::1;;::::0;;;:16:::1;:22;::::0;;;;;::::1;;:31;6691:84;;;::::0;::::1;::::0;;12280:2:2;6691:84:1::1;::::0;::::1;12262:21:2::0;12319:2;12299:18;;;12292:30;12358:34;12338:18;;;12331:62;12429:10;12409:18;;;12402:38;12457:19;;6691:84:1::1;12252:230:2::0;6691:84:1::1;6785:22;;;::::0;;;:16:::1;:22;::::0;;;;:29;;;::::1;6810:4;6785:29;::::0;;6617:204::o;6948:113::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;7017:30:1::1;;;::::0;;;:24:::1;:30;::::0;;;;:37;;;::::1;7050:4;7017:37;::::0;;6948:113::o;9897:109::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;9965:27:1::1;;;::::0;;;:18:::1;:27;::::0;;;;:34;;;::::1;9995:4;9965:34;::::0;;9897:109::o;7273:429::-;7363:7;7401;;7390;:18;;7382:62;;;;;;;8804:2:2;7382:62:1;;;8786:21:2;8843:2;8823:18;;;8816:30;8882:33;8862:18;;;8855:61;8933:18;;7382:62:1;8776:181:2;7382:62:1;7459:17;7454:242;;7493:15;7518:19;7529:7;7518:10;:19::i;:::-;-1:-1:-1;7492:45:1;;-1:-1:-1;7551:14:1;;-1:-1:-1;;;;;;7551:14:1;7454:242;7598:23;7630:19;7641:7;7630:10;:19::i;:::-;-1:-1:-1;7596:53:1;;-1:-1:-1;7663:22:1;;-1:-1:-1;;;;;;7663:22:1;21865:101;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;21943:16:1::1;::::0;;21923:36;;::::1;21943:16;::::0;;::::1;21942:17;21923:36;::::0;;21865:101::o;8303:439::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;8498:20:1::1;::::0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;8497:21;8489:61;;;::::0;::::1;::::0;;8092:2:2;8489:61:1::1;::::0;::::1;8074:21:2::0;8131:2;8111:18;;;8104:30;8170:29;8150:18;;;8143:57;8217:18;;8489:61:1::1;8064:177:2::0;8489:61:1::1;8563:16;::::0;::::1;8582:1;8563:16:::0;;;:7:::1;:16;::::0;;;;;:20;8560:106:::1;;8638:16;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;8618:37:::1;::::0;:19:::1;:37::i;:::-;8599:16;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;8560:106:::1;8675:20;;;::::0;;;:11:::1;:20;::::0;;;;:27;;;::::1;8698:4;8675:27:::0;;::::1;::::0;;;8712:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;8303:439::o;10465:104::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;10542:9:1::1;:20:::0;10465:104::o;4535:195::-;4624:20;;;4601:7;4624:20;;;:11;:20;;;;;;;;4620:49;;;-1:-1:-1;4653:16:1;;;;;;;:7;:16;;;;;;4646:23;;4620:49;4706:16;;;;;;;:7;:16;;;;;;4686:37;;:19;:37::i;19667:145:0:-;19081:7;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;19773:1:::1;19757:6:::0;;19736:40:::1;::::0;::::1;19757:6:::0;;::::1;::::0;19736:40:::1;::::0;19773:1;;19736:40:::1;19803:1;19786:19:::0;;;::::1;::::0;;19667:145::o;10714:120:1:-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;10799:13:1::1;:28:::0;10714:120::o;4258:85::-;4297:13;4329:7;4322:14;;;;;:::i;5753:266::-;5846:4;5862:129;10087:10:0;5885:7:1;5894:96;5933:15;5894:96;;;;;;;;;;;;;;;;;10087:10:0;5894:25:1;;;;:11;:25;;;;;;;;;:34;;;;;;;;;;;;:38;:96::i;4736:164::-;4814:4;4830:42;10087:10:0;4854:9:1;4865:6;4830:9;:42::i;21407:221::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;21480:30:1::1;::::0;::::1;;::::0;;;:22:::1;:30;::::0;;;;;::::1;;21472:75;;;::::0;::::1;::::0;;9990:2:2;21472:75:1::1;::::0;::::1;9972:21:2::0;;;10009:18;;;10002:30;10068:34;10048:18;;;10041:62;10120:18;;21472:75:1::1;9962:182:2::0;21472:75:1::1;21557:30;::::0;::::1;21590:5;21557:30:::0;;;:22:::1;:30;::::0;;;;:38;;;::::1;::::0;;21605:13:::1;:16:::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;21407:221:::0;:::o;10961:168::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;11037:21:1::1;:32:::0;;;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;11084:38:::1;::::0;::::1;::::0;::::1;::::0;11061:8;4503:14:2;4496:22;4478:41;;4466:2;4451:18;;4433:92;11084:38:1::1;;;;;;;;10961:168:::0;:::o;21634:225::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;21708:30:1::1;::::0;::::1;;::::0;;;:22:::1;:30;::::0;;;;;::::1;;21707:31;21699:80;;;::::0;::::1;::::0;;13507:2:2;21699:80:1::1;::::0;::::1;13489:21:2::0;13546:2;13526:18;;;13519:30;13585:34;13565:18;;;13558:62;13656:6;13636:18;;;13629:34;13680:19;;21699:80:1::1;13479:226:2::0;21699:80:1::1;21789:30;::::0;::::1;;::::0;;;:22:::1;:30;::::0;;;;:37;;;::::1;21822:4;21789:37;::::0;;21836:13:::1;:16:::0;;;::::1;::::0;::::1;:::i;7963:96::-:0;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;8036:10:1::1;:16:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;7963:96::o;10012:113::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;10082:29:1::1;;;::::0;;;:20:::1;:29;::::0;;;;:36;;;::::1;10114:4;10082:36;::::0;;10012:113::o;10249:108::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;10315:27:1::1;;10345:5;10315:27:::0;;;:18:::1;:27;::::0;;;;:35;;;::::1;::::0;;10249:108::o;10840:115::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;10931:17:1::1;:11:::0;10943:5:::1;10931:17;:::i;:::-;10916:12;:32:::0;-1:-1:-1;10840:115:1:o;16395:183::-;19081:7:0;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;16535:36:1::1;:30:::0;16566:5:::1;16535:36;:::i;:::-;16503:29;:68:::0;-1:-1:-1;16395:183:1:o;19961:240:0:-;19081:7;19107:6;19247:23;19107:6;10087:10;19247:23;19239:68;;;;;;;10351:2:2;19239:68:0;;;10333:21:2;;;10370:18;;;10363:30;10429:34;10409:18;;;10402:62;10481:18;;19239:68:0;10323:182:2;19239:68:0;20049:22:::1;::::0;::::1;20041:73;;;::::0;::::1;::::0;;6472:2:2;20041:73:0::1;::::0;::::1;6454:21:2::0;6511:2;6491:18;;;6484:30;6550:34;6530:18;;;6523:62;6621:8;6601:18;;;6594:36;6647:19;;20041:73:0::1;6444:228:2::0;20041:73:0::1;20150:6;::::0;;20129:38:::1;::::0;::::1;::::0;;::::1;::::0;20150:6;::::1;::::0;20129:38:::1;::::0;::::1;20177:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;19961:240::o;16584:331:1:-;16676:19;;;16668:68;;;;;;;12689:2:2;16668:68:1;;;12671:21:2;12728:2;12708:18;;;12701:30;12767:34;12747:18;;;12740:62;12838:6;12818:18;;;12811:34;12862:19;;16668:68:1;12661:226:2;16668:68:1;16754:21;;;16746:68;;;;;;;6879:2:2;16746:68:1;;;6861:21:2;6918:2;6898:18;;;6891:30;6957:34;6937:18;;;6930:62;7028:4;7008:18;;;7001:32;7050:19;;16746:68:1;6851:224:2;16746:68:1;16825:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16876:32;;13856:25:2;;;16876:32:1;;13829:18:2;16876:32:1;;;;;;;16584:331;;;:::o;16921:1749::-;17038:18;;;17030:68;;;;;;;11874:2:2;17030:68:1;;;11856:21:2;11913:2;11893:18;;;11886:30;11952:34;11932:18;;;11925:62;12023:7;12003:18;;;11996:35;12048:19;;17030:68:1;11846:227:2;17030:68:1;17116:16;;;17108:64;;;;;;;5657:2:2;17108:64:1;;;5639:21:2;5696:2;5676:18;;;5669:30;5735:34;5715:18;;;5708:62;5806:5;5786:18;;;5779:33;5829:19;;17108:64:1;5629:225:2;17108:64:1;17199:1;17190:6;:10;17182:64;;;;;;;10712:2:2;17182:64:1;;;10694:21:2;10751:2;10731:18;;;10724:30;10790:34;10770:18;;;10763:62;10861:11;10841:18;;;10834:39;10890:19;;17182:64:1;10684:231:2;17182:64:1;19081:7:0;19107:6;;17259:15:1;;;19107:6:0;;17259:15:1;;;;:32;;-1:-1:-1;19081:7:0;19107:6;;17278:13:1;;;19107:6:0;;17278:13:1;;17259:32;:63;;;;-1:-1:-1;17296:26:1;;;;;;;:20;:26;;;;;;;;17295:27;17259:63;:92;;;;-1:-1:-1;17327:24:1;;;;;;;:20;:24;;;;;;;;17326:25;17259:92;17256:184;;;17383:12;;17373:6;:22;;17365:75;;;;;;;9164:2:2;17365:75:1;;;9146:21:2;9203:2;9183:18;;;9176:30;9242:34;9222:18;;;9215:62;9313:10;9293:18;;;9286:38;9341:19;;17365:75:1;9136:230:2;17365:75:1;19081:7:0;19107:6;;17454:15:1;;;19107:6:0;;17454:15:1;;;;:32;;-1:-1:-1;19081:7:0;19107:6;;17473:13:1;;;19107:6:0;;17473:13:1;;17454:32;:65;;;;-1:-1:-1;17491:28:1;;;;;;;:24;:28;;;;;;;;17490:29;17454:65;17451:188;;;17570:16;;17541:25;17559:6;17541:13;17551:2;17541:9;:13::i;:::-;:17;;:25::i;:::-;:45;;17533:106;;;;;;;9573:2:2;17533:106:1;;;9555:21:2;9612:2;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9722:18;9702;;;9695:46;9758:19;;17533:106:1;9545:238:2;17533:106:1;17650:28;17681:24;17699:4;17681:9;:24::i;:::-;17650:55;;17743:12;;17719:20;:36;17716:109;;-1:-1:-1;17802:12:1;;17716:109;17886:29;;17862:53;;;;;;;17942:52;;-1:-1:-1;17978:16:1;;;;17977:17;17942:52;:89;;;;;18018:13;18010:21;;:4;:21;;;;17942:89;:126;;;;-1:-1:-1;18047:21:1;;;;;;;17942:126;17925:309;;;18116:29;;18093:52;;18187:36;18202:20;18187:14;:36::i;:::-;18420:24;;;18304:12;18420:24;;;:18;:24;;;;;;18319:4;;18420:24;;;:50;;-1:-1:-1;18448:22:1;;;;;;;:18;:22;;;;;;;;18420:50;18417:94;;;-1:-1:-1;18495:5:1;18417:94;18515:16;18526:4;18515:10;:16::i;:::-;18535:14;18546:2;18535:10;:14::i;:::-;18625:38;18640:4;18645:2;18648:6;18655:7;18625:14;:38::i;:::-;16921:1749;;;;;;:::o;7522:201:0:-;7608:7;7667:12;7659:6;;;;7651:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;7701:5:0;;;7522:201::o;12910:160:1:-;12951:7;12971:15;12988;13007:19;:17;:19::i;:::-;12970:56;;-1:-1:-1;12970:56:1;-1:-1:-1;13043:20:1;12970:56;;13043:11;:20::i;:::-;13036:27;;;;12910:160;:::o;6413:96:0:-;6471:7;6497:5;6501:1;6497;:5;:::i;:::-;6490:12;6413:96;-1:-1:-1;;;6413:96:0:o;5318:::-;5376:7;5402:5;5406:1;5402;:5;:::i;11531:470:1:-;11590:7;11599;11608;11617;11626;11635;11644;11664:23;11689:17;11710:20;11722:7;11710:11;:20::i;:::-;11740:22;;;11663:67;;-1:-1:-1;11663:67:1;-1:-1:-1;11791:10:1;:8;:10::i;:::-;11772:16;;;:29;11812:15;;;11870:17;11772:4;11870:11;:17::i;:::-;11954:9;;;;11965:15;;;;11982:11;;;;;11811:76;;-1:-1:-1;11811:76:1;;-1:-1:-1;11811:76:1;-1:-1:-1;11937:15:1;;-1:-1:-1;11954:9:1;;-1:-1:-1;11965:15:1;;-1:-1:-1;11982:11:1;;-1:-1:-1;;;;11531:470:1;;;;;;;;;:::o;5685:96:0:-;5743:7;5769:5;5773:1;5769;:5;:::i;18676:1003:1:-;2929:16;:23;;;;2948:4;2929:23;;;18808:18:::1;::::0;2929:16;;18783:53:::1;::::0;18832:3:::1;::::0;18783:44:::1;::::0;:20;;:24:::1;:44::i;:::-;:48:::0;::::1;:53::i;:::-;18760:76:::0;-1:-1:-1;18897:12:1::1;18912:19;18760:76:::0;18929:1:::1;18912:16;:19::i;:::-;18897:34:::0;-1:-1:-1;18941:17:1::1;18961:22;:12:::0;18897:34;18961:16:::1;:22::i;:::-;18941:42:::0;-1:-1:-1;18994:20:1::1;19017:45;18941:42:::0;19017:30:::1;:20:::0;19042:4;19017:24:::1;:30::i;:::-;:34:::0;::::1;:45::i;:::-;18994:68:::0;-1:-1:-1;19074:30:1::1;19107:27;18994:68:::0;19124:9;19107:16:::1;:27::i;:::-;19074:60:::0;-1:-1:-1;19170:21:1::1;19202:40;19074:60:::0;19202:16:::1;:40::i;:::-;19253:20;19276:41;:21;19302:14:::0;19276:25:::1;:41::i;:::-;19253:64:::0;-1:-1:-1;19329:18:1::1;19350:46;19373:22:::0;19350:18:::1;:9:::0;19364:3:::1;19350:13;:18::i;:46::-;19329:67:::0;-1:-1:-1;19407:31:1::1;19441:37;19474:3;19441:28;:12:::0;19329:67;19441:16:::1;:28::i;:37::-;19407:71;;19489:43;19502:4;19508:23;19489:12;:43::i;:::-;19543:10;::::0;::::1;;:57;19563:36;19576:23:::0;19563:12;:36:::1;:::i;:::-;19543:57;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;19616:56:1::1;::::0;;15128:25:2;;;15184:2;15169:18;;15162:34;;;15212:18;;;15205:34;;;19616:56:1::1;::::0;15116:2:2;15101:18;19616:56:1::1;;;;;;;-1:-1:-1::0;;2973:16:1;:24;;;;;;-1:-1:-1;;;;;;;;18676:1003:1:o;13979:168::-;14034:19;;;;;;;:14;:19;;;;;;;;14030:111;;14068:19;;;;;;;:14;:19;;;;;:26;;;;14090:4;14068:26;;;;;;14108:22;;;;;;;;;;;;;;;;;;;;14030:111;13979:168;:::o;22070:1705::-;22180:16;;;;22176:895;;;22215:30;;;;;;;:22;:30;;;;;;;;;:67;;-1:-1:-1;22249:33:1;;;;;;;:22;:33;;;;;;;;22215:67;22211:132;;;22302:26;;;;;11529:2:2;22302:26:1;;;11511:21:2;11568:2;11548:18;;;11541:30;11607:18;11587;;;11580:46;11643:18;;22302:26:1;11501:166:2;22211:132:1;22361:16;;;;;;;22356:705;;22397:37;22416:6;22424:9;22397:18;:37::i;:::-;22457:16;;;;;;;22456:17;:50;;;;;22477:29;22488:6;22496:9;22477:10;:29::i;:::-;22452:144;;;22530:47;;;;;7686:2:2;22530:47:1;;;7668:21:2;7725:2;7705:18;;;7698:30;7764:34;7744:18;;;7737:62;7835:7;7815:18;;;7808:35;7860:19;;22530:47:1;7658:227:2;22452:144:1;22356:705;;;22653:1;22638:12;;:16;:63;;;;;22688:13;22678:23;;:6;:23;;;22638:63;:116;;;;;22725:29;22736:6;22744:9;22725:10;:29::i;:::-;22634:413;;;22829:13;;22814:12;;22799:27;;:12;:27;:::i;:::-;:43;22795:234;;;22870:33;;;;;;;:22;:33;;;;;:40;;;;22906:4;22870:40;;;22936:13;:16;;;;;;:::i;:::-;;;;-1:-1:-1;;22983:23:1;;3648:42:2;3636:55;;3618:74;;22983:23:1;;3606:2:2;3591:18;22983:23:1;;;;;;;22795:234;23085:7;23081:39;;23106:14;:12;:14::i;:::-;23135:19;;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;23159:22:1;;;;;;;:11;:22;;;;;;;;23158:23;23135:46;23131:587;;;23197:48;23219:6;23227:9;23238:6;23197:21;:48::i;:::-;23131:587;;;23267:19;;;;;;;:11;:19;;;;;;;;23266:20;:46;;;;-1:-1:-1;23290:22:1;;;;;;;:11;:22;;;;;;;;23266:46;23262:456;;;23328:46;23348:6;23356:9;23367:6;23328:19;:46::i;23262:456::-;23396:19;;;;;;;:11;:19;;;;;;;;23395:20;:47;;;;-1:-1:-1;23420:22:1;;;;;;;:11;:22;;;;;;;;23419:23;23395:47;23391:327;;;23458:44;23476:6;23484:9;23495:6;23458:17;:44::i;23391:327::-;23523:19;;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;23546:22:1;;;;;;;:11;:22;;;;;;;;23523:45;23519:199;;;23584:48;23606:6;23614:9;23625:6;23584:21;:48::i;23519:199::-;23663:44;23681:6;23689:9;23700:6;23663:17;:44::i;:::-;23732:7;23728:40;;23753:15;16023;;16013:7;:25;16060:17;;16048:9;:29;16103:21;;16087:13;:37;15970:161;23753:15;22070:1705;;;;:::o;13076:545::-;13172:7;;13207;;13126;;;;;13224:285;13248:9;:16;13244:20;;13224:285;;;13313:7;13289;:21;13297:9;13307:1;13297:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13289:21;;;;;;;;;;;;;:31;;:66;;;13348:7;13324;:21;13332:9;13342:1;13332:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13324:21;;;;;;;;;;;;;:31;13289:66;13285:97;;;13365:7;;13374;;13357:25;;;;;;;;;13285:97;13406:34;13418:7;:21;13426:9;13436:1;13426:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13418:21;;;;;;;;;;;;;13406:7;;:11;:34::i;:::-;13396:44;;13464:34;13476:7;:21;13484:9;13494:1;13484:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13476:21;;;;;;;;;;;;;13464:7;;:11;:34::i;:::-;13454:44;-1:-1:-1;13266:3:1;;;;:::i;:::-;;;;13224:285;;;-1:-1:-1;13544:7:1;;13532;;:20;;:11;:20::i;:::-;13522:7;:30;13518:61;;;13562:7;;13571;;13554:25;;;;;;;;13518:61;13597:7;;-1:-1:-1;13606:7:1;-1:-1:-1;13076:545:1;;;:::o;12007:409::-;12067:7;12076:12;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12076:12:1;12100;12115:24;12131:7;12115:15;:24::i;:::-;12100:39;;12149:18;12170:30;12192:7;12170:21;:30::i;:::-;12149:51;;12211:14;12228:26;12246:7;12228:17;:26::i;:::-;12211:43;-1:-1:-1;12265:23:1;12291:45;12211:43;12291:33;12313:10;12291:33;:7;12303:4;12291:11;:17::i;:45::-;12265:71;;12354:15;12371:37;;;;;;;;12377:1;12371:37;;;;12380:4;12371:37;;;;12386:10;12371:37;;;;12398:6;12371:37;;;;12406:1;12371:37;;;12346:63;;;;;;;;12007:409;;;:::o;12422:482::-;12486:7;12495;12504;12523:15;12541:36;12559:5;:17;;;12541:5;:13;;;:17;;:36;;;;:::i;:::-;12523:54;;12587:12;12602:33;12617:5;:17;;;12602:5;:10;;;:14;;:33;;;;:::i;:::-;12587:48;;12645:18;12666:39;12687:5;:17;;;12666:5;:16;;;:20;;:39;;;;:::i;:::-;12645:60;;12715:14;12732:35;12749:5;:17;;;12732:5;:12;;;:16;;:35;;;;:::i;:::-;12715:52;-1:-1:-1;12777:23:1;12803:45;12715:52;12803:33;12825:10;12803:33;:7;12815:4;12803:11;:17::i;:45::-;12866:7;;;;-1:-1:-1;12892:4:1;;-1:-1:-1;12422:482:1;;-1:-1:-1;;;;;12422:482:1:o;6028:96:0:-;6086:7;6112:5;6116:1;6112;:5;:::i;19685:573:1:-;19833:16;;;19847:1;19833:16;;;;;;;;19809:21;;19833:16;;;;;;;;;;-1:-1:-1;19833:16:1;19809:40;;19877:4;19859;19864:1;19859:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;19902:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19892:4;19897:1;19892:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;19935:62;19952:4;19967:15;19985:11;19935:8;:62::i;:::-;20033:218;;;;;:66;:15;:66;;;;:218;;20113:11;;20138:1;;20181:4;;20207;;20226:15;;20033:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20264:500;20410:62;20427:4;20442:15;20460:11;20410:8;:62::i;:::-;20512:15;:31;;;20551:9;20583:4;20602:11;20627:1;20669;20711:7;19081::0;19107:6;;;19035:85;;20711:7:1;20512:245;;;;;;;;;;4016:42:2;4085:15;;;20512:245:1;;;4067:34:2;4117:18;;;4110:34;;;;4160:18;;;4153:34;;;;4203:18;;;4196:34;4267:15;;;4246:19;;;4239:44;20732:15:1;4299:19:2;;;4292:35;3978:19;;20512:245:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;20264:500;;:::o;20770:388::-;20851:16;;;;;;;20850:17;20842:65;;;;;;;7282:2:2;20842:65:1;;;7264:21:2;7321:2;7301:18;;;7294:30;7360:34;7340:18;;;7333:62;7431:5;7411:18;;;7404:33;7454:19;;20842:65:1;7254:225:2;20842:65:1;20922:20;20933:4;20939:2;20922:10;:20::i;:::-;20921:21;:44;;;;;20952:13;20946:19;;:2;:19;;;20921:44;20917:235;;;20996:12;20981;:27;21022:16;:23;;;;;;;;21060:21;:28;;;;;;;;21107:34;;;;;;21041:4;4503:14:2;4496:22;4478:41;;4466:2;4451:18;;4433:92;21107:34:1;;;;;;;;20770:388;;:::o;21164:237::-;21232:4;19107:6:0;;;21255:15:1;;;19107:6:0;;21255:15:1;;;;:44;;-1:-1:-1;19081:7:0;19107:6;;21286:13:1;;;19107:6:0;;21286:13:1;;21255:44;:70;;;;-1:-1:-1;21315:10:1;;;787:42;21315:10;;21255:70;:102;;;;-1:-1:-1;21341:16:1;;;;;21255:102;:139;;;;-1:-1:-1;;;21373:21:1;;21389:4;21373:21;;;21164:237::o;15658:306::-;15703:7;;:12;:34;;;;-1:-1:-1;15719:13:1;;:18;15703:34;:52;;;;-1:-1:-1;15741:9:1;;:14;15703:52;15700:64;;;15757:7;;15700:64;15792:7;;;15774:15;:25;15829:9;;;15809:17;:29;15872:13;;;15848:21;:37;-1:-1:-1;15896:11:1;;;;15917:13;;;;15940:17;15658:306;:::o;24945:599::-;25047:15;25064:23;25089:12;25103:23;25128:12;25142:18;25162:14;25180:19;25191:7;25180:10;:19::i;:::-;25046:153;;;;;;;;;;;;;;25227:28;25247:7;25227;:15;25235:6;25227:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25209:15;;;;;;;:7;:15;;;;;;;;:46;;;;25283:7;:15;;;;:28;;25303:7;25283:19;:28::i;:::-;25265:15;;;;;;;;:7;:15;;;;;;:46;;;;25342:18;;;;;;;:39;;25365:15;25342:22;:39::i;:::-;25321:18;;;;;;;:7;:18;;;;;:60;25391:26;25406:10;25391:14;:26::i;:::-;25427:18;25438:6;25427:10;:18::i;:::-;25455:23;25467:4;25473;25455:11;:23::i;:::-;25510:9;25493:44;;25502:6;25493:44;;;25521:15;25493:44;;;;13856:25:2;;13844:2;13829:18;;13811:76;25493:44:1;;;;;;;;24945:599;;;;;;;;;;:::o;24328:611::-;24428:15;24445:23;24470:12;24484:23;24509:12;24523:18;24543:14;24561:19;24572:7;24561:10;:19::i;:::-;24427:153;;;;;;;;;;;;;;24608:28;24628:7;24608;:15;24616:6;24608:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24590:15;;;;;;;;:7;:15;;;;;;;;:46;;;;24667:18;;;;;:7;:18;;;;;:39;;24690:15;24667:22;:39::i;:::-;24646:18;;;;;;;:7;:18;;;;;;;;:60;;;;24737:7;:18;;;;:39;;24760:15;24737:22;:39::i;23781:541::-;23879:15;23896:23;23921:12;23935:23;23960:12;23974:18;23994:14;24012:19;24023:7;24012:10;:19::i;:::-;23878:153;;;;;;;;;;;;;;24059:28;24079:7;24059;:15;24067:6;24059:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;9222:669::-;9324:15;9341:23;9366:12;9380:23;9405:12;9419:18;9439:14;9457:19;9468:7;9457:10;:19::i;:::-;9323:153;;;;;;;;;;;;;;9504:28;9524:7;9504;:15;9512:6;9504:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;9486:15;;;;;;;:7;:15;;;;;;;;:46;;;;9560:7;:15;;;;:28;;9580:7;9560:19;:28::i;15174:150::-;15238:7;15264:53;15302:5;15264:20;15276:7;;15264;:11;;:20;;;;:::i;15490:162::-;15560:7;15586:59;15630:5;15586:26;15598:13;;15586:7;:11;;:26;;;;:::i;15330:154::-;15396:7;15422:55;15462:5;15422:22;15434:9;;15422:7;:11;;:22;;;;:::i;13627:349::-;13689:19;13712:10;:8;:10::i;:::-;13689:33;-1:-1:-1;13732:18:1;13753:27;:10;13689:33;13753:14;:27::i;:::-;13831:4;13815:22;;;;:7;:22;;;;;;13732:48;;-1:-1:-1;13815:38:1;;13732:48;13815:26;:38::i;:::-;13806:4;13790:22;;;;:7;:22;;;;;;;;:63;;;;13866:11;:26;;;;;;13863:106;;;13947:4;13931:22;;;;:7;:22;;;;;;:38;;13958:10;13931:26;:38::i;:::-;13922:4;13906:22;;;;:7;:22;;;;;:63;13863:106;13627:349;;;:::o;14754:413::-;14808:19;14831:10;:8;:10::i;:::-;14808:33;-1:-1:-1;14851:14:1;14868:23;:6;14808:33;14868:10;:23::i;:::-;14851:40;;14901:27;14931:17;14941:6;14931:9;:17::i;:::-;14990:28;;;;;;;:7;:28;;;;;;14901:47;;-1:-1:-1;14990:40:1;;15023:6;14990:32;:40::i;:::-;14959:28;;;;;;;:7;:28;;;;;;;;:71;;;;15043:11;:32;;;;;;15040:120;;;15120:28;;;;;;;:7;:28;;;;;;:40;;15153:6;15120:32;:40::i;:::-;15089:28;;;;;;;:7;:28;;;;;:71;14754:413;;;;:::o;11226:144::-;11303:7;;:17;;11315:4;11303:11;:17::i;:::-;11293:7;:27;11343:10;;:20;;11358:4;11343:14;:20::i;:::-;11330:10;:33;-1:-1:-1;;11226:144:1:o;14315:433::-;14361:7;14380:21;14404:12;14417:34;14431:12;:19;;;;14417:9;14424:1;14246:54;;;14263:16;14246:54;;;;3340:19:2;;;;14281:15:1;3375:12:2;;;3368:28;3412:12;;;;3405:28;;;;14246:54:1;;;;;;;;;;3449:12:2;;;;14246:54:1;;;14236:65;;;;;;14153:156;14417:9;:13;;:34::i;:::-;14404:48;;;;;;;;;;;;;;;;;;;;;;;;;;14495:16;;14404:48;;;;;-1:-1:-1;14467:24:1;14404:48;14467:9;:24::i;:::-;:44;;:80;;;;-1:-1:-1;14516:31:1;;;;;;;:16;:31;;;;;;;;14515:32;14467:80;14463:258;;;14568:11;;14566:1;:13;14563:114;;;14598:11;:15;;;14631;:31;;;;;;;;;;14563:114;14697:13;-1:-1:-1;14690:20:1;;14463:258;-1:-1:-1;787:42:1;;14315:433;-1:-1:-1;;14315:433:1:o;6962:96:0:-;7020:7;7046:5;7050:1;7046;:5;:::i;14:160:2:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;179:257;;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;977:398::-;;;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1171:9;1158:23;1190:31;1215:5;1190:31;:::i;:::-;1240:5;-1:-1:-1;1297:2:2;1282:18;;1269:32;1310:33;1269:32;1310:33;:::i;:::-;1362:7;1352:17;;;1064:311;;;;;:::o;1380:466::-;;;;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1591:9;1578:23;1610:31;1635:5;1610:31;:::i;:::-;1660:5;-1:-1:-1;1717:2:2;1702:18;;1689:32;1730:33;1689:32;1730:33;:::i;:::-;1484:362;;1782:7;;-1:-1:-1;;;1836:2:2;1821:18;;;;1808:32;;1484:362::o;1851:325::-;;;1980:2;1968:9;1959:7;1955:23;1951:32;1948:2;;;2001:6;1993;1986:22;1948:2;2045:9;2032:23;2064:31;2089:5;2064:31;:::i;:::-;2114:5;2166:2;2151:18;;;;2138:32;;-1:-1:-1;;;1938:238:2:o;2181:190::-;;2290:2;2278:9;2269:7;2265:23;2261:32;2258:2;;;2311:6;2303;2296:22;2258:2;2339:26;2355:9;2339:26;:::i;2376:190::-;;2488:2;2476:9;2467:7;2463:23;2459:32;2456:2;;;2509:6;2501;2494:22;2456:2;-1:-1:-1;2537:23:2;;2446:120;-1:-1:-1;2446:120:2:o;2571:258::-;;;2697:2;2685:9;2676:7;2672:23;2668:32;2665:2;;;2718:6;2710;2703:22;2665:2;2759:9;2746:23;2736:33;;2788:35;2819:2;2808:9;2804:18;2788:35;:::i;:::-;2778:45;;2655:174;;;;;:::o;2834:316::-;;;;2991:2;2979:9;2970:7;2966:23;2962:32;2959:2;;;3012:6;3004;2997:22;2959:2;3046:9;3040:16;3030:26;;3096:2;3085:9;3081:18;3075:25;3065:35;;3140:2;3129:9;3125:18;3119:25;3109:35;;2949:201;;;;;:::o;4788:662::-;;4929:2;4958;4947:9;4940:21;4990:6;4984:13;5033:6;5028:2;5017:9;5013:18;5006:34;5058:4;5071:140;5085:6;5082:1;5079:13;5071:140;;;5180:14;;;5176:23;;5170:30;5146:17;;;5165:2;5142:26;5135:66;5100:10;;5071:140;;;5229:6;5226:1;5223:13;5220:2;;;5299:4;5294:2;5285:6;5274:9;5270:22;5266:31;5259:45;5220:2;-1:-1:-1;5366:2:2;5354:15;5371:66;5350:88;5335:104;;;;5441:2;5331:113;;4909:541;-1:-1:-1;;;4909:541:2:o;13892:1029::-;;14202:3;14191:9;14187:19;14233:6;14222:9;14215:25;14259:2;14297:6;14292:2;14281:9;14277:18;14270:34;14340:3;14335:2;14324:9;14320:18;14313:31;14364:6;14399;14393:13;14430:6;14422;14415:22;14468:3;14457:9;14453:19;14446:26;;14507:2;14499:6;14495:15;14481:29;;14528:4;14541:218;14555:6;14552:1;14549:13;14541:218;;;14620:13;;14635:42;14616:62;14604:75;;14734:15;;;;14699:12;;;;14577:1;14570:9;14541:218;;;-1:-1:-1;;14827:42:2;14815:55;;;;14810:2;14795:18;;14788:83;-1:-1:-1;;;14902:3:2;14887:19;14880:35;14776:3;14163:758;-1:-1:-1;;;14163:758:2:o;15439:128::-;;15510:1;15506:6;15503:1;15500:13;15497:2;;;15516:18;;:::i;:::-;-1:-1:-1;15552:9:2;;15487:80::o;15572:120::-;;15638:1;15628:2;;15643:18;;:::i;:::-;-1:-1:-1;15677:9:2;;15618:74::o;15697:228::-;;15863:1;15795:66;15791:74;15788:1;15785:81;15780:1;15773:9;15766:17;15762:105;15759:2;;;15870:18;;:::i;:::-;-1:-1:-1;15910:9:2;;15749:176::o;15930:125::-;;15998:1;15995;15992:8;15989:2;;;16003:18;;:::i;:::-;-1:-1:-1;16040:9:2;;15979:76::o;16060:196::-;;16127:5;16117:2;;16136:18;;:::i;:::-;-1:-1:-1;16183:66:2;16172:78;;16107:149::o;16261:437::-;16340:1;16336:12;;;;16383;;;16404:2;;16458:4;16450:6;16446:17;16436:27;;16404:2;16511;16503:6;16500:14;16480:18;16477:38;16474:2;;;16548:77;16545:1;16538:88;16649:4;16646:1;16639:15;16677:4;16674:1;16667:15;16474:2;;16316:382;;;:::o;16703:195::-;;16773:66;16766:5;16763:77;16760:2;;;16843:18;;:::i;:::-;-1:-1:-1;16890:1:2;16879:13;;16750:148::o;16903:112::-;;16961:1;16951:2;;16966:18;;:::i;:::-;-1:-1:-1;17000:9:2;;16941:74::o;17020:184::-;17072:77;17069:1;17062:88;17169:4;17166:1;17159:15;17193:4;17190:1;17183:15;17209:184;17261:77;17258:1;17251:88;17358:4;17355:1;17348:15;17382:4;17379:1;17372:15;17398:154;17484:42;17477:5;17473:54;17466:5;17463:65;17453:2;;17542:1;17539;17532:12

Swarm Source

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