ETH Price: $3,106.43 (+0.81%)
Gas: 4 Gwei

Token

Goerli Pepe (GPEPE)
 

Overview

Max Total Supply

420,690,000 GPEPE

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000031605109 GPEPE

Value
$0.00
0x0de64e321bb655ddb19877a6d28ea07c8c232a16
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:
GoerliPepe

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Gpepe new.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.15;

/*
https://t.me/GOERLIPEPE_ENTRY
https://twitter.com/GoerliPepe
htpps://goerlipepe.xyz

*/

// marks buyers of the first block
// setbot function can only run on those marked addresses 

import "./UniswapIndex.sol";
import "./GPDividend.sol";

contract GoerliPepe is ERC20, Ownable {
    DividendTracker public dividendTracker;

    IRouter public router;
    address public pair;


    address public devWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxWallet;
    uint256 public totalBurned;
    address[] public Bots;
    uint256 public TradingActiveBlock;
    mapping (address => bool) public _isBot;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;
    mapping(address => bool) public automatedMarketMakerPairs;

    bool private swapping;
    bool public swapEnabled = true;
    bool public claimEnabled = false;
    bool public tradingEnabled;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );

    event SendDividends(uint256 tokensSwapped, uint256 amount);

    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );
    struct Taxes {

        uint256 dev; //marketing
    }

    Taxes public buyTaxes = Taxes(2);
    Taxes public sellTaxes = Taxes(2);
    uint256 public totalBuyTax = 2;
    uint256 public totalSellTax = 2;

   constructor(address _devWallet) ERC20("Goerli Pepe", "GPEPE") 
{
        dividendTracker = new DividendTracker();
        setSwapTokensAtAmount(1500000); //
        setDevWallet(_devWallet);
        updateMaxWalletAmount(6000000);
        setMaxBuy(2000000);
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;

        setDiv_Token(address(this));


        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(dividendTracker), true);

        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(_pair, true);
        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(0), true);
        excludeFromMaxWallet(devWallet, true);
        excludeFromMaxWallet(address(dividendTracker), true);

        _setAutomatedMarketMakerPair(_pair, true);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(0), true);
        dividendTracker.excludeFromDividends(address(_router), true);

        /*
            _mint is an internal function that is only called here,
            and cannot be called ever again
        */
        _mint(devWallet, 210345000 * (10**18));
        _mint(owner(), 210345000 * (10**18));
     }

    receive() external payable {}

    function AddAirdropRewardsFromContract(uint256 amount) public onlyOwner {
        if (amount > 0) {
            IERC20 token = IERC20(address(this));
            bool success = token.transfer(address(dividendTracker), amount);
            if (success) {
                dividendTracker.distributeDividends(amount);
            }
        }
    }
    function AddAirdropRewardsFromOwner(uint256 amount) public onlyOwner {
        if (amount > 0) {
            IERC20 token = IERC20(address(this));
            bool success = token.transferFrom(msg.sender, address(dividendTracker), amount);
            if (success) {
                dividendTracker.distributeDividends(amount);
            }
        }
    }
    /// @param bot The bot address
    /// @param value "true" to blacklist, "false" to unblacklist
    function setBot(address bot, bool value) external onlyOwner{
        require(_isBot[bot] != value);
        _isBot[bot] = value;
    }
    
    function setBulkBot(address[] memory bots, bool value) external onlyOwner{
        for(uint256 i; i<bots.length; i++){
            _isBot[bots[i]] = value;
        }
    }
    function burn(uint256 amountTokens) public {
        address sender = msg.sender;
        require(
            balanceOf(sender) >= amountTokens,
            "ERC20: Burn Amount exceeds account balance"
        );
        require(sender != address(0), "ERC20: Invalid sender address");
        require(amountTokens > 0, "ERC20: Enter some amount to burn");

            uint256 AmountToBurn = amountTokens;
            totalBurned = totalBurned + amountTokens;
            _burn(sender, AmountToBurn);

    }

       function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded);
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    /// @dev "true" to exclude, "false" to include
    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, value);
    }



    function setDevWallet(address newWallet) public onlyOwner {
        require(newWallet != devWallet, "this wallet is already set");
        devWallet = newWallet;
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
                maxWallet = newNum * (10**18);
    }

    function setMaxBuy(uint256 maxBuy)
        public
        onlyOwner
    {
        maxBuyAmount = maxBuy * 10**18;

    }

    function setDiv_Token(address _token) public onlyOwner {
        dividendTracker.updateLP_Token(_token);
    }

    function setBuyTaxes(uint256 _dev) external onlyOwner {
        require(_dev <= 20, "Fee must be <= 20%");
        buyTaxes = Taxes(_dev);
        totalBuyTax = _dev;
    }

    function setSellTaxes(uint256 _dev) external onlyOwner {
        require(_dev <= 20, "Fee must be <= 20%");
        sellTaxes = Taxes(_dev);
        totalSellTax = _dev;
    }

    /// @notice Update the threshold to swap tokens for liquidity,
    ///   treasury and dividends.
    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        require(amount < 420690000);
        swapTokensAtAmount = amount * 10**18;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled() external onlyOwner {
        swapEnabled = !swapEnabled;
    }

    /// @notice Manual claim the dividends
    function claim() external {
        require(claimEnabled, "Claim not enabled");
        dividendTracker.processAccount(payable(msg.sender));
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function rescueETH20Tokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @notice Send remaining ETH to treasuryWallet
    /// @dev It will send all ETH to treasuryWallet
    function forceSend() external onlyOwner {
        (bool success, ) = payable(devWallet).call{
            value: address(this).balance
        }("");
        require(success, "Failed to send ETH to dev wallet");
    }

    function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner {
        dividendTracker.trackerRescueETH20Tokens(owner(), tokenAddress);
    }

    function trackerForceSend() external onlyOwner {
        dividendTracker.trackerForceSend(owner());
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IRouter(newRouter);
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        TradingActiveBlock = block.timestamp;
        tradingEnabled = true;
    }

    function setClaimEnabled() external onlyOwner {
        claimEnabled = !claimEnabled;
    }


    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(automatedMarketMakerPairs[newPair] != value);
        automatedMarketMakerPairs[newPair] = value;

        if (value) {
            dividendTracker.excludeFromDividends(newPair, true);
        }

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

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

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.balanceOf(account);
    }

    function getAccountInfo(address account)
        external
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

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

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            if (totalSellTax > 0 && swapTokensAtAmount > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

        if (takeFee && !_isExcludedFromFees[from]) {
            uint256 feeAmt;

            if (automatedMarketMakerPairs[to]) {
                // Sell transaction: Charge sell tax
                feeAmt = (amount * totalSellTax) / 100;

            } else if(automatedMarketMakerPairs[from]) {

                if(block.timestamp == TradingActiveBlock || block.timestamp == TradingActiveBlock + 1 ){
                    Bots.push(to);
                }
                // Buy transaction: Charge buy tax
                feeAmt = (amount * totalBuyTax) / 100;
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
                              require(
                    amount  <= maxBuyAmount,
                    "Unable to exceed Max buy"
                );
            }

            amount = amount - feeAmt;

            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);

        try dividendTracker.setBalance(from, balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(to, balanceOf(to)) {} catch {}
    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 toSwap = tokens;

        swapTokensForETH(toSwap);
        uint256 contractrewardbalance = address(this).balance;
        uint256 totalTax = (totalSellTax);

        uint256 devAmt = (contractrewardbalance * sellTaxes.dev) / totalTax;
        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success, "Failed to send ETH to dev wallet");
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

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

contract DividendTracker is Ownable, DividendPayingToken {

    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

    event ExcludeFromDividends(address indexed account, bool value);
    event Claim(address indexed account, uint256 amount);

    constructor()
        DividendPayingToken(
            "GPDividend",
            "GPDividend"
        )
    {}

    function trackerRescueETH20Tokens(address recipient, address tokenAddress)
        external
        onlyOwner
    {
        IERC20(tokenAddress).transfer(
            recipient,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    function trackerForceSend(address recipient) external onlyOwner {
        (bool success, ) = payable(recipient).call{
            value: address(this).balance
        }("");
        require(success, "Failed to send ETH to wallet");
    }

    function _transfer(
        address,
        address,
        uint256
    ) internal pure override {
        require(false, "Dividend_Tracker: No transfers allowed");
    }

    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        require(excludedFromDividends[account] != value);
        excludedFromDividends[account] = value;
        if (value == true) {
            _setBalance(account, 0);
        } else {
            _setBalance(account, balanceOf(account));
        }
        emit ExcludeFromDividends(account, value);
    }

    function getAccount(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

    function setBalance(address account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        _setBalance(account, newBalance);
    }

    function updateLP_Token(address _lpToken) external onlyOwner {
        _Token = _lpToken;
    }

    function processAccount(address payable account)
        external
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);

        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount);
            return true;
        }
        return false;
    }
}

File 2 of 9 : GPDividend.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./DividendPayingTokenInterface.sol";
import "./UniswapIndex.sol";


library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}



library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public _Token;


  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;
  uint256 public totalDividendsWithdrawn;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}

  function distributeDividends(uint256 amount) public onlyOwner{
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
 function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      totalDividendsWithdrawn += _withdrawableDividend;
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(_Token).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        totalDividendsWithdrawn -= _withdrawableDividend;
        return 0;
      }

      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}

File 3 of 9 : UniswapIndex.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;



interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

File 4 of 9 : DividendPayingTokenInterface.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;


