ETH Price: $3,491.04 (+0.08%)
Gas: 2 Gwei

Token

GULP (GULP)
 

Overview

Max Total Supply

69,000,000,000,000 GULP

Holders

172

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,513,213,564.122592499719466283 GULP

Value
$0.00
0x85bd58ed23331f2d2f13bf91b517f4704b53f821
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:
GulpToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

pragma solidity =0.8.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Factory.sol";
import "https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Pair.sol";
import "https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router02.sol";

library SafeMath {

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

    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }


    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }


    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }


    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


contract GulpToken is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public teamWallet;
    address public cexWallet;

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

    uint256 public percentForLPBurn = 0; 
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    mapping(address => uint256) private _holderLastTransferTimestamp; 
    bool public transferDelayEnabled = true;

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("GULP", "GULP") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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

        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 0;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 0;

        uint256 totalSupply = 69_000_000_000_000 * 1e18;

        maxTransactionAmount = 2_760_000_000_000 * 1e18;
        maxWallet = 2_760_000_000_000 * 1e18;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

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

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

        marketingWallet = address(0x2947ef7D8FDB86134998F0EabF5EA0A9c3c02ef3);
        teamWallet = address(0x52cfb88894DBB28ECfa525A63F50e1ed424428d5);
        cexWallet = address(0xfAFF6108d246a78DFAD9e6F5a696b27aB5DC8424);

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

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

        _mint(msg.sender, totalSupply);
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }

    function rescueETH(uint256 amount) external onlyOwner {
        payable(owner()).transfer(amount);
    }

    function rescueERC20(address tokenAdd, uint256 amount) external onlyOwner {
        IERC20(tokenAdd).transfer(owner(), amount);
    }

    // fallbacks
    receive() external payable {}
}

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

import './IUniswapV2Router01.sol';

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

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

