ETH Price: $3,223.13 (+1.63%)

Token

Nodeless Sniper (NODELESS)
 

Overview

Max Total Supply

1,000,000,000 NODELESS

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,404,999.999999999999999999 NODELESS

Value
$0.00
0x266e02460079fb73b3bd33b1046022e70a20ecd4
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:
NodelessSniper

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : nodeless.sol
/* Nodeless Sniper

   Website: https://nodeless.app
   Telegram: https://t.me/nodeless */

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

import "@openzeppelin/contracts/access/Ownable.sol"; 
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; 
import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; 
import "@openzeppelin/contracts/utils/math/SafeMath.sol"; 

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract NodelessSniper 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 devWallet;

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

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Nodeless Sniper", "NODELESS") {
        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 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 4;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 4;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 10_000_001 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_002 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        devWallet = owner(); // set as dev wallet

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

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeAllLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFee(uint256 _liquidityFee, uint256 _devFee)
        external
        onlyOwner
    {
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFee(uint256 _liquidityFee, uint256 _devFee)
        external
        onlyOwner
    {
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% 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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = 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;
        }

        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 * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / 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 + 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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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;
        }
        _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;
        _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;
        }
        _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 5 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 7 : 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 7 of 7 : 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);
}

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":"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":"devWalletUpdated","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":"buyDevFee","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFee","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600f81526020017f4e6f64656c65737320536e6970657200000000000000000000000000000000008152506040518060400160405280600881526020017f4e4f44454c4553530000000000000000000000000000000000000000000000008152508160039081620000fb919062000c5d565b5080600490816200010d919062000c5d565b50505062000130620001246200051160201b60201c565b6200051960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620005df60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000dae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000dae565b6040518363ffffffff1660e01b8152600401620002af92919062000df1565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000dae565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620005df60201b60201c565b6200035260a05160016200064a60201b60201c565b60006001905060006004905060006001905060006004905060006b033b2e3c9fd0803ce800000090506a08459523f4b7fbf16400006007819055506a108b2a47e96ff7e2c80000600981905550612710600582620003b1919062000e4d565b620003bd919062000edd565b60088190555084600e8190555083600f81905550600f54600e54620003e3919062000f15565b600d81905550826011819055508160128190555060125460115462000409919062000f15565b6010819055506200041f620006eb60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200048162000473620006eb60201b60201c565b60016200071560201b60201c565b620004943060016200071560201b60201c565b620004a961dead60016200071560201b60201c565b620004cb620004bd620006eb60201b60201c565b6001620005df60201b60201c565b620004de306001620005df60201b60201c565b620004f361dead6001620005df60201b60201c565b620005053382620007d060201b60201c565b505050505050620010ad565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005ef6200094860201b60201c565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007256200094860201b60201c565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007c4919062000f6d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008399062000feb565b60405180910390fd5b6200085660008383620009d960201b60201c565b80600260008282546200086a919062000f15565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008c1919062000f15565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200092891906200101e565b60405180910390a36200094460008383620009de60201b60201c565b5050565b620009586200051160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200097e620006eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ce906200108b565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6557607f821691505b60208210810362000a7b5762000a7a62000a1d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ae57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aa6565b62000af1868362000aa6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b3e62000b3862000b328462000b09565b62000b13565b62000b09565b9050919050565b6000819050919050565b62000b5a8362000b1d565b62000b7262000b698262000b45565b84845462000ab3565b825550505050565b600090565b62000b8962000b7a565b62000b9681848462000b4f565b505050565b5b8181101562000bbe5762000bb260008262000b7f565b60018101905062000b9c565b5050565b601f82111562000c0d5762000bd78162000a81565b62000be28462000a96565b8101602085101562000bf2578190505b62000c0a62000c018562000a96565b83018262000b9b565b50505b505050565b600082821c905092915050565b600062000c326000198460080262000c12565b1980831691505092915050565b600062000c4d838362000c1f565b9150826002028217905092915050565b62000c6882620009e3565b67ffffffffffffffff81111562000c845762000c83620009ee565b5b62000c90825462000a4c565b62000c9d82828562000bc2565b600060209050601f83116001811462000cd5576000841562000cc0578287015190505b62000ccc858262000c3f565b86555062000d3c565b601f19841662000ce58662000a81565b60005b8281101562000d0f5784890151825560018201915060208501945060208101905062000ce8565b8683101562000d2f578489015162000d2b601f89168262000c1f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d768262000d49565b9050919050565b62000d888162000d69565b811462000d9457600080fd5b50565b60008151905062000da88162000d7d565b92915050565b60006020828403121562000dc75762000dc662000d44565b5b600062000dd78482850162000d97565b91505092915050565b62000deb8162000d69565b82525050565b600060408201905062000e08600083018562000de0565b62000e17602083018462000de0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e5a8262000b09565b915062000e678362000b09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ea35762000ea262000e1e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000eea8262000b09565b915062000ef78362000b09565b92508262000f0a5762000f0962000eae565b5b828204905092915050565b600062000f228262000b09565b915062000f2f8362000b09565b925082820190508082111562000f4a5762000f4962000e1e565b5b92915050565b60008115159050919050565b62000f678162000f50565b82525050565b600060208201905062000f84600083018462000f5c565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fd3601f8362000f8a565b915062000fe08262000f9b565b602082019050919050565b60006020820190508181036000830152620010068162000fc4565b9050919050565b620010188162000b09565b82525050565b60006020820190506200103560008301846200100d565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200107360208362000f8a565b915062001080826200103b565b602082019050919050565b60006020820190508181036000830152620010a68162001064565b9050919050565b60805160a0516144256200110b60003960008181610e66015281816111900152611dd5015260008181610c5a01528181611d7d01528181612d2f01528181612e1001528181612e3701528181612ed30152612efa01526144256000f3fe6080604052600436106102b25760003560e01c8063924de9b711610175578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ad9578063f2fde38b14610b04578063f637434214610b2d578063f8b45b0514610b58576102b9565b8063dd62ed3e14610a46578063e2f4560514610a83578063e884f26014610aae576102b9565b8063c18bc19514610934578063c876d0b91461095d578063c8c8ebe414610988578063d257b34f146109b3578063d85ba063146109f0578063db05e5cb14610a1b576102b9565b8063a457c2d71161012e578063a457c2d714610800578063a9059cbb1461083d578063b62496f51461087a578063bbc0c742146108b7578063beffc7d4146108e2578063c02466681461090b576102b9565b8063924de9b71461070257806395d89b411461072b5780639a7a23d6146107565780639c3b4fdc1461077f5780639fccce32146107aa578063a0d82dc5146107d5576102b9565b806349bd5a5e1161021957806370a08231116101d257806370a0823114610618578063715018a6146106555780637571336a1461066c5780638a8c523c146106955780638da5cb5b146106ac5780638ea5220f146106d7576102b9565b806349bd5a5e146105065780634a62bb65146105315780634fbee1931461055c578063610e34b9146105995780636a486a8e146105c25780636ddd1713146105ed576102b9565b80631a8145bb1161026b5780631a8145bb146103e2578063203e727e1461040d57806323b872dd1461043657806327c8f83514610473578063313ce5671461049e57806339509351146104c9576102b9565b806306fdde03146102be578063095ea7b3146102e957806310d5de53146103265780631694505e1461036357806318160ddd1461038e5780631816467f146103b9576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610b83565b6040516102e09190613039565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906130f4565b610c15565b60405161031d919061314f565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061316a565b610c38565b60405161035a919061314f565b60405180910390f35b34801561036f57600080fd5b50610378610c58565b60405161038591906131f6565b60405180910390f35b34801561039a57600080fd5b506103a3610c7c565b6040516103b09190613220565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061316a565b610c86565b005b3480156103ee57600080fd5b506103f7610d4e565b6040516104049190613220565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f919061323b565b610d54565b005b34801561044257600080fd5b5061045d60048036038101906104589190613268565b610def565b60405161046a919061314f565b60405180910390f35b34801561047f57600080fd5b50610488610e1e565b60405161049591906132ca565b60405180910390f35b3480156104aa57600080fd5b506104b3610e24565b6040516104c09190613301565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906130f4565b610e2d565b6040516104fd919061314f565b60405180910390f35b34801561051257600080fd5b5061051b610e64565b60405161052891906132ca565b60405180910390f35b34801561053d57600080fd5b50610546610e88565b604051610553919061314f565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e919061316a565b610e9b565b604051610590919061314f565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061331c565b610ef1565b005b3480156105ce57600080fd5b506105d7610f67565b6040516105e49190613220565b60405180910390f35b3480156105f957600080fd5b50610602610f6d565b60405161060f919061314f565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a919061316a565b610f80565b60405161064c9190613220565b60405180910390f35b34801561066157600080fd5b5061066a610fc8565b005b34801561067857600080fd5b50610693600480360381019061068e9190613388565b610fdc565b005b3480156106a157600080fd5b506106aa61103f565b005b3480156106b857600080fd5b506106c161107f565b6040516106ce91906132ca565b60405180910390f35b3480156106e357600080fd5b506106ec6110a9565b6040516106f991906132ca565b60405180910390f35b34801561070e57600080fd5b50610729600480360381019061072491906133c8565b6110cf565b005b34801561073757600080fd5b506107406110f4565b60405161074d9190613039565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613388565b611186565b005b34801561078b57600080fd5b5061079461122a565b6040516107a19190613220565b60405180910390f35b3480156107b657600080fd5b506107bf611230565b6040516107cc9190613220565b60405180910390f35b3480156107e157600080fd5b506107ea611236565b6040516107f79190613220565b60405180910390f35b34801561080c57600080fd5b50610827600480360381019061082291906130f4565b61123c565b604051610834919061314f565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f91906130f4565b6112b3565b604051610871919061314f565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c919061316a565b6112d6565b6040516108ae919061314f565b60405180910390f35b3480156108c357600080fd5b506108cc6112f6565b6040516108d9919061314f565b60405180910390f35b3480156108ee57600080fd5b506109096004803603810190610904919061331c565b611309565b005b34801561091757600080fd5b50610932600480360381019061092d9190613388565b61137f565b005b34801561094057600080fd5b5061095b6004803603810190610956919061323b565b611430565b005b34801561096957600080fd5b506109726114cb565b60405161097f919061314f565b60405180910390f35b34801561099457600080fd5b5061099d6114de565b6040516109aa9190613220565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d5919061323b565b6114e4565b6040516109e7919061314f565b60405180910390f35b3480156109fc57600080fd5b50610a056115c5565b604051610a129190613220565b60405180910390f35b348015610a2757600080fd5b50610a306115cb565b604051610a3d919061314f565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a6891906133f5565b6115f7565b604051610a7a9190613220565b60405180910390f35b348015610a8f57600080fd5b50610a9861167e565b604051610aa59190613220565b60405180910390f35b348015610aba57600080fd5b50610ac3611684565b604051610ad0919061314f565b60405180910390f35b348015610ae557600080fd5b50610aee6116b0565b604051610afb9190613220565b60405180910390f35b348015610b1057600080fd5b50610b2b6004803603810190610b26919061316a565b6116b6565b005b348015610b3957600080fd5b50610b42611739565b604051610b4f9190613220565b60405180910390f35b348015610b6457600080fd5b50610b6d61173f565b604051610b7a9190613220565b60405180910390f35b606060038054610b9290613464565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe90613464565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b5050505050905090565b600080610c20611745565b9050610c2d81858561174d565b600191505092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c8e611916565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610d5c611916565b670de0b6b3a76400006103e8600f610d72610c7c565b610d7c91906134c4565b610d86919061354d565b610d90919061354d565b811015610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906135f0565b60405180910390fd5b670de0b6b3a764000081610de691906134c4565b60078190555050565b600080610dfa611745565b9050610e07858285611994565b610e12858585611a20565b60019150509392505050565b61dead81565b60006012905090565b600080610e38611745565b9050610e59818585610e4a85896115f7565b610e549190613610565b61174d565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610ef9611916565b81600e8190555080600f81905550600f54600e54610f179190613610565b600d81905550600a600d541115610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613690565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fd0611916565b610fda6000612651565b565b610fe4611916565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611047611916565b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110d7611916565b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461110390613464565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90613464565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b5050505050905090565b61118e611916565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390613722565b60405180910390fd5b6112268282612717565b5050565b600f5481565b60145481565b60125481565b600080611247611745565b9050600061125582866115f7565b90508381101561129a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611291906137b4565b60405180910390fd5b6112a7828686840361174d565b60019250505092915050565b6000806112be611745565b90506112cb818585611a20565b600191505092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611311611916565b816011819055508060128190555060125460115461132f9190613610565b601081905550600a601054111561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613690565b60405180910390fd5b5050565b611387611916565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611424919061314f565b60405180910390a25050565b611438611916565b670de0b6b3a76400006103e8600f61144e610c7c565b61145891906134c4565b611462919061354d565b61146c919061354d565b8110156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590613846565b60405180910390fd5b670de0b6b3a7640000816114c291906134c4565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006114ee611916565b620186a060016114fc610c7c565b61150691906134c4565b611510919061354d565b821015611552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611549906138d8565b60405180910390fd5b6103e8600561155f610c7c565b61156991906134c4565b611573919061354d565b8211156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061396a565b60405180910390fd5b8160088190555060019050919050565b600d5481565b60006115d5611916565b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600061168e611916565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b6116be611916565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906139fc565b60405180910390fd5b61173681612651565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613b20565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119099190613220565b60405180910390a3505050565b61191e611745565b73ffffffffffffffffffffffffffffffffffffffff1661193c61107f565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613b8c565b60405180910390fd5b565b60006119a084846115f7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a1a5781811015611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613bf8565b60405180910390fd5b611a19848484840361174d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613d1c565b60405180910390fd5b60008103611b1757611b12838360006127b8565b61264c565b600a60009054906101000a900460ff16156121da57611b3461107f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ba25750611b7261107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bdb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c15575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c2e5750600560149054906101000a900460ff16155b156121d957600a60019054906101000a900460ff16611d2857601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ce85750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613d88565b60405180910390fd5b5b600c60009054906101000a900460ff1615611ef057611d4561107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611dcc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e2457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611eef5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190613e40565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f935750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561203a57600754811115611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490613ed2565b60405180910390fd5b600954611fe983610f80565b82611ff49190613610565b1115612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613f3e565b60405180910390fd5b6121d8565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120dd5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561212c57600754811115612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613fd0565b60405180910390fd5b6121d7565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121d65760095461218983610f80565b826121949190613610565b11156121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90613f3e565b60405180910390fd5b5b5b5b5b5b60006121e530610f80565b90506000600854821015905080801561220a5750600a60029054906101000a900460ff165b80156122235750600560149054906101000a900460ff16155b80156122795750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122cf5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123255750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612369576001600560146101000a81548160ff02191690831515021790555061234d612a37565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241f5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242957600090505b6000811561263c57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561248c57506000601054115b15612526576124b960646124ab60105488612c4490919063ffffffff16565b612c5a90919063ffffffff16565b9050601054601154826124cc91906134c4565b6124d6919061354d565b601360008282546124e79190613610565b92505081905550601054601254826124ff91906134c4565b612509919061354d565b6014600082825461251a9190613610565b92505081905550612618565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561258157506000600d54115b15612617576125ae60646125a0600d5488612c4490919063ffffffff16565b612c5a90919063ffffffff16565b9050600d54600e54826125c191906134c4565b6125cb919061354d565b601360008282546125dc9190613610565b92505081905550600d54600f54826125f491906134c4565b6125fe919061354d565b6014600082825461260f9190613610565b925050819055505b5b600081111561262d5761262c8730836127b8565b5b80856126399190613ff0565b94505b6126478787876127b8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90613c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90613d1c565b60405180910390fd5b6128a1838383612c70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e90614096565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ba9190613610565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a1e9190613220565b60405180910390a3612a31848484612c75565b50505050565b6000612a4230610f80565b90506000601454601354612a569190613610565b9050600080831480612a685750600082145b15612a7557505050612c42565b6014600854612a8491906134c4565b831115612a9d576014600854612a9a91906134c4565b92505b600060028360135486612ab091906134c4565b612aba919061354d565b612ac4919061354d565b90506000612adb8286612c7a90919063ffffffff16565b90506000479050612aeb82612c90565b6000612b008247612c7a90919063ffffffff16565b90506000612b2b87612b1d60145485612c4490919063ffffffff16565b612c5a90919063ffffffff16565b905060008183612b3b9190613ff0565b905060006013819055506000601481905550600086118015612b5d5750600081115b15612baa57612b6c8682612ecd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601354604051612ba1939291906140b6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bf09061411e565b60006040518083038185875af1925050503d8060008114612c2d576040519150601f19603f3d011682016040523d82523d6000602084013e612c32565b606091505b5050809750505050505050505050505b565b60008183612c5291906134c4565b905092915050565b60008183612c68919061354d565b905092915050565b505050565b505050565b60008183612c889190613ff0565b905092915050565b6000600267ffffffffffffffff811115612cad57612cac614133565b5b604051908082528060200260200182016040528015612cdb5781602001602082028036833780820191505090505b5090503081600081518110612cf357612cf2614162565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dbc91906141a6565b81600181518110612dd057612dcf614162565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e35307f00000000000000000000000000000000000000000000000000000000000000008461174d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e979594939291906142cc565b600060405180830381600087803b158015612eb157600080fd5b505af1158015612ec5573d6000803e3d6000fd5b505050505050565b612ef8307f00000000000000000000000000000000000000000000000000000000000000008461174d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612f5f96959493929190614326565b60606040518083038185885af1158015612f7d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fa2919061439c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fe3578082015181840152602081019050612fc8565b60008484015250505050565b6000601f19601f8301169050919050565b600061300b82612fa9565b6130158185612fb4565b9350613025818560208601612fc5565b61302e81612fef565b840191505092915050565b600060208201905081810360008301526130538184613000565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061308b82613060565b9050919050565b61309b81613080565b81146130a657600080fd5b50565b6000813590506130b881613092565b92915050565b6000819050919050565b6130d1816130be565b81146130dc57600080fd5b50565b6000813590506130ee816130c8565b92915050565b6000806040838503121561310b5761310a61305b565b5b6000613119858286016130a9565b925050602061312a858286016130df565b9150509250929050565b60008115159050919050565b61314981613134565b82525050565b60006020820190506131646000830184613140565b92915050565b6000602082840312156131805761317f61305b565b5b600061318e848285016130a9565b91505092915050565b6000819050919050565b60006131bc6131b76131b284613060565b613197565b613060565b9050919050565b60006131ce826131a1565b9050919050565b60006131e0826131c3565b9050919050565b6131f0816131d5565b82525050565b600060208201905061320b60008301846131e7565b92915050565b61321a816130be565b82525050565b60006020820190506132356000830184613211565b92915050565b6000602082840312156132515761325061305b565b5b600061325f848285016130df565b91505092915050565b6000806000606084860312156132815761328061305b565b5b600061328f868287016130a9565b93505060206132a0868287016130a9565b92505060406132b1868287016130df565b9150509250925092565b6132c481613080565b82525050565b60006020820190506132df60008301846132bb565b92915050565b600060ff82169050919050565b6132fb816132e5565b82525050565b600060208201905061331660008301846132f2565b92915050565b600080604083850312156133335761333261305b565b5b6000613341858286016130df565b9250506020613352858286016130df565b9150509250929050565b61336581613134565b811461337057600080fd5b50565b6000813590506133828161335c565b92915050565b6000806040838503121561339f5761339e61305b565b5b60006133ad858286016130a9565b92505060206133be85828601613373565b9150509250929050565b6000602082840312156133de576133dd61305b565b5b60006133ec84828501613373565b91505092915050565b6000806040838503121561340c5761340b61305b565b5b600061341a858286016130a9565b925050602061342b858286016130a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061347c57607f821691505b60208210810361348f5761348e613435565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134cf826130be565b91506134da836130be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351357613512613495565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613558826130be565b9150613563836130be565b9250826135735761357261351e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312e35250000000000000000000000000000000000602082015250565b60006135da602f83612fb4565b91506135e58261357e565b604082019050919050565b60006020820190508181036000830152613609816135cd565b9050919050565b600061361b826130be565b9150613626836130be565b925082820190508082111561363e5761363d613495565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061367a601d83612fb4565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061370c603983612fb4565b9150613717826136b0565b604082019050919050565b6000602082019050818103600083015261373b816136ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061379e602583612fb4565b91506137a982613742565b604082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613830602483612fb4565b915061383b826137d4565b604082019050919050565b6000602082019050818103600083015261385f81613823565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006138c2603583612fb4565b91506138cd82613866565b604082019050919050565b600060208201905081810360008301526138f1816138b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613954603483612fb4565b915061395f826138f8565b604082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139e6602683612fb4565b91506139f18261398a565b604082019050919050565b60006020820190508181036000830152613a15816139d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a78602483612fb4565b9150613a8382613a1c565b604082019050919050565b60006020820190508181036000830152613aa781613a6b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b0a602283612fb4565b9150613b1582613aae565b604082019050919050565b60006020820190508181036000830152613b3981613afd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b76602083612fb4565b9150613b8182613b40565b602082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613be2601d83612fb4565b9150613bed82613bac565b602082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c74602583612fb4565b9150613c7f82613c18565b604082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d06602383612fb4565b9150613d1182613caa565b604082019050919050565b60006020820190508181036000830152613d3581613cf9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d72601683612fb4565b9150613d7d82613d3c565b602082019050919050565b60006020820190508181036000830152613da181613d65565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613e2a604983612fb4565b9150613e3582613da8565b606082019050919050565b60006020820190508181036000830152613e5981613e1d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613ebc603583612fb4565b9150613ec782613e60565b604082019050919050565b60006020820190508181036000830152613eeb81613eaf565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613f28601383612fb4565b9150613f3382613ef2565b602082019050919050565b60006020820190508181036000830152613f5781613f1b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613fba603683612fb4565b9150613fc582613f5e565b604082019050919050565b60006020820190508181036000830152613fe981613fad565b9050919050565b6000613ffb826130be565b9150614006836130be565b925082820390508181111561401e5761401d613495565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614080602683612fb4565b915061408b82614024565b604082019050919050565b600060208201905081810360008301526140af81614073565b9050919050565b60006060820190506140cb6000830186613211565b6140d86020830185613211565b6140e56040830184613211565b949350505050565b600081905092915050565b50565b60006141086000836140ed565b9150614113826140f8565b600082019050919050565b6000614129826140fb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506141a081613092565b92915050565b6000602082840312156141bc576141bb61305b565b5b60006141ca84828501614191565b91505092915050565b6000819050919050565b60006141f86141f36141ee846141d3565b613197565b6130be565b9050919050565b614208816141dd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61424381613080565b82525050565b6000614255838361423a565b60208301905092915050565b6000602082019050919050565b60006142798261420e565b6142838185614219565b935061428e8361422a565b8060005b838110156142bf5781516142a68882614249565b97506142b183614261565b925050600181019050614292565b5085935050505092915050565b600060a0820190506142e16000830188613211565b6142ee60208301876141ff565b8181036040830152614300818661426e565b905061430f60608301856132bb565b61431c6080830184613211565b9695505050505050565b600060c08201905061433b60008301896132bb565b6143486020830188613211565b61435560408301876141ff565b61436260608301866141ff565b61436f60808301856132bb565b61437c60a0830184613211565b979650505050505050565b600081519050614396816130c8565b92915050565b6000806000606084860312156143b5576143b461305b565b5b60006143c386828701614387565b93505060206143d486828701614387565b92505060406143e586828701614387565b915050925092509256fea2646970667358221220f97ae03a6d6b4003a1795b6ebdde882261814dc7e51d74855fc49f500f50b8ab64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c8063924de9b711610175578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ad9578063f2fde38b14610b04578063f637434214610b2d578063f8b45b0514610b58576102b9565b8063dd62ed3e14610a46578063e2f4560514610a83578063e884f26014610aae576102b9565b8063c18bc19514610934578063c876d0b91461095d578063c8c8ebe414610988578063d257b34f146109b3578063d85ba063146109f0578063db05e5cb14610a1b576102b9565b8063a457c2d71161012e578063a457c2d714610800578063a9059cbb1461083d578063b62496f51461087a578063bbc0c742146108b7578063beffc7d4146108e2578063c02466681461090b576102b9565b8063924de9b71461070257806395d89b411461072b5780639a7a23d6146107565780639c3b4fdc1461077f5780639fccce32146107aa578063a0d82dc5146107d5576102b9565b806349bd5a5e1161021957806370a08231116101d257806370a0823114610618578063715018a6146106555780637571336a1461066c5780638a8c523c146106955780638da5cb5b146106ac5780638ea5220f146106d7576102b9565b806349bd5a5e146105065780634a62bb65146105315780634fbee1931461055c578063610e34b9146105995780636a486a8e146105c25780636ddd1713146105ed576102b9565b80631a8145bb1161026b5780631a8145bb146103e2578063203e727e1461040d57806323b872dd1461043657806327c8f83514610473578063313ce5671461049e57806339509351146104c9576102b9565b806306fdde03146102be578063095ea7b3146102e957806310d5de53146103265780631694505e1461036357806318160ddd1461038e5780631816467f146103b9576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610b83565b6040516102e09190613039565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906130f4565b610c15565b60405161031d919061314f565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061316a565b610c38565b60405161035a919061314f565b60405180910390f35b34801561036f57600080fd5b50610378610c58565b60405161038591906131f6565b60405180910390f35b34801561039a57600080fd5b506103a3610c7c565b6040516103b09190613220565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db919061316a565b610c86565b005b3480156103ee57600080fd5b506103f7610d4e565b6040516104049190613220565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f919061323b565b610d54565b005b34801561044257600080fd5b5061045d60048036038101906104589190613268565b610def565b60405161046a919061314f565b60405180910390f35b34801561047f57600080fd5b50610488610e1e565b60405161049591906132ca565b60405180910390f35b3480156104aa57600080fd5b506104b3610e24565b6040516104c09190613301565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906130f4565b610e2d565b6040516104fd919061314f565b60405180910390f35b34801561051257600080fd5b5061051b610e64565b60405161052891906132ca565b60405180910390f35b34801561053d57600080fd5b50610546610e88565b604051610553919061314f565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e919061316a565b610e9b565b604051610590919061314f565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061331c565b610ef1565b005b3480156105ce57600080fd5b506105d7610f67565b6040516105e49190613220565b60405180910390f35b3480156105f957600080fd5b50610602610f6d565b60405161060f919061314f565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a919061316a565b610f80565b60405161064c9190613220565b60405180910390f35b34801561066157600080fd5b5061066a610fc8565b005b34801561067857600080fd5b50610693600480360381019061068e9190613388565b610fdc565b005b3480156106a157600080fd5b506106aa61103f565b005b3480156106b857600080fd5b506106c161107f565b6040516106ce91906132ca565b60405180910390f35b3480156106e357600080fd5b506106ec6110a9565b6040516106f991906132ca565b60405180910390f35b34801561070e57600080fd5b50610729600480360381019061072491906133c8565b6110cf565b005b34801561073757600080fd5b506107406110f4565b60405161074d9190613039565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613388565b611186565b005b34801561078b57600080fd5b5061079461122a565b6040516107a19190613220565b60405180910390f35b3480156107b657600080fd5b506107bf611230565b6040516107cc9190613220565b60405180910390f35b3480156107e157600080fd5b506107ea611236565b6040516107f79190613220565b60405180910390f35b34801561080c57600080fd5b50610827600480360381019061082291906130f4565b61123c565b604051610834919061314f565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f91906130f4565b6112b3565b604051610871919061314f565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c919061316a565b6112d6565b6040516108ae919061314f565b60405180910390f35b3480156108c357600080fd5b506108cc6112f6565b6040516108d9919061314f565b60405180910390f35b3480156108ee57600080fd5b506109096004803603810190610904919061331c565b611309565b005b34801561091757600080fd5b50610932600480360381019061092d9190613388565b61137f565b005b34801561094057600080fd5b5061095b6004803603810190610956919061323b565b611430565b005b34801561096957600080fd5b506109726114cb565b60405161097f919061314f565b60405180910390f35b34801561099457600080fd5b5061099d6114de565b6040516109aa9190613220565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d5919061323b565b6114e4565b6040516109e7919061314f565b60405180910390f35b3480156109fc57600080fd5b50610a056115c5565b604051610a129190613220565b60405180910390f35b348015610a2757600080fd5b50610a306115cb565b604051610a3d919061314f565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a6891906133f5565b6115f7565b604051610a7a9190613220565b60405180910390f35b348015610a8f57600080fd5b50610a9861167e565b604051610aa59190613220565b60405180910390f35b348015610aba57600080fd5b50610ac3611684565b604051610ad0919061314f565b60405180910390f35b348015610ae557600080fd5b50610aee6116b0565b604051610afb9190613220565b60405180910390f35b348015610b1057600080fd5b50610b2b6004803603810190610b26919061316a565b6116b6565b005b348015610b3957600080fd5b50610b42611739565b604051610b4f9190613220565b60405180910390f35b348015610b6457600080fd5b50610b6d61173f565b604051610b7a9190613220565b60405180910390f35b606060038054610b9290613464565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe90613464565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b5050505050905090565b600080610c20611745565b9050610c2d81858561174d565b600191505092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c8e611916565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610d5c611916565b670de0b6b3a76400006103e8600f610d72610c7c565b610d7c91906134c4565b610d86919061354d565b610d90919061354d565b811015610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906135f0565b60405180910390fd5b670de0b6b3a764000081610de691906134c4565b60078190555050565b600080610dfa611745565b9050610e07858285611994565b610e12858585611a20565b60019150509392505050565b61dead81565b60006012905090565b600080610e38611745565b9050610e59818585610e4a85896115f7565b610e549190613610565b61174d565b600191505092915050565b7f000000000000000000000000e2c7d57171f2a07e44202ae1daac9fd80fad817681565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610ef9611916565b81600e8190555080600f81905550600f54600e54610f179190613610565b600d81905550600a600d541115610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613690565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fd0611916565b610fda6000612651565b565b610fe4611916565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611047611916565b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110d7611916565b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461110390613464565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90613464565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b5050505050905090565b61118e611916565b7f000000000000000000000000e2c7d57171f2a07e44202ae1daac9fd80fad817673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390613722565b60405180910390fd5b6112268282612717565b5050565b600f5481565b60145481565b60125481565b600080611247611745565b9050600061125582866115f7565b90508381101561129a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611291906137b4565b60405180910390fd5b6112a7828686840361174d565b60019250505092915050565b6000806112be611745565b90506112cb818585611a20565b600191505092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611311611916565b816011819055508060128190555060125460115461132f9190613610565b601081905550600a601054111561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613690565b60405180910390fd5b5050565b611387611916565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611424919061314f565b60405180910390a25050565b611438611916565b670de0b6b3a76400006103e8600f61144e610c7c565b61145891906134c4565b611462919061354d565b61146c919061354d565b8110156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590613846565b60405180910390fd5b670de0b6b3a7640000816114c291906134c4565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006114ee611916565b620186a060016114fc610c7c565b61150691906134c4565b611510919061354d565b821015611552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611549906138d8565b60405180910390fd5b6103e8600561155f610c7c565b61156991906134c4565b611573919061354d565b8211156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061396a565b60405180910390fd5b8160088190555060019050919050565b600d5481565b60006115d5611916565b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600061168e611916565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b6116be611916565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906139fc565b60405180910390fd5b61173681612651565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613b20565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119099190613220565b60405180910390a3505050565b61191e611745565b73ffffffffffffffffffffffffffffffffffffffff1661193c61107f565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613b8c565b60405180910390fd5b565b60006119a084846115f7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a1a5781811015611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613bf8565b60405180910390fd5b611a19848484840361174d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613d1c565b60405180910390fd5b60008103611b1757611b12838360006127b8565b61264c565b600a60009054906101000a900460ff16156121da57611b3461107f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ba25750611b7261107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bdb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c15575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c2e5750600560149054906101000a900460ff16155b156121d957600a60019054906101000a900460ff16611d2857601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ce85750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613d88565b60405180910390fd5b5b600c60009054906101000a900460ff1615611ef057611d4561107f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611dcc57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e2457507f000000000000000000000000e2c7d57171f2a07e44202ae1daac9fd80fad817673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611eef5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190613e40565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f935750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561203a57600754811115611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490613ed2565b60405180910390fd5b600954611fe983610f80565b82611ff49190613610565b1115612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613f3e565b60405180910390fd5b6121d8565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120dd5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561212c57600754811115612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613fd0565b60405180910390fd5b6121d7565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121d65760095461218983610f80565b826121949190613610565b11156121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90613f3e565b60405180910390fd5b5b5b5b5b5b60006121e530610f80565b90506000600854821015905080801561220a5750600a60029054906101000a900460ff165b80156122235750600560149054906101000a900460ff16155b80156122795750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122cf5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123255750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612369576001600560146101000a81548160ff02191690831515021790555061234d612a37565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241f5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242957600090505b6000811561263c57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561248c57506000601054115b15612526576124b960646124ab60105488612c4490919063ffffffff16565b612c5a90919063ffffffff16565b9050601054601154826124cc91906134c4565b6124d6919061354d565b601360008282546124e79190613610565b92505081905550601054601254826124ff91906134c4565b612509919061354d565b6014600082825461251a9190613610565b92505081905550612618565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561258157506000600d54115b15612617576125ae60646125a0600d5488612c4490919063ffffffff16565b612c5a90919063ffffffff16565b9050600d54600e54826125c191906134c4565b6125cb919061354d565b601360008282546125dc9190613610565b92505081905550600d54600f54826125f491906134c4565b6125fe919061354d565b6014600082825461260f9190613610565b925050819055505b5b600081111561262d5761262c8730836127b8565b5b80856126399190613ff0565b94505b6126478787876127b8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90613c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90613d1c565b60405180910390fd5b6128a1838383612c70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e90614096565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ba9190613610565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a1e9190613220565b60405180910390a3612a31848484612c75565b50505050565b6000612a4230610f80565b90506000601454601354612a569190613610565b9050600080831480612a685750600082145b15612a7557505050612c42565b6014600854612a8491906134c4565b831115612a9d576014600854612a9a91906134c4565b92505b600060028360135486612ab091906134c4565b612aba919061354d565b612ac4919061354d565b90506000612adb8286612c7a90919063ffffffff16565b90506000479050612aeb82612c90565b6000612b008247612c7a90919063ffffffff16565b90506000612b2b87612b1d60145485612c4490919063ffffffff16565b612c5a90919063ffffffff16565b905060008183612b3b9190613ff0565b905060006013819055506000601481905550600086118015612b5d5750600081115b15612baa57612b6c8682612ecd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601354604051612ba1939291906140b6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bf09061411e565b60006040518083038185875af1925050503d8060008114612c2d576040519150601f19603f3d011682016040523d82523d6000602084013e612c32565b606091505b5050809750505050505050505050505b565b60008183612c5291906134c4565b905092915050565b60008183612c68919061354d565b905092915050565b505050565b505050565b60008183612c889190613ff0565b905092915050565b6000600267ffffffffffffffff811115612cad57612cac614133565b5b604051908082528060200260200182016040528015612cdb5781602001602082028036833780820191505090505b5090503081600081518110612cf357612cf2614162565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dbc91906141a6565b81600181518110612dd057612dcf614162565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e35307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461174d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e979594939291906142cc565b600060405180830381600087803b158015612eb157600080fd5b505af1158015612ec5573d6000803e3d6000fd5b505050505050565b612ef8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461174d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612f5f96959493929190614326565b60606040518083038185885af1158015612f7d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fa2919061439c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fe3578082015181840152602081019050612fc8565b60008484015250505050565b6000601f19601f8301169050919050565b600061300b82612fa9565b6130158185612fb4565b9350613025818560208601612fc5565b61302e81612fef565b840191505092915050565b600060208201905081810360008301526130538184613000565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061308b82613060565b9050919050565b61309b81613080565b81146130a657600080fd5b50565b6000813590506130b881613092565b92915050565b6000819050919050565b6130d1816130be565b81146130dc57600080fd5b50565b6000813590506130ee816130c8565b92915050565b6000806040838503121561310b5761310a61305b565b5b6000613119858286016130a9565b925050602061312a858286016130df565b9150509250929050565b60008115159050919050565b61314981613134565b82525050565b60006020820190506131646000830184613140565b92915050565b6000602082840312156131805761317f61305b565b5b600061318e848285016130a9565b91505092915050565b6000819050919050565b60006131bc6131b76131b284613060565b613197565b613060565b9050919050565b60006131ce826131a1565b9050919050565b60006131e0826131c3565b9050919050565b6131f0816131d5565b82525050565b600060208201905061320b60008301846131e7565b92915050565b61321a816130be565b82525050565b60006020820190506132356000830184613211565b92915050565b6000602082840312156132515761325061305b565b5b600061325f848285016130df565b91505092915050565b6000806000606084860312156132815761328061305b565b5b600061328f868287016130a9565b93505060206132a0868287016130a9565b92505060406132b1868287016130df565b9150509250925092565b6132c481613080565b82525050565b60006020820190506132df60008301846132bb565b92915050565b600060ff82169050919050565b6132fb816132e5565b82525050565b600060208201905061331660008301846132f2565b92915050565b600080604083850312156133335761333261305b565b5b6000613341858286016130df565b9250506020613352858286016130df565b9150509250929050565b61336581613134565b811461337057600080fd5b50565b6000813590506133828161335c565b92915050565b6000806040838503121561339f5761339e61305b565b5b60006133ad858286016130a9565b92505060206133be85828601613373565b9150509250929050565b6000602082840312156133de576133dd61305b565b5b60006133ec84828501613373565b91505092915050565b6000806040838503121561340c5761340b61305b565b5b600061341a858286016130a9565b925050602061342b858286016130a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061347c57607f821691505b60208210810361348f5761348e613435565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134cf826130be565b91506134da836130be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561351357613512613495565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613558826130be565b9150613563836130be565b9250826135735761357261351e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20312e35250000000000000000000000000000000000602082015250565b60006135da602f83612fb4565b91506135e58261357e565b604082019050919050565b60006020820190508181036000830152613609816135cd565b9050919050565b600061361b826130be565b9150613626836130be565b925082820190508082111561363e5761363d613495565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061367a601d83612fb4565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061370c603983612fb4565b9150613717826136b0565b604082019050919050565b6000602082019050818103600083015261373b816136ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061379e602583612fb4565b91506137a982613742565b604082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613830602483612fb4565b915061383b826137d4565b604082019050919050565b6000602082019050818103600083015261385f81613823565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006138c2603583612fb4565b91506138cd82613866565b604082019050919050565b600060208201905081810360008301526138f1816138b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613954603483612fb4565b915061395f826138f8565b604082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139e6602683612fb4565b91506139f18261398a565b604082019050919050565b60006020820190508181036000830152613a15816139d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a78602483612fb4565b9150613a8382613a1c565b604082019050919050565b60006020820190508181036000830152613aa781613a6b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b0a602283612fb4565b9150613b1582613aae565b604082019050919050565b60006020820190508181036000830152613b3981613afd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b76602083612fb4565b9150613b8182613b40565b602082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613be2601d83612fb4565b9150613bed82613bac565b602082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c74602583612fb4565b9150613c7f82613c18565b604082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d06602383612fb4565b9150613d1182613caa565b604082019050919050565b60006020820190508181036000830152613d3581613cf9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d72601683612fb4565b9150613d7d82613d3c565b602082019050919050565b60006020820190508181036000830152613da181613d65565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613e2a604983612fb4565b9150613e3582613da8565b606082019050919050565b60006020820190508181036000830152613e5981613e1d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613ebc603583612fb4565b9150613ec782613e60565b604082019050919050565b60006020820190508181036000830152613eeb81613eaf565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613f28601383612fb4565b9150613f3382613ef2565b602082019050919050565b60006020820190508181036000830152613f5781613f1b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613fba603683612fb4565b9150613fc582613f5e565b604082019050919050565b60006020820190508181036000830152613fe981613fad565b9050919050565b6000613ffb826130be565b9150614006836130be565b925082820390508181111561401e5761401d613495565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614080602683612fb4565b915061408b82614024565b604082019050919050565b600060208201905081810360008301526140af81614073565b9050919050565b60006060820190506140cb6000830186613211565b6140d86020830185613211565b6140e56040830184613211565b949350505050565b600081905092915050565b50565b60006141086000836140ed565b9150614113826140f8565b600082019050919050565b6000614129826140fb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506141a081613092565b92915050565b6000602082840312156141bc576141bb61305b565b5b60006141ca84828501614191565b91505092915050565b6000819050919050565b60006141f86141f36141ee846141d3565b613197565b6130be565b9050919050565b614208816141dd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61424381613080565b82525050565b6000614255838361423a565b60208301905092915050565b6000602082019050919050565b60006142798261420e565b6142838185614219565b935061428e8361422a565b8060005b838110156142bf5781516142a68882614249565b97506142b183614261565b925050600181019050614292565b5085935050505092915050565b600060a0820190506142e16000830188613211565b6142ee60208301876141ff565b8181036040830152614300818661426e565b905061430f60608301856132bb565b61431c6080830184613211565b9695505050505050565b600060c08201905061433b60008301896132bb565b6143486020830188613211565b61435560408301876141ff565b61436260608301866141ff565b61436f60808301856132bb565b61437c60a0830184613211565b979650505050505050565b600081519050614396816130c8565b92915050565b6000806000606084860312156143b5576143b461305b565b5b60006143c386828701614387565b93505060206143d486828701614387565b92505060406143e586828701614387565b915050925092509256fea2646970667358221220f97ae03a6d6b4003a1795b6ebdde882261814dc7e51d74855fc49f500f50b8ab64736f6c63430008100033

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.