ETH Price: $3,386.36 (-1.76%)
Gas: 1 Gwei

Token

DVM (DVM)
 

Overview

Max Total Supply

20,000 DVM

Holders

111

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17.070465875604203786 DVM

Value
$0.00
0x82b8e0208c129738fb5d8510b9a8e0e3469a0ef8
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:
DVM

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.16;

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

library Roles {
    struct Role {
        mapping(address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account)
        internal
        view
        returns (bool)
    {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

abstract contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

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

contract DVM is ERC20Detailed, Ownable {
    struct Fee {
        uint16 liquidity;
        uint16 treasury;
    }

    using SafeMath for uint256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);
    event NewNextRebase(uint256 nextRebase);
    event NewRewardYield(uint256 _rewardYield, uint256 _rewardYieldDenominator);
    event NewAutoRebase(bool _autoRebase);
    event NewMaxWalletEnable(bool _isMaxWalletEnabled);
    event NewRebaseFrequency(uint256 _rebaseFrequency);
    event DustSwiped(address _receiver, uint256 balance);
    event ManualRebase();
    event NewLPSet(address _address);
    event InitialDistributionFinished();
    event AddressExemptedFromTransferLock(address _addr);
    event AddressExemptedFromFee(address _addr);
    event NewSwapBackSet(bool _enabled, uint256 _num, uint256 _denom);
    event NewTargetLiquiditySet(uint256 target, uint256 accuracy);
    event NewFeeReceiversSet(
        address _autoLiquidityReceiver,
        address _treasuryReceiver
    );
    event NewBuyFeesSet(
        uint256 _liquidityFee,
        uint256 _treasuryFee,
        uint256 _feeDenominator
    );
    event NewSellFeesSet(
        uint256 _liquidityFee,
        uint256 _treasuryFee,
        uint256 _feeDenominator
    );

    IUniswapV2Pair public pairContract;

    bool public initialDistributionFinished;

    mapping(address => bool) internal allowTransfer;
    mapping(address => bool) public _isFeeExempt;
    mapping(address => bool) public _isLimitExempt;

    modifier initialDistributionLock() {
        require(
            initialDistributionFinished ||
                msg.sender == owner() ||
                allowTransfer[msg.sender],
            "Initial distribution lock"
        );
        _;
    }

    modifier validRecipient(address to) {
        require(to != address(0x0), "Zero address");
        _;
    }

    uint256 private constant DECIMALS = 18;
    uint256 private constant MAX_UINT256 = type(uint256).max;
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 10000 * 10**DECIMALS;

    Fee public buyFee;
    Fee public sellFee;

    uint256 private totalBuyFee;
    uint256 private totalSellFee;

    uint256 public feeDenominator = 1000;
    uint256 public rewardYield = 1;
    uint256 public rewardYieldDenominator = 100000000000;
    uint256 public rebaseFrequency = 1 days;
    uint256 public nextRebase = block.timestamp + rebaseFrequency;
    bool public autoRebase = true;

    address internal constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address internal constant ZERO = 0x0000000000000000000000000000000000000000;

    address public autoLiquidityReceiver;
    address public treasuryReceiver;

    uint256 private targetLiquidity = 50;
    uint256 private targetLiquidityDenominator = 100;

    IUniswapV2Router02 public immutable router;

    bool public swapEnabled = true;
    bool internal inSwap;
    modifier swapping() {
        inSwap = true;
        _;
        inSwap = false;
    }

    uint256 private constant TOTAL_GONS =
        MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    uint256 private constant MAX_SUPPLY = 20000 * 10**DECIMALS;
    uint256 private gonSwapThreshold = TOTAL_GONS / 5000;
    uint256 private maxWalletDivisor = 100;
    bool public isMaxWalletEnabled = true;

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;
    mapping(address => uint256) private _gonBalances;

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

    constructor(
        address _router,
        address _autoLiquidityReceiver,
        address _treasuryReceiver
    ) ERC20Detailed("DVM", "DVM", uint8(DECIMALS)) {
        router = IUniswapV2Router02(_router);

        address _pair = IUniswapV2Factory(router.factory()).createPair(
            router.WETH(),
            address(this)
        );

        buyFee = Fee(15, 15);
        totalBuyFee = 30;
        sellFee = Fee(15, 15);
        totalSellFee = 30;

        autoLiquidityReceiver = _autoLiquidityReceiver;
        treasuryReceiver = _treasuryReceiver;

        _allowedFragments[address(this)][address(_router)] = type(uint256).max;
        pairContract = IUniswapV2Pair(_pair);

        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[treasuryReceiver] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        initialDistributionFinished = false;
        _isFeeExempt[treasuryReceiver] = true;
        _isFeeExempt[address(this)] = true;

        emit Transfer(address(0x0), treasuryReceiver, _totalSupply);
    }

    function setNextRebase(uint256 _nextRebase) external onlyOwner {
        nextRebase = _nextRebase;

        emit NewNextRebase(_nextRebase);
    }

    function setRewardYield(
        uint256 _rewardYield,
        uint256 _rewardYieldDenominator
    ) external onlyOwner {
        rewardYield = _rewardYield;
        rewardYieldDenominator = _rewardYieldDenominator;

        emit NewRewardYield(_rewardYield, _rewardYieldDenominator);
    }

    function setLimitExempt(address user, bool status) external onlyOwner {
        _isLimitExempt[user] = status;
    }

    function setAutoRebase(bool _autoRebase) external onlyOwner {
        autoRebase = _autoRebase;

        emit NewAutoRebase(_autoRebase);
    }

    function setRebaseFrequency(uint256 _rebaseFrequency) external onlyOwner {
        rebaseFrequency = _rebaseFrequency;

        emit NewRebaseFrequency(_rebaseFrequency);
    }

    function shouldRebase() public view returns (bool) {
        return nextRebase <= block.timestamp;
    }

    function swipe(address _receiver) external onlyOwner {
        uint256 balance = address(this).balance;
        payable(_receiver).transfer(balance);

        emit DustSwiped(_receiver, balance);
    }

    function coreRebase(uint256 epoch, int256 supplyDelta)
        private
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(-supplyDelta));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);
        pairContract.sync();

        emit LogRebase(epoch, _totalSupply);
        return _totalSupply;
    }

    function _rebase() private {
        if (!inSwap) {
            uint256 epoch = block.timestamp;
            uint256 circulatingSupply = getCirculatingSupply();
            int256 supplyDelta = int256(
                circulatingSupply.mul(rewardYield).div(rewardYieldDenominator)
            );

            coreRebase(epoch, supplyDelta);
            nextRebase = epoch + rebaseFrequency;
        }
    }

    function rebase() external onlyOwner {
        require(!inSwap && shouldRebase(), "Try again");
        _rebase();

        emit ManualRebase();
    }

    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }

    function transfer(address to, uint256 value)
        external
        override
        validRecipient(to)
        initialDistributionLock
        returns (bool)
    {
        _transferFrom(msg.sender, to, value);
        return true;
    }

    function setLP(address _address) external onlyOwner {
        pairContract = IUniswapV2Pair(_address);
        _isFeeExempt[_address];

        emit NewLPSet(_address);
    }

    function setMaxWallet(uint256 divisor) external onlyOwner {
        maxWalletDivisor = divisor;
    }

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

    function balanceOf(address who) public view override returns (uint256) {
        return _gonBalances[who].div(_gonsPerFragment);
    }

    function scaledBalanceOf(address who) external view returns (uint256) {
        return _gonBalances[who];
    }

    function _basicTransfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        uint256 gonAmount = amount.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(gonAmount);
        _gonBalances[to] = _gonBalances[to].add(gonAmount);
        return true;
    }

    function _transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (bool) {
        if (inSwap) {
            return _basicTransfer(sender, recipient, amount);
        }

        uint256 gonAmount = amount.mul(_gonsPerFragment);

        if (shouldSwapBack()) {
            swapBack();
        }

        if (
            recipient != address(pairContract) &&
            !_isLimitExempt[recipient] &&
            isMaxWalletEnabled
        ) {
            uint256 max = getMaxWallet();
            require(
                balanceOf(recipient) + amount <= max,
                "Balance exceeds max wallet limit"
            );
        }

        _gonBalances[sender] = _gonBalances[sender].sub(gonAmount);

        uint256 gonAmountReceived = shouldTakeFee(sender, recipient)
            ? takeFee(sender, recipient, gonAmount)
            : gonAmount;

        _gonBalances[recipient] = _gonBalances[recipient].add(
            gonAmountReceived
        );

        emit Transfer(
            sender,
            recipient,
            gonAmountReceived.div(_gonsPerFragment)
        );

        if (shouldRebase() && autoRebase) {
            _rebase();
        }

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external override validRecipient(to) returns (bool) {
        if (_allowedFragments[from][msg.sender] != ~uint256(0)) {
            _allowedFragments[from][msg.sender] = _allowedFragments[from][
                msg.sender
            ].sub(value, "Insufficient Allowance");
        }

        _transferFrom(from, to, value);
        return true;
    }

    function swapBack() internal swapping {
        uint256 dynamicLiquidityFee = isOverLiquified(
            targetLiquidity,
            targetLiquidityDenominator
        )
            ? 0
            : buyFee.liquidity + sellFee.liquidity;
        uint256 contractTokenBalance = _gonBalances[address(this)].div(
            _gonsPerFragment
        );
        uint256 amountToLiquify = contractTokenBalance
            .mul(dynamicLiquidityFee)
            .div(totalBuyFee + totalSellFee)
            .div(2);
        uint256 amountToSwap = contractTokenBalance.sub(amountToLiquify);

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        uint256 balanceBefore = address(this).balance;
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountToSwap,
            0,
            path,
            address(this),
            block.timestamp + 100
        );
        uint256 amountETH = address(this).balance.sub(balanceBefore);
        uint256 totalETHFee = (totalBuyFee + totalSellFee).sub(
            dynamicLiquidityFee.div(2)
        );

        uint256 amountETHLiquidity = amountETH
            .mul(dynamicLiquidityFee)
            .div(totalETHFee)
            .div(2);

        uint256 amountETHTreasury = amountETH
            .mul(buyFee.treasury + sellFee.treasury)
            .div(totalETHFee);

        if (amountETHTreasury > 0) {
            (bool success, ) = treasuryReceiver.call{value: amountETHTreasury}(
                ""
            );
            require(success, "ETH transfer failed");
        }

        if (amountToLiquify > 0) {
            router.addLiquidityETH{value: amountETHLiquidity}(
                address(this),
                amountToLiquify,
                0,
                0,
                autoLiquidityReceiver,
                block.timestamp + 100
            );
        }
    }

    function takeFee(
        address sender,
        address recipient,
        uint256 gonAmount
    ) internal returns (uint256) {
        uint256 _totalFee;
        if (sender == address(pairContract)) {
            _totalFee = totalBuyFee;
        } else if (recipient == address(pairContract)) {
            _totalFee = totalSellFee;
        }

        if (_totalFee > 0) {
            uint256 feeAmount = gonAmount.mul(_totalFee).div(feeDenominator);

            _gonBalances[address(this)] = _gonBalances[address(this)].add(
                feeAmount
            );

            emit Transfer(
                sender,
                address(this),
                feeAmount.div(_gonsPerFragment)
            );
            return gonAmount.sub(feeAmount);
        }

        return gonAmount;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        initialDistributionLock
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(
                subtractedValue
            );
        }
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        external
        initialDistributionLock
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][
            spender
        ].add(addedValue);
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    function approve(address spender, uint256 value)
        external
        override
        validRecipient(spender)
        initialDistributionLock
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    function checkFeeExempt(address _addr) external view returns (bool) {
        return _isFeeExempt[_addr];
    }

    function setInitialDistributionFinished() external onlyOwner {
        initialDistributionFinished = true;

        emit InitialDistributionFinished();
    }

    function enableTransfer(address _addr) external onlyOwner {
        allowTransfer[_addr] = true;

        emit AddressExemptedFromTransferLock(_addr);
    }

    function setFeeExempt(address _addr) external onlyOwner {
        _isFeeExempt[_addr] = true;

        emit AddressExemptedFromFee(_addr);
    }

    function shouldTakeFee(address from, address to)
        internal
        view
        returns (bool)
    {
        return ((address(pairContract) == from ||
            address(pairContract) == to) &&
            (!_isFeeExempt[from] && !_isFeeExempt[to]));
    }

    function setSwapBackSettings(
        bool _enabled,
        uint256 _num,
        uint256 _denom
    ) external onlyOwner {
        swapEnabled = _enabled;
        gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num);

        emit NewSwapBackSet(_enabled, _num, _denom);
    }

    function shouldSwapBack() internal view returns (bool) {
        return
            msg.sender != address(pairContract) &&
            !inSwap &&
            swapEnabled &&
            _gonBalances[address(this)] >= gonSwapThreshold;
    }

    function setMaxWalletEnable(bool _isMaxWalletEnabled) external onlyOwner {
        isMaxWalletEnabled = _isMaxWalletEnabled;

        emit NewMaxWalletEnable(_isMaxWalletEnabled);
    }

    function getCirculatingSupply() public view returns (uint256) {
        return
            (TOTAL_GONS.sub(_gonBalances[DEAD]).sub(_gonBalances[ZERO])).div(
                _gonsPerFragment
            );
    }

    function setTargetLiquidity(uint256 target, uint256 accuracy)
        external
        onlyOwner
    {
        targetLiquidity = target;
        targetLiquidityDenominator = accuracy;

        emit NewTargetLiquiditySet(target, accuracy);
    }

    function isNotInSwap() external view returns (bool) {
        return !inSwap;
    }

    function checkSwapThreshold() external view returns (uint256) {
        return gonSwapThreshold.div(_gonsPerFragment);
    }

    function getMaxWallet() public view returns (uint256 amount) {
        amount = getCirculatingSupply() / maxWalletDivisor;
    }

    function manualSync() external {
        pairContract.sync();
    }

    function setFeeReceivers(
        address _autoLiquidityReceiver,
        address _treasuryReceiver
    ) external onlyOwner {
        autoLiquidityReceiver = _autoLiquidityReceiver;
        treasuryReceiver = _treasuryReceiver;

        emit NewFeeReceiversSet(_autoLiquidityReceiver, _treasuryReceiver);
    }

    function setBuyFees(
        uint16 _liquidityFee,
        uint16 _treasuryFee,
        uint256 _feeDenominator
    ) external onlyOwner {
        buyFee = Fee(_liquidityFee, _treasuryFee);
        feeDenominator = _feeDenominator;
        totalBuyFee = _liquidityFee + _treasuryFee;

        emit NewBuyFeesSet(_liquidityFee, _treasuryFee, _feeDenominator);
    }

    function setSellFees(
        uint16 _liquidityFee,
        uint16 _treasuryFee,
        uint256 _feeDenominator
    ) external onlyOwner {
        sellFee = Fee(_liquidityFee, _treasuryFee);
        feeDenominator = _feeDenominator;
        totalSellFee = _liquidityFee + _treasuryFee;

        emit NewSellFeesSet(_liquidityFee, _treasuryFee, _feeDenominator);
    }

    function getLiquidityBacking(uint256 accuracy)
        public
        view
        returns (uint256)
    {
        uint256 liquidityBalance = _gonBalances[address(pairContract)].div(
            _gonsPerFragment
        );
        return
            accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply());
    }

    function isOverLiquified(uint256 target, uint256 accuracy)
        public
        view
        returns (bool)
    {
        return getLiquidityBacking(accuracy) > target;
    }

    receive() external payable {
        this;
    }
}