File 3 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cexWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600c556000600d60006101000a81548160ff021916908315150217905550610e10600e556107086010556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055506001601460006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600481526020017f47554c50000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f47554c5000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d5b565b50806004908162000139919062000d5b565b5050506200015c620001506200061a60201b60201c565b6200062260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000188816001620006e860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000eac565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000eac565b6040518363ffffffff1660e01b8152600401620002db92919062000eef565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000eac565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a0516001620006e860201b60201c565b6200037e60a05160016200075360201b60201c565b60006002905060008060006002905060008060006d0366e7064422fd8420234000000090506c22d60a7d9affe690a5400000006009819055506c22d60a7d9affe690a540000000600b81905550612710600582620003dd919062000f4b565b620003e9919062000fc5565b600a8190555086601681905550856017819055508460188190555060185460175460165462000419919062000ffd565b62000425919062000ffd565b60158190555083601a8190555082601b8190555081601c81905550601c54601b54601a5462000455919062000ffd565b62000461919062000ffd565b601981905550732947ef7d8fdb86134998f0eabf5ea0a9c3c02ef3600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507352cfb88894dbb28ecfa525a63f50e1ed424428d5600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073faff6108d246a78dfad9e6f5a696b27ab5dc8424600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005886200057a620007f460201b60201c565b60016200081e60201b60201c565b6200059b3060016200081e60201b60201c565b620005b061dead60016200081e60201b60201c565b620005d2620005c4620007f460201b60201c565b6001620006e860201b60201c565b620005e5306001620006e860201b60201c565b620005fa61dead6001620006e860201b60201c565b6200060c3382620008d960201b60201c565b505050505050505062001195565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006f862000a4660201b60201c565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082e62000a4660201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008cd919062001055565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200094b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200094290620010d3565b60405180910390fd5b6200095f6000838362000ad760201b60201c565b806002600082825462000973919062000ffd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a26919062001106565b60405180910390a362000a426000838362000adc60201b60201c565b5050565b62000a566200061a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a7c620007f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ad5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acc9062001173565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b6357607f821691505b60208210810362000b795762000b7862000b1b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000be37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ba4565b62000bef868362000ba4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c3c62000c3662000c308462000c07565b62000c11565b62000c07565b9050919050565b6000819050919050565b62000c588362000c1b565b62000c7062000c678262000c43565b84845462000bb1565b825550505050565b600090565b62000c8762000c78565b62000c9481848462000c4d565b505050565b5b8181101562000cbc5762000cb060008262000c7d565b60018101905062000c9a565b5050565b601f82111562000d0b5762000cd58162000b7f565b62000ce08462000b94565b8101602085101562000cf0578190505b62000d0862000cff8562000b94565b83018262000c99565b50505b505050565b600082821c905092915050565b600062000d306000198460080262000d10565b1980831691505092915050565b600062000d4b838362000d1d565b9150826002028217905092915050565b62000d668262000ae1565b67ffffffffffffffff81111562000d825762000d8162000aec565b5b62000d8e825462000b4a565b62000d9b82828562000cc0565b600060209050601f83116001811462000dd3576000841562000dbe578287015190505b62000dca858262000d3d565b86555062000e3a565b601f19841662000de38662000b7f565b60005b8281101562000e0d5784890151825560018201915060208501945060208101905062000de6565b8683101562000e2d578489015162000e29601f89168262000d1d565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e748262000e47565b9050919050565b62000e868162000e67565b811462000e9257600080fd5b50565b60008151905062000ea68162000e7b565b92915050565b60006020828403121562000ec55762000ec462000e42565b5b600062000ed58482850162000e95565b91505092915050565b62000ee98162000e67565b82525050565b600060408201905062000f06600083018562000ede565b62000f15602083018462000ede565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f588262000c07565b915062000f658362000c07565b925082820262000f758162000c07565b9150828204841483151762000f8f5762000f8e62000f1c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fd28262000c07565b915062000fdf8362000c07565b92508262000ff25762000ff162000f96565b5b828204905092915050565b60006200100a8262000c07565b9150620010178362000c07565b925082820190508082111562001032576200103162000f1c565b5b92915050565b60008115159050919050565b6200104f8162001038565b82525050565b60006020820190506200106c600083018462001044565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010bb601f8362001072565b9150620010c88262001083565b602082019050919050565b60006020820190508181036000830152620010ee81620010ac565b9050919050565b620011008162000c07565b82525050565b60006020820190506200111d6000830184620010f5565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200115b60208362001072565b9150620011688262001123565b602082019050919050565b600060208201905081810360008301526200118e816200114c565b9050919050565b60805160a0516155116200121d600039600081816111a30152818161176d01528181611f2501528181611fdc01528181612009015281816127520152818161384b015281816139040152613931015260008181611034015281816126fa01528181613aa701528181613b8801528181613baf01528181613c4b0152613c7201526155116000f3fe6080604052600436106103d25760003560e01c80638cd4426d116101fd578063bbc0c74211610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610e76578063f2fde38b14610ea1578063f637434214610eca578063f8b45b0514610ef5578063fe72b27a14610f20576103d9565b8063d85ba06314610db8578063dd62ed3e14610de3578063e2f4560514610e20578063e884f26014610e4b576103d9565b8063c876d0b9116100e7578063c876d0b914610cfa578063c8c8ebe414610d25578063d257b34f14610d50578063d729715f14610d8d576103d9565b8063bbc0c74214610c54578063c024666814610c7f578063c17b5b8c14610ca8578063c18bc19514610cd1576103d9565b80639ec22c0e11610190578063a9059cbb1161015f578063a9059cbb14610b86578063aacebbe314610bc3578063b107594314610bec578063b62496f514610c17576103d9565b80639ec22c0e14610ac85780639fccce3214610af3578063a457c2d714610b1e578063a4c82a0014610b5b576103d9565b806395d89b41116101cc57806395d89b4114610a205780639a7a23d614610a4b5780639c2e4ac614610a745780639e252f0014610a9f576103d9565b80638cd4426d146109785780638da5cb5b146109a157806392136913146109cc578063924de9b7146109f7576103d9565b806349bd5a5e116102ed578063730c1888116102805780637bce5a041161024f5780637bce5a04146108e45780637cb332bb1461090f5780638095d564146109385780638a8c523c14610961576103d9565b8063730c18881461083c578063751039fc146108655780637571336a1461089057806375f0a874146108b9576103d9565b80636a486a8e116102bc5780636a486a8e146107925780636ddd1713146107bd57806370a08231146107e8578063715018a614610825576103d9565b806349bd5a5e146106d45780634a62bb65146106ff5780634fbee1931461072a5780635992704414610767576103d9565b80631f3fed8f116103655780632c3e486c116103345780632c3e486c146106165780632e82f1a014610641578063313ce5671461066c5780633950935114610697576103d9565b80631f3fed8f1461055a578063203e727e1461058557806323b872dd146105ae57806327c8f835146105eb576103d9565b806318160ddd116103a157806318160ddd146104ae578063184c16c5146104d9578063199ffc72146105045780631a8145bb1461052f576103d9565b806306fdde03146103de578063095ea7b31461040957806310d5de53146104465780631694505e14610483576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610f5d565b6040516104009190613db1565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190613e6c565b610fef565b60405161043d9190613ec7565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613ee2565b611012565b60405161047a9190613ec7565b60405180910390f35b34801561048f57600080fd5b50610498611032565b6040516104a59190613f6e565b60405180910390f35b3480156104ba57600080fd5b506104c3611056565b6040516104d09190613f98565b60405180910390f35b3480156104e557600080fd5b506104ee611060565b6040516104fb9190613f98565b60405180910390f35b34801561051057600080fd5b50610519611066565b6040516105269190613f98565b60405180910390f35b34801561053b57600080fd5b5061054461106c565b6040516105519190613f98565b60405180910390f35b34801561056657600080fd5b5061056f611072565b60405161057c9190613f98565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613fb3565b611078565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190613fe0565b611113565b6040516105e29190613ec7565b60405180910390f35b3480156105f757600080fd5b50610600611142565b60405161060d9190614042565b60405180910390f35b34801561062257600080fd5b5061062b611148565b6040516106389190613f98565b60405180910390f35b34801561064d57600080fd5b5061065661114e565b6040516106639190613ec7565b60405180910390f35b34801561067857600080fd5b50610681611161565b60405161068e9190614079565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613e6c565b61116a565b6040516106cb9190613ec7565b60405180910390f35b3480156106e057600080fd5b506106e96111a1565b6040516106f69190614042565b60405180910390f35b34801561070b57600080fd5b506107146111c5565b6040516107219190613ec7565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613ee2565b6111d8565b60405161075e9190613ec7565b60405180910390f35b34801561077357600080fd5b5061077c61122e565b6040516107899190614042565b60405180910390f35b34801561079e57600080fd5b506107a7611254565b6040516107b49190613f98565b60405180910390f35b3480156107c957600080fd5b506107d261125a565b6040516107df9190613ec7565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613ee2565b61126d565b60405161081c9190613f98565b60405180910390f35b34801561083157600080fd5b5061083a6112b5565b005b34801561084857600080fd5b50610863600480360381019061085e91906140c0565b6112c9565b005b34801561087157600080fd5b5061087a611395565b6040516108879190613ec7565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190614113565b6113c1565b005b3480156108c557600080fd5b506108ce611424565b6040516108db9190614042565b60405180910390f35b3480156108f057600080fd5b506108f961144a565b6040516109069190613f98565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613ee2565b611450565b005b34801561094457600080fd5b5061095f600480360381019061095a9190614153565b611518565b005b34801561096d57600080fd5b506109766115a3565b005b34801561098457600080fd5b5061099f600480360381019061099a9190613e6c565b6115ea565b005b3480156109ad57600080fd5b506109b661167c565b6040516109c39190614042565b60405180910390f35b3480156109d857600080fd5b506109e16116a6565b6040516109ee9190613f98565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a1991906141a6565b6116ac565b005b348015610a2c57600080fd5b50610a356116d1565b604051610a429190613db1565b60405180910390f35b348015610a5757600080fd5b50610a726004803603810190610a6d9190614113565b611763565b005b348015610a8057600080fd5b50610a89611807565b604051610a969190613f98565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190613fb3565b61180d565b005b348015610ad457600080fd5b50610add611866565b604051610aea9190613f98565b60405180910390f35b348015610aff57600080fd5b50610b0861186c565b604051610b159190613f98565b60405180910390f35b348015610b2a57600080fd5b50610b456004803603810190610b409190613e6c565b611872565b604051610b529190613ec7565b60405180910390f35b348015610b6757600080fd5b50610b706118e9565b604051610b7d9190613f98565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba89190613e6c565b6118ef565b604051610bba9190613ec7565b60405180910390f35b348015610bcf57600080fd5b50610bea6004803603810190610be59190613ee2565b611912565b005b348015610bf857600080fd5b50610c016119da565b604051610c0e9190614042565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c399190613ee2565b611a00565b604051610c4b9190613ec7565b60405180910390f35b348015610c6057600080fd5b50610c69611a20565b604051610c769190613ec7565b60405180910390f35b348015610c8b57600080fd5b50610ca66004803603810190610ca19190614113565b611a33565b005b348015610cb457600080fd5b50610ccf6004803603810190610cca9190614153565b611ae4565b005b348015610cdd57600080fd5b50610cf86004803603810190610cf39190613fb3565b611b6f565b005b348015610d0657600080fd5b50610d0f611c0a565b604051610d1c9190613ec7565b60405180910390f35b348015610d3157600080fd5b50610d3a611c1d565b604051610d479190613f98565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d729190613fb3565b611c23565b604051610d849190613ec7565b60405180910390f35b348015610d9957600080fd5b50610da2611d04565b604051610daf9190613f98565b60405180910390f35b348015610dc457600080fd5b50610dcd611d0a565b604051610dda9190613f98565b60405180910390f35b348015610def57600080fd5b50610e0a6004803603810190610e0591906141d3565b611d10565b604051610e179190613f98565b60405180910390f35b348015610e2c57600080fd5b50610e35611d97565b604051610e429190613f98565b60405180910390f35b348015610e5757600080fd5b50610e60611d9d565b604051610e6d9190613ec7565b60405180910390f35b348015610e8257600080fd5b50610e8b611dc9565b604051610e989190613f98565b60405180910390f35b348015610ead57600080fd5b50610ec86004803603810190610ec39190613ee2565b611dcf565b005b348015610ed657600080fd5b50610edf611e52565b604051610eec9190613f98565b60405180910390f35b348015610f0157600080fd5b50610f0a611e58565b604051610f179190613f98565b60405180910390f35b348015610f2c57600080fd5b50610f476004803603810190610f429190613fb3565b611e5e565b604051610f549190613ec7565b60405180910390f35b606060038054610f6c90614242565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9890614242565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b5050505050905090565b600080610ffa6120c2565b90506110078185856120ca565b600191505092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60105481565b600c5481565b601e5481565b601d5481565b611080612293565b670de0b6b3a76400006103e86001611096611056565b6110a091906142a2565b6110aa9190614313565b6110b49190614313565b8110156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906143b6565b60405180910390fd5b670de0b6b3a76400008161110a91906142a2565b60098190555050565b60008061111e6120c2565b905061112b858285612311565b61113685858561239d565b60019150509392505050565b61dead81565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b6000806111756120c2565b90506111968185856111878589611d10565b61119191906143d6565b6120ca565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd612293565b6112c76000613132565b565b6112d1612293565b610258831015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9061447c565b60405180910390fd5b6103e88211158015611329575060008210155b611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f9061450e565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b600061139f612293565b6000601260006101000a81548160ff0219169083151502179055506001905090565b6113c9612293565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b611458612293565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611520612293565b82601681905550816017819055508060188190555060185460175460165461154891906143d6565b61155291906143d6565b6015819055506032601554111561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061457a565b60405180910390fd5b505050565b6115ab612293565b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b6115f2612293565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61161661167c565b836040518363ffffffff1660e01b815260040161163492919061459a565b6020604051808303816000875af1158015611653573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167791906145d8565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601a5481565b6116b4612293565b80601260026101000a81548160ff02191690831515021790555050565b6060600480546116e090614242565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90614242565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b5050505050905090565b61176b612293565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090614677565b60405180910390fd5b61180382826131f8565b5050565b60185481565b611815612293565b61181d61167c565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611862573d6000803e3d6000fd5b5050565b60115481565b601f5481565b60008061187d6120c2565b9050600061188b8286611d10565b9050838110156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c790614709565b60405180910390fd5b6118dd82868684036120ca565b60019250505092915050565b600f5481565b6000806118fa6120c2565b905061190781858561239d565b600191505092915050565b61191a612293565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60226020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611a3b612293565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ad89190613ec7565b60405180910390a25050565b611aec612293565b82601a8190555081601b8190555080601c81905550601c54601b54601a54611b1491906143d6565b611b1e91906143d6565b601981905550605a6019541115611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614775565b60405180910390fd5b505050565b611b77612293565b670de0b6b3a76400006103e86005611b8d611056565b611b9791906142a2565b611ba19190614313565b611bab9190614313565b811015611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490614807565b60405180910390fd5b670de0b6b3a764000081611c0191906142a2565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b6000611c2d612293565b620186a06001611c3b611056565b611c4591906142a2565b611c4f9190614313565b821015611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890614899565b60405180910390fd5b6103e86005611c9e611056565b611ca891906142a2565b611cb29190614313565b821115611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb9061492b565b60405180910390fd5b81600a8190555060019050919050565b601c5481565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611da7612293565b6000601460006101000a81548160ff0219169083151502179055506001905090565b60175481565b611dd7612293565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906149bd565b60405180910390fd5b611e4f81613132565b50565b601b5481565b600b5481565b6000611e68612293565b601054601154611e7891906143d6565b4211611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb090614a29565b60405180910390fd5b6103e8821115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614abb565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611f609190614042565b602060405180830381865afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa19190614af0565b90506000611fcc612710611fbe868561329990919063ffffffff16565b6132af90919063ffffffff16565b90506000811115612005576120047f000000000000000000000000000000000000000000000000000000000000000061dead836132c5565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561207257600080fd5b505af1158015612086573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614b8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90614c21565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122869190613f98565b60405180910390a3505050565b61229b6120c2565b73ffffffffffffffffffffffffffffffffffffffff166122b961167c565b73ffffffffffffffffffffffffffffffffffffffff161461230f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230690614c8d565b60405180910390fd5b565b600061231d8484611d10565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146123975781811015612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614cf9565b60405180910390fd5b61239684848484036120ca565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361247b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247290614e1d565b60405180910390fd5b600081036124945761248f838360006132c5565b61312d565b601260009054906101000a900460ff1615612b57576124b161167c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561251f57506124ef61167c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125585750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612592575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125ab5750600560149054906101000a900460ff16155b15612b5657601260019054906101000a900460ff166126a557602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126655750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269b90614e89565b60405180910390fd5b5b601460009054906101000a900460ff161561286d576126c261167c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561274957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127a157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561286c5743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90614f41565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129105750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129b75760095481111561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614fd3565b60405180910390fd5b600b546129668361126d565b8261297191906143d6565b11156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a99061503f565b60405180910390fd5b612b55565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5a5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612aa957600954811115612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b906150d1565b60405180910390fd5b612b54565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b5357600b54612b068361126d565b82612b1191906143d6565b1115612b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b499061503f565b60405180910390fd5b5b5b5b5b5b6000612b623061126d565b90506000600a548210159050808015612b875750601260029054906101000a900460ff165b8015612ba05750600560149054906101000a900460ff16155b8015612bf65750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c4c5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ca25750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ce6576001600560146101000a81548160ff021916908315150217905550612cca61353b565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612d4c5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612d645750600d60009054906101000a900460ff165b8015612d7f5750600e54600f54612d7b91906143d6565b4210155b8015612dd55750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612de457612de2613822565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e9a5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ea457600090505b6000811561311d57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0757506000601954115b15612fd457612f346064612f266019548861329990919063ffffffff16565b6132af90919063ffffffff16565b9050601954601b5482612f4791906142a2565b612f519190614313565b601e6000828254612f6291906143d6565b92505081905550601954601c5482612f7a91906142a2565b612f849190614313565b601f6000828254612f9591906143d6565b92505081905550601954601a5482612fad91906142a2565b612fb79190614313565b601d6000828254612fc891906143d6565b925050819055506130f9565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302f57506000601554115b156130f85761305c606461304e6015548861329990919063ffffffff16565b6132af90919063ffffffff16565b90506015546017548261306f91906142a2565b6130799190614313565b601e600082825461308a91906143d6565b92505081905550601554601854826130a291906142a2565b6130ac9190614313565b601f60008282546130bd91906143d6565b92505081905550601554601654826130d591906142a2565b6130df9190614313565b601d60008282546130f091906143d6565b925050819055505b5b600081111561310e5761310d8730836132c5565b5b808561311a91906150f1565b94505b6131288787876132c5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836132a791906142a2565b905092915050565b600081836132bd9190614313565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332b90614d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339a90614e1d565b60405180910390fd5b6133ae8383836139e8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90615197565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135229190613f98565b60405180910390a36135358484846139ed565b50505050565b60006135463061126d565b90506000601f54601d54601e5461355d91906143d6565b61356791906143d6565b90506000808314806135795750600082145b1561358657505050613820565b6014600a5461359591906142a2565b8311156135ae576014600a546135ab91906142a2565b92505b6000600283601e54866135c191906142a2565b6135cb9190614313565b6135d59190614313565b905060006135ec82866139f290919063ffffffff16565b905060004790506135fc82613a08565b600061361182476139f290919063ffffffff16565b9050600061363c8761362e601d548561329990919063ffffffff16565b6132af90919063ffffffff16565b9050600061366788613659601f548661329990919063ffffffff16565b6132af90919063ffffffff16565b9050600081838561367891906150f1565b61368291906150f1565b90506000601e819055506000601d819055506000601f81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136e2906151e8565b60006040518083038185875af1925050503d806000811461371f576040519150601f19603f3d011682016040523d82523d6000602084013e613724565b606091505b50508098505060008711801561373a5750600081115b15613787576137498782613c45565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601e5460405161377e939291906151fd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137cd906151e8565b60006040518083038185875af1925050503d806000811461380a576040519150601f19603f3d011682016040523d82523d6000602084013e61380f565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016138869190614042565b602060405180830381865afa1580156138a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138c79190614af0565b905060006138f46127106138e6600c548561329990919063ffffffff16565b6132af90919063ffffffff16565b9050600081111561392d5761392c7f000000000000000000000000000000000000000000000000000000000000000061dead836132c5565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561399a57600080fd5b505af11580156139ae573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a0091906150f1565b905092915050565b6000600267ffffffffffffffff811115613a2557613a24615234565b5b604051908082528060200260200182016040528015613a535781602001602082028036833780820191505090505b5090503081600081518110613a6b57613a6a615263565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b3491906152a7565b81600181518110613b4857613b47615263565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bad307f0000000000000000000000000000000000000000000000000000000000000000846120ca565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c0f9594939291906153cd565b600060405180830381600087803b158015613c2957600080fd5b505af1158015613c3d573d6000803e3d6000fd5b505050505050565b613c70307f0000000000000000000000000000000000000000000000000000000000000000846120ca565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613cd796959493929190615427565b60606040518083038185885af1158015613cf5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d1a9190615488565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d5b578082015181840152602081019050613d40565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d8382613d21565b613d8d8185613d2c565b9350613d9d818560208601613d3d565b613da681613d67565b840191505092915050565b60006020820190508181036000830152613dcb8184613d78565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e0382613dd8565b9050919050565b613e1381613df8565b8114613e1e57600080fd5b50565b600081359050613e3081613e0a565b92915050565b6000819050919050565b613e4981613e36565b8114613e5457600080fd5b50565b600081359050613e6681613e40565b92915050565b60008060408385031215613e8357613e82613dd3565b5b6000613e9185828601613e21565b9250506020613ea285828601613e57565b9150509250929050565b60008115159050919050565b613ec181613eac565b82525050565b6000602082019050613edc6000830184613eb8565b92915050565b600060208284031215613ef857613ef7613dd3565b5b6000613f0684828501613e21565b91505092915050565b6000819050919050565b6000613f34613f2f613f2a84613dd8565b613f0f565b613dd8565b9050919050565b6000613f4682613f19565b9050919050565b6000613f5882613f3b565b9050919050565b613f6881613f4d565b82525050565b6000602082019050613f836000830184613f5f565b92915050565b613f9281613e36565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b600060208284031215613fc957613fc8613dd3565b5b6000613fd784828501613e57565b91505092915050565b600080600060608486031215613ff957613ff8613dd3565b5b600061400786828701613e21565b935050602061401886828701613e21565b925050604061402986828701613e57565b9150509250925092565b61403c81613df8565b82525050565b60006020820190506140576000830184614033565b92915050565b600060ff82169050919050565b6140738161405d565b82525050565b600060208201905061408e600083018461406a565b92915050565b61409d81613eac565b81146140a857600080fd5b50565b6000813590506140ba81614094565b92915050565b6000806000606084860312156140d9576140d8613dd3565b5b60006140e786828701613e57565b93505060206140f886828701613e57565b9250506040614109868287016140ab565b9150509250925092565b6000806040838503121561412a57614129613dd3565b5b600061413885828601613e21565b9250506020614149858286016140ab565b9150509250929050565b60008060006060848603121561416c5761416b613dd3565b5b600061417a86828701613e57565b935050602061418b86828701613e57565b925050604061419c86828701613e57565b9150509250925092565b6000602082840312156141bc576141bb613dd3565b5b60006141ca848285016140ab565b91505092915050565b600080604083850312156141ea576141e9613dd3565b5b60006141f885828601613e21565b925050602061420985828601613e21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425a57607f821691505b60208210810361426d5761426c614213565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ad82613e36565b91506142b883613e36565b92508282026142c681613e36565b915082820484148315176142dd576142dc614273565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061431e82613e36565b915061432983613e36565b925082614339576143386142e4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143a0602f83613d2c565b91506143ab82614344565b604082019050919050565b600060208201905081810360008301526143cf81614393565b9050919050565b60006143e182613e36565b91506143ec83613e36565b925082820190508082111561440457614403614273565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614466603383613d2c565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006144f8603083613d2c565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b6000614564601d83613d2c565b915061456f8261452e565b602082019050919050565b6000602082019050818103600083015261459381614557565b9050919050565b60006040820190506145af6000830185614033565b6145bc6020830184613f89565b9392505050565b6000815190506145d281614094565b92915050565b6000602082840312156145ee576145ed613dd3565b5b60006145fc848285016145c3565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614661603983613d2c565b915061466c82614605565b604082019050919050565b6000602082019050818103600083015261469081614654565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146f3602583613d2c565b91506146fe82614697565b604082019050919050565b60006020820190508181036000830152614722816146e6565b9050919050565b7f4d757374206b656570206665657320617420393025206f72206c657373000000600082015250565b600061475f601d83613d2c565b915061476a82614729565b602082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147f1602483613d2c565b91506147fc82614795565b604082019050919050565b60006020820190508181036000830152614820816147e4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614883603583613d2c565b915061488e82614827565b604082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614915603483613d2c565b9150614920826148b9565b604082019050919050565b6000602082019050818103600083015261494481614908565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149a7602683613d2c565b91506149b28261494b565b604082019050919050565b600060208201905081810360008301526149d68161499a565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614a13602083613d2c565b9150614a1e826149dd565b602082019050919050565b60006020820190508181036000830152614a4281614a06565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614aa5602a83613d2c565b9150614ab082614a49565b604082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b600081519050614aea81613e40565b92915050565b600060208284031215614b0657614b05613dd3565b5b6000614b1484828501614adb565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b79602483613d2c565b9150614b8482614b1d565b604082019050919050565b60006020820190508181036000830152614ba881614b6c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0b602283613d2c565b9150614c1682614baf565b604082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c77602083613d2c565b9150614c8282614c41565b602082019050919050565b60006020820190508181036000830152614ca681614c6a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ce3601d83613d2c565b9150614cee82614cad565b602082019050919050565b60006020820190508181036000830152614d1281614cd6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d75602583613d2c565b9150614d8082614d19565b604082019050919050565b60006020820190508181036000830152614da481614d68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e07602383613d2c565b9150614e1282614dab565b604082019050919050565b60006020820190508181036000830152614e3681614dfa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e73601683613d2c565b9150614e7e82614e3d565b602082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614f2b604983613d2c565b9150614f3682614ea9565b606082019050919050565b60006020820190508181036000830152614f5a81614f1e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fbd603583613d2c565b9150614fc882614f61565b604082019050919050565b60006020820190508181036000830152614fec81614fb0565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615029601383613d2c565b915061503482614ff3565b602082019050919050565b600060208201905081810360008301526150588161501c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150bb603683613d2c565b91506150c68261505f565b604082019050919050565b600060208201905081810360008301526150ea816150ae565b9050919050565b60006150fc82613e36565b915061510783613e36565b925082820390508181111561511f5761511e614273565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615181602683613d2c565b915061518c82615125565b604082019050919050565b600060208201905081810360008301526151b081615174565b9050919050565b600081905092915050565b50565b60006151d26000836151b7565b91506151dd826151c2565b600082019050919050565b60006151f3826151c5565b9150819050919050565b60006060820190506152126000830186613f89565b61521f6020830185613f89565b61522c6040830184613f89565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506152a181613e0a565b92915050565b6000602082840312156152bd576152bc613dd3565b5b60006152cb84828501615292565b91505092915050565b6000819050919050565b60006152f96152f46152ef846152d4565b613f0f565b613e36565b9050919050565b615309816152de565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61534481613df8565b82525050565b6000615356838361533b565b60208301905092915050565b6000602082019050919050565b600061537a8261530f565b615384818561531a565b935061538f8361532b565b8060005b838110156153c05781516153a7888261534a565b97506153b283615362565b925050600181019050615393565b5085935050505092915050565b600060a0820190506153e26000830188613f89565b6153ef6020830187615300565b8181036040830152615401818661536f565b90506154106060830185614033565b61541d6080830184613f89565b9695505050505050565b600060c08201905061543c6000830189614033565b6154496020830188613f89565b6154566040830187615300565b6154636060830186615300565b6154706080830185614033565b61547d60a0830184613f89565b979650505050505050565b6000806000606084860312156154a1576154a0613dd3565b5b60006154af86828701614adb565b93505060206154c086828701614adb565b92505060406154d186828701614adb565b915050925092509256fea2646970667358221220ff097cb0aa533b38a871cec8148e967d0a0149b6cf61004b9c0ad3ba1b9933b564736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103d25760003560e01c80638cd4426d116101fd578063bbc0c74211610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610e76578063f2fde38b14610ea1578063f637434214610eca578063f8b45b0514610ef5578063fe72b27a14610f20576103d9565b8063d85ba06314610db8578063dd62ed3e14610de3578063e2f4560514610e20578063e884f26014610e4b576103d9565b8063c876d0b9116100e7578063c876d0b914610cfa578063c8c8ebe414610d25578063d257b34f14610d50578063d729715f14610d8d576103d9565b8063bbc0c74214610c54578063c024666814610c7f578063c17b5b8c14610ca8578063c18bc19514610cd1576103d9565b80639ec22c0e11610190578063a9059cbb1161015f578063a9059cbb14610b86578063aacebbe314610bc3578063b107594314610bec578063b62496f514610c17576103d9565b80639ec22c0e14610ac85780639fccce3214610af3578063a457c2d714610b1e578063a4c82a0014610b5b576103d9565b806395d89b41116101cc57806395d89b4114610a205780639a7a23d614610a4b5780639c2e4ac614610a745780639e252f0014610a9f576103d9565b80638cd4426d146109785780638da5cb5b146109a157806392136913146109cc578063924de9b7146109f7576103d9565b806349bd5a5e116102ed578063730c1888116102805780637bce5a041161024f5780637bce5a04146108e45780637cb332bb1461090f5780638095d564146109385780638a8c523c14610961576103d9565b8063730c18881461083c578063751039fc146108655780637571336a1461089057806375f0a874146108b9576103d9565b80636a486a8e116102bc5780636a486a8e146107925780636ddd1713146107bd57806370a08231146107e8578063715018a614610825576103d9565b806349bd5a5e146106d45780634a62bb65146106ff5780634fbee1931461072a5780635992704414610767576103d9565b80631f3fed8f116103655780632c3e486c116103345780632c3e486c146106165780632e82f1a014610641578063313ce5671461066c5780633950935114610697576103d9565b80631f3fed8f1461055a578063203e727e1461058557806323b872dd146105ae57806327c8f835146105eb576103d9565b806318160ddd116103a157806318160ddd146104ae578063184c16c5146104d9578063199ffc72146105045780631a8145bb1461052f576103d9565b806306fdde03146103de578063095ea7b31461040957806310d5de53146104465780631694505e14610483576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610f5d565b6040516104009190613db1565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190613e6c565b610fef565b60405161043d9190613ec7565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613ee2565b611012565b60405161047a9190613ec7565b60405180910390f35b34801561048f57600080fd5b50610498611032565b6040516104a59190613f6e565b60405180910390f35b3480156104ba57600080fd5b506104c3611056565b6040516104d09190613f98565b60405180910390f35b3480156104e557600080fd5b506104ee611060565b6040516104fb9190613f98565b60405180910390f35b34801561051057600080fd5b50610519611066565b6040516105269190613f98565b60405180910390f35b34801561053b57600080fd5b5061054461106c565b6040516105519190613f98565b60405180910390f35b34801561056657600080fd5b5061056f611072565b60405161057c9190613f98565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613fb3565b611078565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190613fe0565b611113565b6040516105e29190613ec7565b60405180910390f35b3480156105f757600080fd5b50610600611142565b60405161060d9190614042565b60405180910390f35b34801561062257600080fd5b5061062b611148565b6040516106389190613f98565b60405180910390f35b34801561064d57600080fd5b5061065661114e565b6040516106639190613ec7565b60405180910390f35b34801561067857600080fd5b50610681611161565b60405161068e9190614079565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613e6c565b61116a565b6040516106cb9190613ec7565b60405180910390f35b3480156106e057600080fd5b506106e96111a1565b6040516106f69190614042565b60405180910390f35b34801561070b57600080fd5b506107146111c5565b6040516107219190613ec7565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613ee2565b6111d8565b60405161075e9190613ec7565b60405180910390f35b34801561077357600080fd5b5061077c61122e565b6040516107899190614042565b60405180910390f35b34801561079e57600080fd5b506107a7611254565b6040516107b49190613f98565b60405180910390f35b3480156107c957600080fd5b506107d261125a565b6040516107df9190613ec7565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613ee2565b61126d565b60405161081c9190613f98565b60405180910390f35b34801561083157600080fd5b5061083a6112b5565b005b34801561084857600080fd5b50610863600480360381019061085e91906140c0565b6112c9565b005b34801561087157600080fd5b5061087a611395565b6040516108879190613ec7565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190614113565b6113c1565b005b3480156108c557600080fd5b506108ce611424565b6040516108db9190614042565b60405180910390f35b3480156108f057600080fd5b506108f961144a565b6040516109069190613f98565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613ee2565b611450565b005b34801561094457600080fd5b5061095f600480360381019061095a9190614153565b611518565b005b34801561096d57600080fd5b506109766115a3565b005b34801561098457600080fd5b5061099f600480360381019061099a9190613e6c565b6115ea565b005b3480156109ad57600080fd5b506109b661167c565b6040516109c39190614042565b60405180910390f35b3480156109d857600080fd5b506109e16116a6565b6040516109ee9190613f98565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a1991906141a6565b6116ac565b005b348015610a2c57600080fd5b50610a356116d1565b604051610a429190613db1565b60405180910390f35b348015610a5757600080fd5b50610a726004803603810190610a6d9190614113565b611763565b005b348015610a8057600080fd5b50610a89611807565b604051610a969190613f98565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190613fb3565b61180d565b005b348015610ad457600080fd5b50610add611866565b604051610aea9190613f98565b60405180910390f35b348015610aff57600080fd5b50610b0861186c565b604051610b159190613f98565b60405180910390f35b348015610b2a57600080fd5b50610b456004803603810190610b409190613e6c565b611872565b604051610b529190613ec7565b60405180910390f35b348015610b6757600080fd5b50610b706118e9565b604051610b7d9190613f98565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba89190613e6c565b6118ef565b604051610bba9190613ec7565b60405180910390f35b348015610bcf57600080fd5b50610bea6004803603810190610be59190613ee2565b611912565b005b348015610bf857600080fd5b50610c016119da565b604051610c0e9190614042565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c399190613ee2565b611a00565b604051610c4b9190613ec7565b60405180910390f35b348015610c6057600080fd5b50610c69611a20565b604051610c769190613ec7565b60405180910390f35b348015610c8b57600080fd5b50610ca66004803603810190610ca19190614113565b611a33565b005b348015610cb457600080fd5b50610ccf6004803603810190610cca9190614153565b611ae4565b005b348015610cdd57600080fd5b50610cf86004803603810190610cf39190613fb3565b611b6f565b005b348015610d0657600080fd5b50610d0f611c0a565b604051610d1c9190613ec7565b60405180910390f35b348015610d3157600080fd5b50610d3a611c1d565b604051610d479190613f98565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d729190613fb3565b611c23565b604051610d849190613ec7565b60405180910390f35b348015610d9957600080fd5b50610da2611d04565b604051610daf9190613f98565b60405180910390f35b348015610dc457600080fd5b50610dcd611d0a565b604051610dda9190613f98565b60405180910390f35b348015610def57600080fd5b50610e0a6004803603810190610e0591906141d3565b611d10565b604051610e179190613f98565b60405180910390f35b348015610e2c57600080fd5b50610e35611d97565b604051610e429190613f98565b60405180910390f35b348015610e5757600080fd5b50610e60611d9d565b604051610e6d9190613ec7565b60405180910390f35b348015610e8257600080fd5b50610e8b611dc9565b604051610e989190613f98565b60405180910390f35b348015610ead57600080fd5b50610ec86004803603810190610ec39190613ee2565b611dcf565b005b348015610ed657600080fd5b50610edf611e52565b604051610eec9190613f98565b60405180910390f35b348015610f0157600080fd5b50610f0a611e58565b604051610f179190613f98565b60405180910390f35b348015610f2c57600080fd5b50610f476004803603810190610f429190613fb3565b611e5e565b604051610f549190613ec7565b60405180910390f35b606060038054610f6c90614242565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9890614242565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b5050505050905090565b600080610ffa6120c2565b90506110078185856120ca565b600191505092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60105481565b600c5481565b601e5481565b601d5481565b611080612293565b670de0b6b3a76400006103e86001611096611056565b6110a091906142a2565b6110aa9190614313565b6110b49190614313565b8110156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906143b6565b60405180910390fd5b670de0b6b3a76400008161110a91906142a2565b60098190555050565b60008061111e6120c2565b905061112b858285612311565b61113685858561239d565b60019150509392505050565b61dead81565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b6000806111756120c2565b90506111968185856111878589611d10565b61119191906143d6565b6120ca565b600191505092915050565b7f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b81565b601260009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd612293565b6112c76000613132565b565b6112d1612293565b610258831015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d9061447c565b60405180910390fd5b6103e88211158015611329575060008210155b611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f9061450e565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b600061139f612293565b6000601260006101000a81548160ff0219169083151502179055506001905090565b6113c9612293565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b611458612293565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611520612293565b82601681905550816017819055508060188190555060185460175460165461154891906143d6565b61155291906143d6565b6015819055506032601554111561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061457a565b60405180910390fd5b505050565b6115ab612293565b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b6115f2612293565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61161661167c565b836040518363ffffffff1660e01b815260040161163492919061459a565b6020604051808303816000875af1158015611653573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167791906145d8565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601a5481565b6116b4612293565b80601260026101000a81548160ff02191690831515021790555050565b6060600480546116e090614242565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90614242565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b5050505050905090565b61176b612293565b7f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090614677565b60405180910390fd5b61180382826131f8565b5050565b60185481565b611815612293565b61181d61167c565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611862573d6000803e3d6000fd5b5050565b60115481565b601f5481565b60008061187d6120c2565b9050600061188b8286611d10565b9050838110156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c790614709565b60405180910390fd5b6118dd82868684036120ca565b60019250505092915050565b600f5481565b6000806118fa6120c2565b905061190781858561239d565b600191505092915050565b61191a612293565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60226020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611a3b612293565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ad89190613ec7565b60405180910390a25050565b611aec612293565b82601a8190555081601b8190555080601c81905550601c54601b54601a54611b1491906143d6565b611b1e91906143d6565b601981905550605a6019541115611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614775565b60405180910390fd5b505050565b611b77612293565b670de0b6b3a76400006103e86005611b8d611056565b611b9791906142a2565b611ba19190614313565b611bab9190614313565b811015611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490614807565b60405180910390fd5b670de0b6b3a764000081611c0191906142a2565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b6000611c2d612293565b620186a06001611c3b611056565b611c4591906142a2565b611c4f9190614313565b821015611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890614899565b60405180910390fd5b6103e86005611c9e611056565b611ca891906142a2565b611cb29190614313565b821115611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb9061492b565b60405180910390fd5b81600a8190555060019050919050565b601c5481565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611da7612293565b6000601460006101000a81548160ff0219169083151502179055506001905090565b60175481565b611dd7612293565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906149bd565b60405180910390fd5b611e4f81613132565b50565b601b5481565b600b5481565b6000611e68612293565b601054601154611e7891906143d6565b4211611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb090614a29565b60405180910390fd5b6103e8821115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590614abb565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b6040518263ffffffff1660e01b8152600401611f609190614042565b602060405180830381865afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa19190614af0565b90506000611fcc612710611fbe868561329990919063ffffffff16565b6132af90919063ffffffff16565b90506000811115612005576120047f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b61dead836132c5565b5b60007f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561207257600080fd5b505af1158015612086573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614b8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90614c21565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122869190613f98565b60405180910390a3505050565b61229b6120c2565b73ffffffffffffffffffffffffffffffffffffffff166122b961167c565b73ffffffffffffffffffffffffffffffffffffffff161461230f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230690614c8d565b60405180910390fd5b565b600061231d8484611d10565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146123975781811015612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614cf9565b60405180910390fd5b61239684848484036120ca565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361247b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247290614e1d565b60405180910390fd5b600081036124945761248f838360006132c5565b61312d565b601260009054906101000a900460ff1615612b57576124b161167c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561251f57506124ef61167c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125585750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612592575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125ab5750600560149054906101000a900460ff16155b15612b5657601260019054906101000a900460ff166126a557602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126655750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269b90614e89565b60405180910390fd5b5b601460009054906101000a900460ff161561286d576126c261167c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561274957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127a157507f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561286c5743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90614f41565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129105750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129b75760095481111561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614fd3565b60405180910390fd5b600b546129668361126d565b8261297191906143d6565b11156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a99061503f565b60405180910390fd5b612b55565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5a5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612aa957600954811115612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b906150d1565b60405180910390fd5b612b54565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b5357600b54612b068361126d565b82612b1191906143d6565b1115612b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b499061503f565b60405180910390fd5b5b5b5b5b5b6000612b623061126d565b90506000600a548210159050808015612b875750601260029054906101000a900460ff165b8015612ba05750600560149054906101000a900460ff16155b8015612bf65750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c4c5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ca25750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ce6576001600560146101000a81548160ff021916908315150217905550612cca61353b565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612d4c5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612d645750600d60009054906101000a900460ff165b8015612d7f5750600e54600f54612d7b91906143d6565b4210155b8015612dd55750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612de457612de2613822565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e9a5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ea457600090505b6000811561311d57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0757506000601954115b15612fd457612f346064612f266019548861329990919063ffffffff16565b6132af90919063ffffffff16565b9050601954601b5482612f4791906142a2565b612f519190614313565b601e6000828254612f6291906143d6565b92505081905550601954601c5482612f7a91906142a2565b612f849190614313565b601f6000828254612f9591906143d6565b92505081905550601954601a5482612fad91906142a2565b612fb79190614313565b601d6000828254612fc891906143d6565b925050819055506130f9565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302f57506000601554115b156130f85761305c606461304e6015548861329990919063ffffffff16565b6132af90919063ffffffff16565b90506015546017548261306f91906142a2565b6130799190614313565b601e600082825461308a91906143d6565b92505081905550601554601854826130a291906142a2565b6130ac9190614313565b601f60008282546130bd91906143d6565b92505081905550601554601654826130d591906142a2565b6130df9190614313565b601d60008282546130f091906143d6565b925050819055505b5b600081111561310e5761310d8730836132c5565b5b808561311a91906150f1565b94505b6131288787876132c5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836132a791906142a2565b905092915050565b600081836132bd9190614313565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332b90614d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339a90614e1d565b60405180910390fd5b6133ae8383836139e8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b90615197565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135229190613f98565b60405180910390a36135358484846139ed565b50505050565b60006135463061126d565b90506000601f54601d54601e5461355d91906143d6565b61356791906143d6565b90506000808314806135795750600082145b1561358657505050613820565b6014600a5461359591906142a2565b8311156135ae576014600a546135ab91906142a2565b92505b6000600283601e54866135c191906142a2565b6135cb9190614313565b6135d59190614313565b905060006135ec82866139f290919063ffffffff16565b905060004790506135fc82613a08565b600061361182476139f290919063ffffffff16565b9050600061363c8761362e601d548561329990919063ffffffff16565b6132af90919063ffffffff16565b9050600061366788613659601f548661329990919063ffffffff16565b6132af90919063ffffffff16565b9050600081838561367891906150f1565b61368291906150f1565b90506000601e819055506000601d819055506000601f81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136e2906151e8565b60006040518083038185875af1925050503d806000811461371f576040519150601f19603f3d011682016040523d82523d6000602084013e613724565b606091505b50508098505060008711801561373a5750600081115b15613787576137498782613c45565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601e5460405161377e939291906151fd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137cd906151e8565b60006040518083038185875af1925050503d806000811461380a576040519150601f19603f3d011682016040523d82523d6000602084013e61380f565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b6040518263ffffffff1660e01b81526004016138869190614042565b602060405180830381865afa1580156138a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138c79190614af0565b905060006138f46127106138e6600c548561329990919063ffffffff16565b6132af90919063ffffffff16565b9050600081111561392d5761392c7f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b61dead836132c5565b5b60007f000000000000000000000000a2234555ff3dbc85d93386266747cd6b8afb8e8b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561399a57600080fd5b505af11580156139ae573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a0091906150f1565b905092915050565b6000600267ffffffffffffffff811115613a2557613a24615234565b5b604051908082528060200260200182016040528015613a535781602001602082028036833780820191505090505b5090503081600081518110613a6b57613a6a615263565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b3491906152a7565b81600181518110613b4857613b47615263565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bad307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120ca565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c0f9594939291906153cd565b600060405180830381600087803b158015613c2957600080fd5b505af1158015613c3d573d6000803e3d6000fd5b505050505050565b613c70307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120ca565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613cd796959493929190615427565b60606040518083038185885af1158015613cf5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d1a9190615488565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d5b578082015181840152602081019050613d40565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d8382613d21565b613d8d8185613d2c565b9350613d9d818560208601613d3d565b613da681613d67565b840191505092915050565b60006020820190508181036000830152613dcb8184613d78565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e0382613dd8565b9050919050565b613e1381613df8565b8114613e1e57600080fd5b50565b600081359050613e3081613e0a565b92915050565b6000819050919050565b613e4981613e36565b8114613e5457600080fd5b50565b600081359050613e6681613e40565b92915050565b60008060408385031215613e8357613e82613dd3565b5b6000613e9185828601613e21565b9250506020613ea285828601613e57565b9150509250929050565b60008115159050919050565b613ec181613eac565b82525050565b6000602082019050613edc6000830184613eb8565b92915050565b600060208284031215613ef857613ef7613dd3565b5b6000613f0684828501613e21565b91505092915050565b6000819050919050565b6000613f34613f2f613f2a84613dd8565b613f0f565b613dd8565b9050919050565b6000613f4682613f19565b9050919050565b6000613f5882613f3b565b9050919050565b613f6881613f4d565b82525050565b6000602082019050613f836000830184613f5f565b92915050565b613f9281613e36565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b600060208284031215613fc957613fc8613dd3565b5b6000613fd784828501613e57565b91505092915050565b600080600060608486031215613ff957613ff8613dd3565b5b600061400786828701613e21565b935050602061401886828701613e21565b925050604061402986828701613e57565b9150509250925092565b61403c81613df8565b82525050565b60006020820190506140576000830184614033565b92915050565b600060ff82169050919050565b6140738161405d565b82525050565b600060208201905061408e600083018461406a565b92915050565b61409d81613eac565b81146140a857600080fd5b50565b6000813590506140ba81614094565b92915050565b6000806000606084860312156140d9576140d8613dd3565b5b60006140e786828701613e57565b93505060206140f886828701613e57565b9250506040614109868287016140ab565b9150509250925092565b6000806040838503121561412a57614129613dd3565b5b600061413885828601613e21565b9250506020614149858286016140ab565b9150509250929050565b60008060006060848603121561416c5761416b613dd3565b5b600061417a86828701613e57565b935050602061418b86828701613e57565b925050604061419c86828701613e57565b9150509250925092565b6000602082840312156141bc576141bb613dd3565b5b60006141ca848285016140ab565b91505092915050565b600080604083850312156141ea576141e9613dd3565b5b60006141f885828601613e21565b925050602061420985828601613e21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425a57607f821691505b60208210810361426d5761426c614213565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ad82613e36565b91506142b883613e36565b92508282026142c681613e36565b915082820484148315176142dd576142dc614273565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061431e82613e36565b915061432983613e36565b925082614339576143386142e4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143a0602f83613d2c565b91506143ab82614344565b604082019050919050565b600060208201905081810360008301526143cf81614393565b9050919050565b60006143e182613e36565b91506143ec83613e36565b925082820190508082111561440457614403614273565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614466603383613d2c565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006144f8603083613d2c565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f4d757374206b656570206665657320617420353025206f72206c657373000000600082015250565b6000614564601d83613d2c565b915061456f8261452e565b602082019050919050565b6000602082019050818103600083015261459381614557565b9050919050565b60006040820190506145af6000830185614033565b6145bc6020830184613f89565b9392505050565b6000815190506145d281614094565b92915050565b6000602082840312156145ee576145ed613dd3565b5b60006145fc848285016145c3565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614661603983613d2c565b915061466c82614605565b604082019050919050565b6000602082019050818103600083015261469081614654565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146f3602583613d2c565b91506146fe82614697565b604082019050919050565b60006020820190508181036000830152614722816146e6565b9050919050565b7f4d757374206b656570206665657320617420393025206f72206c657373000000600082015250565b600061475f601d83613d2c565b915061476a82614729565b602082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147f1602483613d2c565b91506147fc82614795565b604082019050919050565b60006020820190508181036000830152614820816147e4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614883603583613d2c565b915061488e82614827565b604082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614915603483613d2c565b9150614920826148b9565b604082019050919050565b6000602082019050818103600083015261494481614908565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149a7602683613d2c565b91506149b28261494b565b604082019050919050565b600060208201905081810360008301526149d68161499a565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614a13602083613d2c565b9150614a1e826149dd565b602082019050919050565b60006020820190508181036000830152614a4281614a06565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614aa5602a83613d2c565b9150614ab082614a49565b604082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b600081519050614aea81613e40565b92915050565b600060208284031215614b0657614b05613dd3565b5b6000614b1484828501614adb565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b79602483613d2c565b9150614b8482614b1d565b604082019050919050565b60006020820190508181036000830152614ba881614b6c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0b602283613d2c565b9150614c1682614baf565b604082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c77602083613d2c565b9150614c8282614c41565b602082019050919050565b60006020820190508181036000830152614ca681614c6a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ce3601d83613d2c565b9150614cee82614cad565b602082019050919050565b60006020820190508181036000830152614d1281614cd6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d75602583613d2c565b9150614d8082614d19565b604082019050919050565b60006020820190508181036000830152614da481614d68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e07602383613d2c565b9150614e1282614dab565b604082019050919050565b60006020820190508181036000830152614e3681614dfa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e73601683613d2c565b9150614e7e82614e3d565b602082019050919050565b60006020820190508181036000830152614ea281614e66565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614f2b604983613d2c565b9150614f3682614ea9565b606082019050919050565b60006020820190508181036000830152614f5a81614f1e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fbd603583613d2c565b9150614fc882614f61565b604082019050919050565b60006020820190508181036000830152614fec81614fb0565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615029601383613d2c565b915061503482614ff3565b602082019050919050565b600060208201905081810360008301526150588161501c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150bb603683613d2c565b91506150c68261505f565b604082019050919050565b600060208201905081810360008301526150ea816150ae565b9050919050565b60006150fc82613e36565b915061510783613e36565b925082820390508181111561511f5761511e614273565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615181602683613d2c565b915061518c82615125565b604082019050919050565b600060208201905081810360008301526151b081615174565b9050919050565b600081905092915050565b50565b60006151d26000836151b7565b91506151dd826151c2565b600082019050919050565b60006151f3826151c5565b9150819050919050565b60006060820190506152126000830186613f89565b61521f6020830185613f89565b61522c6040830184613f89565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506152a181613e0a565b92915050565b6000602082840312156152bd576152bc613dd3565b5b60006152cb84828501615292565b91505092915050565b6000819050919050565b60006152f96152f46152ef846152d4565b613f0f565b613e36565b9050919050565b615309816152de565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61534481613df8565b82525050565b6000615356838361533b565b60208301905092915050565b6000602082019050919050565b600061537a8261530f565b615384818561531a565b935061538f8361532b565b8060005b838110156153c05781516153a7888261534a565b97506153b283615362565b925050600181019050615393565b5085935050505092915050565b600060a0820190506153e26000830188613f89565b6153ef6020830187615300565b8181036040830152615401818661536f565b90506154106060830185614033565b61541d6080830184613f89565b9695505050505050565b600060c08201905061543c6000830189614033565b6154496020830188613f89565b6154566040830187615300565b6154636060830186615300565b6154706080830185614033565b61547d60a0830184613f89565b979650505050505050565b6000806000606084860312156154a1576154a0613dd3565b5b60006154af86828701614adb565b93505060206154c086828701614adb565b92505060406154d186828701614adb565b915050925092509256fea2646970667358221220ff097cb0aa533b38a871cec8148e967d0a0149b6cf61004b9c0ad3ba1b9933b564736f6c63430008110033

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

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