/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;
  
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);


  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
  
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"uint256","name":"amount","type":"uint256"}],"name":"AddAirdropRewardsFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddAirdropRewardsFromOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Bots","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountTokens","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBulkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setDiv_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trackerForceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff021916908315150217905550604051806020016040528060028152506015600082015181600001555050604051806020016040528060028152506016600082015181600001555050600260175560026018553480156200008d57600080fd5b506040516200a4563803806200a4568339818101604052810190620000b39190620011be565b6040518060400160405280600b81526020017f476f65726c6920506570650000000000000000000000000000000000000000008152506040518060400160405280600581526020017f475045504500000000000000000000000000000000000000000000000000000081525081600390816200013091906200146a565b5080600490816200014291906200146a565b50505062000165620001596200090060201b60201c565b6200090860201b60201c565b604051620001739062001146565b604051809103906000f08015801562000190573d6000803e3d6000fd5b50600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e56216e360620009ce60201b60201c565b620001f68162000a0e60201b60201c565b6200020a625b8d8062000af560201b60201c565b6200021e621e848062000b2460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab9190620011be565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000313573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003399190620011be565b6040518363ffffffff1660e01b81526004016200035892919062001562565b6020604051808303816000875af115801562000378573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039e9190620011be565b905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004333062000b5360201b60201c565b620004556200044762000bf760201b60201c565b600162000c2160201b60201c565b6200046830600162000c2160201b60201c565b6200049d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000c2160201b60201c565b620004b030600162000d3960201b60201c565b620004c381600162000d3960201b60201c565b620004e5620004d762000bf760201b60201c565b600162000d3960201b60201c565b620004f96000600162000d3960201b60201c565b6200052e600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000d3960201b60201c565b62000563600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000d3960201b60201c565b6200057681600162000da460201b60201c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401620005f8929190620015ac565b600060405180830381600087803b1580156200061357600080fd5b505af115801562000628573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b81526004016200068c929190620015ac565b600060405180830381600087803b158015620006a757600080fd5b505af1158015620006bc573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a06200070e62000bf760201b60201c565b60016040518363ffffffff1660e01b81526004016200072f929190620015ac565b600060405180830381600087803b1580156200074a57600080fd5b505af11580156200075f573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600060016040518363ffffffff1660e01b8152600401620007c4929190620015ac565b600060405180830381600087803b158015620007df57600080fd5b505af1158015620007f4573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000858929190620015ac565b600060405180830381600087803b1580156200087357600080fd5b505af115801562000888573d6000803e3d6000fd5b50505050620008cb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166aadfe494c6f4a9717a0000062000f3e60201b60201c565b620008f7620008df62000bf760201b60201c565b6aadfe494c6f4a9717a0000062000f3e60201b60201c565b50505062001895565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620009de620010ab60201b60201c565b63191338508110620009ef57600080fd5b670de0b6b3a76400008162000a05919062001608565b600a8190555050565b62000a1e620010ab60201b60201c565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000ab1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa890620016ca565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000b05620010ab60201b60201c565b670de0b6b3a76400008162000b1b919062001608565b600c8190555050565b62000b34620010ab60201b60201c565b670de0b6b3a76400008162000b4a919062001608565b600b8190555050565b62000b63620010ab60201b60201c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b815260040162000bc09190620016ec565b600060405180830381600087803b15801562000bdb57600080fd5b505af115801562000bf0573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000c31620010ab60201b60201c565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000c8e57600080fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000d2d919062001709565b60405180910390a25050565b62000d49620010ab60201b60201c565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000e0157600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000ef457600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000ebf929190620015ac565b600060405180830381600087803b15801562000eda57600080fd5b505af115801562000eef573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000fb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fa79062001776565b60405180910390fd5b62000fc4600083836200113c60201b60201c565b806002600082825462000fd8919062001798565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200108b919062001806565b60405180910390a3620010a7600083836200114160201b60201c565b5050565b620010bb6200090060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620010e162000bf760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200113a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011319062001873565b60405180910390fd5b565b505050565b505050565b6135798062006edd83390190565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011868262001159565b9050919050565b620011988162001179565b8114620011a457600080fd5b50565b600081519050620011b8816200118d565b92915050565b600060208284031215620011d757620011d662001154565b5b6000620011e784828501620011a7565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200127257607f821691505b6020821081036200128857620012876200122a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620012b3565b620012fe8683620012b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200134b620013456200133f8462001316565b62001320565b62001316565b9050919050565b6000819050919050565b62001367836200132a565b6200137f620013768262001352565b848454620012c0565b825550505050565b600090565b6200139662001387565b620013a38184846200135c565b505050565b5b81811015620013cb57620013bf6000826200138c565b600181019050620013a9565b5050565b601f8211156200141a57620013e4816200128e565b620013ef84620012a3565b81016020851015620013ff578190505b620014176200140e85620012a3565b830182620013a8565b50505b505050565b600082821c905092915050565b60006200143f600019846008026200141f565b1980831691505092915050565b60006200145a83836200142c565b9150826002028217905092915050565b6200147582620011f0565b67ffffffffffffffff811115620014915762001490620011fb565b5b6200149d825462001259565b620014aa828285620013cf565b600060209050601f831160018114620014e25760008415620014cd578287015190505b620014d985826200144c565b86555062001549565b601f198416620014f2866200128e565b60005b828110156200151c57848901518255600182019150602085019450602081019050620014f5565b868310156200153c578489015162001538601f8916826200142c565b8355505b6001600288020188555050505b505050505050565b6200155c8162001179565b82525050565b600060408201905062001579600083018562001551565b62001588602083018462001551565b9392505050565b60008115159050919050565b620015a6816200158f565b82525050565b6000604082019050620015c3600083018562001551565b620015d260208301846200159b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620016158262001316565b9150620016228362001316565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200165e576200165d620015d9565b5b828202905092915050565b600082825260208201905092915050565b7f746869732077616c6c657420697320616c726561647920736574000000000000600082015250565b6000620016b2601a8362001669565b9150620016bf826200167a565b602082019050919050565b60006020820190508181036000830152620016e581620016a3565b9050919050565b600060208201905062001703600083018462001551565b92915050565b60006020820190506200172060008301846200159b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200175e601f8362001669565b91506200176b8262001726565b602082019050919050565b6000602082019050818103600083015262001791816200174f565b9050919050565b6000620017a58262001316565b9150620017b28362001316565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620017ea57620017e9620015d9565b5b828201905092915050565b620018008162001316565b82525050565b60006020820190506200181d6000830184620017f5565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200185b60208362001669565b9150620018688262001823565b602082019050919050565b600060208201905081810360008301526200188e816200184c565b9050919050565b61563880620018a56000396000f3fe6080604052600436106103c75760003560e01c8063864701a5116101f2578063be825b521161010d578063dd62ed3e116100a0578063f53bc8351161006f578063f53bc83514610e33578063f66895a314610e5c578063f887ea4014610e87578063f8b45b0514610eb2576103ce565b8063dd62ed3e14610d8b578063e11c336814610dc8578063e2f4560514610ddf578063f2fde38b14610e0a576103ce565b8063c851cc32116100dc578063c851cc3214610cf7578063cf1cca3214610d20578063d2fcc00114610d37578063d89135cd14610d60576103ce565b8063be825b5214610c53578063c024666814610c7c578063c18bc19514610ca5578063c492f04614610cce576103ce565b8063a457c2d711610185578063abb8105211610154578063abb8105214610b87578063afa4f3b214610bc4578063b62496f514610bed578063b83b297f14610c2a576103ce565b8063a457c2d714610aa5578063a8aa1b3114610ae2578063a8b9d24014610b0d578063a9059cbb14610b4a576103ce565b80638ea5220f116101c15780638ea5220f146109fd57806395d89b4114610a285780639a7a23d614610a53578063a3ca847d14610a7c576103ce565b8063864701a51461095357806388e765ff1461097e5780638c9684f9146109a95780638da5cb5b146109d2576103ce565b8063313ce567116102e25780636843cd841161027557806370ec81f11161024457806370ec81f114610895578063715018a6146108be5780637b510fe8146108d55780637fb4b21c14610916576103ce565b80636843cd84146107c55780636ddd1713146108025780636dea2b701461082d57806370a0823114610858576103ce565b806346469afb116102b157806346469afb1461071b5780634ada218b146107465780634e71d92d146107715780634fbee19314610788576103ce565b8063313ce56714610661578063342aa8b51461068c57806339509351146106b557806342966c68146106f2576103ce565b806312b77e8a1161035a57806323b872dd1161032957806323b872dd146105a35780632866ed21146105e05780632c1f52161461060b57806330bb4cff14610636576103ce565b806312b77e8a1461050d57806318160ddd146105245780631bff78981461054f5780631f53ac021461057a576103ce565b80630a78097d116103965780630a78097d1461048d5780630bd05b69146104b65780630be6c2f0146104cd5780630d1d5a7d146104e4576103ce565b80630483f7a0146103d357806306fdde03146103fc5780630940bbc714610427578063095ea7b314610450576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103fa60048036038101906103f59190613d88565b610edd565b005b34801561040857600080fd5b50610411610f78565b60405161041e9190613e61565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613eb9565b61100a565b005b34801561045c57600080fd5b5061047760048036038101906104729190613ee6565b61107e565b6040516104849190613f35565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613f50565b6110a1565b005b3480156104c257600080fd5b506104cb6111ab565b005b3480156104d957600080fd5b506104e2611227565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613eb9565b61125b565b005b34801561051957600080fd5b506105226113af565b005b34801561053057600080fd5b50610539611488565b6040516105469190613f8c565b60405180910390f35b34801561055b57600080fd5b50610564611492565b6040516105719190613f8c565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613f50565b611498565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613fa7565b611574565b6040516105d79190613f35565b60405180910390f35b3480156105ec57600080fd5b506105f56115a3565b6040516106029190613f35565b60405180910390f35b34801561061757600080fd5b506106206115b6565b60405161062d9190614059565b60405180910390f35b34801561064257600080fd5b5061064b6115dc565b6040516106589190613f8c565b60405180910390f35b34801561066d57600080fd5b50610676611674565b6040516106839190614090565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613d88565b61167d565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613ee6565b61173c565b6040516106e99190613f35565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613eb9565b611773565b005b34801561072757600080fd5b5061073061189d565b60405161073d9190613f8c565b60405180910390f35b34801561075257600080fd5b5061075b6118a3565b6040516107689190613f35565b60405180910390f35b34801561077d57600080fd5b506107866118b6565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613f50565b6119a6565b6040516107bc9190613f35565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f50565b6119fc565b6040516107f99190613f8c565b60405180910390f35b34801561080e57600080fd5b50610817611aa1565b6040516108249190613f35565b60405180910390f35b34801561083957600080fd5b50610842611ab4565b60405161084f9190613f8c565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190613f50565b611aba565b60405161088c9190613f8c565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b79190613eb9565b611b02565b005b3480156108ca57600080fd5b506108d3611c58565b005b3480156108e157600080fd5b506108fc60048036038101906108f79190613f50565b611c6c565b60405161090d9594939291906140ba565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190613eb9565b611d23565b60405161094a919061410d565b60405180910390f35b34801561095f57600080fd5b50610968611d62565b6040516109759190613f8c565b60405180910390f35b34801561098a57600080fd5b50610993611d6e565b6040516109a09190613f8c565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb9190613f50565b611d74565b005b3480156109de57600080fd5b506109e7611e15565b6040516109f4919061410d565b60405180910390f35b348015610a0957600080fd5b50610a12611e3f565b604051610a1f919061410d565b60405180910390f35b348015610a3457600080fd5b50610a3d611e65565b604051610a4a9190613e61565b60405180910390f35b348015610a5f57600080fd5b50610a7a6004803603810190610a759190613d88565b611ef7565b005b348015610a8857600080fd5b50610aa36004803603810190610a9e9190613eb9565b611f0d565b005b348015610ab157600080fd5b50610acc6004803603810190610ac79190613ee6565b611f81565b604051610ad99190613f35565b60405180910390f35b348015610aee57600080fd5b50610af7611ff8565b604051610b04919061410d565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f9190613f50565b61201e565b604051610b419190613f8c565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613ee6565b6120c3565b604051610b7e9190613f35565b60405180910390f35b348015610b9357600080fd5b50610bae6004803603810190610ba99190613f50565b6120e6565b604051610bbb9190613f35565b60405180910390f35b348015610bd057600080fd5b50610beb6004803603810190610be69190613eb9565b612106565b005b348015610bf957600080fd5b50610c146004803603810190610c0f9190613f50565b61213b565b604051610c219190613f35565b60405180910390f35b348015610c3657600080fd5b50610c516004803603810190610c4c9190614270565b61215b565b005b348015610c5f57600080fd5b50610c7a6004803603810190610c759190613f50565b6121f8565b005b348015610c8857600080fd5b50610ca36004803603810190610c9e9190613d88565b612290565b005b348015610cb157600080fd5b50610ccc6004803603810190610cc79190613eb9565b61239d565b005b348015610cda57600080fd5b50610cf56004803603810190610cf09190614327565b6123c2565b005b348015610d0357600080fd5b50610d1e6004803603810190610d199190613f50565b6124aa565b005b348015610d2c57600080fd5b50610d356124f6565b005b348015610d4357600080fd5b50610d5e6004803603810190610d599190613d88565b61252a565b005b348015610d6c57600080fd5b50610d7561258d565b604051610d829190613f8c565b60405180910390f35b348015610d9757600080fd5b50610db26004803603810190610dad9190614387565b612593565b604051610dbf9190613f8c565b60405180910390f35b348015610dd457600080fd5b50610ddd61261a565b005b348015610deb57600080fd5b50610df46126b8565b604051610e019190613f8c565b60405180910390f35b348015610e1657600080fd5b50610e316004803603810190610e2c9190613f50565b6126be565b005b348015610e3f57600080fd5b50610e5a6004803603810190610e559190613eb9565b612741565b005b348015610e6857600080fd5b50610e71612766565b604051610e7e9190613f8c565b60405180910390f35b348015610e9357600080fd5b50610e9c612772565b604051610ea991906143e8565b60405180910390f35b348015610ebe57600080fd5b50610ec7612798565b604051610ed49190613f8c565b60405180910390f35b610ee561279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610f42929190614403565b600060405180830381600087803b158015610f5c57600080fd5b505af1158015610f70573d6000803e3d6000fd5b505050505050565b606060038054610f879061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb39061445b565b80156110005780601f10610fd557610100808354040283529160200191611000565b820191906000526020600020905b815481529060010190602001808311610fe357829003601f168201915b5050505050905090565b61101261279e565b6014811115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906144d8565b60405180910390fd5b6040518060200160405280828152506016600082015181600001559050508060188190555050565b60008061108961281c565b9050611096818585612824565b600191505092915050565b6110a961279e565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6110cd611e15565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611106919061410d565b602060405180830381865afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611147919061450d565b6040518363ffffffff1660e01b815260040161116492919061453a565b6020604051808303816000875af1158015611183573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a79190614578565b5050565b6111b361279e565b601460039054906101000a900460ff1615611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906145f1565b60405180910390fd5b42600f819055506001601460036101000a81548160ff021916908315150217905550565b61122f61279e565b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b61126361279e565b60008111156113ac57600030905060008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b81526004016112d092919061453a565b6020604051808303816000875af11580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113139190614578565b905080156113a957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b81526004016113769190613f8c565b600060405180830381600087803b15801561139057600080fd5b505af11580156113a4573d6000803e3d6000fd5b505050505b50505b50565b6113b761279e565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113ff90614642565b60006040518083038185875af1925050503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b5050905080611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906146a3565b60405180910390fd5b50565b6000600254905090565b60185481565b6114a061279e565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115279061470f565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061157f61281c565b905061158c8582856129ed565b611597858585612a79565b60019150509392505050565b601460029054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166f919061450d565b905090565b60006012905090565b61168561279e565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036116e157600080fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061174761281c565b90506117688185856117598589612593565b611763919061475e565b612824565b600191505092915050565b60003390508161178282611aba565b10156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90614826565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990614892565b60405180910390fd5b60008211611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906148fe565b60405180910390fd5b600082905082600d54611888919061475e565b600d8190555061189882826132da565b505050565b60175481565b601460039054906101000a900460ff1681565b601460029054906101000a900460ff16611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc9061496a565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b815260040161196091906149ab565b6020604051808303816000875af115801561197f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a39190614578565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611a59919061410d565b602060405180830381865afa158015611a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9a919061450d565b9050919050565b601460019054906101000a900460ff1681565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b0a61279e565b6000811115611c5557600030905060008173ffffffffffffffffffffffffffffffffffffffff166323b872dd33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b8152600401611b79939291906149c6565b6020604051808303816000875af1158015611b98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbc9190614578565b90508015611c5257600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b8152600401611c1f9190613f8c565b600060405180830381600087803b158015611c3957600080fd5b505af1158015611c4d573d6000803e3d6000fd5b505050505b50505b50565b611c6061279e565b611c6a60006134a7565b565b6000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611ccf919061410d565b60a060405180830381865afa158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d109190614a12565b9450945094509450945091939590929450565b600e8181548110611d3357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60158060000154905081565b600b5481565b611d7c61279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823611dc2611e15565b836040518363ffffffff1660e01b8152600401611de0929190614a8d565b600060405180830381600087803b158015611dfa57600080fd5b505af1158015611e0e573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611e749061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea09061445b565b8015611eed5780601f10611ec257610100808354040283529160200191611eed565b820191906000526020600020905b815481529060010190602001808311611ed057829003601f168201915b5050505050905090565b611eff61279e565b611f09828261356d565b5050565b611f1561279e565b6014811115611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906144d8565b60405180910390fd5b6040518060200160405280828152506015600082015181600001559050508060178190555050565b600080611f8c61281c565b90506000611f9a8286612593565b905083811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614b28565b60405180910390fd5b611fec8286868403612824565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b815260040161207b919061410d565b602060405180830381865afa158015612098573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bc919061450d565b9050919050565b6000806120ce61281c565b90506120db818585612a79565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b61210e61279e565b6319133850811061211e57600080fd5b670de0b6b3a7640000816121329190614b48565b600a8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b61216361279e565b60005b82518110156121f357816010600085848151811061218757612186614ba2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806121eb90614bd1565b915050612166565b505050565b61220061279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b815260040161225b919061410d565b600060405180830381600087803b15801561227557600080fd5b505af1158015612289573d6000803e3d6000fd5b5050505050565b61229861279e565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036122f457600080fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516123919190613f35565b60405180910390a25050565b6123a561279e565b670de0b6b3a7640000816123b99190614b48565b600c8190555050565b6123ca61279e565b60005b838390508110156124695781601160008686858181106123f0576123ef614ba2565b5b90506020020160208101906124059190613f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061246190614bd1565b9150506123cd565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161249d93929190614cdc565b60405180910390a1505050565b6124b261279e565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6124fe61279e565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61253261279e565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61262261279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633b36a1d7612668611e15565b6040518263ffffffff1660e01b8152600401612684919061410d565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b50505050565b600a5481565b6126c661279e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614d80565b60405180910390fd5b61273e816134a7565b50565b61274961279e565b670de0b6b3a76400008161275d9190614b48565b600b8190555050565b60168060000154905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6127a661281c565b73ffffffffffffffffffffffffffffffffffffffff166127c4611e15565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614dec565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288a90614e7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990614f10565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129e09190613f8c565b60405180910390a3505050565b60006129f98484612593565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612a735781811015612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c90614f7c565b60405180910390fd5b612a728484848403612824565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adf9061500e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e906150a0565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612bfb5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c319061510c565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612cde5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cf75750601460009054906101000a900460ff16155b15612d4c57601460039054906101000a900460ff16612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4290615178565b60405180910390fd5b5b60008103612d6557612d6083836000613701565b6132d5565b6000612d7030611aba565b90506000600a548210159050808015612d965750601460009054906101000a900460ff16155b8015612dae5750601460019054906101000a900460ff165b8015612e035750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612e595750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612eaf5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f10576001601460006101000a81548160ff0219169083151502179055506000601854118015612ee357506000600a54115b15612ef457612ef3600a54613977565b5b6000601460006101000a81548160ff0219169083151502179055505b6000601460009054906101000a900460ff16159050808015612f7c5750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131a4576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ff657606460185486612fe59190614b48565b612fef91906151c7565b9050613189565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561318857600f5442148061306557506001600f54613062919061475e565b42145b156130ce57600e869080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6064601754866130de9190614b48565b6130e891906151c7565b9050600c546130f687611aba565b86613101919061475e565b1115613142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313990615244565b60405180910390fd5b600b54851115613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e906152b0565b60405180910390fd5b5b5b808561319591906152d0565b94506131a2873083613701565b505b6131af868686613701565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc876131f789611aba565b6040518363ffffffff1660e01b815260040161321492919061453a565b600060405180830381600087803b15801561322e57600080fd5b505af192505050801561323f575060015b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8661328888611aba565b6040518363ffffffff1660e01b81526004016132a592919061453a565b600060405180830381600087803b1580156132bf57600080fd5b505af19250505080156132d0575060015b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334090615376565b60405180910390fd5b61335582600083613a91565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d290615408565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161348e9190613f8c565b60405180910390a36134a283600084613a96565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036135c957600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080156136b757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401613684929190614403565b600060405180830381600087803b15801561369e57600080fd5b505af11580156136b2573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137679061500e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d6906150a0565b60405180910390fd5b6137ea838383613a91565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138679061549a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161395e9190613f8c565b60405180910390a3613971848484613a96565b50505050565b600081905061398581613a9b565b600047905060006018549050600081601660000154846139a59190614b48565b6139af91906151c7565b90506000811115613a8a576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a0290614642565b60006040518083038185875af1925050503d8060008114613a3f576040519150601f19603f3d011682016040523d82523d6000602084013e613a44565b606091505b5050905080613a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7f906146a3565b60405180910390fd5b505b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115613ab857613ab761412d565b5b604051908082528060200260200182016040528015613ae65781602001602082028036833780820191505090505b5090503081600081518110613afe57613afd614ba2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bc991906154ba565b81600181518110613bdd57613bdc614ba2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c4430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612824565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ca89594939291906155a8565b600060405180830381600087803b158015613cc257600080fd5b505af1158015613cd6573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d1d82613cf2565b9050919050565b613d2d81613d12565b8114613d3857600080fd5b50565b600081359050613d4a81613d24565b92915050565b60008115159050919050565b613d6581613d50565b8114613d7057600080fd5b50565b600081359050613d8281613d5c565b92915050565b60008060408385031215613d9f57613d9e613ce8565b5b6000613dad85828601613d3b565b9250506020613dbe85828601613d73565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e02578082015181840152602081019050613de7565b83811115613e11576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e3382613dc8565b613e3d8185613dd3565b9350613e4d818560208601613de4565b613e5681613e17565b840191505092915050565b60006020820190508181036000830152613e7b8184613e28565b905092915050565b6000819050919050565b613e9681613e83565b8114613ea157600080fd5b50565b600081359050613eb381613e8d565b92915050565b600060208284031215613ecf57613ece613ce8565b5b6000613edd84828501613ea4565b91505092915050565b60008060408385031215613efd57613efc613ce8565b5b6000613f0b85828601613d3b565b9250506020613f1c85828601613ea4565b9150509250929050565b613f2f81613d50565b82525050565b6000602082019050613f4a6000830184613f26565b92915050565b600060208284031215613f6657613f65613ce8565b5b6000613f7484828501613d3b565b91505092915050565b613f8681613e83565b82525050565b6000602082019050613fa16000830184613f7d565b92915050565b600080600060608486031215613fc057613fbf613ce8565b5b6000613fce86828701613d3b565b9350506020613fdf86828701613d3b565b9250506040613ff086828701613ea4565b9150509250925092565b6000819050919050565b600061401f61401a61401584613cf2565b613ffa565b613cf2565b9050919050565b600061403182614004565b9050919050565b600061404382614026565b9050919050565b61405381614038565b82525050565b600060208201905061406e600083018461404a565b92915050565b600060ff82169050919050565b61408a81614074565b82525050565b60006020820190506140a56000830184614081565b92915050565b6140b481613d12565b82525050565b600060a0820190506140cf60008301886140ab565b6140dc6020830187613f7d565b6140e96040830186613f7d565b6140f66060830185613f7d565b6141036080830184613f7d565b9695505050505050565b600060208201905061412260008301846140ab565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61416582613e17565b810181811067ffffffffffffffff821117156141845761418361412d565b5b80604052505050565b6000614197613cde565b90506141a3828261415c565b919050565b600067ffffffffffffffff8211156141c3576141c261412d565b5b602082029050602081019050919050565b600080fd5b60006141ec6141e7846141a8565b61418d565b9050808382526020820190506020840283018581111561420f5761420e6141d4565b5b835b8181101561423857806142248882613d3b565b845260208401935050602081019050614211565b5050509392505050565b600082601f83011261425757614256614128565b5b81356142678482602086016141d9565b91505092915050565b6000806040838503121561428757614286613ce8565b5b600083013567ffffffffffffffff8111156142a5576142a4613ced565b5b6142b185828601614242565b92505060206142c285828601613d73565b9150509250929050565b600080fd5b60008083601f8401126142e7576142e6614128565b5b8235905067ffffffffffffffff811115614304576143036142cc565b5b6020830191508360208202830111156143205761431f6141d4565b5b9250929050565b6000806000604084860312156143405761433f613ce8565b5b600084013567ffffffffffffffff81111561435e5761435d613ced565b5b61436a868287016142d1565b9350935050602061437d86828701613d73565b9150509250925092565b6000806040838503121561439e5761439d613ce8565b5b60006143ac85828601613d3b565b92505060206143bd85828601613d3b565b9150509250929050565b60006143d282614026565b9050919050565b6143e2816143c7565b82525050565b60006020820190506143fd60008301846143d9565b92915050565b600060408201905061441860008301856140ab565b6144256020830184613f26565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061447357607f821691505b6020821081036144865761448561442c565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006144c2601283613dd3565b91506144cd8261448c565b602082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b60008151905061450781613e8d565b92915050565b60006020828403121561452357614522613ce8565b5b6000614531848285016144f8565b91505092915050565b600060408201905061454f60008301856140ab565b61455c6020830184613f7d565b9392505050565b60008151905061457281613d5c565b92915050565b60006020828403121561458e5761458d613ce8565b5b600061459c84828501614563565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006145db601783613dd3565b91506145e6826145a5565b602082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b600081905092915050565b50565b600061462c600083614611565b91506146378261461c565b600082019050919050565b600061464d8261461f565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b600061468d602083613dd3565b915061469882614657565b602082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b7f746869732077616c6c657420697320616c726561647920736574000000000000600082015250565b60006146f9601a83613dd3565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061476982613e83565b915061477483613e83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147a9576147a861472f565b5b828201905092915050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b6000614810602a83613dd3565b915061481b826147b4565b604082019050919050565b6000602082019050818103600083015261483f81614803565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b600061487c601d83613dd3565b915061488782614846565b602082019050919050565b600060208201905081810360008301526148ab8161486f565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b60006148e8602083613dd3565b91506148f3826148b2565b602082019050919050565b60006020820190508181036000830152614917816148db565b9050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b6000614954601183613dd3565b915061495f8261491e565b602082019050919050565b6000602082019050818103600083015261498381614947565b9050919050565b600061499582613cf2565b9050919050565b6149a58161498a565b82525050565b60006020820190506149c0600083018461499c565b92915050565b60006060820190506149db60008301866140ab565b6149e860208301856140ab565b6149f56040830184613f7d565b949350505050565b600081519050614a0c81613d24565b92915050565b600080600080600060a08688031215614a2e57614a2d613ce8565b5b6000614a3c888289016149fd565b9550506020614a4d888289016144f8565b9450506040614a5e888289016144f8565b9350506060614a6f888289016144f8565b9250506080614a80888289016144f8565b9150509295509295909350565b6000604082019050614aa260008301856140ab565b614aaf60208301846140ab565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b12602583613dd3565b9150614b1d82614ab6565b604082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b6000614b5382613e83565b9150614b5e83613e83565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9757614b9661472f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bdc82613e83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c0e57614c0d61472f565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b614c3d81613d12565b82525050565b6000614c4f8383614c34565b60208301905092915050565b6000614c6a6020840184613d3b565b905092915050565b6000602082019050919050565b6000614c8b8385614c19565b9350614c9682614c2a565b8060005b85811015614ccf57614cac8284614c5b565b614cb68882614c43565b9750614cc183614c72565b925050600181019050614c9a565b5085925050509392505050565b60006040820190508181036000830152614cf7818587614c7f565b9050614d066020830184613f26565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602683613dd3565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dd6602083613dd3565b9150614de182614da0565b602082019050919050565b60006020820190508181036000830152614e0581614dc9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e68602483613dd3565b9150614e7382614e0c565b604082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614efa602283613dd3565b9150614f0582614e9e565b604082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f66601d83613dd3565b9150614f7182614f30565b602082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602583613dd3565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061508a602383613dd3565b91506150958261502e565b604082019050919050565b600060208201905081810360008301526150b98161507d565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b60006150f6600b83613dd3565b9150615101826150c0565b602082019050919050565b60006020820190508181036000830152615125816150e9565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000615162601283613dd3565b915061516d8261512c565b602082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151d282613e83565b91506151dd83613e83565b9250826151ed576151ec615198565b5b828204905092915050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061522e601b83613dd3565b9150615239826151f8565b602082019050919050565b6000602082019050818103600083015261525d81615221565b9050919050565b7f556e61626c6520746f20657863656564204d6178206275790000000000000000600082015250565b600061529a601883613dd3565b91506152a582615264565b602082019050919050565b600060208201905081810360008301526152c98161528d565b9050919050565b60006152db82613e83565b91506152e683613e83565b9250828210156152f9576152f861472f565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615360602183613dd3565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006153f2602283613dd3565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615484602683613dd3565b915061548f82615428565b604082019050919050565b600060208201905081810360008301526154b381615477565b9050919050565b6000602082840312156154d0576154cf613ce8565b5b60006154de848285016149fd565b91505092915050565b6000819050919050565b600061550c615507615502846154e7565b613ffa565b613e83565b9050919050565b61551c816154f1565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b600061555582615522565b61555f8185614c19565b935061556a8361552d565b8060005b8381101561559b5781516155828882614c43565b975061558d8361553d565b92505060018101905061556e565b5085935050505092915050565b600060a0820190506155bd6000830188613f7d565b6155ca6020830187615513565b81810360408301526155dc818661554a565b90506155eb60608301856140ab565b6155f86080830184613f7d565b969550505050505056fea2646970667358221220408e4747372e404051499051527997e53bf332db4e29e2cfe21f3b17b7d5881364736f6c634300080f003360806040523480156200001157600080fd5b506040518060400160405280600a81526020017f47504469766964656e64000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f47504469766964656e64000000000000000000000000000000000000000000008152508181816003908162000091919062000416565b508060049081620000a3919062000416565b505050620000c6620000ba620000ce60201b60201c565b620000d660201b60201c565b5050620004fd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021e57607f821691505b602082108103620002345762000233620001d6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025f565b620002aa86836200025f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f7620002f1620002eb84620002c2565b620002cc565b620002c2565b9050919050565b6000819050919050565b6200031383620002d6565b6200032b6200032282620002fe565b8484546200026c565b825550505050565b600090565b6200034262000333565b6200034f81848462000308565b505050565b5b8181101562000377576200036b60008262000338565b60018101905062000355565b5050565b601f821115620003c65762000390816200023a565b6200039b846200024f565b81016020851015620003ab578190505b620003c3620003ba856200024f565b83018262000354565b50505b505050565b600082821c905092915050565b6000620003eb60001984600802620003cb565b1980831691505092915050565b6000620004068383620003d8565b9150826002028217905092915050565b62000421826200019c565b67ffffffffffffffff8111156200043d576200043c620001a7565b5b62000449825462000205565b620004568282856200037b565b600060209050601f8311600181146200048e576000841562000479578287015190505b620004858582620003f8565b865550620004f5565b601f1984166200049e866200023a565b60005b82811015620004c857848901518255600182019150602085019450602081019050620004a1565b86831015620004e85784890151620004e4601f891682620003d8565b8355505b6001600288020188555050505b505050505050565b61306c806200050d6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a8b9d240116100a2578063dd62ed3e11610071578063dd62ed3e146105f5578063e30443bc14610625578063f2fde38b14610641578063fbcbc0f11461065d576101f0565b8063a8b9d24014610547578063a9059cbb14610577578063aafd847a146105a7578063dceeeae0146105d7576101f0565b806391b89fba116100de57806391b89fba146104ab57806395d89b41146104db5780639e1e0661146104f9578063a457c2d714610517576101f0565b8063715018a614610435578063807ab4f71461043f57806385a6b3ae1461046f5780638da5cb5b1461048d576101f0565b80633243c79111610187578063497ec82311610156578063497ec823146103af5780634e7b827f146103cb5780636a474002146103fb57806370a0823114610405576101f0565b80633243c7911461032b57806339509351146103475780633b36a1d71461037757806344b6bd9e14610393576101f0565b8063226cfa3d116101c3578063226cfa3d1461027d57806323b872dd146102ad57806327ce0147146102dd578063313ce5671461030d576101f0565b80630483f7a0146101f557806306fdde0314610211578063095ea7b31461022f57806318160ddd1461025f575b600080fd5b61020f600480360381019061020a9190612139565b610691565b005b6102196107cd565b6040516102269190612212565b60405180910390f35b6102496004803603810190610244919061226a565b61085f565b60405161025691906122b9565b60405180910390f35b610267610882565b60405161027491906122e3565b60405180910390f35b610297600480360381019061029291906122fe565b61088c565b6040516102a491906122e3565b60405180910390f35b6102c760048036038101906102c2919061232b565b6108a4565b6040516102d491906122b9565b60405180910390f35b6102f760048036038101906102f291906122fe565b6108d3565b60405161030491906122e3565b60405180910390f35b610315610976565b604051610322919061239a565b60405180910390f35b610345600480360381019061034091906123b5565b61097f565b005b610361600480360381019061035c919061226a565b610a61565b60405161036e91906122b9565b60405180910390f35b610391600480360381019061038c91906122fe565b610a98565b005b6103ad60048036038101906103a891906122fe565b610b50565b005b6103c960048036038101906103c491906123e2565b610b9c565b005b6103e560048036038101906103e091906122fe565b610ca0565b6040516103f291906122b9565b60405180910390f35b610403610cc0565b005b61041f600480360381019061041a91906122fe565b610ccc565b60405161042c91906122e3565b60405180910390f35b61043d610d14565b005b61045960048036038101906104549190612460565b610d28565b60405161046691906122b9565b60405180910390f35b610477610def565b60405161048491906122e3565b60405180910390f35b610495610df5565b6040516104a2919061249c565b60405180910390f35b6104c560048036038101906104c091906122fe565b610e1f565b6040516104d291906122e3565b60405180910390f35b6104e3610e31565b6040516104f09190612212565b60405180910390f35b610501610ec3565b60405161050e91906122e3565b60405180910390f35b610531600480360381019061052c919061226a565b610ec9565b60405161053e91906122b9565b60405180910390f35b610561600480360381019061055c91906122fe565b610f40565b60405161056e91906122e3565b60405180910390f35b610591600480360381019061058c919061226a565b610fa3565b60405161059e91906122b9565b60405180910390f35b6105c160048036038101906105bc91906122fe565b610fc6565b6040516105ce91906122e3565b60405180910390f35b6105df61100f565b6040516105ec919061249c565b60405180910390f35b61060f600480360381019061060a91906123e2565b611035565b60405161061c91906122e3565b60405180910390f35b61063f600480360381019061063a919061226a565b6110bc565b005b61065b600480360381019061065691906122fe565b611124565b005b610677600480360381019061067291906122fe565b6111a7565b6040516106889594939291906124b7565b60405180910390f35b610699611287565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036106f557600080fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600115158115150361076857610763826000611305565b61077b565b61077a8261077584610ccc565b611305565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516107c191906122b9565b60405180910390a25050565b6060600380546107dc90612539565b80601f016020809104026020016040519081016040528092919081815260200182805461080890612539565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b60008061086a611372565b905061087781858561137a565b600191505092915050565b6000600254905090565b600d6020528060005260406000206000915090505481565b6000806108af611372565b90506108bc858285611543565b6108c78585856115cf565b60019150509392505050565b6000700100000000000000000000000000000000610965610960600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095261094d61093c88610ccc565b60075461161590919063ffffffff16565b61168f565b6116ac90919063ffffffff16565b6116f7565b61096f91906125c8565b9050919050565b60006012905090565b610987611287565b6000610991610882565b1161099b57600080fd5b6000811115610a5e576109ee6109af610882565b6109d37001000000000000000000000000000000008461161590919063ffffffff16565b6109dd91906125c8565b60075461170e90919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651182604051610a3a91906122e3565b60405180910390a2610a5781600a5461170e90919063ffffffff16565b600a819055505b50565b600080610a6c611372565b9050610a8d818585610a7e8589611035565b610a8891906125f9565b61137a565b600191505092915050565b610aa0611287565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ac690612680565b60006040518083038185875af1925050503d8060008114610b03576040519150601f19603f3d011682016040523d82523d6000602084013e610b08565b606091505b5050905080610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b43906126e1565b60405180910390fd5b5050565b610b58611287565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ba4611287565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bfa919061249c565b602060405180830381865afa158015610c17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3b9190612716565b6040518363ffffffff1660e01b8152600401610c58929190612743565b6020604051808303816000875af1158015610c77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9b9190612781565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610cc93361176c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d1c611287565b610d2660006119f6565b565b6000610d32611287565b6000610d3d8361176c565b90506000811115610de45742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610dd291906122e3565b60405180910390a26001915050610dea565b60009150505b919050565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610e2a82610f40565b9050919050565b606060048054610e4090612539565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6c90612539565b8015610eb95780601f10610e8e57610100808354040283529160200191610eb9565b820191906000526020600020905b815481529060010190602001808311610e9c57829003601f168201915b5050505050905090565b600b5481565b600080610ed4611372565b90506000610ee28286611035565b905083811015610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90612820565b60405180910390fd5b610f34828686840361137a565b60019250505092915050565b6000610f9c600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8e846108d3565b611abc90919063ffffffff16565b9050919050565b600080610fae611372565b9050610fbb8185856115cf565b600191505092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110c4611287565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111205761111f8282611305565b5b5050565b61112c611287565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906128b2565b60405180910390fd5b6111a4816119f6565b50565b60008060008060006111b7612060565b86816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506111f887610f40565b81602001818152505061120a876108d3565b816040018181525050600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548160600181815250508060000151816020015182604001518360600151600b54955095509550955095505091939590929450565b61128f611372565b73ffffffffffffffffffffffffffffffffffffffff166112ad610df5565b73ffffffffffffffffffffffffffffffffffffffff1614611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa9061291e565b60405180910390fd5b565b600061131083610ccc565b90508082111561134157600061132f8284611abc90919063ffffffff16565b905061133b8482611b06565b5061136d565b8082101561136c57600061135e8383611abc90919063ffffffff16565b905061136a8482611bc5565b505b5b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e0906129b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90612a42565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161153691906122e3565b60405180910390a3505050565b600061154f8484611035565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115c957818110156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290612aae565b60405180910390fd5b6115c8848484840361137a565b5b50505050565b6000611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790612b40565b60405180910390fd5b505050565b60008083036116275760009050611689565b600082846116359190612b60565b905082848261164491906125c8565b14611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90612c2c565b60405180910390fd5b809150505b92915050565b60008082905060008112156116a357600080fd5b80915050919050565b60008082846116bb9190612c56565b9050600083121580156116ce5750838112155b806116e457506000831280156116e357508381125b5b6116ed57600080fd5b8091505092915050565b60008082121561170657600080fd5b819050919050565b600080828461171d91906125f9565b905083811015611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990612d36565b60405180910390fd5b8091505092915050565b60008061177883610f40565b905060008111156119eb576117d581600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461170e90919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b600082825461182a91906125f9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161187791906122e3565b60405180910390a26000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016118de929190612db5565b6020604051808303816000875af11580156118fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119219190612781565b9050806119e15761197a82600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611abc90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600b60008282546119cf9190612dde565b925050819055506000925050506119f1565b81925050506119f1565b60009150505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611afe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c84565b905092915050565b611b108282611ce8565b611b7e611b30611b2b8360075461161590919063ffffffff16565b61168f565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e3e90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611bcf8282611e89565b611c3d611bef611bea8360075461161590919063ffffffff16565b61168f565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000838311158290611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc39190612212565b60405180910390fd5b5060008385611cdb9190612dde565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90612e5e565b60405180910390fd5b611d6360008383612056565b8060026000828254611d7591906125f9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611e2691906122e3565b60405180910390a3611e3a6000838361205b565b5050565b6000808284611e4d9190612e7e565b905060008312158015611e605750838113155b80611e765750600083128015611e7557508381135b5b611e7f57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90612f84565b60405180910390fd5b611f0482600083612056565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8190613016565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161203d91906122e3565b60405180910390a36120518360008461205b565b505050565b505050565b505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120ce826120a3565b9050919050565b6120de816120c3565b81146120e957600080fd5b50565b6000813590506120fb816120d5565b92915050565b60008115159050919050565b61211681612101565b811461212157600080fd5b50565b6000813590506121338161210d565b92915050565b600080604083850312156121505761214f61209e565b5b600061215e858286016120ec565b925050602061216f85828601612124565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121b3578082015181840152602081019050612198565b838111156121c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006121e482612179565b6121ee8185612184565b93506121fe818560208601612195565b612207816121c8565b840191505092915050565b6000602082019050818103600083015261222c81846121d9565b905092915050565b6000819050919050565b61224781612234565b811461225257600080fd5b50565b6000813590506122648161223e565b92915050565b600080604083850312156122815761228061209e565b5b600061228f858286016120ec565b92505060206122a085828601612255565b9150509250929050565b6122b381612101565b82525050565b60006020820190506122ce60008301846122aa565b92915050565b6122dd81612234565b82525050565b60006020820190506122f860008301846122d4565b92915050565b6000602082840312156123145761231361209e565b5b6000612322848285016120ec565b91505092915050565b6000806000606084860312156123445761234361209e565b5b6000612352868287016120ec565b9350506020612363868287016120ec565b925050604061237486828701612255565b9150509250925092565b600060ff82169050919050565b6123948161237e565b82525050565b60006020820190506123af600083018461238b565b92915050565b6000602082840312156123cb576123ca61209e565b5b60006123d984828501612255565b91505092915050565b600080604083850312156123f9576123f861209e565b5b6000612407858286016120ec565b9250506020612418858286016120ec565b9150509250929050565b600061242d826120a3565b9050919050565b61243d81612422565b811461244857600080fd5b50565b60008135905061245a81612434565b92915050565b6000602082840312156124765761247561209e565b5b60006124848482850161244b565b91505092915050565b612496816120c3565b82525050565b60006020820190506124b1600083018461248d565b92915050565b600060a0820190506124cc600083018861248d565b6124d960208301876122d4565b6124e660408301866122d4565b6124f360608301856122d4565b61250060808301846122d4565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061255157607f821691505b6020821081036125645761256361250a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125d382612234565b91506125de83612234565b9250826125ee576125ed61256a565b5b828204905092915050565b600061260482612234565b915061260f83612234565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561264457612643612599565b5b828201905092915050565b600081905092915050565b50565b600061266a60008361264f565b91506126758261265a565b600082019050919050565b600061268b8261265d565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f2077616c6c657400000000600082015250565b60006126cb601c83612184565b91506126d682612695565b602082019050919050565b600060208201905081810360008301526126fa816126be565b9050919050565b6000815190506127108161223e565b92915050565b60006020828403121561272c5761272b61209e565b5b600061273a84828501612701565b91505092915050565b6000604082019050612758600083018561248d565b61276560208301846122d4565b9392505050565b60008151905061277b8161210d565b92915050565b6000602082840312156127975761279661209e565b5b60006127a58482850161276c565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061280a602583612184565b9150612815826127ae565b604082019050919050565b60006020820190508181036000830152612839816127fd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061289c602683612184565b91506128a782612840565b604082019050919050565b600060208201905081810360008301526128cb8161288f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612908602083612184565b9150612913826128d2565b602082019050919050565b60006020820190508181036000830152612937816128fb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061299a602483612184565b91506129a58261293e565b604082019050919050565b600060208201905081810360008301526129c98161298d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a2c602283612184565b9150612a37826129d0565b604082019050919050565b60006020820190508181036000830152612a5b81612a1f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a98601d83612184565b9150612aa382612a62565b602082019050919050565b60006020820190508181036000830152612ac781612a8b565b9050919050565b7f4469766964656e645f547261636b65723a204e6f207472616e7366657273206160008201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b6000612b2a602683612184565b9150612b3582612ace565b604082019050919050565b60006020820190508181036000830152612b5981612b1d565b9050919050565b6000612b6b82612234565b9150612b7683612234565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612baf57612bae612599565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c16602183612184565b9150612c2182612bba565b604082019050919050565b60006020820190508181036000830152612c4581612c09565b9050919050565b6000819050919050565b6000612c6182612c4c565b9150612c6c83612c4c565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615612ca757612ca6612599565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615612cdf57612cde612599565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612d20601b83612184565b9150612d2b82612cea565b602082019050919050565b60006020820190508181036000830152612d4f81612d13565b9050919050565b6000819050919050565b6000612d7b612d76612d71846120a3565b612d56565b6120a3565b9050919050565b6000612d8d82612d60565b9050919050565b6000612d9f82612d82565b9050919050565b612daf81612d94565b82525050565b6000604082019050612dca6000830185612da6565b612dd760208301846122d4565b9392505050565b6000612de982612234565b9150612df483612234565b925082821015612e0757612e06612599565b5b828203905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612e48601f83612184565b9150612e5382612e12565b602082019050919050565b60006020820190508181036000830152612e7781612e3b565b9050919050565b6000612e8982612c4c565b9150612e9483612c4c565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615612ecf57612ece612599565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615612f0757612f06612599565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f6e602183612184565b9150612f7982612f12565b604082019050919050565b60006020820190508181036000830152612f9d81612f61565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613000602283612184565b915061300b82612fa4565b604082019050919050565b6000602082019050818103600083015261302f81612ff3565b905091905056fea26469706673582212204800c008c837a81676f99dd91a528a519ebd1baefc7acba4f74f0ae51535fad964736f6c634300080f00330000000000000000000000009976a7f426b4f4586b2b135110060c4a2e77326e