File 2 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

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

import './IUniswapV2Router01.sol';

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

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

File 5 of 10 : 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 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 8 of 10 : 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 9 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_autoLiquidityReceiver","type":"address"},{"internalType":"address","name":"_treasuryReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_addr","type":"address"}],"name":"AddressExemptedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_addr","type":"address"}],"name":"AddressExemptedFromTransferLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"DustSwiped","type":"event"},{"anonymous":false,"inputs":[],"name":"InitialDistributionFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_autoRebase","type":"bool"}],"name":"NewAutoRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_feeDenominator","type":"uint256"}],"name":"NewBuyFeesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_autoLiquidityReceiver","type":"address"},{"indexed":false,"internalType":"address","name":"_treasuryReceiver","type":"address"}],"name":"NewFeeReceiversSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NewLPSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isMaxWalletEnabled","type":"bool"}],"name":"NewMaxWalletEnable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"nextRebase","type":"uint256"}],"name":"NewNextRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_rebaseFrequency","type":"uint256"}],"name":"NewRebaseFrequency","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_rewardYield","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_rewardYieldDenominator","type":"uint256"}],"name":"NewRewardYield","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_feeDenominator","type":"uint256"}],"name":"NewSellFeesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"_num","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_denom","type":"uint256"}],"name":"NewSwapBackSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"target","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accuracy","type":"uint256"}],"name":"NewTargetLiquiditySet","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isLimitExempt","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoLiquidityReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoRebase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"treasury","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"checkFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"enableTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"accuracy","type":"uint256"}],"name":"getLiquidityBacking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxWallet","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","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":[],"name":"initialDistributionFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxWalletEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isNotInSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"target","type":"uint256"},{"internalType":"uint256","name":"accuracy","type":"uint256"}],"name":"isOverLiquified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextRebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairContract","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rebaseFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardYield","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardYieldDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"scaledBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"treasury","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_autoRebase","type":"bool"}],"name":"setAutoRebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_liquidityFee","type":"uint16"},{"internalType":"uint16","name":"_treasuryFee","type":"uint16"},{"internalType":"uint256","name":"_feeDenominator","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_autoLiquidityReceiver","type":"address"},{"internalType":"address","name":"_treasuryReceiver","type":"address"}],"name":"setFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setInitialDistributionFinished","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMaxWalletEnabled","type":"bool"}],"name":"setMaxWalletEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nextRebase","type":"uint256"}],"name":"setNextRebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rebaseFrequency","type":"uint256"}],"name":"setRebaseFrequency","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardYield","type":"uint256"},{"internalType":"uint256","name":"_rewardYieldDenominator","type":"uint256"}],"name":"setRewardYield","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_liquidityFee","type":"uint16"},{"internalType":"uint16","name":"_treasuryFee","type":"uint16"},{"internalType":"uint256","name":"_feeDenominator","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"uint256","name":"_denom","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"target","type":"uint256"},{"internalType":"uint256","name":"accuracy","type":"uint256"}],"name":"setTargetLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shouldRebase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"swipe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526103e8600b556001600c5564174876e800600d5562015180600e55600e54426200002f919062000a48565b600f556001601060006101000a81548160ff021916908315150217905550603260125560646013556001601460006101000a81548160ff0219169083151502179055506113886012600a62000085919062000bd7565b61271062000094919062000c28565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620000c1919062000cb8565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620000ee919062000cf0565b620000fa919062000d2b565b60155560646016556001601760006101000a81548160ff0219169083151502179055503480156200012a57600080fd5b506040516200631038038062006310833981810160405281019062000150919062000dcd565b6040518060400160405280600381526020017f44564d00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f44564d000000000000000000000000000000000000000000000000000000000081525060128260009081620001cf919062001099565b508160019081620001e1919062001099565b5080600260006101000a81548160ff021916908360ff16021790555050505062000220620002146200092960201b60201c565b6200093160201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062001180565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539660805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000333573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000359919062001180565b306040518363ffffffff1660e01b815260040162000379929190620011c3565b6020604051808303816000875af115801562000399573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003bf919062001180565b90506040518060400160405280600f61ffff168152602001600f61ffff16815250600760008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff160217905550905050601e6009819055506040518060400160405280600f61ffff168152602001600f61ffff16815250600860008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff160217905550905050601e600a8190555082601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff601b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506012600a62000619919062000bd7565b61271062000628919062000c28565b6018819055506012600a6200063e919062000bd7565b6127106200064d919062000c28565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200067a919062000cb8565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006a7919062000cf0565b601a6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620007a06018546012600a62000723919062000bd7565b61271062000732919062000c28565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200075f919062000cb8565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200078c919062000cf0565b620009f760201b62002ba21790919060201c565b6019819055506000600360146101000a81548160ff021916908315150217905550600160056000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60185460405162000917919062001201565b60405180910390a3505050506200121e565b600033905090565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818362000a07919062000d2b565b905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a558262000a0f565b915062000a628362000a0f565b925082820190508082111562000a7d5762000a7c62000a19565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111562000ae25780860481111562000aba5762000ab962000a19565b5b600185161562000aca5780820291505b808102905062000ada8562000a83565b945062000a9a565b94509492505050565b60008262000afd576001905062000bd0565b8162000b0d576000905062000bd0565b816001811462000b26576002811462000b315762000b67565b600191505062000bd0565b60ff84111562000b465762000b4562000a19565b5b8360020a91508482111562000b605762000b5f62000a19565b5b5062000bd0565b5060208310610133831016604e8410600b841016171562000ba15782820a90508381111562000b9b5762000b9a62000a19565b5b62000bd0565b62000bb0848484600162000a90565b9250905081840481111562000bca5762000bc962000a19565b5b81810290505b9392505050565b600062000be48262000a0f565b915062000bf18362000a0f565b925062000c207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000aeb565b905092915050565b600062000c358262000a0f565b915062000c428362000a0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c7e5762000c7d62000a19565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cc58262000a0f565b915062000cd28362000a0f565b92508262000ce55762000ce462000c89565b5b828206905092915050565b600062000cfd8262000a0f565b915062000d0a8362000a0f565b925082820390508181111562000d255762000d2462000a19565b5b92915050565b600062000d388262000a0f565b915062000d458362000a0f565b92508262000d585762000d5762000c89565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d958262000d68565b9050919050565b62000da78162000d88565b811462000db357600080fd5b50565b60008151905062000dc78162000d9c565b92915050565b60008060006060848603121562000de95762000de862000d63565b5b600062000df98682870162000db6565b935050602062000e0c8682870162000db6565b925050604062000e1f8682870162000db6565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000eab57607f821691505b60208210810362000ec15762000ec062000e63565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f2b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000eec565b62000f37868362000eec565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000f7a62000f7462000f6e8462000a0f565b62000f4f565b62000a0f565b9050919050565b6000819050919050565b62000f968362000f59565b62000fae62000fa58262000f81565b84845462000ef9565b825550505050565b600090565b62000fc562000fb6565b62000fd281848462000f8b565b505050565b5b8181101562000ffa5762000fee60008262000fbb565b60018101905062000fd8565b5050565b601f8211156200104957620010138162000ec7565b6200101e8462000edc565b810160208510156200102e578190505b620010466200103d8562000edc565b83018262000fd7565b50505b505050565b600082821c905092915050565b60006200106e600019846008026200104e565b1980831691505092915050565b60006200108983836200105b565b9150826002028217905092915050565b620010a48262000e29565b67ffffffffffffffff811115620010c057620010bf62000e34565b5b620010cc825462000e92565b620010d982828562000ffe565b600060209050601f831160018114620011115760008415620010fc578287015190505b6200110885826200107b565b86555062001178565b601f198416620011218662000ec7565b60005b828110156200114b5784890151825560018201915060208501945060208101905062001124565b868310156200116b578489015162001167601f8916826200105b565b8355505b6001600288020188555050505b505050505050565b60006020828403121562001199576200119862000d63565b5b6000620011a98482850162000db6565b91505092915050565b620011bd8162000d88565b82525050565b6000604082019050620011da6000830185620011b2565b620011e96020830184620011b2565b9392505050565b620011fb8162000a0f565b82525050565b6000602082019050620012186000830184620011f0565b92915050565b6080516150c16200124f60003960008181612ab3015281816135850152818161366701526138d301526150c16000f3fe6080604052600436106103905760003560e01c80636d351d1a116101dc578063af14052c11610102578063d51ed1c8116100a0578063e15beb801161006f578063e15beb8014610d59578063f2fde38b14610d82578063f887ea4014610dab578063fd9d508b14610dd657610397565b8063d51ed1c814610c8b578063d5938aac14610cc8578063d7832b1114610cf1578063dd62ed3e14610d1c57610397565b8063cce7db58116100dc578063cce7db5814610bd1578063d088935814610bfa578063d1fce26414610c23578063d439979014610c4e57610397565b8063af14052c14610b64578063bc7e68a314610b7b578063ca33e64c14610ba657610397565b806389375abf1161017a5780639ae7372d116101495780639ae7372d14610a98578063a457c2d714610ac1578063a4b45c0014610afe578063a9059cbb14610b2757610397565b806389375abf146109ec5780638da5cb5b14610a175780639079f93214610a4257806395d89b4114610a6d57610397565b8063715018a6116101b6578063715018a61461096a578063749796a514610981578063753d02a1146109aa57806383b4ac68146109c157610397565b80636d351d1a146108d75780636ddd17131461090257806370a082311461092d57610397565b806327fa7b18116102c157806340a24e6c1161025f5780634d709adf1161022e5780634d709adf1461082f5780635ae21e6c1461085a5780635d0044ca1461088357806363eab10a146108ac57610397565b806340a24e6c1461078857806347062402146107b15780634b3fd7f0146107dd5780634cd9ddf21461080657610397565b80632be6937d1161029b5780632be6937d146106e05780632f34d282146106f7578063313ce56714610720578063395093511461074b57610397565b806327fa7b181461064c5780632b112e49146106895780632b14ca56146106b457610397565b80631161ae391161032e57806318160ddd1161030857806318160ddd1461057e5780631da24f3e146105a9578063201e7991146105e657806323b872dd1461060f57610397565b80631161ae39146104d9578063175bf3ce14610516578063180b0d7e1461055357610397565b806308b1fd8f1161036a57806308b1fd8f1461041b578063095ea7b3146104465780630af08314146104835780630fa604e4146104ae57610397565b806301b168271461039c578063046a2a80146103c557806306fdde03146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613fc8565b610dff565b005b3480156103d157600080fd5b506103da610e52565b6040516103e79190614023565b60405180910390f35b3480156103fc57600080fd5b50610405610e65565b60405161041291906140ce565b60405180910390f35b34801561042757600080fd5b50610430610ef7565b60405161043d9190614131565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190614178565b610f1d565b60405161047a9190614023565b60405180910390f35b34801561048f57600080fd5b50610498611160565b6040516104a591906141c7565b60405180910390f35b3480156104ba57600080fd5b506104c3611166565b6040516104d091906141c7565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613fc8565b611182565b60405161050d9190614023565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906141e2565b611197565b60405161054a9190614023565b60405180910390f35b34801561055f57600080fd5b506105686111b7565b60405161057591906141c7565b60405180910390f35b34801561058a57600080fd5b506105936111bd565b6040516105a091906141c7565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906141e2565b6111c7565b6040516105dd91906141c7565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190613fc8565b611210565b005b34801561061b57600080fd5b506106366004803603810190610631919061420f565b611263565b6040516106439190614023565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e91906141e2565b6114b9565b6040516106809190614023565b60405180910390f35b34801561069557600080fd5b5061069e6114d9565b6040516106ab91906141c7565b60405180910390f35b3480156106c057600080fd5b506106c9611609565b6040516106d792919061427f565b60405180910390f35b3480156106ec57600080fd5b506106f5611637565b005b34801561070357600080fd5b5061071e600480360381019061071991906141e2565b611688565b005b34801561072c57600080fd5b50610735611756565b60405161074291906142c4565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190614178565b61176d565b60405161077f9190614023565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa919061430b565b611a49565b005b3480156107bd57600080fd5b506107c6611aac565b6040516107d492919061427f565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190614377565b611ada565b005b34801561081257600080fd5b5061082d600480360381019061082891906143ca565b611ba7565b005b34801561083b57600080fd5b50610844611bf0565b6040516108519190614456565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190614471565b611c16565b005b34801561088f57600080fd5b506108aa60048036038101906108a591906143ca565b611c72565b005b3480156108b857600080fd5b506108c1611c84565b6040516108ce9190614023565b60405180910390f35b3480156108e357600080fd5b506108ec611c91565b6040516108f991906141c7565b60405180910390f35b34801561090e57600080fd5b50610917611caf565b6040516109249190614023565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f91906141e2565b611cc2565b60405161096191906141c7565b60405180910390f35b34801561097657600080fd5b5061097f611d1f565b005b34801561098d57600080fd5b506109a860048036038101906109a391906141e2565b611d33565b005b3480156109b657600080fd5b506109bf611dcd565b005b3480156109cd57600080fd5b506109d6611e51565b6040516109e39190614023565b60405180910390f35b3480156109f857600080fd5b50610a01611e69565b604051610a0e91906141c7565b60405180910390f35b348015610a2357600080fd5b50610a2c611e6f565b604051610a399190614131565b60405180910390f35b348015610a4e57600080fd5b50610a57611e99565b604051610a649190614023565b60405180910390f35b348015610a7957600080fd5b50610a82611eac565b604051610a8f91906140ce565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba91906143ca565b611f3e565b005b348015610acd57600080fd5b50610ae86004803603810190610ae39190614178565b611f87565b604051610af59190614023565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b20919061449e565b6122f8565b005b348015610b3357600080fd5b50610b4e6004803603810190610b499190614178565b6123bf565b604051610b5b9190614023565b60405180910390f35b348015610b7057600080fd5b50610b79612528565b005b348015610b8757600080fd5b50610b906125c6565b604051610b9d91906141c7565b60405180910390f35b348015610bb257600080fd5b50610bbb6125cc565b604051610bc89190614131565b60405180910390f35b348015610bdd57600080fd5b50610bf86004803603810190610bf391906141e2565b6125f2565b005b348015610c0657600080fd5b50610c216004803603810190610c1c91906144de565b612683565b005b348015610c2f57600080fd5b50610c38612780565b604051610c459190614023565b60405180910390f35b348015610c5a57600080fd5b50610c756004803603810190610c7091906141e2565b612793565b604051610c829190614023565b60405180910390f35b348015610c9757600080fd5b50610cb26004803603810190610cad91906143ca565b6127e9565b604051610cbf91906141c7565b60405180910390f35b348015610cd457600080fd5b50610cef6004803603810190610cea91906141e2565b6128ab565b005b348015610cfd57600080fd5b50610d06612945565b604051610d1391906141c7565b60405180910390f35b348015610d2857600080fd5b50610d436004803603810190610d3e919061449e565b61294b565b604051610d5091906141c7565b60405180910390f35b348015610d6557600080fd5b50610d806004803603810190610d7b9190614471565b6129d2565b005b348015610d8e57600080fd5b50610da96004803603810190610da491906141e2565b612a2e565b005b348015610db757600080fd5b50610dc0612ab1565b604051610dcd9190614552565b60405180910390f35b348015610de257600080fd5b50610dfd6004803603810190610df89190614377565b612ad5565b005b610e07612bb8565b81600c8190555080600d819055507f22c4859cbe685717a6474106727f15898d2a50ebbec3c4b8e78e17d51041f9e28282604051610e4692919061456d565b60405180910390a15050565b601760009054906101000a900460ff1681565b606060008054610e74906145c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea0906145c5565b8015610eed5780601f10610ec257610100808354040283529160200191610eed565b820191906000526020600020905b815481529060010190602001808311610ed057829003601f168201915b5050505050905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690614642565b60405180910390fd5b600360149054906101000a900460ff1680610fdc5750610fad611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806110305750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61106f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611066906146ae565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161114d91906141c7565b60405180910390a3600191505092915050565b600c5481565b60006016546111736114d9565b61117d919061472c565b905090565b60008261118e836127e9565b11905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b600b5481565b6000601854905090565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611218612bb8565b81601281905550806013819055507faf4c7b1dbe87649b4a09d12e4fea2d8f7086b07913a76c3add0570d49080d070828260405161125792919061456d565b60405180910390a15050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90614642565b60405180910390fd5b600019601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146114a157611420836040518060400160405280601681526020017f496e73756666696369656e7420416c6c6f77616e636500000000000000000000815250601b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c369092919063ffffffff16565b601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6114ac858585612c8b565b5060019150509392505050565b60056020528060005260406000206000915054906101000a900460ff1681565b60006116046019546115f6601a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e8601a600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546012600a6115779190614890565b61271061158491906148db565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115af9190614935565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115da9190614966565b61300f90919063ffffffff16565b61300f90919063ffffffff16565b612ba290919063ffffffff16565b905090565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b61163f612bb8565b6001600360146101000a81548160ff0219169083151502179055507fc8c54f70f4fd274a3f41ef99f8cf8a1f0bcb08a163df0c9dbf89f9ecc040213b60405160405180910390a1565b611690612bb8565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a9050507f6cedd5f50351efbc40be01a919f6320ffe3e8270d9d277b886a78f30e3d087688160405161174b9190614131565b60405180910390a150565b6000600260009054906101000a900460ff16905090565b6000600360149054906101000a900460ff16806117bc575061178d611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806118105750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906146ae565b60405180910390fd5b6118de82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611a3791906141c7565b60405180910390a36001905092915050565b611a51612bb8565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60078060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b611ae2612bb8565b60405180604001604052808461ffff1681526020018361ffff16815250600860008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555090505080600b819055508183611b5d919061499a565b61ffff16600a819055507f47e229252693849a8f6e5389ea9668e5cf5edcfcdc4213101591f17034de46b3838383604051611b9a93929190614a01565b60405180910390a1505050565b611baf612bb8565b80600e819055507ffec4e86e9afe69e18641695805d49ee4e48c9e25ac483d7fcec03508c19073f681604051611be591906141c7565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c1e612bb8565b80601760006101000a81548160ff0219169083151502179055507f1eed3bbd2da9ed45d0adc72d9b71ec477a9f1e858de75246a3b16a308609fdae81604051611c679190614023565b60405180910390a150565b611c7a612bb8565b8060168190555050565b600042600f541115905090565b6000611caa601954601554612ba290919063ffffffff16565b905090565b601460009054906101000a900460ff1681565b6000611d18601954601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba290919063ffffffff16565b9050919050565b611d27612bb8565b611d31600061303b565b565b611d3b612bb8565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f23c82dfc7128d260a240c76ad95ae807ed0f3cdc1774176bec1d6d6ff5bbd17881604051611dc29190614131565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611e3757600080fd5b505af1158015611e4b573d6000803e3d6000fd5b50505050565b6000601460019054906101000a900460ff1615905090565b600e5481565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060009054906101000a900460ff1681565b606060018054611ebb906145c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee7906145c5565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b5050505050905090565b611f46612bb8565b80600f819055507f84622aeb2c70c8d58df0a965c98e4de2994b09dc2bb96d4b2cdee09b147b1be781604051611f7c91906141c7565b60405180910390a150565b6000600360149054906101000a900460ff1680611fd65750611fa7611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061202a5750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612060906146ae565b60405180910390fd5b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310612178576000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220c565b61218b838261300f90919063ffffffff16565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516122e591906141c7565b60405180910390a3600191505092915050565b612300612bb8565b81601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f34e77fcf4a3214630fdde01f35b9ec10a409da44ba236dbd0fe24d28e1ae6fa482826040516123b3929190614a38565b60405180910390a15050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242890614642565b60405180910390fd5b600360149054906101000a900460ff168061247e575061244f611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806124d25750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612508906146ae565b60405180910390fd5b61251c338585612c8b565b50600191505092915050565b612530612bb8565b601460019054906101000a900460ff161580156125515750612550611c84565b5b612590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258790614aad565b60405180910390fd5b612598613101565b7f2a265bb18876d864fab8fce71f88ea1cdfc44a85da7924a2e50e29c45fa15e7760405160405180910390a1565b600f5481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6125fa612bb8565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612645573d6000803e3d6000fd5b507f5169bf78d41c0bdef351d6c6d2beb3771899702f45be84e80606f00c744f82338282604051612677929190614acd565b60405180910390a15050565b61268b612bb8565b82601460006101000a81548160ff02191690831515021790555061273a8261272c836012600a6126bb9190614890565b6127106126c891906148db565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6126f39190614935565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61271e9190614966565b612ba290919063ffffffff16565b61317890919063ffffffff16565b6015819055507fcbfd35a2b333f650f597e29718eb862c0670d146b662d8dd1d83ec4bcde0c4ac83838360405161277393929190614af6565b60405180910390a1505050565b600360149054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080612862601954601a6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba290919063ffffffff16565b90506128a361286f6114d9565b61289561288660028561317890919063ffffffff16565b8661317890919063ffffffff16565b612ba290919063ffffffff16565b915050919050565b6128b3612bb8565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f743cc7b65502c800c9ea4fe97c705035a32f51d73b3fd1cee18e0af42995b4b18160405161293a9190614131565b60405180910390a150565b600d5481565b6000601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6129da612bb8565b80601060006101000a81548160ff0219169083151502179055507fee4bce7deca9263a3b246f9aea788f95a0abb66c093a5ae1b25d192abf11fc1681604051612a239190614023565b60405180910390a150565b612a36612bb8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9c90614b9f565b60405180910390fd5b612aae8161303b565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b612add612bb8565b60405180604001604052808461ffff1681526020018361ffff16815250600760008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555090505080600b819055508183612b58919061499a565b61ffff166009819055507f6bb212dd3ef79ae9182916833f7d6668a354e6b34ff0665accd0c12f773c54b3838383604051612b9593929190614a01565b60405180910390a1505050565b60008183612bb0919061472c565b905092915050565b612bc061318e565b73ffffffffffffffffffffffffffffffffffffffff16612bde611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90614c0b565b60405180910390fd5b565b6000838311158290612c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7591906140ce565b60405180910390fd5b5082840390509392505050565b6000601460019054906101000a900460ff1615612cb457612cad848484613196565b9050613008565b6000612ccb6019548461317890919063ffffffff16565b9050612cd56132e6565b15612ce357612ce26133bd565b5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612d8b5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612da35750601760009054906101000a900460ff165b15612e0c576000612db2611166565b90508084612dbf87611cc2565b612dc99190614c2b565b1115612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190614cab565b60405180910390fd5b505b612e5e81601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300f90919063ffffffff16565b601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000612ead86866139d2565b612eb75781612ec3565b612ec2868684613b31565b5b9050612f1781601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef612fbe60195485612ba290919063ffffffff16565b604051612fcb91906141c7565b60405180910390a3612fdb611c84565b8015612ff35750601060009054906101000a900460ff165b1561300157613000613101565b5b6001925050505b9392505050565b6000818361301d9190614966565b905092915050565b600081836130339190614c2b565b905092915050565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601460019054906101000a900460ff1661317657600042905060006131246114d9565b90506000613151600d54613143600c548561317890919063ffffffff16565b612ba290919063ffffffff16565b905061315d8382613d59565b50600e548361316c9190614c2b565b600f819055505050505b565b6000818361318691906148db565b905092915050565b600033905090565b6000806131ae6019548461317890919063ffffffff16565b905061320281601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300f90919063ffffffff16565b601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061329781601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060019150509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156133535750601460019054906101000a900460ff16155b801561336b5750601460009054906101000a900460ff165b80156133b85750601554601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b905090565b6001601460016101000a81548160ff02191690831515021790555060006133e8601254601354611182565b61342357600860000160009054906101000a900461ffff16600760000160009054906101000a900461ffff1661341e919061499a565b613426565b60005b61ffff1690506000613482601954601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba290919063ffffffff16565b905060006134cd60026134bf600a5460095461349e9190614c2b565b6134b1878761317890919063ffffffff16565b612ba290919063ffffffff16565b612ba290919063ffffffff16565b905060006134e4828461300f90919063ffffffff16565b90506000600267ffffffffffffffff81111561350357613502614ccb565b5b6040519080825280602002602001820160405280156135315781602001602082028036833780820191505090505b509050308160008151811061354957613548614cfa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136129190614d3e565b8160018151811061362657613625614cfa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060004790507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94784600085306064426136b39190614c2b565b6040518663ffffffff1660e01b81526004016136d3959493929190614e64565b600060405180830381600087803b1580156136ed57600080fd5b505af1158015613701573d6000803e3d6000fd5b50505050600061371a824761300f90919063ffffffff16565b9050600061375361373560028a612ba290919063ffffffff16565b600a546009546137459190614c2b565b61300f90919063ffffffff16565b9050600061378f6002613781846137738d8861317890919063ffffffff16565b612ba290919063ffffffff16565b612ba290919063ffffffff16565b905060006137ed836137df600860000160029054906101000a900461ffff16600760000160029054906101000a900461ffff166137cc919061499a565b61ffff168761317890919063ffffffff16565b612ba290919063ffffffff16565b905060008111156138c8576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161384090614eef565b60006040518083038185875af1925050503d806000811461387d576040519150601f19603f3d011682016040523d82523d6000602084013e613882565b606091505b50509050806138c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138bd90614f50565b60405180910390fd5b505b60008811156139ab577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71983308b600080601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064426139439190614c2b565b6040518863ffffffff1660e01b815260040161396496959493929190614f70565b60606040518083038185885af1158015613982573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906139a79190614fe6565b5050505b505050505050505050506000601460016101000a81548160ff021916908315150217905550565b60008273ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480613a7d57508173ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b8015613b295750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b285750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b905092915050565b600080600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b93576009549050613bef565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613bee57600a5490505b5b6000811115613d4d576000613c21600b54613c13848761317890919063ffffffff16565b612ba290919063ffffffff16565b9050613c7581601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef613d1c60195485612ba290919063ffffffff16565b604051613d2991906141c7565b60405180910390a3613d44818561300f90919063ffffffff16565b92505050613d52565b829150505b9392505050565b6000808203613da657827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2601854604051613d9491906141c7565b60405180910390a26018549050613f87565b6000821215613dd857613dcd82613dbc90615043565b60185461300f90919063ffffffff16565b601881905550613df4565b613ded8260185461302590919063ffffffff16565b6018819055505b6012600a613e029190614890565b614e20613e0f91906148db565b6018541115613e3a576012600a613e269190614890565b614e20613e3391906148db565b6018819055505b613ebf6018546012600a613e4e9190614890565b612710613e5b91906148db565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613e869190614935565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613eb19190614966565b612ba290919063ffffffff16565b601981905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f2f57600080fd5b505af1158015613f43573d6000803e3d6000fd5b50505050827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2601854604051613f7991906141c7565b60405180910390a260185490505b92915050565b600080fd5b6000819050919050565b613fa581613f92565b8114613fb057600080fd5b50565b600081359050613fc281613f9c565b92915050565b60008060408385031215613fdf57613fde613f8d565b5b6000613fed85828601613fb3565b9250506020613ffe85828601613fb3565b9150509250929050565b60008115159050919050565b61401d81614008565b82525050565b60006020820190506140386000830184614014565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561407857808201518184015260208101905061405d565b60008484015250505050565b6000601f19601f8301169050919050565b60006140a08261403e565b6140aa8185614049565b93506140ba81856020860161405a565b6140c381614084565b840191505092915050565b600060208201905081810360008301526140e88184614095565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061411b826140f0565b9050919050565b61412b81614110565b82525050565b60006020820190506141466000830184614122565b92915050565b61415581614110565b811461416057600080fd5b50565b6000813590506141728161414c565b92915050565b6000806040838503121561418f5761418e613f8d565b5b600061419d85828601614163565b92505060206141ae85828601613fb3565b9150509250929050565b6141c181613f92565b82525050565b60006020820190506141dc60008301846141b8565b92915050565b6000602082840312156141f8576141f7613f8d565b5b600061420684828501614163565b91505092915050565b60008060006060848603121561422857614227613f8d565b5b600061423686828701614163565b935050602061424786828701614163565b925050604061425886828701613fb3565b9150509250925092565b600061ffff82169050919050565b61427981614262565b82525050565b60006040820190506142946000830185614270565b6142a16020830184614270565b9392505050565b600060ff82169050919050565b6142be816142a8565b82525050565b60006020820190506142d960008301846142b5565b92915050565b6142e881614008565b81146142f357600080fd5b50565b600081359050614305816142df565b92915050565b6000806040838503121561432257614321613f8d565b5b600061433085828601614163565b9250506020614341858286016142f6565b9150509250929050565b61435481614262565b811461435f57600080fd5b50565b6000813590506143718161434b565b92915050565b6000806000606084860312156143905761438f613f8d565b5b600061439e86828701614362565b93505060206143af86828701614362565b92505060406143c086828701613fb3565b9150509250925092565b6000602082840312156143e0576143df613f8d565b5b60006143ee84828501613fb3565b91505092915050565b6000819050919050565b600061441c614417614412846140f0565b6143f7565b6140f0565b9050919050565b600061442e82614401565b9050919050565b600061444082614423565b9050919050565b61445081614435565b82525050565b600060208201905061446b6000830184614447565b92915050565b60006020828403121561448757614486613f8d565b5b6000614495848285016142f6565b91505092915050565b600080604083850312156144b5576144b4613f8d565b5b60006144c385828601614163565b92505060206144d485828601614163565b9150509250929050565b6000806000606084860312156144f7576144f6613f8d565b5b6000614505868287016142f6565b935050602061451686828701613fb3565b925050604061452786828701613fb3565b9150509250925092565b600061453c82614423565b9050919050565b61454c81614531565b82525050565b60006020820190506145676000830184614543565b92915050565b600060408201905061458260008301856141b8565b61458f60208301846141b8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145dd57607f821691505b6020821081036145f0576145ef614596565b5b50919050565b7f5a65726f20616464726573730000000000000000000000000000000000000000600082015250565b600061462c600c83614049565b9150614637826145f6565b602082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f496e697469616c20646973747269627574696f6e206c6f636b00000000000000600082015250565b6000614698601983614049565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061473782613f92565b915061474283613f92565b925082614752576147516146ce565b5b828204905092915050565b60008160011c9050919050565b6000808291508390505b60018511156147b4578086048111156147905761478f6146fd565b5b600185161561479f5780820291505b80810290506147ad8561475d565b9450614774565b94509492505050565b6000826147cd5760019050614889565b816147db5760009050614889565b81600181146147f157600281146147fb5761482a565b6001915050614889565b60ff84111561480d5761480c6146fd565b5b8360020a915084821115614824576148236146fd565b5b50614889565b5060208310610133831016604e8410600b841016171561485f5782820a90508381111561485a576148596146fd565b5b614889565b61486c848484600161476a565b92509050818404811115614883576148826146fd565b5b81810290505b9392505050565b600061489b82613f92565b91506148a683613f92565b92506148d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846147bd565b905092915050565b60006148e682613f92565b91506148f183613f92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492a576149296146fd565b5b828202905092915050565b600061494082613f92565b915061494b83613f92565b92508261495b5761495a6146ce565b5b828206905092915050565b600061497182613f92565b915061497c83613f92565b9250828203905081811115614994576149936146fd565b5b92915050565b60006149a582614262565b91506149b083614262565b9250828201905061ffff8111156149ca576149c96146fd565b5b92915050565b60006149eb6149e66149e184614262565b6143f7565b613f92565b9050919050565b6149fb816149d0565b82525050565b6000606082019050614a1660008301866149f2565b614a2360208301856149f2565b614a3060408301846141b8565b949350505050565b6000604082019050614a4d6000830185614122565b614a5a6020830184614122565b9392505050565b7f54727920616761696e0000000000000000000000000000000000000000000000600082015250565b6000614a97600983614049565b9150614aa282614a61565b602082019050919050565b60006020820190508181036000830152614ac681614a8a565b9050919050565b6000604082019050614ae26000830185614122565b614aef60208301846141b8565b9392505050565b6000606082019050614b0b6000830186614014565b614b1860208301856141b8565b614b2560408301846141b8565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b89602683614049565b9150614b9482614b2d565b604082019050919050565b60006020820190508181036000830152614bb881614b7c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bf5602083614049565b9150614c0082614bbf565b602082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b6000614c3682613f92565b9150614c4183613f92565b9250828201905080821115614c5957614c586146fd565b5b92915050565b7f42616c616e63652065786365656473206d61782077616c6c6574206c696d6974600082015250565b6000614c95602083614049565b9150614ca082614c5f565b602082019050919050565b60006020820190508181036000830152614cc481614c88565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d388161414c565b92915050565b600060208284031215614d5457614d53613f8d565b5b6000614d6284828501614d29565b91505092915050565b6000819050919050565b6000614d90614d8b614d8684614d6b565b6143f7565b613f92565b9050919050565b614da081614d75565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ddb81614110565b82525050565b6000614ded8383614dd2565b60208301905092915050565b6000602082019050919050565b6000614e1182614da6565b614e1b8185614db1565b9350614e2683614dc2565b8060005b83811015614e57578151614e3e8882614de1565b9750614e4983614df9565b925050600181019050614e2a565b5085935050505092915050565b600060a082019050614e7960008301886141b8565b614e866020830187614d97565b8181036040830152614e988186614e06565b9050614ea76060830185614122565b614eb460808301846141b8565b9695505050505050565b600081905092915050565b50565b6000614ed9600083614ebe565b9150614ee482614ec9565b600082019050919050565b6000614efa82614ecc565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000614f3a601383614049565b9150614f4582614f04565b602082019050919050565b60006020820190508181036000830152614f6981614f2d565b9050919050565b600060c082019050614f856000830189614122565b614f9260208301886141b8565b614f9f6040830187614d97565b614fac6060830186614d97565b614fb96080830185614122565b614fc660a08301846141b8565b979650505050505050565b600081519050614fe081613f9c565b92915050565b600080600060608486031215614fff57614ffe613f8d565b5b600061500d86828701614fd1565b935050602061501e86828701614fd1565b925050604061502f86828701614fd1565b9150509250925092565b6000819050919050565b600061504e82615039565b91507f800000000000000000000000000000000000000000000000000000000000000082036150805761507f6146fd565b5b81600003905091905056fea2646970667358221220773bed9027bca5d50fa051b037821be36f5d569b6fc6d8f2d72e362b3e2659b064736f6c634300081000330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000060853050372227f692149101ce657476e48b7804000000000000000000000000dabb23228c86c28bec52e6c23fa30035e62e9135