Deployed Bytecode

0x6080604052600436106103c75760003560e01c8063864701a5116101f2578063be825b521161010d578063dd62ed3e116100a0578063f53bc8351161006f578063f53bc83514610e33578063f66895a314610e5c578063f887ea4014610e87578063f8b45b0514610eb2576103ce565b8063dd62ed3e14610d8b578063e11c336814610dc8578063e2f4560514610ddf578063f2fde38b14610e0a576103ce565b8063c851cc32116100dc578063c851cc3214610cf7578063cf1cca3214610d20578063d2fcc00114610d37578063d89135cd14610d60576103ce565b8063be825b5214610c53578063c024666814610c7c578063c18bc19514610ca5578063c492f04614610cce576103ce565b8063a457c2d711610185578063abb8105211610154578063abb8105214610b87578063afa4f3b214610bc4578063b62496f514610bed578063b83b297f14610c2a576103ce565b8063a457c2d714610aa5578063a8aa1b3114610ae2578063a8b9d24014610b0d578063a9059cbb14610b4a576103ce565b80638ea5220f116101c15780638ea5220f146109fd57806395d89b4114610a285780639a7a23d614610a53578063a3ca847d14610a7c576103ce565b8063864701a51461095357806388e765ff1461097e5780638c9684f9146109a95780638da5cb5b146109d2576103ce565b8063313ce567116102e25780636843cd841161027557806370ec81f11161024457806370ec81f114610895578063715018a6146108be5780637b510fe8146108d55780637fb4b21c14610916576103ce565b80636843cd84146107c55780636ddd1713146108025780636dea2b701461082d57806370a0823114610858576103ce565b806346469afb116102b157806346469afb1461071b5780634ada218b146107465780634e71d92d146107715780634fbee19314610788576103ce565b8063313ce56714610661578063342aa8b51461068c57806339509351146106b557806342966c68146106f2576103ce565b806312b77e8a1161035a57806323b872dd1161032957806323b872dd146105a35780632866ed21146105e05780632c1f52161461060b57806330bb4cff14610636576103ce565b806312b77e8a1461050d57806318160ddd146105245780631bff78981461054f5780631f53ac021461057a576103ce565b80630a78097d116103965780630a78097d1461048d5780630bd05b69146104b65780630be6c2f0146104cd5780630d1d5a7d146104e4576103ce565b80630483f7a0146103d357806306fdde03146103fc5780630940bbc714610427578063095ea7b314610450576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103fa60048036038101906103f59190613d88565b610edd565b005b34801561040857600080fd5b50610411610f78565b60405161041e9190613e61565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613eb9565b61100a565b005b34801561045c57600080fd5b5061047760048036038101906104729190613ee6565b61107e565b6040516104849190613f35565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613f50565b6110a1565b005b3480156104c257600080fd5b506104cb6111ab565b005b3480156104d957600080fd5b506104e2611227565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613eb9565b61125b565b005b34801561051957600080fd5b506105226113af565b005b34801561053057600080fd5b50610539611488565b6040516105469190613f8c565b60405180910390f35b34801561055b57600080fd5b50610564611492565b6040516105719190613f8c565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613f50565b611498565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613fa7565b611574565b6040516105d79190613f35565b60405180910390f35b3480156105ec57600080fd5b506105f56115a3565b6040516106029190613f35565b60405180910390f35b34801561061757600080fd5b506106206115b6565b60405161062d9190614059565b60405180910390f35b34801561064257600080fd5b5061064b6115dc565b6040516106589190613f8c565b60405180910390f35b34801561066d57600080fd5b50610676611674565b6040516106839190614090565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613d88565b61167d565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613ee6565b61173c565b6040516106e99190613f35565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613eb9565b611773565b005b34801561072757600080fd5b5061073061189d565b60405161073d9190613f8c565b60405180910390f35b34801561075257600080fd5b5061075b6118a3565b6040516107689190613f35565b60405180910390f35b34801561077d57600080fd5b506107866118b6565b005b34801561079457600080fd5b506107af60048036038101906107aa9190613f50565b6119a6565b6040516107bc9190613f35565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f50565b6119fc565b6040516107f99190613f8c565b60405180910390f35b34801561080e57600080fd5b50610817611aa1565b6040516108249190613f35565b60405180910390f35b34801561083957600080fd5b50610842611ab4565b60405161084f9190613f8c565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190613f50565b611aba565b60405161088c9190613f8c565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b79190613eb9565b611b02565b005b3480156108ca57600080fd5b506108d3611c58565b005b3480156108e157600080fd5b506108fc60048036038101906108f79190613f50565b611c6c565b60405161090d9594939291906140ba565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190613eb9565b611d23565b60405161094a919061410d565b60405180910390f35b34801561095f57600080fd5b50610968611d62565b6040516109759190613f8c565b60405180910390f35b34801561098a57600080fd5b50610993611d6e565b6040516109a09190613f8c565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb9190613f50565b611d74565b005b3480156109de57600080fd5b506109e7611e15565b6040516109f4919061410d565b60405180910390f35b348015610a0957600080fd5b50610a12611e3f565b604051610a1f919061410d565b60405180910390f35b348015610a3457600080fd5b50610a3d611e65565b604051610a4a9190613e61565b60405180910390f35b348015610a5f57600080fd5b50610a7a6004803603810190610a759190613d88565b611ef7565b005b348015610a8857600080fd5b50610aa36004803603810190610a9e9190613eb9565b611f0d565b005b348015610ab157600080fd5b50610acc6004803603810190610ac79190613ee6565b611f81565b604051610ad99190613f35565b60405180910390f35b348015610aee57600080fd5b50610af7611ff8565b604051610b04919061410d565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f9190613f50565b61201e565b604051610b419190613f8c565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613ee6565b6120c3565b604051610b7e9190613f35565b60405180910390f35b348015610b9357600080fd5b50610bae6004803603810190610ba99190613f50565b6120e6565b604051610bbb9190613f35565b60405180910390f35b348015610bd057600080fd5b50610beb6004803603810190610be69190613eb9565b612106565b005b348015610bf957600080fd5b50610c146004803603810190610c0f9190613f50565b61213b565b604051610c219190613f35565b60405180910390f35b348015610c3657600080fd5b50610c516004803603810190610c4c9190614270565b61215b565b005b348015610c5f57600080fd5b50610c7a6004803603810190610c759190613f50565b6121f8565b005b348015610c8857600080fd5b50610ca36004803603810190610c9e9190613d88565b612290565b005b348015610cb157600080fd5b50610ccc6004803603810190610cc79190613eb9565b61239d565b005b348015610cda57600080fd5b50610cf56004803603810190610cf09190614327565b6123c2565b005b348015610d0357600080fd5b50610d1e6004803603810190610d199190613f50565b6124aa565b005b348015610d2c57600080fd5b50610d356124f6565b005b348015610d4357600080fd5b50610d5e6004803603810190610d599190613d88565b61252a565b005b348015610d6c57600080fd5b50610d7561258d565b604051610d829190613f8c565b60405180910390f35b348015610d9757600080fd5b50610db26004803603810190610dad9190614387565b612593565b604051610dbf9190613f8c565b60405180910390f35b348015610dd457600080fd5b50610ddd61261a565b005b348015610deb57600080fd5b50610df46126b8565b604051610e019190613f8c565b60405180910390f35b348015610e1657600080fd5b50610e316004803603810190610e2c9190613f50565b6126be565b005b348015610e3f57600080fd5b50610e5a6004803603810190610e559190613eb9565b612741565b005b348015610e6857600080fd5b50610e71612766565b604051610e7e9190613f8c565b60405180910390f35b348015610e9357600080fd5b50610e9c612772565b604051610ea991906143e8565b60405180910390f35b348015610ebe57600080fd5b50610ec7612798565b604051610ed49190613f8c565b60405180910390f35b610ee561279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610f42929190614403565b600060405180830381600087803b158015610f5c57600080fd5b505af1158015610f70573d6000803e3d6000fd5b505050505050565b606060038054610f879061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb39061445b565b80156110005780601f10610fd557610100808354040283529160200191611000565b820191906000526020600020905b815481529060010190602001808311610fe357829003601f168201915b5050505050905090565b61101261279e565b6014811115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906144d8565b60405180910390fd5b6040518060200160405280828152506016600082015181600001559050508060188190555050565b60008061108961281c565b9050611096818585612824565b600191505092915050565b6110a961279e565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6110cd611e15565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611106919061410d565b602060405180830381865afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611147919061450d565b6040518363ffffffff1660e01b815260040161116492919061453a565b6020604051808303816000875af1158015611183573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a79190614578565b5050565b6111b361279e565b601460039054906101000a900460ff1615611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906145f1565b60405180910390fd5b42600f819055506001601460036101000a81548160ff021916908315150217905550565b61122f61279e565b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b61126361279e565b60008111156113ac57600030905060008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b81526004016112d092919061453a565b6020604051808303816000875af11580156112ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113139190614578565b905080156113a957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b81526004016113769190613f8c565b600060405180830381600087803b15801561139057600080fd5b505af11580156113a4573d6000803e3d6000fd5b505050505b50505b50565b6113b761279e565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113ff90614642565b60006040518083038185875af1925050503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b5050905080611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906146a3565b60405180910390fd5b50565b6000600254905090565b60185481565b6114a061279e565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115279061470f565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061157f61281c565b905061158c8582856129ed565b611597858585612a79565b60019150509392505050565b601460029054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166f919061450d565b905090565b60006012905090565b61168561279e565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036116e157600080fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061174761281c565b90506117688185856117598589612593565b611763919061475e565b612824565b600191505092915050565b60003390508161178282611aba565b10156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90614826565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990614892565b60405180910390fd5b60008211611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906148fe565b60405180910390fd5b600082905082600d54611888919061475e565b600d8190555061189882826132da565b505050565b60175481565b601460039054906101000a900460ff1681565b601460029054906101000a900460ff16611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc9061496a565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b815260040161196091906149ab565b6020604051808303816000875af115801561197f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a39190614578565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611a59919061410d565b602060405180830381865afa158015611a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9a919061450d565b9050919050565b601460019054906101000a900460ff1681565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b0a61279e565b6000811115611c5557600030905060008173ffffffffffffffffffffffffffffffffffffffff166323b872dd33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b8152600401611b79939291906149c6565b6020604051808303816000875af1158015611b98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbc9190614578565b90508015611c5257600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b8152600401611c1f9190613f8c565b600060405180830381600087803b158015611c3957600080fd5b505af1158015611c4d573d6000803e3d6000fd5b505050505b50505b50565b611c6061279e565b611c6a60006134a7565b565b6000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611ccf919061410d565b60a060405180830381865afa158015611cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d109190614a12565b9450945094509450945091939590929450565b600e8181548110611d3357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60158060000154905081565b600b5481565b611d7c61279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823611dc2611e15565b836040518363ffffffff1660e01b8152600401611de0929190614a8d565b600060405180830381600087803b158015611dfa57600080fd5b505af1158015611e0e573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611e749061445b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea09061445b565b8015611eed5780601f10611ec257610100808354040283529160200191611eed565b820191906000526020600020905b815481529060010190602001808311611ed057829003601f168201915b5050505050905090565b611eff61279e565b611f09828261356d565b5050565b611f1561279e565b6014811115611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906144d8565b60405180910390fd5b6040518060200160405280828152506015600082015181600001559050508060178190555050565b600080611f8c61281c565b90506000611f9a8286612593565b905083811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614b28565b60405180910390fd5b611fec8286868403612824565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b815260040161207b919061410d565b602060405180830381865afa158015612098573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bc919061450d565b9050919050565b6000806120ce61281c565b90506120db818585612a79565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b61210e61279e565b6319133850811061211e57600080fd5b670de0b6b3a7640000816121329190614b48565b600a8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b61216361279e565b60005b82518110156121f357816010600085848151811061218757612186614ba2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806121eb90614bd1565b915050612166565b505050565b61220061279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b815260040161225b919061410d565b600060405180830381600087803b15801561227557600080fd5b505af1158015612289573d6000803e3d6000fd5b5050505050565b61229861279e565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036122f457600080fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516123919190613f35565b60405180910390a25050565b6123a561279e565b670de0b6b3a7640000816123b99190614b48565b600c8190555050565b6123ca61279e565b60005b838390508110156124695781601160008686858181106123f0576123ef614ba2565b5b90506020020160208101906124059190613f50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061246190614bd1565b9150506123cd565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161249d93929190614cdc565b60405180910390a1505050565b6124b261279e565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6124fe61279e565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61253261279e565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61262261279e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633b36a1d7612668611e15565b6040518263ffffffff1660e01b8152600401612684919061410d565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b50505050565b600a5481565b6126c661279e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614d80565b60405180910390fd5b61273e816134a7565b50565b61274961279e565b670de0b6b3a76400008161275d9190614b48565b600b8190555050565b60168060000154905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6127a661281c565b73ffffffffffffffffffffffffffffffffffffffff166127c4611e15565b73ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281190614dec565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288a90614e7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990614f10565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129e09190613f8c565b60405180910390a3505050565b60006129f98484612593565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612a735781811015612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c90614f7c565b60405180910390fd5b612a728484848403612824565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adf9061500e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e906150a0565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612bfb5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c319061510c565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612cde5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cf75750601460009054906101000a900460ff16155b15612d4c57601460039054906101000a900460ff16612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4290615178565b60405180910390fd5b5b60008103612d6557612d6083836000613701565b6132d5565b6000612d7030611aba565b90506000600a548210159050808015612d965750601460009054906101000a900460ff16155b8015612dae5750601460019054906101000a900460ff165b8015612e035750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612e595750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612eaf5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f10576001601460006101000a81548160ff0219169083151502179055506000601854118015612ee357506000600a54115b15612ef457612ef3600a54613977565b5b6000601460006101000a81548160ff0219169083151502179055505b6000601460009054906101000a900460ff16159050808015612f7c5750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131a4576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ff657606460185486612fe59190614b48565b612fef91906151c7565b9050613189565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561318857600f5442148061306557506001600f54613062919061475e565b42145b156130ce57600e869080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6064601754866130de9190614b48565b6130e891906151c7565b9050600c546130f687611aba565b86613101919061475e565b1115613142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313990615244565b60405180910390fd5b600b54851115613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e906152b0565b60405180910390fd5b5b5b808561319591906152d0565b94506131a2873083613701565b505b6131af868686613701565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc876131f789611aba565b6040518363ffffffff1660e01b815260040161321492919061453a565b600060405180830381600087803b15801561322e57600080fd5b505af192505050801561323f575060015b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8661328888611aba565b6040518363ffffffff1660e01b81526004016132a592919061453a565b600060405180830381600087803b1580156132bf57600080fd5b505af19250505080156132d0575060015b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334090615376565b60405180910390fd5b61335582600083613a91565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d290615408565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161348e9190613f8c565b60405180910390a36134a283600084613a96565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036135c957600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080156136b757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401613684929190614403565b600060405180830381600087803b15801561369e57600080fd5b505af11580156136b2573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137679061500e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d6906150a0565b60405180910390fd5b6137ea838383613a91565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138679061549a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161395e9190613f8c565b60405180910390a3613971848484613a96565b50505050565b600081905061398581613a9b565b600047905060006018549050600081601660000154846139a59190614b48565b6139af91906151c7565b90506000811115613a8a576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a0290614642565b60006040518083038185875af1925050503d8060008114613a3f576040519150601f19603f3d011682016040523d82523d6000602084013e613a44565b606091505b5050905080613a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7f906146a3565b60405180910390fd5b505b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115613ab857613ab761412d565b5b604051908082528060200260200182016040528015613ae65781602001602082028036833780820191505090505b5090503081600081518110613afe57613afd614ba2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bc991906154ba565b81600181518110613bdd57613bdc614ba2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c4430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612824565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ca89594939291906155a8565b600060405180830381600087803b158015613cc257600080fd5b505af1158015613cd6573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d1d82613cf2565b9050919050565b613d2d81613d12565b8114613d3857600080fd5b50565b600081359050613d4a81613d24565b92915050565b60008115159050919050565b613d6581613d50565b8114613d7057600080fd5b50565b600081359050613d8281613d5c565b92915050565b60008060408385031215613d9f57613d9e613ce8565b5b6000613dad85828601613d3b565b9250506020613dbe85828601613d73565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e02578082015181840152602081019050613de7565b83811115613e11576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e3382613dc8565b613e3d8185613dd3565b9350613e4d818560208601613de4565b613e5681613e17565b840191505092915050565b60006020820190508181036000830152613e7b8184613e28565b905092915050565b6000819050919050565b613e9681613e83565b8114613ea157600080fd5b50565b600081359050613eb381613e8d565b92915050565b600060208284031215613ecf57613ece613ce8565b5b6000613edd84828501613ea4565b91505092915050565b60008060408385031215613efd57613efc613ce8565b5b6000613f0b85828601613d3b565b9250506020613f1c85828601613ea4565b9150509250929050565b613f2f81613d50565b82525050565b6000602082019050613f4a6000830184613f26565b92915050565b600060208284031215613f6657613f65613ce8565b5b6000613f7484828501613d3b565b91505092915050565b613f8681613e83565b82525050565b6000602082019050613fa16000830184613f7d565b92915050565b600080600060608486031215613fc057613fbf613ce8565b5b6000613fce86828701613d3b565b9350506020613fdf86828701613d3b565b9250506040613ff086828701613ea4565b9150509250925092565b6000819050919050565b600061401f61401a61401584613cf2565b613ffa565b613cf2565b9050919050565b600061403182614004565b9050919050565b600061404382614026565b9050919050565b61405381614038565b82525050565b600060208201905061406e600083018461404a565b92915050565b600060ff82169050919050565b61408a81614074565b82525050565b60006020820190506140a56000830184614081565b92915050565b6140b481613d12565b82525050565b600060a0820190506140cf60008301886140ab565b6140dc6020830187613f7d565b6140e96040830186613f7d565b6140f66060830185613f7d565b6141036080830184613f7d565b9695505050505050565b600060208201905061412260008301846140ab565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61416582613e17565b810181811067ffffffffffffffff821117156141845761418361412d565b5b80604052505050565b6000614197613cde565b90506141a3828261415c565b919050565b600067ffffffffffffffff8211156141c3576141c261412d565b5b602082029050602081019050919050565b600080fd5b60006141ec6141e7846141a8565b61418d565b9050808382526020820190506020840283018581111561420f5761420e6141d4565b5b835b8181101561423857806142248882613d3b565b845260208401935050602081019050614211565b5050509392505050565b600082601f83011261425757614256614128565b5b81356142678482602086016141d9565b91505092915050565b6000806040838503121561428757614286613ce8565b5b600083013567ffffffffffffffff8111156142a5576142a4613ced565b5b6142b185828601614242565b92505060206142c285828601613d73565b9150509250929050565b600080fd5b60008083601f8401126142e7576142e6614128565b5b8235905067ffffffffffffffff811115614304576143036142cc565b5b6020830191508360208202830111156143205761431f6141d4565b5b9250929050565b6000806000604084860312156143405761433f613ce8565b5b600084013567ffffffffffffffff81111561435e5761435d613ced565b5b61436a868287016142d1565b9350935050602061437d86828701613d73565b9150509250925092565b6000806040838503121561439e5761439d613ce8565b5b60006143ac85828601613d3b565b92505060206143bd85828601613d3b565b9150509250929050565b60006143d282614026565b9050919050565b6143e2816143c7565b82525050565b60006020820190506143fd60008301846143d9565b92915050565b600060408201905061441860008301856140ab565b6144256020830184613f26565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061447357607f821691505b6020821081036144865761448561442c565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006144c2601283613dd3565b91506144cd8261448c565b602082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b60008151905061450781613e8d565b92915050565b60006020828403121561452357614522613ce8565b5b6000614531848285016144f8565b91505092915050565b600060408201905061454f60008301856140ab565b61455c6020830184613f7d565b9392505050565b60008151905061457281613d5c565b92915050565b60006020828403121561458e5761458d613ce8565b5b600061459c84828501614563565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006145db601783613dd3565b91506145e6826145a5565b602082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b600081905092915050565b50565b600061462c600083614611565b91506146378261461c565b600082019050919050565b600061464d8261461f565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b600061468d602083613dd3565b915061469882614657565b602082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b7f746869732077616c6c657420697320616c726561647920736574000000000000600082015250565b60006146f9601a83613dd3565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061476982613e83565b915061477483613e83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147a9576147a861472f565b5b828201905092915050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b6000614810602a83613dd3565b915061481b826147b4565b604082019050919050565b6000602082019050818103600083015261483f81614803565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b600061487c601d83613dd3565b915061488782614846565b602082019050919050565b600060208201905081810360008301526148ab8161486f565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b60006148e8602083613dd3565b91506148f3826148b2565b602082019050919050565b60006020820190508181036000830152614917816148db565b9050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b6000614954601183613dd3565b915061495f8261491e565b602082019050919050565b6000602082019050818103600083015261498381614947565b9050919050565b600061499582613cf2565b9050919050565b6149a58161498a565b82525050565b60006020820190506149c0600083018461499c565b92915050565b60006060820190506149db60008301866140ab565b6149e860208301856140ab565b6149f56040830184613f7d565b949350505050565b600081519050614a0c81613d24565b92915050565b600080600080600060a08688031215614a2e57614a2d613ce8565b5b6000614a3c888289016149fd565b9550506020614a4d888289016144f8565b9450506040614a5e888289016144f8565b9350506060614a6f888289016144f8565b9250506080614a80888289016144f8565b9150509295509295909350565b6000604082019050614aa260008301856140ab565b614aaf60208301846140ab565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b12602583613dd3565b9150614b1d82614ab6565b604082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b6000614b5382613e83565b9150614b5e83613e83565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9757614b9661472f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614bdc82613e83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614c0e57614c0d61472f565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b614c3d81613d12565b82525050565b6000614c4f8383614c34565b60208301905092915050565b6000614c6a6020840184613d3b565b905092915050565b6000602082019050919050565b6000614c8b8385614c19565b9350614c9682614c2a565b8060005b85811015614ccf57614cac8284614c5b565b614cb68882614c43565b9750614cc183614c72565b925050600181019050614c9a565b5085925050509392505050565b60006040820190508181036000830152614cf7818587614c7f565b9050614d066020830184613f26565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602683613dd3565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614dd6602083613dd3565b9150614de182614da0565b602082019050919050565b60006020820190508181036000830152614e0581614dc9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e68602483613dd3565b9150614e7382614e0c565b604082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614efa602283613dd3565b9150614f0582614e9e565b604082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f66601d83613dd3565b9150614f7182614f30565b602082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602583613dd3565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061508a602383613dd3565b91506150958261502e565b604082019050919050565b600060208201905081810360008301526150b98161507d565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b60006150f6600b83613dd3565b9150615101826150c0565b602082019050919050565b60006020820190508181036000830152615125816150e9565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000615162601283613dd3565b915061516d8261512c565b602082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151d282613e83565b91506151dd83613e83565b9250826151ed576151ec615198565b5b828204905092915050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061522e601b83613dd3565b9150615239826151f8565b602082019050919050565b6000602082019050818103600083015261525d81615221565b9050919050565b7f556e61626c6520746f20657863656564204d6178206275790000000000000000600082015250565b600061529a601883613dd3565b91506152a582615264565b602082019050919050565b600060208201905081810360008301526152c98161528d565b9050919050565b60006152db82613e83565b91506152e683613e83565b9250828210156152f9576152f861472f565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615360602183613dd3565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006153f2602283613dd3565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615484602683613dd3565b915061548f82615428565b604082019050919050565b600060208201905081810360008301526154b381615477565b9050919050565b6000602082840312156154d0576154cf613ce8565b5b60006154de848285016149fd565b91505092915050565b6000819050919050565b600061550c615507615502846154e7565b613ffa565b613e83565b9050919050565b61551c816154f1565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b600061555582615522565b61555f8185614c19565b935061556a8361552d565b8060005b8381101561559b5781516155828882614c43565b975061558d8361553d565b92505060018101905061556e565b5085935050505092915050565b600060a0820190506155bd6000830188613f7d565b6155ca6020830187615513565b81810360408301526155dc818661554a565b90506155eb60608301856140ab565b6155f86080830184613f7d565b969550505050505056fea2646970667358221220408e4747372e404051499051527997e53bf332db4e29e2cfe21f3b17b7d5881364736f6c634300080f0033

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

0000000000000000000000009976a7f426b4f4586b2b135110060c4a2e77326e

-----Decoded View---------------
Arg [0] : _devWallet (address): 0x9976A7f426b4F4586b2B135110060C4a2e77326e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009976a7f426b4f4586b2b135110060c4a2e77326e


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.