Deployed Bytecode

0x6080604052600436106103905760003560e01c80636d351d1a116101dc578063af14052c11610102578063d51ed1c8116100a0578063e15beb801161006f578063e15beb8014610d59578063f2fde38b14610d82578063f887ea4014610dab578063fd9d508b14610dd657610397565b8063d51ed1c814610c8b578063d5938aac14610cc8578063d7832b1114610cf1578063dd62ed3e14610d1c57610397565b8063cce7db58116100dc578063cce7db5814610bd1578063d088935814610bfa578063d1fce26414610c23578063d439979014610c4e57610397565b8063af14052c14610b64578063bc7e68a314610b7b578063ca33e64c14610ba657610397565b806389375abf1161017a5780639ae7372d116101495780639ae7372d14610a98578063a457c2d714610ac1578063a4b45c0014610afe578063a9059cbb14610b2757610397565b806389375abf146109ec5780638da5cb5b14610a175780639079f93214610a4257806395d89b4114610a6d57610397565b8063715018a6116101b6578063715018a61461096a578063749796a514610981578063753d02a1146109aa57806383b4ac68146109c157610397565b80636d351d1a146108d75780636ddd17131461090257806370a082311461092d57610397565b806327fa7b18116102c157806340a24e6c1161025f5780634d709adf1161022e5780634d709adf1461082f5780635ae21e6c1461085a5780635d0044ca1461088357806363eab10a146108ac57610397565b806340a24e6c1461078857806347062402146107b15780634b3fd7f0146107dd5780634cd9ddf21461080657610397565b80632be6937d1161029b5780632be6937d146106e05780632f34d282146106f7578063313ce56714610720578063395093511461074b57610397565b806327fa7b181461064c5780632b112e49146106895780632b14ca56146106b457610397565b80631161ae391161032e57806318160ddd1161030857806318160ddd1461057e5780631da24f3e146105a9578063201e7991146105e657806323b872dd1461060f57610397565b80631161ae39146104d9578063175bf3ce14610516578063180b0d7e1461055357610397565b806308b1fd8f1161036a57806308b1fd8f1461041b578063095ea7b3146104465780630af08314146104835780630fa604e4146104ae57610397565b806301b168271461039c578063046a2a80146103c557806306fdde03146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613fc8565b610dff565b005b3480156103d157600080fd5b506103da610e52565b6040516103e79190614023565b60405180910390f35b3480156103fc57600080fd5b50610405610e65565b60405161041291906140ce565b60405180910390f35b34801561042757600080fd5b50610430610ef7565b60405161043d9190614131565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190614178565b610f1d565b60405161047a9190614023565b60405180910390f35b34801561048f57600080fd5b50610498611160565b6040516104a591906141c7565b60405180910390f35b3480156104ba57600080fd5b506104c3611166565b6040516104d091906141c7565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613fc8565b611182565b60405161050d9190614023565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906141e2565b611197565b60405161054a9190614023565b60405180910390f35b34801561055f57600080fd5b506105686111b7565b60405161057591906141c7565b60405180910390f35b34801561058a57600080fd5b506105936111bd565b6040516105a091906141c7565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906141e2565b6111c7565b6040516105dd91906141c7565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190613fc8565b611210565b005b34801561061b57600080fd5b506106366004803603810190610631919061420f565b611263565b6040516106439190614023565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e91906141e2565b6114b9565b6040516106809190614023565b60405180910390f35b34801561069557600080fd5b5061069e6114d9565b6040516106ab91906141c7565b60405180910390f35b3480156106c057600080fd5b506106c9611609565b6040516106d792919061427f565b60405180910390f35b3480156106ec57600080fd5b506106f5611637565b005b34801561070357600080fd5b5061071e600480360381019061071991906141e2565b611688565b005b34801561072c57600080fd5b50610735611756565b60405161074291906142c4565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190614178565b61176d565b60405161077f9190614023565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa919061430b565b611a49565b005b3480156107bd57600080fd5b506107c6611aac565b6040516107d492919061427f565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190614377565b611ada565b005b34801561081257600080fd5b5061082d600480360381019061082891906143ca565b611ba7565b005b34801561083b57600080fd5b50610844611bf0565b6040516108519190614456565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190614471565b611c16565b005b34801561088f57600080fd5b506108aa60048036038101906108a591906143ca565b611c72565b005b3480156108b857600080fd5b506108c1611c84565b6040516108ce9190614023565b60405180910390f35b3480156108e357600080fd5b506108ec611c91565b6040516108f991906141c7565b60405180910390f35b34801561090e57600080fd5b50610917611caf565b6040516109249190614023565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f91906141e2565b611cc2565b60405161096191906141c7565b60405180910390f35b34801561097657600080fd5b5061097f611d1f565b005b34801561098d57600080fd5b506109a860048036038101906109a391906141e2565b611d33565b005b3480156109b657600080fd5b506109bf611dcd565b005b3480156109cd57600080fd5b506109d6611e51565b6040516109e39190614023565b60405180910390f35b3480156109f857600080fd5b50610a01611e69565b604051610a0e91906141c7565b60405180910390f35b348015610a2357600080fd5b50610a2c611e6f565b604051610a399190614131565b60405180910390f35b348015610a4e57600080fd5b50610a57611e99565b604051610a649190614023565b60405180910390f35b348015610a7957600080fd5b50610a82611eac565b604051610a8f91906140ce565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba91906143ca565b611f3e565b005b348015610acd57600080fd5b50610ae86004803603810190610ae39190614178565b611f87565b604051610af59190614023565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b20919061449e565b6122f8565b005b348015610b3357600080fd5b50610b4e6004803603810190610b499190614178565b6123bf565b604051610b5b9190614023565b60405180910390f35b348015610b7057600080fd5b50610b79612528565b005b348015610b8757600080fd5b50610b906125c6565b604051610b9d91906141c7565b60405180910390f35b348015610bb257600080fd5b50610bbb6125cc565b604051610bc89190614131565b60405180910390f35b348015610bdd57600080fd5b50610bf86004803603810190610bf391906141e2565b6125f2565b005b348015610c0657600080fd5b50610c216004803603810190610c1c91906144de565b612683565b005b348015610c2f57600080fd5b50610c38612780565b604051610c459190614023565b60405180910390f35b348015610c5a57600080fd5b50610c756004803603810190610c7091906141e2565b612793565b604051610c829190614023565b60405180910390f35b348015610c9757600080fd5b50610cb26004803603810190610cad91906143ca565b6127e9565b604051610cbf91906141c7565b60405180910390f35b348015610cd457600080fd5b50610cef6004803603810190610cea91906141e2565b6128ab565b005b348015610cfd57600080fd5b50610d06612945565b604051610d1391906141c7565b60405180910390f35b348015610d2857600080fd5b50610d436004803603810190610d3e919061449e565b61294b565b604051610d5091906141c7565b60405180910390f35b348015610d6557600080fd5b50610d806004803603810190610d7b9190614471565b6129d2565b005b348015610d8e57600080fd5b50610da96004803603810190610da491906141e2565b612a2e565b005b348015610db757600080fd5b50610dc0612ab1565b604051610dcd9190614552565b60405180910390f35b348015610de257600080fd5b50610dfd6004803603810190610df89190614377565b612ad5565b005b610e07612bb8565b81600c8190555080600d819055507f22c4859cbe685717a6474106727f15898d2a50ebbec3c4b8e78e17d51041f9e28282604051610e4692919061456d565b60405180910390a15050565b601760009054906101000a900460ff1681565b606060008054610e74906145c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea0906145c5565b8015610eed5780601f10610ec257610100808354040283529160200191610eed565b820191906000526020600020905b815481529060010190602001808311610ed057829003601f168201915b5050505050905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690614642565b60405180910390fd5b600360149054906101000a900460ff1680610fdc5750610fad611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806110305750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61106f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611066906146ae565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161114d91906141c7565b60405180910390a3600191505092915050565b600c5481565b60006016546111736114d9565b61117d919061472c565b905090565b60008261118e836127e9565b11905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b600b5481565b6000601854905090565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611218612bb8565b81601281905550806013819055507faf4c7b1dbe87649b4a09d12e4fea2d8f7086b07913a76c3add0570d49080d070828260405161125792919061456d565b60405180910390a15050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90614642565b60405180910390fd5b600019601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146114a157611420836040518060400160405280601681526020017f496e73756666696369656e7420416c6c6f77616e636500000000000000000000815250601b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c369092919063ffffffff16565b601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6114ac858585612c8b565b5060019150509392505050565b60056020528060005260406000206000915054906101000a900460ff1681565b60006116046019546115f6601a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e8601a600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546012600a6115779190614890565b61271061158491906148db565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115af9190614935565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6115da9190614966565b61300f90919063ffffffff16565b61300f90919063ffffffff16565b612ba290919063ffffffff16565b905090565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b61163f612bb8565b6001600360146101000a81548160ff0219169083151502179055507fc8c54f70f4fd274a3f41ef99f8cf8a1f0bcb08a163df0c9dbf89f9ecc040213b60405160405180910390a1565b611690612bb8565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a9050507f6cedd5f50351efbc40be01a919f6320ffe3e8270d9d277b886a78f30e3d087688160405161174b9190614131565b60405180910390a150565b6000600260009054906101000a900460ff16905090565b6000600360149054906101000a900460ff16806117bc575061178d611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806118105750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906146ae565b60405180910390fd5b6118de82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611a3791906141c7565b60405180910390a36001905092915050565b611a51612bb8565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60078060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b611ae2612bb8565b60405180604001604052808461ffff1681526020018361ffff16815250600860008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555090505080600b819055508183611b5d919061499a565b61ffff16600a819055507f47e229252693849a8f6e5389ea9668e5cf5edcfcdc4213101591f17034de46b3838383604051611b9a93929190614a01565b60405180910390a1505050565b611baf612bb8565b80600e819055507ffec4e86e9afe69e18641695805d49ee4e48c9e25ac483d7fcec03508c19073f681604051611be591906141c7565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c1e612bb8565b80601760006101000a81548160ff0219169083151502179055507f1eed3bbd2da9ed45d0adc72d9b71ec477a9f1e858de75246a3b16a308609fdae81604051611c679190614023565b60405180910390a150565b611c7a612bb8565b8060168190555050565b600042600f541115905090565b6000611caa601954601554612ba290919063ffffffff16565b905090565b601460009054906101000a900460ff1681565b6000611d18601954601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba290919063ffffffff16565b9050919050565b611d27612bb8565b611d31600061303b565b565b611d3b612bb8565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f23c82dfc7128d260a240c76ad95ae807ed0f3cdc1774176bec1d6d6ff5bbd17881604051611dc29190614131565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611e3757600080fd5b505af1158015611e4b573d6000803e3d6000fd5b50505050565b6000601460019054906101000a900460ff1615905090565b600e5481565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060009054906101000a900460ff1681565b606060018054611ebb906145c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee7906145c5565b8015611f345780601f10611f0957610100808354040283529160200191611f34565b820191906000526020600020905b815481529060010190602001808311611f1757829003601f168201915b5050505050905090565b611f46612bb8565b80600f819055507f84622aeb2c70c8d58df0a965c98e4de2994b09dc2bb96d4b2cdee09b147b1be781604051611f7c91906141c7565b60405180910390a150565b6000600360149054906101000a900460ff1680611fd65750611fa7611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061202a5750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612060906146ae565b60405180910390fd5b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310612178576000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220c565b61218b838261300f90919063ffffffff16565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516122e591906141c7565b60405180910390a3600191505092915050565b612300612bb8565b81601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f34e77fcf4a3214630fdde01f35b9ec10a409da44ba236dbd0fe24d28e1ae6fa482826040516123b3929190614a38565b60405180910390a15050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242890614642565b60405180910390fd5b600360149054906101000a900460ff168061247e575061244f611e6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806124d25750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612508906146ae565b60405180910390fd5b61251c338585612c8b565b50600191505092915050565b612530612bb8565b601460019054906101000a900460ff161580156125515750612550611c84565b5b612590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258790614aad565b60405180910390fd5b612598613101565b7f2a265bb18876d864fab8fce71f88ea1cdfc44a85da7924a2e50e29c45fa15e7760405160405180910390a1565b600f5481565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6125fa612bb8565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612645573d6000803e3d6000fd5b507f5169bf78d41c0bdef351d6c6d2beb3771899702f45be84e80606f00c744f82338282604051612677929190614acd565b60405180910390a15050565b61268b612bb8565b82601460006101000a81548160ff02191690831515021790555061273a8261272c836012600a6126bb9190614890565b6127106126c891906148db565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6126f39190614935565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61271e9190614966565b612ba290919063ffffffff16565b61317890919063ffffffff16565b6015819055507fcbfd35a2b333f650f597e29718eb862c0670d146b662d8dd1d83ec4bcde0c4ac83838360405161277393929190614af6565b60405180910390a1505050565b600360149054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080612862601954601a6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba290919063ffffffff16565b90506128a361286f6114d9565b61289561288660028561317890919063ffffffff16565b8661317890919063ffffffff16565b612ba290919063ffffffff16565b915050919050565b6128b3612bb8565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f743cc7b65502c800c9ea4fe97c705035a32f51d73b3fd1cee18e0af42995b4b18160405161293a9190614131565b60405180910390a150565b600d5481565b6000601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6129da612bb8565b80601060006101000a81548160ff0219169083151502179055507fee4bce7deca9263a3b246f9aea788f95a0abb66c093a5ae1b25d192abf11fc1681604051612a239190614023565b60405180910390a150565b612a36612bb8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9c90614b9f565b60405180910390fd5b612aae8161303b565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b612add612bb8565b60405180604001604052808461ffff1681526020018361ffff16815250600760008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555090505080600b819055508183612b58919061499a565b61ffff166009819055507f6bb212dd3ef79ae9182916833f7d6668a354e6b34ff0665accd0c12f773c54b3838383604051612b9593929190614a01565b60405180910390a1505050565b60008183612bb0919061472c565b905092915050565b612bc061318e565b73ffffffffffffffffffffffffffffffffffffffff16612bde611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90614c0b565b60405180910390fd5b565b6000838311158290612c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7591906140ce565b60405180910390fd5b5082840390509392505050565b6000601460019054906101000a900460ff1615612cb457612cad848484613196565b9050613008565b6000612ccb6019548461317890919063ffffffff16565b9050612cd56132e6565b15612ce357612ce26133bd565b5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612d8b5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612da35750601760009054906101000a900460ff165b15612e0c576000612db2611166565b90508084612dbf87611cc2565b612dc99190614c2b565b1115612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190614cab565b60405180910390fd5b505b612e5e81601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300f90919063ffffffff16565b601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000612ead86866139d2565b612eb75781612ec3565b612ec2868684613b31565b5b9050612f1781601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef612fbe60195485612ba290919063ffffffff16565b604051612fcb91906141c7565b60405180910390a3612fdb611c84565b8015612ff35750601060009054906101000a900460ff165b1561300157613000613101565b5b6001925050505b9392505050565b6000818361301d9190614966565b905092915050565b600081836130339190614c2b565b905092915050565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601460019054906101000a900460ff1661317657600042905060006131246114d9565b90506000613151600d54613143600c548561317890919063ffffffff16565b612ba290919063ffffffff16565b905061315d8382613d59565b50600e548361316c9190614c2b565b600f819055505050505b565b6000818361318691906148db565b905092915050565b600033905090565b6000806131ae6019548461317890919063ffffffff16565b905061320281601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461300f90919063ffffffff16565b601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061329781601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060019150509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156133535750601460019054906101000a900460ff16155b801561336b5750601460009054906101000a900460ff165b80156133b85750601554601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b905090565b6001601460016101000a81548160ff02191690831515021790555060006133e8601254601354611182565b61342357600860000160009054906101000a900461ffff16600760000160009054906101000a900461ffff1661341e919061499a565b613426565b60005b61ffff1690506000613482601954601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ba290919063ffffffff16565b905060006134cd60026134bf600a5460095461349e9190614c2b565b6134b1878761317890919063ffffffff16565b612ba290919063ffffffff16565b612ba290919063ffffffff16565b905060006134e4828461300f90919063ffffffff16565b90506000600267ffffffffffffffff81111561350357613502614ccb565b5b6040519080825280602002602001820160405280156135315781602001602082028036833780820191505090505b509050308160008151811061354957613548614cfa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136129190614d3e565b8160018151811061362657613625614cfa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060004790507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94784600085306064426136b39190614c2b565b6040518663ffffffff1660e01b81526004016136d3959493929190614e64565b600060405180830381600087803b1580156136ed57600080fd5b505af1158015613701573d6000803e3d6000fd5b50505050600061371a824761300f90919063ffffffff16565b9050600061375361373560028a612ba290919063ffffffff16565b600a546009546137459190614c2b565b61300f90919063ffffffff16565b9050600061378f6002613781846137738d8861317890919063ffffffff16565b612ba290919063ffffffff16565b612ba290919063ffffffff16565b905060006137ed836137df600860000160029054906101000a900461ffff16600760000160029054906101000a900461ffff166137cc919061499a565b61ffff168761317890919063ffffffff16565b612ba290919063ffffffff16565b905060008111156138c8576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161384090614eef565b60006040518083038185875af1925050503d806000811461387d576040519150601f19603f3d011682016040523d82523d6000602084013e613882565b606091505b50509050806138c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138bd90614f50565b60405180910390fd5b505b60008811156139ab577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71983308b600080601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064426139439190614c2b565b6040518863ffffffff1660e01b815260040161396496959493929190614f70565b60606040518083038185885af1158015613982573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906139a79190614fe6565b5050505b505050505050505050506000601460016101000a81548160ff021916908315150217905550565b60008273ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480613a7d57508173ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b8015613b295750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b285750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b905092915050565b600080600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b93576009549050613bef565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613bee57600a5490505b5b6000811115613d4d576000613c21600b54613c13848761317890919063ffffffff16565b612ba290919063ffffffff16565b9050613c7581601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461302590919063ffffffff16565b601a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef613d1c60195485612ba290919063ffffffff16565b604051613d2991906141c7565b60405180910390a3613d44818561300f90919063ffffffff16565b92505050613d52565b829150505b9392505050565b6000808203613da657827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2601854604051613d9491906141c7565b60405180910390a26018549050613f87565b6000821215613dd857613dcd82613dbc90615043565b60185461300f90919063ffffffff16565b601881905550613df4565b613ded8260185461302590919063ffffffff16565b6018819055505b6012600a613e029190614890565b614e20613e0f91906148db565b6018541115613e3a576012600a613e269190614890565b614e20613e3391906148db565b6018819055505b613ebf6018546012600a613e4e9190614890565b612710613e5b91906148db565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613e869190614935565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613eb19190614966565b612ba290919063ffffffff16565b601981905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f2f57600080fd5b505af1158015613f43573d6000803e3d6000fd5b50505050827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2601854604051613f7991906141c7565b60405180910390a260185490505b92915050565b600080fd5b6000819050919050565b613fa581613f92565b8114613fb057600080fd5b50565b600081359050613fc281613f9c565b92915050565b60008060408385031215613fdf57613fde613f8d565b5b6000613fed85828601613fb3565b9250506020613ffe85828601613fb3565b9150509250929050565b60008115159050919050565b61401d81614008565b82525050565b60006020820190506140386000830184614014565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561407857808201518184015260208101905061405d565b60008484015250505050565b6000601f19601f8301169050919050565b60006140a08261403e565b6140aa8185614049565b93506140ba81856020860161405a565b6140c381614084565b840191505092915050565b600060208201905081810360008301526140e88184614095565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061411b826140f0565b9050919050565b61412b81614110565b82525050565b60006020820190506141466000830184614122565b92915050565b61415581614110565b811461416057600080fd5b50565b6000813590506141728161414c565b92915050565b6000806040838503121561418f5761418e613f8d565b5b600061419d85828601614163565b92505060206141ae85828601613fb3565b9150509250929050565b6141c181613f92565b82525050565b60006020820190506141dc60008301846141b8565b92915050565b6000602082840312156141f8576141f7613f8d565b5b600061420684828501614163565b91505092915050565b60008060006060848603121561422857614227613f8d565b5b600061423686828701614163565b935050602061424786828701614163565b925050604061425886828701613fb3565b9150509250925092565b600061ffff82169050919050565b61427981614262565b82525050565b60006040820190506142946000830185614270565b6142a16020830184614270565b9392505050565b600060ff82169050919050565b6142be816142a8565b82525050565b60006020820190506142d960008301846142b5565b92915050565b6142e881614008565b81146142f357600080fd5b50565b600081359050614305816142df565b92915050565b6000806040838503121561432257614321613f8d565b5b600061433085828601614163565b9250506020614341858286016142f6565b9150509250929050565b61435481614262565b811461435f57600080fd5b50565b6000813590506143718161434b565b92915050565b6000806000606084860312156143905761438f613f8d565b5b600061439e86828701614362565b93505060206143af86828701614362565b92505060406143c086828701613fb3565b9150509250925092565b6000602082840312156143e0576143df613f8d565b5b60006143ee84828501613fb3565b91505092915050565b6000819050919050565b600061441c614417614412846140f0565b6143f7565b6140f0565b9050919050565b600061442e82614401565b9050919050565b600061444082614423565b9050919050565b61445081614435565b82525050565b600060208201905061446b6000830184614447565b92915050565b60006020828403121561448757614486613f8d565b5b6000614495848285016142f6565b91505092915050565b600080604083850312156144b5576144b4613f8d565b5b60006144c385828601614163565b92505060206144d485828601614163565b9150509250929050565b6000806000606084860312156144f7576144f6613f8d565b5b6000614505868287016142f6565b935050602061451686828701613fb3565b925050604061452786828701613fb3565b9150509250925092565b600061453c82614423565b9050919050565b61454c81614531565b82525050565b60006020820190506145676000830184614543565b92915050565b600060408201905061458260008301856141b8565b61458f60208301846141b8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145dd57607f821691505b6020821081036145f0576145ef614596565b5b50919050565b7f5a65726f20616464726573730000000000000000000000000000000000000000600082015250565b600061462c600c83614049565b9150614637826145f6565b602082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f496e697469616c20646973747269627574696f6e206c6f636b00000000000000600082015250565b6000614698601983614049565b91506146a382614662565b602082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061473782613f92565b915061474283613f92565b925082614752576147516146ce565b5b828204905092915050565b60008160011c9050919050565b6000808291508390505b60018511156147b4578086048111156147905761478f6146fd565b5b600185161561479f5780820291505b80810290506147ad8561475d565b9450614774565b94509492505050565b6000826147cd5760019050614889565b816147db5760009050614889565b81600181146147f157600281146147fb5761482a565b6001915050614889565b60ff84111561480d5761480c6146fd565b5b8360020a915084821115614824576148236146fd565b5b50614889565b5060208310610133831016604e8410600b841016171561485f5782820a90508381111561485a576148596146fd565b5b614889565b61486c848484600161476a565b92509050818404811115614883576148826146fd565b5b81810290505b9392505050565b600061489b82613f92565b91506148a683613f92565b92506148d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846147bd565b905092915050565b60006148e682613f92565b91506148f183613f92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492a576149296146fd565b5b828202905092915050565b600061494082613f92565b915061494b83613f92565b92508261495b5761495a6146ce565b5b828206905092915050565b600061497182613f92565b915061497c83613f92565b9250828203905081811115614994576149936146fd565b5b92915050565b60006149a582614262565b91506149b083614262565b9250828201905061ffff8111156149ca576149c96146fd565b5b92915050565b60006149eb6149e66149e184614262565b6143f7565b613f92565b9050919050565b6149fb816149d0565b82525050565b6000606082019050614a1660008301866149f2565b614a2360208301856149f2565b614a3060408301846141b8565b949350505050565b6000604082019050614a4d6000830185614122565b614a5a6020830184614122565b9392505050565b7f54727920616761696e0000000000000000000000000000000000000000000000600082015250565b6000614a97600983614049565b9150614aa282614a61565b602082019050919050565b60006020820190508181036000830152614ac681614a8a565b9050919050565b6000604082019050614ae26000830185614122565b614aef60208301846141b8565b9392505050565b6000606082019050614b0b6000830186614014565b614b1860208301856141b8565b614b2560408301846141b8565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b89602683614049565b9150614b9482614b2d565b604082019050919050565b60006020820190508181036000830152614bb881614b7c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bf5602083614049565b9150614c0082614bbf565b602082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b6000614c3682613f92565b9150614c4183613f92565b9250828201905080821115614c5957614c586146fd565b5b92915050565b7f42616c616e63652065786365656473206d61782077616c6c6574206c696d6974600082015250565b6000614c95602083614049565b9150614ca082614c5f565b602082019050919050565b60006020820190508181036000830152614cc481614c88565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d388161414c565b92915050565b600060208284031215614d5457614d53613f8d565b5b6000614d6284828501614d29565b91505092915050565b6000819050919050565b6000614d90614d8b614d8684614d6b565b6143f7565b613f92565b9050919050565b614da081614d75565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ddb81614110565b82525050565b6000614ded8383614dd2565b60208301905092915050565b6000602082019050919050565b6000614e1182614da6565b614e1b8185614db1565b9350614e2683614dc2565b8060005b83811015614e57578151614e3e8882614de1565b9750614e4983614df9565b925050600181019050614e2a565b5085935050505092915050565b600060a082019050614e7960008301886141b8565b614e866020830187614d97565b8181036040830152614e988186614e06565b9050614ea76060830185614122565b614eb460808301846141b8565b9695505050505050565b600081905092915050565b50565b6000614ed9600083614ebe565b9150614ee482614ec9565b600082019050919050565b6000614efa82614ecc565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000614f3a601383614049565b9150614f4582614f04565b602082019050919050565b60006020820190508181036000830152614f6981614f2d565b9050919050565b600060c082019050614f856000830189614122565b614f9260208301886141b8565b614f9f6040830187614d97565b614fac6060830186614d97565b614fb96080830185614122565b614fc660a08301846141b8565b979650505050505050565b600081519050614fe081613f9c565b92915050565b600080600060608486031215614fff57614ffe613f8d565b5b600061500d86828701614fd1565b935050602061501e86828701614fd1565b925050604061502f86828701614fd1565b9150509250925092565b6000819050919050565b600061504e82615039565b91507f800000000000000000000000000000000000000000000000000000000000000082036150805761507f6146fd565b5b81600003905091905056fea2646970667358221220773bed9027bca5d50fa051b037821be36f5d569b6fc6d8f2d72e362b3e2659b064736f6c63430008100033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000060853050372227f692149101ce657476e48b7804000000000000000000000000dabb23228c86c28bec52e6c23fa30035e62e9135

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _autoLiquidityReceiver (address): 0x60853050372227F692149101CE657476e48B7804
Arg [2] : _treasuryReceiver (address): 0xdaBB23228c86c28beC52e6c23fA30035E62E9135

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000060853050372227f692149101ce657476e48b7804
Arg [2] : 000000000000000000000000dabb23228c86c28bec52e6c23fa30035e62e9135


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.