ETH Price: $2,535.26 (+5.47%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040204836662024-08-08 11:47:5989 days ago1723117679IN
 Create: LendingPool
0 ETH0.022561744.23908097

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LendingPool

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSL 1.1 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-08
*/

// SPDX-License-Identifier: BUSL-1.1
pragma solidity >= 0.8.26;










struct LoanDeploymentParams {
    uint256 fundingPeriodInSeconds;
    uint256 newPaymentIntervalInSeconds;
    uint256 newLoanAmountInPrincipalTokens; 
    uint256 originationFeePercent2Decimals;
    uint256 newAprWithTwoDecimals;
    uint256 initialCollateralRatioWith2Decimals;
    uint256 maintenanceCollateralRatioWith2Decimals;
    uint256 lateInterestFee;
    uint256 latePrincipalFee;
    uint256 expiryInfo;
    string loanTypeInfo;
    address lenderAddr;
    address borrowerAddr;
    address newCollateralToken;
    address newPrincipalToken;
    address feesManagerAddr;
    address priceOracleAddress;
    address feesCollectorAddress;
    address categoryFeesAdress;
    bool allowSeizeCollateral;
}

struct LoanRecord {
    address lenderAddr;
    address borrowerAddr;
    address principalTokenAddr;
    address collateralTokenAddr;
    uint256 loanAmount;
    uint256 initialApr;
    uint256 paymentInterval;
}

struct FeeData {
    address feeTokenAddr;       // The token address. This is used when the offset is not available (offset = 0).
    uint256 feeTokenOffset;     // The offset of the token, if any.
    uint256 amountOffset;       // The offset of the amount.
    uint256 feeWithTwoDecimals; // The applicable fee, expressed with 2 decimal places.
}

struct CallCheck {
    uint8 checkType;
    address contractAddr;
    uint256 numericVal;
    address contractAddr2;
    uint256 numericVal2;
}

struct ModuleFee {
    address tokenAddress;
    uint256 dstAmount;
    uint256 dstPercent;
}

struct ModuleResponse {
    uint256[] targetCallValues;
    address[] targetAddresses;
    bytes[] targetPayloads;
    CallCheck[] checks;
    ModuleFee[] feesBefore;
    ModuleFee[] feesAfter;
}


interface IPermissionlessLoansDeployer {
    /**
     * @notice Triggers when a new loan is deployed.
     * @param loanAddr The address of the newly deployed loan.
     * @param lenderAddr The lender.
     * @param borrowerAddr The borrower.
     */
    event PermissionlessLoanDeployed(address indexed loanAddr, address indexed lenderAddr, address indexed borrowerAddr);

    function deployLoan(LoanDeploymentParams calldata loanParams) external returns (address);
}







interface IHookableLender {
    function notifyLoanClosed() external;
    function notifyLoanMatured() external;
    function notifyPrincipalRepayment(uint256 effectiveLoanAmount, uint256 principalRepaid) external;
}







// ---------------------------------------------------------------
// States of a loan
// ---------------------------------------------------------------
uint8 constant LOAN_PREAPPROVED = 1;        // The loan was pre-approved by the lender
uint8 constant LOAN_FUNDING_REQUIRED = 2;   // The loan was accepted by the borrower. Waiting for the lender to fund the loan.
uint8 constant LOAN_FUNDED = 3;             // The loan was funded.
uint8 constant LOAN_ACTIVE = 4;             // The loan is active.
uint8 constant LOAN_CANCELLED = 5;          // The lender failed to fund the loan and the borrower claimed their collateral.
uint8 constant LOAN_MATURED = 6;            // The loan matured. It was liquidated by the lender.
uint8 constant LOAN_CLOSED = 7;             // The loan was closed normally.

interface IPeerToPeerOpenTermLoan {
    // Functions available to the lender only
    function fundLoan() external;
    function callLoan(uint256 callbackPeriodInSeconds, uint256 gracePeriodInSeconds) external;
    function liquidate() external;
    function proposeNewApr(uint256 newAprWithTwoDecimals) external;
    function changeOracle(address newOracle) external;
    function changeLateFees(uint256 lateInterestFeeWithTwoDecimals, uint256 latePrincipalFeeWithTwoDecimals) external;
    function changeMaintenanceCollateralRatio(uint256 maintenanceCollateralRatioWith2Decimals) external;
    function seizeCollateral(uint256 amount) external;
    function returnCollateral(uint256 depositAmount) external;

    // Functions available to the borrower only
    function acceptApr() external;
    function borrowerCommitment() external;
    function claimCollateral() external;
    function repay(uint256 paymentAmount) external;
    function repayInterests() external;
    function repayPrincipal(uint256 paymentAmount) external;

    // The minimum views of a loan
    function lender() external view returns (address);
    function borrower() external view returns (address);
    function principalToken() external view returns (address);
    function collateralToken() external view returns (address);
    function loanState() external view returns (uint8);
    function currentApr() external view returns (uint256);
    function effectiveLoanAmount() external view returns (uint256);
    function getCollateralRequirements() external view returns (uint256 initialCollateralAmount, uint256 maintenanceCollateralAmount);

    function getDebt() external view returns (
        uint256 currentBillingCycle,
        uint256 cyclesSinceLastAprUpdate,
        uint256 interestOwed,
        uint256 applicableLateFee,
        uint256 minPaymentAmount,
        uint256 maxPaymentAmount
    );
}







abstract contract BaseOwnable {
    address internal _owner;

    /**
     * @notice Triggers when contract ownership changes.
     * @param previousOwner The previous owner of the contract.
     * @param newOwner The new owner of the contract.
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Caller is not the owner");
        _;
    }

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







library DateUtils {
    // The number of seconds per day
    uint256 internal constant SECONDS_PER_DAY = 24 * 60 * 60;

    // The number of seconds per hour
    uint256 internal constant SECONDS_PER_HOUR = 60 * 60;

    // The number of seconds per minute
    uint256 internal constant SECONDS_PER_MINUTE = 60;

    // The offset from 01/01/1970
    int256 internal constant OFFSET19700101 = 2440588;

    function timestampToDate(uint256 ts) internal pure returns (uint256 year, uint256 month, uint256 day) {
        (year, month, day) = _daysToDate(ts / SECONDS_PER_DAY);
    }

    function timestampToDateTime(uint256 timestamp) internal pure returns (uint256 year, uint256 month, uint256 day, uint256 hour, uint256 minute, uint256 second) {
        (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
        uint256 secs = timestamp % SECONDS_PER_DAY;
        hour = secs / SECONDS_PER_HOUR;
        secs = secs % SECONDS_PER_HOUR;
        minute = secs / SECONDS_PER_MINUTE;
        second = secs % SECONDS_PER_MINUTE;
    }

    function timestampFromDateTime(uint256 year, uint256 month, uint256 day, uint256 hour, uint256 minute, uint256 second) internal pure returns (uint256 timestamp) {
        timestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY + hour * SECONDS_PER_HOUR + minute * SECONDS_PER_MINUTE + second;
    }

    /**
     * @notice Calculate year/month/day from the number of days since 1970/01/01 using the date conversion algorithm from http://aa.usno.navy.mil/faq/docs/JD_Formula.php and adding the offset 2440588 so that 1970/01/01 is day 0
     * @dev Taken from https://github.com/bokkypoobah/BokkyPooBahsDateTimeLibrary/blob/master/contracts/BokkyPooBahsDateTimeLibrary.sol
     * @param _days The year
     * @return year The year
     * @return month The month
     * @return day The day
     */
    function _daysToDate (uint256 _days) internal pure returns (uint256 year, uint256 month, uint256 day) {
        int256 __days = int256(_days);

        int256 x = __days + 68569 + OFFSET19700101;
        int256 n = 4 * x / 146097;
        x = x - (146097 * n + 3) / 4;
        int256 _year = 4000 * (x + 1) / 1461001;
        x = x - 1461 * _year / 4 + 31;
        int256 _month = 80 * x / 2447;
        int256 _day = x - 2447 * _month / 80;
        x = _month / 11;
        _month = _month + 2 - 12 * x;
        _year = 100 * (n - 49) + _year + x;

        year = uint256(_year);
        month = uint256(_month);
        day = uint256(_day);
    }

    /**
     * @notice Calculates the number of days from 1970/01/01 to year/month/day using the date conversion algorithm from http://aa.usno.navy.mil/faq/docs/JD_Formula.php and subtracting the offset 2440588 so that 1970/01/01 is day 0
     * @dev Taken from https://github.com/bokkypoobah/BokkyPooBahsDateTimeLibrary/blob/master/contracts/BokkyPooBahsDateTimeLibrary.sol
     * @param year The year
     * @param month The month
     * @param day The day
     * @return _days Returns the number of days
     */
    function _daysFromDate (uint256 year, uint256 month, uint256 day) internal pure returns (uint256 _days) {
        require(year >= 1970, "Error");
        int256 _year = int256(year);
        int256 _month = int256(month);
        int256 _day = int256(day);

        int256 __days = _day
          - 32075
          + 1461 * (_year + 4800 + (_month - 14) / 12) / 4
          + 367 * (_month - 2 - (_month - 14) / 12 * 12) / 12
          - 3 * ((_year + 4900 + (_month - 14) / 12) / 100) / 4
          - OFFSET19700101;

        _days = uint256(__days);
    }
}





// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)


/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)




// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)



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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Permit.sol)



/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}




/**
 * @dev Interface of the ERC4626 "Tokenized Vault Standard", as defined in
 * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].
 *
 * _Available since v4.7._
 */
interface IERC4626 {
    /// @notice Triggers when an account deposits funds in the contract
    event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares);

    event Withdraw(
        address indexed sender,
        address indexed receiver,
        address indexed owner,
        uint256 assets,
        uint256 shares
    );

    /**
     * @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.
     *
     * - MUST be an ERC-20 token contract.
     * - MUST NOT revert.
     */
    function asset() external view returns (address assetTokenAddress);

    /**
     * @dev Returns the total amount of the underlying asset that is “managed” by Vault.
     *
     * - SHOULD include any compounding that occurs from yield.
     * - MUST be inclusive of any fees that are charged against assets in the Vault.
     * - MUST NOT revert.
     */
    function totalAssets() external view returns (uint256 totalManagedAssets);

    /**
     * @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal
     * scenario where all the conditions are met.
     *
     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.
     * - MUST NOT show any variations depending on the caller.
     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.
     * - MUST NOT revert.
     *
     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the
     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and
     * from.
     */
    function convertToShares(uint256 assets) external view returns (uint256 shares);

    /**
     * @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal
     * scenario where all the conditions are met.
     *
     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.
     * - MUST NOT show any variations depending on the caller.
     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.
     * - MUST NOT revert.
     *
     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the
     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and
     * from.
     */
    function convertToAssets(uint256 shares) external view returns (uint256 assets);

    /**
     * @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,
     * through a deposit call.
     *
     * - MUST return a limited value if receiver is subject to some deposit limit.
     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.
     * - MUST NOT revert.
     */
    function maxDeposit(address receiver) external view returns (uint256 maxAssets);

    /**
     * @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given
     * current on-chain conditions.
     *
     * - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit
     *   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called
     *   in the same transaction.
     * - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the
     *   deposit would be accepted, regardless if the user has enough tokens approved, etc.
     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.
     * - MUST NOT revert.
     *
     * NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in
     * share price or some other type of condition, meaning the depositor will lose assets by depositing.
     */
    function previewDeposit(uint256 assets) external view returns (uint256 shares);

    /**
     * @dev Mints shares Vault shares to receiver by depositing exactly amount of underlying tokens.
     *
     * - MUST emit the Deposit event.
     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the
     *   deposit execution, and are accounted for during deposit.
     * - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not
     *   approving enough underlying tokens to the Vault contract, etc).
     *
     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.
     */
    function deposit(uint256 assets, address receiver) external returns (uint256 shares);

    /**
     * @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.
     * - MUST return a limited value if receiver is subject to some mint limit.
     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.
     * - MUST NOT revert.
     */
    function maxMint(address receiver) external view returns (uint256 maxShares);

    /**
     * @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given
     * current on-chain conditions.
     *
     * - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call
     *   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the
     *   same transaction.
     * - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint
     *   would be accepted, regardless if the user has enough tokens approved, etc.
     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.
     * - MUST NOT revert.
     *
     * NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in
     * share price or some other type of condition, meaning the depositor will lose assets by minting.
     */
    function previewMint(uint256 shares) external view returns (uint256 assets);

    /**
     * @dev Mints exactly shares Vault shares to receiver by depositing amount of underlying tokens.
     *
     * - MUST emit the Deposit event.
     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint
     *   execution, and are accounted for during mint.
     * - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not
     *   approving enough underlying tokens to the Vault contract, etc).
     *
     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.
     */
    function mint(uint256 shares, address receiver) external returns (uint256 assets);

    /**
     * @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the
     * Vault, through a withdraw call.
     *
     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.
     * - MUST NOT revert.
     */
    function maxWithdraw(address owner) external view returns (uint256 maxAssets);

    /**
     * @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,
     * given current on-chain conditions.
     *
     * - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw
     *   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if
     *   called
     *   in the same transaction.
     * - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though
     *   the withdrawal would be accepted, regardless if the user has enough shares, etc.
     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.
     * - MUST NOT revert.
     *
     * NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in
     * share price or some other type of condition, meaning the depositor will lose assets by depositing.
     */
    function previewWithdraw(uint256 assets) external view returns (uint256 shares);

    /**
     * @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.
     *
     * - MUST emit the Withdraw event.
     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the
     *   withdraw execution, and are accounted for during withdraw.
     * - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner
     *   not having enough shares, etc).
     *
     * Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.
     * Those methods should be performed separately.
     */
    function withdraw(
        uint256 assets,
        address receiver,
        address owner
    ) external returns (uint256 shares);

    /**
     * @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,
     * through a redeem call.
     *
     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.
     * - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.
     * - MUST NOT revert.
     */
    function maxRedeem(address owner) external view returns (uint256 maxShares);

    /**
     * @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block,
     * given current on-chain conditions.
     *
     * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call
     *   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the
     *   same transaction.
     * - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the
     *   redemption would be accepted, regardless if the user has enough shares, etc.
     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.
     * - MUST NOT revert.
     *
     * NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in
     * share price or some other type of condition, meaning the depositor will lose assets by redeeming.
     */
    function previewRedeem(uint256 shares) external view returns (uint256 assets);

    /**
     * @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.
     *
     * - MUST emit the Withdraw event.
     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the
     *   redeem execution, and are accounted for during redeem.
     * - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner
     *   not having enough shares, etc).
     *
     * NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.
     * Those methods should be performed separately.
     */
    function redeem(
        uint256 shares,
        address receiver,
        address owner
    ) external returns (uint256 assets);
}






// OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/Initializable.sol)





/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized != type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}




/**
 * @title Base reentrancy guard. This is constructor-less implementation for both proxies and standalone contracts.
 */
abstract contract BaseReentrancyGuard {
    uint256 internal constant _REENTRANCY_NOT_ENTERED = 1;
    uint256 internal constant _REENTRANCY_ENTERED = 2;

    uint256 internal _reentrancyStatus;

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_reentrancyStatus != _REENTRANCY_ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _reentrancyStatus = _REENTRANCY_ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _reentrancyStatus = _REENTRANCY_NOT_ENTERED;
    }

    /*
    /// @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a `nonReentrant` function in the call stack.
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _reentrancyStatus == _REENTRANCY_ENTERED;
    }
    */
}


/**
 * @title Tokenizes a liability per EIP-20.
 * @dev The liability is upgradeable per EIP-1967. Reentrancy checks in place.
 */
abstract contract BaseUpgradeableERC20 is IERC20, Initializable, BaseReentrancyGuard {
    /// @notice The decimal places of the token.
    uint8 public decimals;

    /// @notice The token symbol.
    string public symbol;

    /// @notice The descriptive name of the token.
    string public name;

    /// @dev The total circulating supply of the token
    uint256 internal _totalSupply;

    /// @dev The maximum circulating supply of the token, if any. Set to zero if there is no max limit.
    uint256 internal _maxSupply;

    /// @dev The balance of each holder
    mapping(address => uint256) internal _balances;

    /// @dev The allowance of each spender, which is set by each owner
    mapping(address => mapping(address => uint256)) internal _allowances;

    /**
     * @notice This event is triggered when the maximum limit for minting tokens is updated.
     * @param prevValue The previous limit
     * @param newValue The new limit
     */
    event OnMaxSupplyChanged(uint256 prevValue, uint256 newValue);

    // --------------------------------------------------------------------------
    // Modifiers
    // --------------------------------------------------------------------------
    /**
     * @notice Indicates if this contract implementation was initialized at the proxy
     * @dev Throws if the contract was not initialized
     */
    modifier onlyIfInitialized() {
        require(_getInitializedVersion() != type(uint8).max, "Contract not initialized yet");
        _;
    }

    // --------------------------------------------------------------------------
    // ERC-20 interface implementation
    // --------------------------------------------------------------------------
    /**
     * @notice Transfers a given amount tokens to the address specified.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return Returns true in case of success.
     */
    function transfer(address to, uint256 value) external override onlyIfInitialized nonReentrant returns (bool) {
        return _executeErc20Transfer(msg.sender, to, value);
    }

    /**
     * @notice Transfer tokens from one address to another.
     * @dev Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     * @return Returns true in case of success.
     */
    function transferFrom(address from, address to, uint256 value) external override onlyIfInitialized nonReentrant returns (bool) {
        uint256 currentAllowance = _allowances[from][msg.sender];
        require(currentAllowance >= value, "Amount exceeds allowance");

        require (_executeErc20Transfer(from, to, value), "Failed to execute transferFrom");

        _approveSpender(from, msg.sender, currentAllowance - value);

        return true;
    }

    /**
     * @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * @dev 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
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return Returns true in case of success.
     */
    function approve(address spender, uint256 value) external override onlyIfInitialized nonReentrant returns (bool) {
        _approveSpender(msg.sender, spender, value);
        return true;
    }

    /**
     * @notice Gets the current version of the token.
     * @return uint8 The current version of the contract.
     */
    function getInitializedVersion() external view onlyIfInitialized returns (uint8) {
        return _getInitializedVersion();
    }

    /**
     * @notice Gets the total circulating supply of tokens
     * @return uint256 The total circulating supply of tokens
     */
    function totalSupply() external view override onlyIfInitialized returns (uint256) {
        return _totalSupply;
    }

    /**
     * @notice Gets the balance of the address specified.
     * @param addr The address to query the balance of.
     * @return uint256 An uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address addr) external view override onlyIfInitialized returns (uint256) {
        return _balances[addr];
    }

    /**
     * @notice Function to check the amount of tokens that an owner allowed to a spender.
     * @param ownerAddr address The address which owns the funds.
     * @param spenderAddr address The address which will spend the funds.
     * @return uint256 A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address ownerAddr, address spenderAddr) external view override onlyIfInitialized returns (uint256) {
        return _allowances[ownerAddr][spenderAddr];
    }

    /**
     * @notice Gets the maximum token supply.
     * @return uint256 The maximum token supply.
     */
    function maxSupply() external view onlyIfInitialized returns (uint256) {
        return _maxSupply;
    }

    // --------------------------------------------------------------------------
    // Implementation functions
    // --------------------------------------------------------------------------
    function _executeErc20Transfer(address from, address to, uint256 value) internal virtual returns (bool) {
        // Checks
        require(to != address(0), "non-zero address required");
        require(from != address(0), "non-zero sender required");
        require(value > 0, "Amount cannot be zero");
        require(_balances[from] >= value, "Amount exceeds sender balance");

        // State changes
        _balances[from] = _balances[from] - value;
        _balances[to] = _balances[to] + value;

        // Emit the event per ERC-20
        emit Transfer(from, to, value);

        return true;
    }

    function _approveSpender(address ownerAddr, address spender, uint256 value) internal virtual {
        require(spender != address(0), "non-zero spender required");
        require(ownerAddr != address(0), "non-zero owner required");

        // State changes
        _allowances[ownerAddr][spender] = value;

        // Emit the event
        emit Approval(ownerAddr, spender, value);
    }

    function _spendAllowance (address ownerAddr, address spenderAddr, uint256 amount) internal virtual {
        uint256 currentAllowance = _allowances[ownerAddr][spenderAddr];
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            _approveSpender(ownerAddr, spenderAddr, currentAllowance - amount);
        }
    }

    function _mintErc20(address addr, uint256 amount) internal virtual {
        require(amount > 0, "Invalid amount");
        require(_canMint(amount), "Max supply limit reached");

        _totalSupply += amount;
        _balances[addr] += amount;

        emit Transfer(address(0), addr, amount);
    }

    function _burnErc20(address addr, uint256 amount) internal virtual {
        require(amount > 0, "Invalid amount");
        require(_balances[addr] >= amount, "Burn amount exceeds balance");

        _balances[addr] -= amount;
        _totalSupply -= amount;

        emit Transfer(addr, address(0), amount);
    }

    function _setMaxSupply(uint256 newValue) internal virtual {
        require(newValue > 0 && newValue > _totalSupply, "Invalid max supply");

        uint256 prevValue = _maxSupply;
        _maxSupply = newValue;

        emit OnMaxSupplyChanged(prevValue, newValue);
    }

    // Indicates if we can issue/mint the number of tokens specified.
    function _canMint(uint256 amount) internal view virtual returns (bool) {        
        return _maxSupply - _totalSupply >= amount;
    }
}


/**
 * @title Represents a liquidity pool. The pool works per ERC-4626 standard. The pool can be paused.
 */
abstract contract BaseUpgradeableERC4626 is IERC4626, BaseUpgradeableERC20 {
    using MathUpgradeable for uint256;

    /// @notice Indicates whether deposits are paused or not.
    bool public depositsPaused;

    /// @notice Indicates whether withdrawals are paused or not.
    bool public withdrawalsPaused;

    /// @dev The underlying asset of the pool
    IERC20 internal _underlyingAsset;

    /// @dev The address of the fees collector, if any.
    address public feesCollector;

    /// @notice The maximum deposit amount.
    uint256 public maxDepositAmount;

    /// @notice The maximum withdrawal amount.
    uint256 public maxWithdrawalAmount;

    /// @notice The fee to apply when an account withdraws funds from the pool.
    uint256 public withdrawalFee;

    /**
     * @notice Triggers when deposits/withdrawals are paused or resumed.
     * @param bDepositsPaused The new state for deposits
     * @param bWithdrawalsPaused The new state for withdrawals
     */
    event DepositWithdrawalStatusChanged(bool bDepositsPaused, bool bWithdrawalsPaused);

    // ---------------------------------------------------------------
    // Modifiers
    // ---------------------------------------------------------------
    modifier ifConfigured() {
        require(address(_underlyingAsset) != address(0), "Not configured");
        _;
    }

    modifier ifNotConfigured() {
        require(address(_underlyingAsset) == address(0), "Already configured");
        _;
    }

    modifier ifDepositsNotPaused() {
        require(!depositsPaused, "Deposits paused");
        _;
    }

    modifier ifWithdrawalsNotPaused() {
        require(!withdrawalsPaused, "Withdrawals paused");
        _;
    }

    // --------------------------------------------------------------------------
    // ERC-4626 interface implementation
    // --------------------------------------------------------------------------
    /**
     * @notice Deposits funds in the pool. Issues LP tokens in exchange for the deposit.
     * @dev Throws if the deposit limit is reached.
     * @param assets The deposit amount, expressed in underlying tokens. For example: USDC, DAI, etc.
     * @param receiver The address that will receive the LP tokens. It is usually the same as a the sender.
     * @return shares The number of LP tokens issued to the receiving address specified.
     */
    function deposit(
        uint256 assets, 
        address receiver
    ) external override nonReentrant ifConfigured ifDepositsNotPaused returns (uint256 shares) {
        require(receiver != address(0) && receiver != address(this), "Invalid receiver");
        require(assets > 0, "Assets amount required");
        require(assets <= maxDeposit(receiver), "Deposit limit reached");

        shares = previewDeposit(assets);
        require(shares > 0, "Shares amount required");

        _deposit(msg.sender, receiver, assets, shares);
    }

    /**
     * @notice Issues a specific amount of LP tokens to the receiver specified.
     * @dev Throws if the deposit limit is reached regardless of how many LP tokens you want to mint.
     * @param shares The amount of LP tokens to mint.
     * @param receiver The address of the receiver. It is usually the same as a the sender.
     * @return assets The amount of underlying assets per current ratio
     */
    function mint(
        uint256 shares, 
        address receiver
    ) external override nonReentrant ifConfigured ifDepositsNotPaused returns (uint256 assets) {
        require(receiver != address(0) && receiver != address(this), "Invalid receiver");
        require(shares > 0, "Shares amount required");
        require(shares <= maxMint(receiver), "ERC4626: mint more than max");

        assets = previewMint(shares);
        require(assets <= maxDeposit(receiver), "Deposit limit reached");

        _deposit(msg.sender, receiver, assets, shares);
    }

    /**
     * @notice Gets the underlying asset of the pool.
     * @return address The address of the asset.
     */
    function asset() external view override onlyIfInitialized returns (address) {
        return address(_underlyingAsset);
    }

    /**
     * @notice Gets the total assets amount managed by the pool.
     * @return uint256 The assets amount.
     */
    function totalAssets() external view virtual override ifConfigured returns (uint256) {
        return _getTotalAssets();
    }

    function previewDeposit(uint256 assets) public view virtual override ifConfigured returns (uint256) {
        return _convertToShares(assets, MathUpgradeable.Rounding.Down);
    }

    function previewMint(uint256 shares) public view virtual override ifConfigured returns (uint256) {
        return _convertToAssets(shares, MathUpgradeable.Rounding.Up);
    }

    function previewWithdraw(uint256 assets) public view virtual override ifConfigured returns (uint256) {
        return _convertToShares(assets, MathUpgradeable.Rounding.Up);
    }

    function previewRedeem(uint256 shares) public view virtual override ifConfigured returns (uint256 assets) {
        (, assets) = _previewRedeemWithFees(shares);
    }

    function convertToShares(uint256 assets) public view virtual override ifConfigured returns (uint256) {
        return _convertToShares(assets, MathUpgradeable.Rounding.Down);
    }

    function convertToAssets(uint256 shares) public view virtual override ifConfigured returns (uint256) {
        return _convertToAssets(shares, MathUpgradeable.Rounding.Down);
    }

    function maxDeposit(address) public view virtual override ifConfigured returns (uint256) {
        return _isVaultHealthy() ? maxDepositAmount : 0;
    }

    function maxMint(address) public view virtual override ifConfigured returns (uint256) {
        return _maxSupply;
    }

    function maxWithdraw(address holderAddr) public view virtual override ifConfigured returns (uint256) {
        return _convertToAssets(_balances[holderAddr], MathUpgradeable.Rounding.Down);
    }

    function maxRedeem(address holderAddr) public view virtual override ifConfigured returns (uint256) {
        return _balances[holderAddr];
    }

    // --------------------------------------------------------------------------
    // Implementation functions
    // --------------------------------------------------------------------------
    function _deposit(
        address callerAddr,
        address receiverAddr,
        uint256 assets,
        uint256 shares
    ) internal virtual {
        // If _asset is ERC777, `transferFrom` can trigger a reenterancy BEFORE the transfer happens through the
        // `tokensToSend` hook. On the other hand, the `tokenReceived` hook, that is triggered after the transfer,
        // calls the vault, which is assumed not malicious.
        //
        // Conclusion: we need to do the transfer before we mint so that any reentrancy would happen before the
        // assets are transferred and before the shares are minted, which is a valid state.
        // slither-disable-next-line reentrancy-no-eth
        uint256 expectedBalanceAfterTransfer = assets + _underlyingAsset.balanceOf(address(this));
        SafeERC20.safeTransferFrom(_underlyingAsset, callerAddr, address(this), assets);
        require(_underlyingAsset.balanceOf(address(this)) == expectedBalanceAfterTransfer, "Balance check failed");

        // Issue (mint) LP tokens to the receiver
        _mintErc20(receiverAddr, shares);

        // Log the ERC-4626 event
        emit Deposit(callerAddr, receiverAddr, assets, shares);
    }

    function _updateIssuanceLimits(
        uint256 newMaxDepositAmount, 
        uint256 newMaxWithdrawalAmount, 
        uint256 newMaxTokenSupply
    ) internal virtual {
        require(newMaxDepositAmount > 0, "Invalid deposit limit");
        require(newMaxWithdrawalAmount > 0, "Invalid withdrawal limit");
        
        _setMaxSupply(newMaxTokenSupply);

        maxDepositAmount = newMaxDepositAmount;
        maxWithdrawalAmount = newMaxWithdrawalAmount;
    }

    function _setPause(bool bPauseDeposits, bool bPauseWithdrawals) internal virtual {
        depositsPaused = bPauseDeposits;
        withdrawalsPaused = bPauseWithdrawals;
        
        emit DepositWithdrawalStatusChanged(depositsPaused, withdrawalsPaused);
    }

    // --------------------------------------------------------------------------
    // Inner views
    // --------------------------------------------------------------------------
    function _getTotalAssets() internal view virtual returns (uint256);

    function _isVaultHealthy() internal view virtual returns (bool) {
        return _totalSupply == 0 || _getTotalAssets() > 0;
    }

    // Internal conversion function (from assets to shares) to apply when the vault is empty.
    function _initialConvertToShares(uint256 assets, MathUpgradeable.Rounding) internal view virtual returns (uint256 shares) {
        return assets;
    }

    // Internal conversion function (from shares to assets) to apply when the vault is empty.
    function _initialConvertToAssets(uint256 shares, MathUpgradeable.Rounding) internal view virtual returns (uint256) {
        return shares;
    }

    // Internal conversion function (from assets to shares) with support for rounding direction.
    // Will revert if assets > 0, totalSupply > 0 and totalAssets = 0. 
    // That corresponds to a case where any asset would represent an infinite amount of shares.
    function _convertToShares(uint256 assets, MathUpgradeable.Rounding rounding) internal view virtual returns (uint256) {
        return (assets == 0 || _totalSupply == 0) ? _initialConvertToShares(assets, rounding) : assets.mulDiv(_totalSupply, _getTotalAssets(), rounding);
    }

    // Internal conversion function (from shares to assets) with support for rounding direction.
    function _convertToAssets(uint256 shares, MathUpgradeable.Rounding rounding) internal view virtual returns (uint256) {
        return (_totalSupply == 0) ? _initialConvertToAssets(shares, rounding) : shares.mulDiv(_getTotalAssets(), _totalSupply, rounding);
    }

    function _previewRedeemWithFees(uint256 shares) internal view returns (uint256 assetsAmount, uint256 assetsAfterFee) {
        assetsAmount = _convertToAssets(shares, MathUpgradeable.Rounding.Down);
        assetsAfterFee = assetsAmount;
        uint256 applicableFee = 0;

        if (withdrawalFee > 0) {
            applicableFee = withdrawalFee * assetsAmount / 1e4;
            assetsAfterFee = assetsAmount - applicableFee;
        }

        return (assetsAmount, assetsAfterFee);
    }
}


/**
 * @title Represents a liquidity pool in which withdrawals can be time-locked or instantaneous.
 * @dev The liquidity pool accepts deposits in a single token only, per ERC-4626.
 */
abstract contract TimelockedERC4626 is BaseUpgradeableERC4626 {
    /// @dev A reasonable time-window for manipulating the block timestamp as a miner.
    uint256 constant internal _TIMESTAMP_MANIPULATION_WINDOW = 5 minutes;

    struct RedeemSummary {
        uint256 shares; // The number of shares to burn.
        uint256 assets; // The asset amount that was claimable at redemption time per current token price.
    }

    /// @notice The hour at which withdrawals are processed. It ranges from 0 to 23.
    uint8 public liquidationHour;

    /// @notice The duration of the time-lock for withdrawals.
    uint256 public lagDuration;

    /// @notice The total number of shares that need to be burned.
    uint256 public globalLiabilityShares;

    /// @notice The total amount of collectable fees, at any point in time.
    uint256 public totalCollectableFees;

    /// @dev The liability (forecast) that needs to be fulfilled at a given point in time
    mapping (bytes32 => RedeemSummary) internal _dailyRequirement;

    /// @dev The list of addresses that can claim funds at a given point in time
    mapping (bytes32 => address[]) internal _uniqueReceiversPerCluster;

    /// @dev The index of each unique receiver per cluster
    mapping (bytes32 => mapping(address => uint256)) private _receiverIndexes;

    /// @dev The amount of underlying tokens that can be claimed by a given address at a specific point in time
    mapping (bytes32 => mapping(address => uint256)) internal _receiverAmounts;

    /// @dev The number of shares that can be burned by a given address at a specific point in time
    mapping (bytes32 => mapping(address => uint256)) internal _burnableAmounts;

    mapping (bytes32 => mapping(address => uint256)) internal _feeAmountsByReceiver;

    /**
     * @notice This event is triggered when a holder requests a withdrawal.
     * @param ownerAddr The address of the holder.
     * @param receiverAddr The address of the receiver.
     * @param shares The amount of shares (LP tokens) to burn.
     * @param assets The amount of underlying assets to transfer.
     * @param fee The fee applied to the withdrawal.
     * @param year The year component of the scheduled date.
     * @param month The month component of the scheduled date.
     * @param day The day component of the scheduled date.
     */
    event WithdrawalRequested (address ownerAddr, address receiverAddr, uint256 shares, uint256 assets, uint256 fee, uint256 year, uint256 month, uint256 day);

    // ----------------------------------------
    // ERC-4626 endpoint overrides
    // ----------------------------------------
    function withdraw(
        uint256, 
        address, 
        address
    ) external override pure returns (uint256) {
        // Revert the call to ERC4626.withdraw(args) in order to stay compatible with the ERC-4626 standard.
        // Per ERC-4626 spec (https://eips.ethereum.org/EIPS/eip-4626):
        // - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner not having enough shares, etc).
        // - Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. 
        //   Those methods should be performed separately.
        revert("Withdrawal request required");

        // We could enqueue a withdrawal request from this endpoint, but it wouldn't compatible with the ERC-4626 standard.
        // Likewise, we could process the funds for the receiver sppecified but -again- it wouldn't compatible with the ERC-4626 standard.
        // Hence the tx revert. Provided we revert in all cases, the function becomes pure.
    }

    function redeem(
        uint256, 
        address, 
        address
    ) external override pure returns (uint256) {
        // Revert the call to ERC4626.redeem(args) in order to stay compatible with the ERC-4626 standard.
        // Per ERC-4626 spec (https://eips.ethereum.org/EIPS/eip-4626):
        // - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner not having enough shares, etc).
        // - Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. 
        //   Those methods should be performed separately.
        revert("Withdrawal request required");

        // We could enqueue a withdrawal request from this endpoint, but it wouldn't compatible with the ERC-4626 standard.
        // Likewise, we could process the funds for the receiver sppecified but -again- it wouldn't compatible with the ERC-4626 standard.
        // Hence the tx revert. Provided we revert in all cases, the function becomes pure.
    }

    // ----------------------------------------
    // Timelocked ERC-4626 features
    // ----------------------------------------
    /**
     * @notice Requests to redeem a given number of shares from the holder specified.
     * @dev The respective amount of assets will be made available in X hours from now, where "X" is the lag defined by the owner of the pool.
     * @param shares The number of shares to burn.
     * @param receiverAddr The address of the receiver.
     * @param holderAddr The address of the tokens holder.
     * @return assets The amount of assets that can be claimed for this specific withdrawal request.
     * @return claimableEpoch The date at which the assets become claimable. This is expressed as a Unix epoch.
     */
    function requestRedeem(
        uint256 shares, 
        address receiverAddr, 
        address holderAddr
    ) external nonReentrant ifConfigured ifWithdrawalsNotPaused returns (
        uint256 assets, 
        uint256 claimableEpoch
    ) {
        uint256 year;
        uint256 month;
        uint256 day;
        (claimableEpoch, year, month, day, assets) = _registerRedeemRequest(shares, holderAddr, receiverAddr, msg.sender);

        // If the pool is not time-locked then transfer the funds immediately.
        if (lagDuration == 0) {
            claimableEpoch = block.timestamp;
            _claim(year, month, day, receiverAddr);
        }
    }

    /**
     * @notice Allows any public address to process the scheduled withdrawal requests of the receiver specified.
     * @dev Throws if the receiving address is not the legitimate address you registered via "requestRedeem()"
     * @param year The year component of the claim. It can be a past date.
     * @param month The month component of the claim. It can be a past date.
     * @param day The day component of the claim. It can be a past date.
     * @param receiverAddr The address of the legitimate receiver of the funds.
     * @return uint256 The effective number of shares (LP tokens) that were burnt from the liquidity pool.
     * @return uint256 The effective amount of underlying assets that were transfered to the receiver.
     */
    function claim(
        uint256 year, 
        uint256 month, 
        uint256 day,
        address receiverAddr
    ) external nonReentrant ifConfigured ifWithdrawalsNotPaused returns (uint256, uint256) {
        // This function is provided as a fallback.
        // If -for any reason- a third party does not process the scheduled withdrawals then the 
        // legitimate receiver can claim the respective funds on their own.
        // Thus as a legitimate receiver you can always claim your funds, even if the processing party fails to honor their promise.
        return _claim(year, month, day, receiverAddr);
    }

    /**
     * @notice Processes all of the withdrawal requests scheduled for the date specified.
     * @dev Throws if the date is earlier than the liquidation/processing hour.
     * @param year The year component of the claim. It can be a past date.
     * @param month The month component of the claim. It can be a past date.
     * @param day The day component of the claim. It can be a past date.
     * @param maxLimit The number of transactions to process. The maximum is defined by the function "getScheduledTransactionsByDate()"
     */
    function processAllClaimsByDate(
        uint256 year, 
        uint256 month, 
        uint256 day,
        uint256 maxLimit
    ) external nonReentrant ifConfigured ifWithdrawalsNotPaused {
        require(maxLimit > 0, "Limit required");

        bytes32 dailyCluster = keccak256(abi.encode(year, month, day));

        // Make sure we have pending requests to process.
        require(_dailyRequirement[dailyCluster].assets > 0, "Nothing to process");

        // Make sure withdrawals are processed at the expected epoch only.
        require(block.timestamp + _TIMESTAMP_MANIPULATION_WINDOW >= DateUtils.timestampFromDateTime(year, month, day, liquidationHour, 0, 0), "Too early");

        // This is the number of unique ERC20 transfers we will need to make in this transaction
        uint256 workSize = (_uniqueReceiversPerCluster[dailyCluster].length > maxLimit) ? maxLimit : _uniqueReceiversPerCluster[dailyCluster].length;
        uint256 startingPos = _uniqueReceiversPerCluster[dailyCluster].length;

        address[] memory receivers = new address[](workSize);
        uint256[] memory amounts = new uint256[](workSize);
        uint256 totalFees;
        uint256 sharesToBurn;
        uint256 assetsToSend;
        uint256 x = workSize;
        address receiverAddr;

        for (uint256 i = startingPos; i > (startingPos - workSize); i--) {
            receiverAddr = _uniqueReceiversPerCluster[dailyCluster][i - 1];
            x--;
            receivers[x] = receiverAddr;
            amounts[x] = _receiverAmounts[dailyCluster][receiverAddr];
            assetsToSend += amounts[x];
            sharesToBurn += _burnableAmounts[dailyCluster][receiverAddr];
            totalFees += _feeAmountsByReceiver[dailyCluster][receiverAddr];
            _receiverAmounts[dailyCluster][receiverAddr] = 0;
            _burnableAmounts[dailyCluster][receiverAddr] = 0;
            _feeAmountsByReceiver[dailyCluster][receiverAddr] = 0;
            _uniqueReceiversPerCluster[dailyCluster].pop();
            _receiverIndexes[dailyCluster][receiverAddr] = 0;
        }

        globalLiabilityShares -= sharesToBurn;
        totalCollectableFees += totalFees;
        _dailyRequirement[dailyCluster].assets -= assetsToSend;
        _dailyRequirement[dailyCluster].shares -= sharesToBurn;

        // Make sure the pool has enough balance to cover withdrawals.
        uint256 balanceBefore = IERC20(_underlyingAsset).balanceOf(address(this));
        require(balanceBefore >= assetsToSend, "Insufficient balance");

        _burnErc20(address(this), sharesToBurn);

        // Untrusted external calls        
        for (uint256 i; i < receivers.length; i++) {
            SafeERC20.safeTransfer(_underlyingAsset, receivers[i], amounts[i]);
        }

        // Balance check, provided the external asset is untrusted
        require(IERC20(_underlyingAsset).balanceOf(address(this)) == balanceBefore - assetsToSend, "Balance check failed");
    }

    // ----------------------------------------
    // Views
    // ----------------------------------------
    /**
     * @notice Gets the date at which your withdrawal request can be claimed.
     * @return year The year.
     * @return month The month.
     * @return day The day.
     * @return claimableEpoch The Unix epoch at which your withdrawal request can be claimed.
     */
    function getWithdrawalEpoch() external view ifConfigured returns (
        uint256 year, 
        uint256 month, 
        uint256 day,
        uint256 claimableEpoch
    ) {
        (year, month, day) = DateUtils.timestampToDate(block.timestamp + _TIMESTAMP_MANIPULATION_WINDOW + lagDuration);
        claimableEpoch = DateUtils.timestampFromDateTime(year, month, day, liquidationHour, 0, 0);
    }

    /**
     * @notice Gets the funding requirement of the date specified.
     * @dev This is a forecast on the amount of assets that need to be available at the pool on the date specified.
     * @param year The year.
     * @param month The month.
     * @param day The day.
     * @return shares The number of shares (LP tokens) that will be burned on the date specified.
     * @return assets The amount of assets that will be transferred on the date specified.
     */
    function getRequirementByDate(
        uint256 year, 
        uint256 month, 
        uint256 day
    ) external view onlyIfInitialized returns (uint256 shares, uint256 assets) {
        bytes32 dailyCluster = keccak256(abi.encode(year, month, day));        
        shares = _dailyRequirement[dailyCluster].shares;
        assets = _dailyRequirement[dailyCluster].assets;
    }

    /**
     * @notice Gets the asset amount that can be claimed by a receiver at the date specified.
     * @dev This is a forecast on the amount of assets that can be claimed by a given party on the date specified.
     * @param year The year.
     * @param month The month.
     * @param day The day.
     * @param receiverAddr The address of the receiver.
     * @return uint256 The total amount of assets that can be claimed at a the date specified.
     */
    function getClaimableAmountByReceiver(
        uint256 year, 
        uint256 month, 
        uint256 day,
        address receiverAddr
    ) external view onlyIfInitialized returns (uint256) {
        bytes32 dailyCluster = keccak256(abi.encode(year, month, day));
        return _receiverAmounts[dailyCluster][receiverAddr];
    }

    /**
     * @notice Gets the total number of shares to burn at the date specified for a given receiver.
     * @dev This is a forecast on the amount of assets that can be claimed by a given party on the date specified.
     * @param year The year.
     * @param month The month.
     * @param day The day.
     * @param receiverAddr The address of the receiver.
     * @return uint256 The total number of shares to burn at the date specified for a given receiver.
     */
    function getBurnableAmountByReceiver(
        uint256 year, 
        uint256 month, 
        uint256 day,
        address receiverAddr
    ) external view onlyIfInitialized returns (uint256) {
        bytes32 dailyCluster = keccak256(abi.encode(year, month, day));

        return _burnableAmounts[dailyCluster][receiverAddr];
    }

    /**
     * @notice Gets the total number of transactions to run at a given date.
     * @param year The year.
     * @param month The month.
     * @param day The day.
     * @return totalTransactions The number of transactions to execute.
     * @return executionEpoch The Unix epoch at which these transactions should be submitted to the blockchain.
     */
    function getScheduledTransactionsByDate(
        uint256 year, 
        uint256 month, 
        uint256 day
    ) external view ifConfigured returns (uint256 totalTransactions, uint256 executionEpoch) {
        bytes32 dailyCluster = keccak256(abi.encode(year, month, day));

        totalTransactions = _uniqueReceiversPerCluster[dailyCluster].length;
        executionEpoch = DateUtils.timestampFromDateTime(year, month, day, liquidationHour, 0, 0);
    }

    // ----------------------------------------
    // Inner functions
    // ----------------------------------------
    function _registerRedeemRequest(
        uint256 shares, 
        address holderAddr, 
        address receiverAddr,
        address callerAddr
    ) internal returns (
        uint256 claimableEpoch, 
        uint256 year, 
        uint256 month, 
        uint256 day, 
        uint256 effectiveAssetsAmount
    ) {
        require(receiverAddr != address(0) && receiverAddr != address(this), "Invalid receiver");
        require(holderAddr != address(0) && holderAddr != address(this), "Invalid holder");
        require(shares > 0, "Shares amount required");
        require(_balances[holderAddr] >= shares, "Insufficient shares");

        // The number of assets the receiver will get at the current price/ratio, per ERC-4626.
        (uint256 assetsAmount, uint256 assetsAfterFee) = _previewRedeemWithFees(shares);
        require(assetsAmount <= maxWithdraw(holderAddr), "Withdrawal limit reached");
        require(assetsAfterFee > 0, "Amount too low");

        // The withdrawal fee to apply
        uint256 applicableFee = assetsAmount - assetsAfterFee;
        effectiveAssetsAmount = assetsAfterFee;

        // The time slot (cluster) of the lagged withdrawal
        (year, month, day) = DateUtils.timestampToDate(block.timestamp + _TIMESTAMP_MANIPULATION_WINDOW + lagDuration);

        // The hash of the cluster
        bytes32 dailyCluster = keccak256(abi.encode(year, month, day));

        // The withdrawal will be processed at the following epoch
        claimableEpoch = DateUtils.timestampFromDateTime(year, month, day, liquidationHour, 0, 0);

        // ERC20 allowance scenario
        if (callerAddr != holderAddr) _spendAllowance(holderAddr, callerAddr, shares);

        // Transfer the shares from the token holder to this contract.
        // We transfer the shares to the liquidity pool in order to avoid fluctuations on the token price.
        // Otherwise, burning shares at this point in time would affect the number of assets (liability) 
        // of future withdrawal requests because the token price would increase.
        _executeErc20Transfer(holderAddr, address(this), shares);

        // Global metrics
        _dailyRequirement[dailyCluster].assets += assetsAmount;
        _dailyRequirement[dailyCluster].shares += shares;
        globalLiabilityShares += shares;

        // Unique receivers by date. We will transfer underlying tokens to this receiver shortly.
        if (_receiverAmounts[dailyCluster][receiverAddr] == 0) {
            _uniqueReceiversPerCluster[dailyCluster].push(receiverAddr);
            _receiverIndexes[dailyCluster][receiverAddr] = _uniqueReceiversPerCluster[dailyCluster].length;
        }

        // Track the amount of underlying assets we are required to transfer to the receiver address specified.
        _receiverAmounts[dailyCluster][receiverAddr] += assetsAfterFee;
        _burnableAmounts[dailyCluster][receiverAddr] += shares;
        _feeAmountsByReceiver[dailyCluster][receiverAddr] += applicableFee;

        emit WithdrawalRequested(holderAddr, receiverAddr, shares, assetsAmount, applicableFee, year, month, day);
    }

    function _claim(
        uint256 year, 
        uint256 month, 
        uint256 day,
        address receiverAddr
    ) internal returns (uint256, uint256) {
        require(receiverAddr != address(0), "Invalid receiver");

        bytes32 dailyCluster = keccak256(abi.encode(year, month, day));

        uint256 shares = _burnableAmounts[dailyCluster][receiverAddr];
        require(shares > 0, "No shares for receiver");

        uint256 receiverIndex = _receiverIndexes[dailyCluster][receiverAddr];
        require(receiverIndex > 0, "Invalid receiver index");

        uint256 claimableAssets = _receiverAmounts[dailyCluster][receiverAddr];
        uint256 assetFee = _feeAmountsByReceiver[dailyCluster][receiverAddr];

        if (lagDuration > 0) {
            // Make sure withdrawals are processed at the expected epoch only.
            require(block.timestamp + _TIMESTAMP_MANIPULATION_WINDOW >= DateUtils.timestampFromDateTime(year, month, day, liquidationHour, 0, 0), "Too early");
        }

        // Internal state changes (trusted)
        _receiverAmounts[dailyCluster][receiverAddr] = 0;
        _burnableAmounts[dailyCluster][receiverAddr] = 0;
        _feeAmountsByReceiver[dailyCluster][receiverAddr] = 0;
        _dailyRequirement[dailyCluster].shares -= shares;
        _dailyRequirement[dailyCluster].assets -= (claimableAssets + assetFee);
        globalLiabilityShares -= shares;
        totalCollectableFees += assetFee;

        _deleteReceiver(dailyCluster, receiverAddr);

        _burnErc20(address(this), shares);

        // Make sure the pool has enough balance to cover withdrawals.
        uint256 balanceBefore = IERC20(_underlyingAsset).balanceOf(address(this));
        SafeERC20.safeTransfer(_underlyingAsset, receiverAddr, claimableAssets);

        // Balance check, provided the external asset is untrusted
        require(IERC20(_underlyingAsset).balanceOf(address(this)) >= balanceBefore - claimableAssets, "Balance check failed");

        return (shares, claimableAssets);
    }

    function _deleteReceiver(bytes32 dailyCluster, address addr) private {
        uint256 idx = _receiverIndexes[dailyCluster][addr] - 1;
        //require(idx < _uniqueReceiversPerCluster[dailyCluster].length, "Invalid receiver index");
        require(_uniqueReceiversPerCluster[dailyCluster][idx] == addr, "Address/index mismatch");

        uint256 totalReceiversByDate = _uniqueReceiversPerCluster[dailyCluster].length;
        address lastItem = _uniqueReceiversPerCluster[dailyCluster][totalReceiversByDate - 1];

        if (addr != lastItem) {
            _uniqueReceiversPerCluster[dailyCluster][totalReceiversByDate - 1] = _uniqueReceiversPerCluster[dailyCluster][idx];
            _uniqueReceiversPerCluster[dailyCluster][idx] = lastItem;
        }
        
        _uniqueReceiversPerCluster[dailyCluster].pop();
        _receiverIndexes[dailyCluster][addr] = 0;
    }
}


/**
 * @title Represents an ownable liquidity pool. The pool is compliant with the ERC-4626 standard.
 */
abstract contract OwnableLiquidityPool is TimelockedERC4626, BaseOwnable {
    /**
     * @notice This event is triggered when the owner runs an emergency withdrawal.
     * @param withdrawalAmount The withdrawal amount.
     * @param tokenAddr The token address.
     * @param destinationAddr The destination address.
     */
    event OnEmergencyWithdraw (uint256 withdrawalAmount, address tokenAddr, address destinationAddr);

    /**
     * @notice Allows the owner of the pool to withdraw the full balance of the token specified.
     * @dev Throws if the caller is not the current owner of the pool. If the asset to withdraw is the underlying asset of the pool then this function pauses deposits and withdrawals automatically.
     * @param token The token to transfer.
     * @param destinationAddr The destination address of the ERC20 transfer.
     */
    function emergencyWithdraw(
        IERC20 token,
        address destinationAddr
    ) external virtual nonReentrant ifConfigured onlyOwner {
        require(destinationAddr != address(0) && destinationAddr != address(this), "Invalid address");

        uint256 currentBalance = token.balanceOf(address(this));
        require(currentBalance > 0, "Insufficient balance");

        if (address(token) == address(_underlyingAsset)) {
            // Automatically pause deposits and withdrawals in order to prevent fluctuations on the price of the LP token
            _setPause(true, true);
        }

        SafeERC20.safeTransfer(token, destinationAddr, currentBalance);

        emit OnEmergencyWithdraw(currentBalance, address(token), destinationAddr);
    }

    /**
     * @notice Gets the owner of the pool.
     * @return address The address who owns the pool.
     */
    function owner() external view onlyIfInitialized returns (address) {
        return _owner;
    }
}


/**
 * @title Represents an ERC-4626 compliant liquidity pool capable of lending funds on their own.
 * @dev This liquidity pool is ownable by definition.
 */
abstract contract AbstractLender is OwnableLiquidityPool {
    /// @notice The address of the Loans Operator
    address public loansOperator;

    // ---------------------------------------------------------------
    // Modifiers
    // ---------------------------------------------------------------
    modifier onlyLoansOperator() {
        require(msg.sender == loansOperator, "Loans Operator only");
        _;
    }

    // ---------------------------------------------------------------
    // Implementation functions
    // ---------------------------------------------------------------
    /**
     * @notice As a lender, this pool proposes a new APR to the borrower of the loan address specified.
     * @param loanAddr The address of the loan.
     * @param newAprWithTwoDecimals The APR proposed by this pool, expressed with 2 decimal places.
     */
    function proposeNewApr(
        address loanAddr, 
        uint256 newAprWithTwoDecimals
    ) external nonReentrant ifConfigured onlyLoansOperator {
        _ensureValidLoan(loanAddr);
        IPeerToPeerOpenTermLoan(loanAddr).proposeNewApr(newAprWithTwoDecimals);
    }

    /**
     * @notice Updates the late fees of the loan specified.
     * @param loanAddr The address of the loan.
     * @param lateInterestFeeWithTwoDecimals The late interest fee (percentage) with 2 decimal places.
     * @param latePrincipalFeeWithTwoDecimals The late principal fee (percentage) with 2 decimal places.
     */
    function changeLateFees(
        address loanAddr, 
        uint256 lateInterestFeeWithTwoDecimals, 
        uint256 latePrincipalFeeWithTwoDecimals
    ) external nonReentrant ifConfigured onlyLoansOperator {
        _ensureValidLoan(loanAddr);
        IPeerToPeerOpenTermLoan(loanAddr).changeLateFees(lateInterestFeeWithTwoDecimals, latePrincipalFeeWithTwoDecimals);
    }

    /**
     * @notice Updates the maintenance collateral ratio
     * @param loanAddr The address of the loan.
     * @param maintenanceCollateralRatioWith2Decimals The maintenance collateral ratio, if applicable.
     */
    function changeMaintenanceCollateralRatio(
        address loanAddr, 
        uint256 maintenanceCollateralRatioWith2Decimals
    ) external nonReentrant ifConfigured onlyLoansOperator {
        _ensureValidLoan(loanAddr);
        IPeerToPeerOpenTermLoan(loanAddr).changeMaintenanceCollateralRatio(maintenanceCollateralRatioWith2Decimals);
    }

    /**
     * @notice Calls the loan specified.
     * @param loanAddr The address of the loan.
     * @param callbackPeriodInHours The callback period, measured in hours.
     * @param gracePeriodInHours The grace period, measured in hours.
     */
    function callLoan(
        address loanAddr, 
        uint256 callbackPeriodInHours, 
        uint256 gracePeriodInHours
    ) external nonReentrant ifConfigured onlyLoansOperator {
        _ensureValidLoan(loanAddr);
        IPeerToPeerOpenTermLoan(loanAddr).callLoan(callbackPeriodInHours, gracePeriodInHours);
    }

    /**
     * @notice Liquidates the loan specified.
     * @param loanAddr The address of the loan.
     */
    function liquidate(address loanAddr) external ifConfigured onlyLoansOperator {
        _ensureValidLoan(loanAddr);
        IPeerToPeerOpenTermLoan(loanAddr).liquidate();
    }

    // ---------------------------------------------------------------
    // Virtuals
    // ---------------------------------------------------------------
    function fundLoan(address loanAddr) external virtual;
    function _ensureValidLoan(address loanAddr) internal view virtual;
}


/**
 * @title Represents an ERC-4626 lending pool capable of processing hooks on-chain.
 * @dev This contract overrides ERC4626.totalAssets() in order to reflect the risk exposure to loans.
 */
abstract contract HookableLender is IHookableLender, AbstractLender {
    struct LoanDeploymentRecord {
        uint256 effectiveLoanAmount;
        uint256 activeDelta;
        bool isWhitelisted;
    }

    // ---------------------------------------------------------------
    // Storage layout
    // ---------------------------------------------------------------
    /// @notice The current risk exposure to loans
    uint256 public globalLoansAmount;

    /// @dev The current delta of a loan
    mapping (address => LoanDeploymentRecord) internal _deployedLoans;

    // ---------------------------------------------------------------
    // Modifiers
    // ---------------------------------------------------------------
    modifier onlyKnownLoanContract() {
        require(_deployedLoans[msg.sender].isWhitelisted, "Unknown loan");
        _;
    }

    // ---------------------------------------------------------------
    // Hooks implementation
    // ---------------------------------------------------------------
    function notifyLoanMatured() external override nonReentrant ifConfigured onlyKnownLoanContract {
        if (_deployedLoans[msg.sender].activeDelta > 0) globalLoansAmount -= _deployedLoans[msg.sender].activeDelta;
        _deployedLoans[msg.sender].activeDelta = 0;
    }

    function notifyLoanClosed() external override nonReentrant ifConfigured onlyKnownLoanContract {
        if (_deployedLoans[msg.sender].activeDelta > 0) globalLoansAmount -= _deployedLoans[msg.sender].activeDelta;
        _deployedLoans[msg.sender].activeDelta = 0;
    }

    function notifyPrincipalRepayment(
        uint256 effectiveLoanAmount, 
        uint256 principalRepaid
    ) external override nonReentrant ifConfigured onlyKnownLoanContract {
        uint256 newDelta = (principalRepaid < effectiveLoanAmount) ? effectiveLoanAmount - principalRepaid : 0;

        if (_deployedLoans[msg.sender].activeDelta > 0) globalLoansAmount -= _deployedLoans[msg.sender].activeDelta;
        _deployedLoans[msg.sender].activeDelta = newDelta;

        if (newDelta > 0) globalLoansAmount += newDelta;
    }

    function _ensureValidLoan(address loanAddr) internal view override {
        require(_deployedLoans[loanAddr].isWhitelisted, "Invalid loan contract");
    }

    // ---------------------------------------------------------------
    // ERC-4626 overrides
    // ---------------------------------------------------------------
    function _getTotalAssets() internal view virtual override returns (uint256) {
        // [Liquidity] + [the delta of all ACTIVE loans managed by this pool]
        return globalLoansAmount + _underlyingAsset.balanceOf(address(this));
    }
}


/**
 * @title Represents a base lending pool.
 * @dev The pool is capable of deploying and funding loans on their own. It is also capable of receiving hooks on-chain.
 */
abstract contract BaseLendingPool is HookableLender {
    /// @notice The address of the contract that deploys loans.
    address public loansDeployerAddress;

    /// @notice The list of all loans deployed by the lending pool
    address[] public loansDeployed;

    /// @notice Triggers when the lending pool deploys a new loan.
    event NewLoanDeployedByPool(address loanAddr, uint256 aprWithTwoDecimals);

    /**
     * @notice Deploys a new loan on behalf of the Credit Pool. This contract acts as a lender.
     * @param loanParams The parameters of the loan to deploy.
     * @return address The address of the newly deployed loan.
     */
    function deployLoan(
        LoanDeploymentParams memory loanParams
    ) external nonReentrant ifConfigured onlyLoansOperator returns (address) {
        loanParams.lenderAddr = address(this);

        address loanAddr = IPermissionlessLoansDeployer(loansDeployerAddress).deployLoan(loanParams);

        // This should never happen because the loan was deployed via CREATE rather than CREATE2
        require(!_deployedLoans[loanAddr].isWhitelisted, "Invalid deployment address");

        uint256 effectiveLoanAmount = IPeerToPeerOpenTermLoan(loanAddr).effectiveLoanAmount();

        _deployedLoans[loanAddr] = LoanDeploymentRecord({
            effectiveLoanAmount: effectiveLoanAmount,
            activeDelta: 0,
            isWhitelisted: true
        });

        loansDeployed.push(loanAddr);

        emit NewLoanDeployedByPool(loanAddr, loanParams.newAprWithTwoDecimals);

        return loanAddr;
    }

    /**
     * @notice Funds the loan deployed at the address specified.
     * @dev Throws if the loan was not deployed by this pool.
     * @param loanAddr The address of the loan.
     */
    function fundLoan(address loanAddr) external override nonReentrant ifConfigured onlyLoansOperator {
        // Trusted queries
        _ensureValidLoan(loanAddr);
        uint256 effectiveLoanAmount = _deployedLoans[loanAddr].effectiveLoanAmount;

        // Trusted changes
        _deployedLoans[loanAddr].activeDelta = effectiveLoanAmount; // The principal repaid at this point in time is zero
        globalLoansAmount += effectiveLoanAmount; // which is "_deployedLoans[loanAddr].activeDelta"

        require(IPeerToPeerOpenTermLoan(loanAddr).loanState() == LOAN_FUNDING_REQUIRED, "Invalid loan state");

        // Untrusted changes
        SafeERC20.safeApprove(_underlyingAsset, loanAddr, effectiveLoanAmount);
        IPeerToPeerOpenTermLoan(loanAddr).fundLoan();
        SafeERC20.safeApprove(_underlyingAsset, loanAddr, uint256(0));

        // Late checks
        require(IPeerToPeerOpenTermLoan(loanAddr).loanState() == LOAN_ACTIVE, "Funding check failed");
        require(_underlyingAsset.allowance(address(this), loanAddr) == uint256(0), "Allowance check failed");
    }

    /**
     * @notice Collects the fees available in the pool. Fees are sent to the fee collector address.
     */
    function collectFees() external nonReentrant ifConfigured onlyOwner {
        require(totalCollectableFees > 0, "No fees to collect");
        
        uint256 feesAmount = totalCollectableFees;

        totalCollectableFees = 0;
        SafeERC20.safeTransfer(_underlyingAsset, feesCollector, feesAmount);
    }

    /**
     * @notice Gets the total number of loans deployed by the pool.
     * @return uint256 The total number of loans deployed by the pool.
     */
    function getTotalLoansDeployed() external view returns (uint256) {
        return loansDeployed.length;
    }
}


/**
 * @title Represents a lending pool that is fully compliant with the ERC-4626 standard.
 * @dev The lending pool is an address-preserving transparent proxy.
 */
contract LendingPool is BaseLendingPool {
    constructor() {
        _disableInitializers();
    }

    /**
     * @notice Proxy initialization function.
     * @param newOwner The owner of the lending pool.
     * @param erc20Decimals The number of decimals of the LP token issued by this pool, per ERC20.
     * @param erc20Symbol The token symbol of this pool, per ERC20.
     * @param erc20Name The token name of this pool, per ERC20.
     */
    function initialize(
        address newOwner,
        uint8 erc20Decimals,
        string memory erc20Symbol,
        string memory erc20Name
    ) external initializer {
        require(newOwner != address(0), "Owner required");

        // ERC-20 settings
        decimals = erc20Decimals;
        symbol = erc20Symbol;
        name = erc20Name;

        // Pause deposits and withdrawals until the pool gets configured by the authorized party.
        depositsPaused = true;
        withdrawalsPaused = true;

        _owner = newOwner;
    }

    /**
     * @notice Configures the lending pool.
     * @dev Throws if the caller is not the owner. Deposits and withdrawals are paused until the pool is configured.
     * @param newLagDuration The duration of the timelock. Pass zero if the pool is not time-locked.
     * @param newMaxDepositAmount The maximum deposit amount of assets (say USDC) investors are allowed to deposit in the pool.
     * @param newMaxWithdrawalAmount The maximum withdrawal amount of the pool, expressed in underlying assets (for example: USDC)
     * @param newMaxTokenSupply The maximum supply of LP tokens (liquidity pool tokens)
     * @param newUnderlyingAsset The underlying asset of the liquidity pool (for example: USDC).
     * @param newLoansOperator The address responsible for managing the loans of the pool.
     * @param newLoansDeployerAddress The address of the smart contract you will use for deploying loans on behalf of this pool.
     * @param newFeesCollectorAddr The address of the fees collector.
     * @param newProcessingHour The hour (UTC) at which all withdrawal requests will be processed. The value ranges from [0..23]
     */
    function configurePool(
        uint256 newLagDuration,
        uint256 newMaxDepositAmount, 
        uint256 newMaxWithdrawalAmount, 
        uint256 newMaxTokenSupply,
        address newUnderlyingAsset,
        address newLoansOperator,
        address newLoansDeployerAddress,
        address newFeesCollectorAddr,
        uint8 newProcessingHour
    ) external onlyIfInitialized nonReentrant ifNotConfigured onlyOwner {
        require(newLoansOperator != address(0), "Operator required");
        require(newLoansDeployerAddress != address(0), "Deployer required");
        require(newFeesCollectorAddr != address(0), "Collector required");
        require(newProcessingHour < 24, "Invalid processing hour"); // Min: 0, Max: 23  (eg: 13 = 1PM)

        _underlyingAsset = IERC20(newUnderlyingAsset);
        _updateIssuanceLimits(newMaxDepositAmount, newMaxWithdrawalAmount, newMaxTokenSupply);

        // Loan management actors
        loansOperator = newLoansOperator;
        loansDeployerAddress = newLoansDeployerAddress;
        feesCollector = newFeesCollectorAddr;

        // Timelock settings
        lagDuration = newLagDuration;
        liquidationHour = newProcessingHour;

        // Resume deposits and withdrawals
        depositsPaused = false;
        withdrawalsPaused = false;
    }

    /**
     * @notice Transfers ownership of the contract to a new account.
     * @dev Throws if the caller is not the current owner. Additional constraints apply.
     * @param newOwner The new owner of this contract.
     */
    function transferOwnership(address newOwner) external onlyIfInitialized nonReentrant onlyOwner {
        require(newOwner != address(0) && newOwner != address(this), "Invalid owner");
        require(newOwner != loansOperator, "Owner cannot be operator");
        require(newOwner != loansDeployerAddress, "Owner cannot be deployer");

        _transferOwnership(newOwner);
    }

    /**
     * @notice Updates the issuance and redemption settings of the pool.
     * @dev Throws if the caller is not the owner of the pool. Throws if the pool was not configured.
     * @param newMaxDepositAmount The maximum deposit amount of assets (say USDC) investors are allowed to deposit in the pool.
     * @param newMaxWithdrawalAmount The maximum withdrawal amount of the pool, expressed in underlying assets (for example: USDC)
     * @param newMaxTokenSupply The maximum supply of LP tokens (liquidity pool tokens)
     */
    function updateIssuanceLimits(
        uint256 newMaxDepositAmount, 
        uint256 newMaxWithdrawalAmount, 
        uint256 newMaxTokenSupply
    ) external nonReentrant ifConfigured onlyOwner {
        _updateIssuanceLimits(newMaxDepositAmount, newMaxWithdrawalAmount, newMaxTokenSupply);
    }

    /**
     * @notice Pauses/Resumes deposits and/or withdrawals.
     * @dev Throws if the caller is not the owner of the pool.
     * @param bPauseDeposits Pass "true" to pause deposits. Pass "false" to resume deposits.
     * @param bPauseWithdrawals Pass "true" to pause withdrawals. Pass "false" to resume withdrawals.
     */
    function pauseDepositsAndWithdrawals(bool bPauseDeposits, bool bPauseWithdrawals) external nonReentrant ifConfigured onlyOwner {
        _setPause(bPauseDeposits, bPauseWithdrawals);
    }

    /**
     * @notice Updates the duration of the timelock.
     * @dev Setting the timelock to zero will allow to withdraw funds immediately from the pool.
     * @param newDuration The duration of the timelock, expressed in seconds. It can be zero.
     */
    function updateTimelockDuration(uint256 newDuration) external nonReentrant ifConfigured onlyOwner {
        if (newDuration <= lagDuration) require(globalLiabilityShares == 0, "Process claims first");
        lagDuration = newDuration;
    }

    /**
     * @notice Updates the fee for withdrawals.
     * @param newWithdrawalFee The new fee, expressed with 2 decimal places.
     */
    function updateWithdrawalFee(uint256 newWithdrawalFee) external nonReentrant ifConfigured onlyOwner {
        require(newWithdrawalFee < 9900, "Fee too high");
        require(withdrawalFee != newWithdrawalFee, "Fee already set");

        withdrawalFee = newWithdrawalFee;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"bDepositsPaused","type":"bool"},{"indexed":false,"internalType":"bool","name":"bWithdrawalsPaused","type":"bool"}],"name":"DepositWithdrawalStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"loanAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"aprWithTwoDecimals","type":"uint256"}],"name":"NewLoanDeployedByPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"withdrawalAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddr","type":"address"},{"indexed":false,"internalType":"address","name":"destinationAddr","type":"address"}],"name":"OnEmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"OnMaxSupplyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"ownerAddr","type":"address"},{"indexed":false,"internalType":"address","name":"receiverAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"year","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"month","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"day","type":"uint256"}],"name":"WithdrawalRequested","type":"event"},{"inputs":[{"internalType":"address","name":"ownerAddr","type":"address"},{"internalType":"address","name":"spenderAddr","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"loanAddr","type":"address"},{"internalType":"uint256","name":"callbackPeriodInHours","type":"uint256"},{"internalType":"uint256","name":"gracePeriodInHours","type":"uint256"}],"name":"callLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"loanAddr","type":"address"},{"internalType":"uint256","name":"lateInterestFeeWithTwoDecimals","type":"uint256"},{"internalType":"uint256","name":"latePrincipalFeeWithTwoDecimals","type":"uint256"}],"name":"changeLateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"loanAddr","type":"address"},{"internalType":"uint256","name":"maintenanceCollateralRatioWith2Decimals","type":"uint256"}],"name":"changeMaintenanceCollateralRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"},{"internalType":"address","name":"receiverAddr","type":"address"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLagDuration","type":"uint256"},{"internalType":"uint256","name":"newMaxDepositAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxWithdrawalAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxTokenSupply","type":"uint256"},{"internalType":"address","name":"newUnderlyingAsset","type":"address"},{"internalType":"address","name":"newLoansOperator","type":"address"},{"internalType":"address","name":"newLoansDeployerAddress","type":"address"},{"internalType":"address","name":"newFeesCollectorAddr","type":"address"},{"internalType":"uint8","name":"newProcessingHour","type":"uint8"}],"name":"configurePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"fundingPeriodInSeconds","type":"uint256"},{"internalType":"uint256","name":"newPaymentIntervalInSeconds","type":"uint256"},{"internalType":"uint256","name":"newLoanAmountInPrincipalTokens","type":"uint256"},{"internalType":"uint256","name":"originationFeePercent2Decimals","type":"uint256"},{"internalType":"uint256","name":"newAprWithTwoDecimals","type":"uint256"},{"internalType":"uint256","name":"initialCollateralRatioWith2Decimals","type":"uint256"},{"internalType":"uint256","name":"maintenanceCollateralRatioWith2Decimals","type":"uint256"},{"internalType":"uint256","name":"lateInterestFee","type":"uint256"},{"internalType":"uint256","name":"latePrincipalFee","type":"uint256"},{"internalType":"uint256","name":"expiryInfo","type":"uint256"},{"internalType":"string","name":"loanTypeInfo","type":"string"},{"internalType":"address","name":"lenderAddr","type":"address"},{"internalType":"address","name":"borrowerAddr","type":"address"},{"internalType":"address","name":"newCollateralToken","type":"address"},{"internalType":"address","name":"newPrincipalToken","type":"address"},{"internalType":"address","name":"feesManagerAddr","type":"address"},{"internalType":"address","name":"priceOracleAddress","type":"address"},{"internalType":"address","name":"feesCollectorAddress","type":"address"},{"internalType":"address","name":"categoryFeesAdress","type":"address"},{"internalType":"bool","name":"allowSeizeCollateral","type":"bool"}],"internalType":"struct LoanDeploymentParams","name":"loanParams","type":"tuple"}],"name":"deployLoan","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositsPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"destinationAddr","type":"address"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"loanAddr","type":"address"}],"name":"fundLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"},{"internalType":"address","name":"receiverAddr","type":"address"}],"name":"getBurnableAmountByReceiver","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"},{"internalType":"address","name":"receiverAddr","type":"address"}],"name":"getClaimableAmountByReceiver","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInitializedVersion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"}],"name":"getRequirementByDate","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"}],"name":"getScheduledTransactionsByDate","outputs":[{"internalType":"uint256","name":"totalTransactions","type":"uint256"},{"internalType":"uint256","name":"executionEpoch","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalLoansDeployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawalEpoch","outputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"},{"internalType":"uint256","name":"claimableEpoch","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalLiabilityShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalLoansAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"uint8","name":"erc20Decimals","type":"uint8"},{"internalType":"string","name":"erc20Symbol","type":"string"},{"internalType":"string","name":"erc20Name","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lagDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"loanAddr","type":"address"}],"name":"liquidate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidationHour","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"loansDeployed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loansDeployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loansOperator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDepositAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holderAddr","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holderAddr","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWithdrawalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notifyLoanClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"notifyLoanMatured","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"effectiveLoanAmount","type":"uint256"},{"internalType":"uint256","name":"principalRepaid","type":"uint256"}],"name":"notifyPrincipalRepayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"bPauseDeposits","type":"bool"},{"internalType":"bool","name":"bPauseWithdrawals","type":"bool"}],"name":"pauseDepositsAndWithdrawals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"year","type":"uint256"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"day","type":"uint256"},{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"processAllClaimsByDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"loanAddr","type":"address"},{"internalType":"uint256","name":"newAprWithTwoDecimals","type":"uint256"}],"name":"proposeNewApr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiverAddr","type":"address"},{"internalType":"address","name":"holderAddr","type":"address"}],"name":"requestRedeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"claimableEpoch","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCollectableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxDepositAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxWithdrawalAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxTokenSupply","type":"uint256"}],"name":"updateIssuanceLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"updateTimelockDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWithdrawalFee","type":"uint256"}],"name":"updateWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalsPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052348015600e575f80fd5b5060156019565b60d3565b5f54610100900460ff161560835760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff9081161460d1575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b615ebb806100e05f395ff3fe608060405234801561000f575f80fd5b5060043610610400575f3560e01c806395d89b4111610216578063cc1d04711161012a578063e74a4bca116100b4578063e9f2838e11610084578063e9f2838e14610866578063ef8b30f71461075c578063f2fde38b14610878578063f3cbf47c1461088b578063ff3c63c01461089e575f80fd5b8063e74a4bca14610835578063e75c7a091461083d578063e91e918314610850578063e976d4311461085d575f80fd5b8063d961b58c116100fa578063d961b58c146107e0578063da354efa146107e9578063dc68a93a146107fc578063dd62ed3e1461080f578063e48f6faf14610822575f80fd5b8063cc1d04711461079f578063ce96cb77146107b2578063d5abeb01146107c5578063d905777e146107cd575f80fd5b8063b460af94116101ab578063be1f92141161017b578063be1f921414610736578063c63d75b614610749578063c6e6f5921461075c578063c87965721461076f578063ca55a55714610777575f80fd5b8063b460af9414610710578063ba08765214610710578063ba4bb7a4146104f4578063baaa19fb14610723575f80fd5b8063a9059cbb116101e6578063a9059cbb146106cf578063b3c65015146106e2578063b3c9e83d146106ea578063b3d7f6b9146106fd575f80fd5b806395d89b41146106985780639cb43f81146106a05780639cf160f6146106a9578063a2aa660f146106bc575f80fd5b8063402d267d1161031857806370a08231116102a25780638c0190e3116102725780638c0190e3146106585780638da5cb5b1461066b5780638ed83271146106735780638fa243c61461067c57806394bf804d14610685575f80fd5b806370a08231146106165780637d41c86e14610629578063852710b21461063c5780638bc7e8c41461064f575f80fd5b8063569b8e2c116102e8578063569b8e2c146105a857806360da3e83146105bb5780636382d9ad146105c85780636c46407b146105db5780636e553f6514610603575f80fd5b8063402d267d1461055c57806342fe09801461056f57806344caa122146105825780634cdad50614610595575f80fd5b806323b872dd116103995780632f865568116103695780632f865568146104fc578063313ce5671461050f57806334c16b5c1461052e57806338867fd41461054157806338d52e0f14610554575f80fd5b806323b872dd146104c557806324e86d67146104d857806327d9ef5f146104e15780632a33cf05146104f4575f80fd5b8063095ea7b3116103d4578063095ea7b3146104725780630a28a4771461049557806318160ddd146104a8578063184466c9146104b0575f80fd5b806251e6111461040457806301e1d1141461043457806306fdde031461044a57806307a2d13a1461045f575b5f80fd5b610417610412366004615359565b6108b1565b6040516001600160a01b0390911681526020015b60405180910390f35b61043c610b41565b60405190815260200161042b565b610452610b7e565b60405161042b9190615507565b61043c61046d366004615519565b610c0a565b610485610480366004615530565b610c4a565b604051901515815260200161042b565b61043c6104a3366004615519565b610c98565b61043c610cd3565b6104c36104be366004615519565b610d08565b005b6104856104d336600461555a565b610dc9565b61043c600f5481565b601c54610417906001600160a01b031681565b6104c3610eec565b6104c361050a366004615598565b610fd1565b60025461051c9060ff1681565b60405160ff909116815260200161042b565b6104c361053c3660046155b3565b611083565b6104c361054f3660046155b3565b611157565b6104176111f4565b61043c61056a366004615598565b611238565b6104c361057d3660046155f3565b611282565b601954610417906001600160a01b031681565b61043c6105a3366004615519565b611422565b6104c36105b6366004615519565b61145b565b6009546104859060ff1681565b6104c36105d636600461567c565b61154c565b6105ee6105e93660046156b3565b611744565b6040805192835260208301919091520161042b565b61043c6106113660046156dc565b6117e0565b61043c610624366004615598565b611967565b6105ee6106373660046156ff565b6119b0565b6104c361064a36600461573e565b611a5b565b61043c600d5481565b6104c36106663660046157d0565b611cd9565b610417611d4c565b61043c600b5481565b61043c601a5481565b61043c6106933660046156dc565b611d8a565b610452611f21565b61043c60105481565b600a54610417906001600160a01b031681565b6104c36106ca366004615530565b611f2e565b6104856106dd366004615530565b611ff6565b61051c612042565b6105ee6106f83660046157fc565b612079565b61043c61070b366004615519565b6120fb565b61043c61071e3660046156ff565b612136565b6104c36107313660046156b3565b612180565b61043c6107443660046157fc565b6121f4565b61043c610757366004615598565b612280565b61043c61076a366004615519565b6122b8565b6104c36122f2565b61077f6123cd565b60408051948552602085019390935291830152606082015260800161042b565b6104c36107ad366004615530565b61244c565b61043c6107c0366004615598565b6124e2565b61043c612533565b61043c6107db366004615598565b612568565b61043c60115481565b6104176107f7366004615519565b612598565b61043c61080a3660046157fc565b6125c0565b61043c61081d36600461567c565b61264b565b6104c3610830366004615598565b6126a4565b601d5461043c565b6104c361084b36600461583a565b6129ef565b600e5461051c9060ff1681565b61043c600c5481565b60095461048590610100900460ff1681565b6104c3610886366004615598565b612b0d565b6104c361089936600461585a565b612c97565b6105ee6108ac3660046156b3565b61333a565b5f6108ba6133b6565b6009546201000090046001600160a01b03166108f15760405162461bcd60e51b81526004016108e890615889565b60405180910390fd5b6019546001600160a01b0316331461091b5760405162461bcd60e51b81526004016108e8906158b1565b30610160830152601c546040516251e61160e01b81525f916001600160a01b0316906251e611906109509086906004016158de565b6020604051808303815f875af115801561096c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109909190615a3d565b6001600160a01b0381165f908152601b602052604090206002015490915060ff16156109fe5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206465706c6f796d656e74206164647265737300000000000060448201526064016108e8565b5f816001600160a01b0316636acc83026040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5f9190615a58565b604080516060810182528281525f602080830182815260018486018181526001600160a01b038a16808652601b855287862096518755925186830155516002909501805460ff191695151595909517909455601d805494850181559092527f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f90920180546001600160a01b0319168217905560808801518351918252918101919091529192507f91e8e0724fa073d770149830b6e9c1f6027b484a27617dc901ac8795338e4b49910160405180910390a1509050610b3c60018055565b919050565b6009545f906201000090046001600160a01b0316610b715760405162461bcd60e51b81526004016108e890615889565b610b7961340f565b905090565b60048054610b8b90615a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb790615a6f565b8015610c025780601f10610bd957610100808354040283529160200191610c02565b820191905f5260205f20905b815481529060010190602001808311610be557829003601f168201915b505050505081565b6009545f906201000090046001600160a01b0316610c3a5760405162461bcd60e51b81526004016108e890615889565b610c44825f61348c565b92915050565b5f60ff610c585f5460ff1690565b60ff1603610c785760405162461bcd60e51b81526004016108e890615aa7565b610c806133b6565b610c8b3384846134b8565b5060015b610c4460018055565b6009545f906201000090046001600160a01b0316610cc85760405162461bcd60e51b81526004016108e890615889565b610c448260016135c4565b5f60ff610ce15f5460ff1690565b60ff1603610d015760405162461bcd60e51b81526004016108e890615aa7565b5060055490565b610d106133b6565b6009546201000090046001600160a01b0316610d3e5760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b03163314610d685760405162461bcd60e51b81526004016108e890615ade565b600f548111610db85760105415610db85760405162461bcd60e51b8152602060048201526014602482015273141c9bd8d95cdcc818db185a5b5cc8199a5c9cdd60621b60448201526064016108e8565b600f819055610dc660018055565b50565b5f60ff610dd75f5460ff1690565b60ff1603610df75760405162461bcd60e51b81526004016108e890615aa7565b610dff6133b6565b6001600160a01b0384165f90815260086020908152604080832033845290915290205482811015610e725760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206578636565647320616c6c6f77616e6365000000000000000060448201526064016108e8565b610e7d8585856135ed565b610ec95760405162461bcd60e51b815260206004820152601e60248201527f4661696c656420746f2065786563757465207472616e7366657246726f6d000060448201526064016108e8565b610edd8533610ed88685615b29565b6134b8565b505060018080555b9392505050565b610ef46133b6565b6009546201000090046001600160a01b0316610f225760405162461bcd60e51b81526004016108e890615889565b335f908152601b602052604090206002015460ff16610f725760405162461bcd60e51b815260206004820152600c60248201526b2ab735b737bbb7103637b0b760a11b60448201526064016108e8565b335f908152601b602052604090206001015415610fb457335f908152601b6020526040812060010154601a805491929091610fae908490615b29565b90915550505b335f908152601b6020526040812060010155610fcf60018055565b565b6009546201000090046001600160a01b0316610fff5760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146110295760405162461bcd60e51b81526004016108e8906158b1565b611032816137ff565b806001600160a01b03166328a070256040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561106a575f80fd5b505af115801561107c573d5f803e3d5ffd5b5050505050565b61108b6133b6565b6009546201000090046001600160a01b03166110b95760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146110e35760405162461bcd60e51b81526004016108e8906158b1565b6110ec836137ff565b604051632140fc7760e11b815260048101839052602481018290526001600160a01b03841690634281f8ee906044015b5f604051808303815f87803b158015611133575f80fd5b505af1158015611145573d5f803e3d5ffd5b5050505061115260018055565b505050565b61115f6133b6565b6009546201000090046001600160a01b031661118d5760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146111b75760405162461bcd60e51b81526004016108e8906158b1565b6111c0836137ff565b604051633b8fc6f760e21b815260048101839052602481018290526001600160a01b0384169063ee3f1bdc9060440161111c565b5f60ff6112025f5460ff1690565b60ff16036112225760405162461bcd60e51b81526004016108e890615aa7565b506009546201000090046001600160a01b031690565b6009545f906201000090046001600160a01b03166112685760405162461bcd60e51b81526004016108e890615889565b611270613861565b61127a575f610c44565b5050600b5490565b5f54610100900460ff16158080156112a057505f54600160ff909116105b806112b95750303b1580156112b957505f5460ff166001145b61131c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016108e8565b5f805460ff19166001179055801561133d575f805461ff0019166101001790555b6001600160a01b0385166113845760405162461bcd60e51b815260206004820152600e60248201526d13dddb995c881c995c5d5a5c995960921b60448201526064016108e8565b6002805460ff191660ff8616179055600361139f8482615b80565b5060046113ac8382615b80565b506009805461ffff1916610101179055601880546001600160a01b0319166001600160a01b038716179055801561107c575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050505050565b6009545f906201000090046001600160a01b03166114525760405162461bcd60e51b81526004016108e890615889565b610ee58261387c565b6114636133b6565b6009546201000090046001600160a01b03166114915760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146114bb5760405162461bcd60e51b81526004016108e890615ade565b6126ac81106114fb5760405162461bcd60e51b815260206004820152600c60248201526b08ccaca40e8dede40d0d2ced60a31b60448201526064016108e8565b80600d540361153e5760405162461bcd60e51b815260206004820152600f60248201526e11995948185b1c9958591e481cd95d608a1b60448201526064016108e8565b600d819055610dc660018055565b6115546133b6565b6009546201000090046001600160a01b03166115825760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146115ac5760405162461bcd60e51b81526004016108e890615ade565b6001600160a01b038116158015906115cd57506001600160a01b0381163014155b61160b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016108e8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561164f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116739190615a58565b90505f81116116bb5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016108e8565b6009546001600160a01b03620100009091048116908416036116e2576116e26001806138c8565b6116ed838383613935565b604080518281526001600160a01b03858116602083015284168183015290517f853009bb99110572d2d914b6a40e1d763158ebac968d169d09e41bf6c15fc97a9181900360600190a15061174060018055565b5050565b6009545f9081906201000090046001600160a01b03166117765760405162461bcd60e51b81526004016108e890615889565b6040805160208101879052908101859052606081018490525f9060800160408051601f1981840301815291815281516020928301205f818152601390935290822054600e549095509092506117d59188918891889160ff169080613998565b915050935093915050565b5f6117e96133b6565b6009546201000090046001600160a01b03166118175760405162461bcd60e51b81526004016108e890615889565b60095460ff161561185c5760405162461bcd60e51b815260206004820152600f60248201526e11195c1bdcda5d1cc81c185d5cd959608a1b60448201526064016108e8565b6001600160a01b0382161580159061187d57506001600160a01b0382163014155b6118995760405162461bcd60e51b81526004016108e890615c3b565b5f83116118e15760405162461bcd60e51b8152602060048201526016602482015275105cdcd95d1cc8185b5bdd5b9d081c995c5d5a5c995960521b60448201526064016108e8565b6118ea82611238565b8311156119315760405162461bcd60e51b815260206004820152601560248201527411195c1bdcda5d081b1a5b5a5d081c995858da1959605a1b60448201526064016108e8565b61193a836122b8565b90505f811161195b5760405162461bcd60e51b81526004016108e890615c65565b610c8f338385846139f3565b5f60ff6119755f5460ff1690565b60ff16036119955760405162461bcd60e51b81526004016108e890615aa7565b506001600160a01b03165f9081526007602052604090205490565b5f806119ba6133b6565b6009546201000090046001600160a01b03166119e85760405162461bcd60e51b81526004016108e890615889565b600954610100900460ff1615611a105760405162461bcd60e51b81526004016108e890615c95565b5f805f611a1f88878933613b82565b600f54909950939750919550935091505f03611a4757429350611a448383838a614034565b50505b505050611a5360018055565b935093915050565b60ff611a685f5460ff1690565b60ff1603611a885760405162461bcd60e51b81526004016108e890615aa7565b611a906133b6565b6009546201000090046001600160a01b031615611ae45760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e4818dbdb999a59dd5c995960721b60448201526064016108e8565b6018546001600160a01b03163314611b0e5760405162461bcd60e51b81526004016108e890615ade565b6001600160a01b038416611b585760405162461bcd60e51b815260206004820152601160248201527013dc195c985d1bdc881c995c5d5a5c9959607a1b60448201526064016108e8565b6001600160a01b038316611ba25760405162461bcd60e51b815260206004820152601160248201527011195c1b1bde595c881c995c5d5a5c9959607a1b60448201526064016108e8565b6001600160a01b038216611bed5760405162461bcd60e51b815260206004820152601260248201527110dbdb1b1958dd1bdc881c995c5d5a5c995960721b60448201526064016108e8565b60188160ff1610611c405760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642070726f63657373696e6720686f757200000000000000000060448201526064016108e8565b6009805462010000600160b01b031916620100006001600160a01b03881602179055611c6d888888614417565b601980546001600160a01b03199081166001600160a01b0387811691909117909255601c80548216868416179055600a8054909116918416919091179055600f899055600e805460ff191660ff83161790556009805461ffff1916905560018055505050505050505050565b611ce16133b6565b6009546201000090046001600160a01b0316611d0f5760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b03163314611d395760405162461bcd60e51b81526004016108e890615ade565b611d4382826138c8565b61174060018055565b5f60ff611d5a5f5460ff1690565b60ff1603611d7a5760405162461bcd60e51b81526004016108e890615aa7565b506018546001600160a01b031690565b5f611d936133b6565b6009546201000090046001600160a01b0316611dc15760405162461bcd60e51b81526004016108e890615889565b60095460ff1615611e065760405162461bcd60e51b815260206004820152600f60248201526e11195c1bdcda5d1cc81c185d5cd959608a1b60448201526064016108e8565b6001600160a01b03821615801590611e2757506001600160a01b0382163014155b611e435760405162461bcd60e51b81526004016108e890615c3b565b5f8311611e625760405162461bcd60e51b81526004016108e890615c65565b611e6b82612280565b831115611eba5760405162461bcd60e51b815260206004820152601b60248201527f455243343632363a206d696e74206d6f7265207468616e206d6178000000000060448201526064016108e8565b611ec3836120fb565b9050611ece82611238565b811115611f155760405162461bcd60e51b815260206004820152601560248201527411195c1bdcda5d081b1a5b5a5d081c995858da1959605a1b60448201526064016108e8565b610c8f338383866139f3565b60038054610b8b90615a6f565b611f366133b6565b6009546201000090046001600160a01b0316611f645760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b03163314611f8e5760405162461bcd60e51b81526004016108e8906158b1565b611f97826137ff565b60405163354ead1160e11b8152600481018290526001600160a01b03831690636a9d5a22906024015b5f604051808303815f87803b158015611fd7575f80fd5b505af1158015611fe9573d5f803e3d5ffd5b5050505061174060018055565b5f60ff6120045f5460ff1690565b60ff16036120245760405162461bcd60e51b81526004016108e890615aa7565b61202c6133b6565b6120373384846135ed565b9050610c4460018055565b5f60ff6120505f5460ff1690565b60ff16036120705760405162461bcd60e51b81526004016108e890615aa7565b505f5460ff1690565b5f806120836133b6565b6009546201000090046001600160a01b03166120b15760405162461bcd60e51b81526004016108e890615889565b600954610100900460ff16156120d95760405162461bcd60e51b81526004016108e890615c95565b6120e586868686614034565b915091506120f260018055565b94509492505050565b6009545f906201000090046001600160a01b031661212b5760405162461bcd60e51b81526004016108e890615889565b610c4482600161348c565b60405162461bcd60e51b815260206004820152601b60248201527f5769746864726177616c2072657175657374207265717569726564000000000060448201525f906064016108e8565b6121886133b6565b6009546201000090046001600160a01b03166121b65760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146121e05760405162461bcd60e51b81526004016108e890615ade565b6121eb838383614417565b61115260018055565b5f60ff6122025f5460ff1690565b60ff16036122225760405162461bcd60e51b81526004016108e890615aa7565b6040805160208101879052908101859052606081018490525f9060800160408051601f1981840301815291815281516020928301205f908152601683528181206001600160a01b03871682529092529020549150505b949350505050565b6009545f906201000090046001600160a01b03166122b05760405162461bcd60e51b81526004016108e890615889565b505060065490565b6009545f906201000090046001600160a01b03166122e85760405162461bcd60e51b81526004016108e890615889565b610c44825f6135c4565b6122fa6133b6565b6009546201000090046001600160a01b03166123285760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146123525760405162461bcd60e51b81526004016108e890615ade565b5f601154116123985760405162461bcd60e51b8152602060048201526012602482015271139bc81999595cc81d1bc818dbdb1b1958dd60721b60448201526064016108e8565b601180545f909155600954600a546123c3916001600160a01b03620100009091048116911683613935565b50610fcf60018055565b6009545f908190819081906201000090046001600160a01b03166124035760405162461bcd60e51b81526004016108e890615889565b600f546124259061241661012c42615cc1565b6124209190615cc1565b6144c2565b600e5492965090945092506124449085908590859060ff165f80613998565b905090919293565b6124546133b6565b6009546201000090046001600160a01b03166124825760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146124ac5760405162461bcd60e51b81526004016108e8906158b1565b6124b5826137ff565b604051636140e50d60e01b8152600481018290526001600160a01b03831690636140e50d90602401611fc0565b6009545f906201000090046001600160a01b03166125125760405162461bcd60e51b81526004016108e890615889565b6001600160a01b0382165f90815260076020526040812054610c449161348c565b5f60ff6125415f5460ff1690565b60ff16036125615760405162461bcd60e51b81526004016108e890615aa7565b5060065490565b6009545f906201000090046001600160a01b03166119955760405162461bcd60e51b81526004016108e890615889565b601d81815481106125a7575f80fd5b5f918252602090912001546001600160a01b0316905081565b5f60ff6125ce5f5460ff1690565b60ff16036125ee5760405162461bcd60e51b81526004016108e890615aa7565b6040805160208101879052908101859052606081018490525f9060800160408051601f1981840301815291815281516020928301205f908152601583528181206001600160a01b0387168252909252902054915050949350505050565b5f60ff6126595f5460ff1690565b60ff16036126795760405162461bcd60e51b81526004016108e890615aa7565b506001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b6126ac6133b6565b6009546201000090046001600160a01b03166126da5760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146127045760405162461bcd60e51b81526004016108e8906158b1565b61270d816137ff565b6001600160a01b0381165f908152601b6020526040812080546001909101819055601a805491928392612741908490615cc1565b92505081905550600260ff16826001600160a01b03166325af34cd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612789573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127ad9190615cd4565b60ff16146127f25760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206c6f616e20737461746560701b60448201526064016108e8565b60095461280f906201000090046001600160a01b031683836144e7565b816001600160a01b0316638db579946040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612847575f80fd5b505af1158015612859573d5f803e3d5ffd5b505060095461287b92506201000090046001600160a01b03169050835f6144e7565b600460ff16826001600160a01b03166325af34cd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128e09190615cd4565b60ff16146129275760405162461bcd60e51b8152602060048201526014602482015273119d5b991a5b99c818da1958dac819985a5b195960621b60448201526064016108e8565b600954604051636eb1769f60e11b81523060048201526001600160a01b0384811660248301525f92620100009004169063dd62ed3e90604401602060405180830381865afa15801561297b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061299f9190615a58565b146129e55760405162461bcd60e51b8152602060048201526016602482015275105b1b1bddd85b98d94818da1958dac819985a5b195960521b60448201526064016108e8565b50610dc660018055565b6129f76133b6565b6009546201000090046001600160a01b0316612a255760405162461bcd60e51b81526004016108e890615889565b335f908152601b602052604090206002015460ff16612a755760405162461bcd60e51b815260206004820152600c60248201526b2ab735b737bbb7103637b0b760a11b60448201526064016108e8565b5f828210612a83575f612a8d565b612a8d8284615b29565b335f908152601b602052604090206001015490915015612ad257335f908152601b6020526040812060010154601a805491929091612acc908490615b29565b90915550505b335f908152601b602052604090206001018190558015612b035780601a5f828254612afd9190615cc1565b90915550505b5061174060018055565b60ff612b1a5f5460ff1690565b60ff1603612b3a5760405162461bcd60e51b81526004016108e890615aa7565b612b426133b6565b6018546001600160a01b03163314612b6c5760405162461bcd60e51b81526004016108e890615ade565b6001600160a01b03811615801590612b8d57506001600160a01b0381163014155b612bc95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b60448201526064016108e8565b6019546001600160a01b0390811690821603612c275760405162461bcd60e51b815260206004820152601860248201527f4f776e65722063616e6e6f74206265206f70657261746f72000000000000000060448201526064016108e8565b601c546001600160a01b0390811690821603612c855760405162461bcd60e51b815260206004820152601860248201527f4f776e65722063616e6e6f74206265206465706c6f796572000000000000000060448201526064016108e8565b612c8e816145fa565b610dc660018055565b612c9f6133b6565b6009546201000090046001600160a01b0316612ccd5760405162461bcd60e51b81526004016108e890615889565b600954610100900460ff1615612cf55760405162461bcd60e51b81526004016108e890615c95565b5f8111612d355760405162461bcd60e51b815260206004820152600e60248201526d131a5b5a5d081c995c5d5a5c995960921b60448201526064016108e8565b6040805160208101869052908101849052606081018390525f9060800160408051601f1981840301815291815281516020928301205f8181526012909352912060010154909150612dbd5760405162461bcd60e51b81526020600482015260126024820152714e6f7468696e6720746f2070726f6365737360701b60448201526064016108e8565b600e54612dd49086908690869060ff165f80613998565b612de061012c42615cc1565b1015612e1a5760405162461bcd60e51b8152602060048201526009602482015268546f6f206561726c7960b81b60448201526064016108e8565b5f818152601360205260408120548310612e41575f82815260136020526040902054612e43565b825b5f838152601360205260408120549192508267ffffffffffffffff811115612e6d57612e6d615259565b604051908082528060200260200182016040528015612e96578160200160208202803683370190505b5090505f8367ffffffffffffffff811115612eb357612eb3615259565b604051908082528060200260200182016040528015612edc578160200160208202803683370190505b5090505f80808681875b612ef08a8a615b29565b8111156130eb575f8b8152601360205260409020612f0f600183615b29565b81548110612f1f57612f1f615cef565b5f918252602090912001546001600160a01b0316915082612f3f81615d03565b93505081888481518110612f5557612f55615cef565b6001600160a01b039283166020918202929092018101919091525f8d815260158252604080822093861682529290915220548751889085908110612f9b57612f9b615cef565b602002602001018181525050868381518110612fb957612fb9615cef565b602002602001015184612fcc9190615cc1565b5f8c81526016602090815260408083206001600160a01b0387168452909152902054909450612ffb9086615cc1565b5f8c81526017602090815260408083206001600160a01b038716845290915290205490955061302a9087615cc1565b5f8c81526015602090815260408083206001600160a01b0387168085529083528184208490558f84526016835281842081855283528184208490558f84526017835281842090845282528083208390558e8352601390915290208054919750908061309757613097615d18565b5f828152602080822083015f1990810180546001600160a01b03191690559092019092558c82526014815260408083206001600160a01b0386168452909152812055806130e381615d03565b915050612ee6565b508360105f8282546130fd9190615b29565b925050819055508460115f8282546131159190615cc1565b90915550505f8a8152601260205260408120600101805485929061313a908490615b29565b90915550505f8a8152601260205260408120805486929061315c908490615b29565b90915550506009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa1580156131ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d19190615a58565b90508381101561321a5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016108e8565b613224308661464b565b5f5b885181101561328957613281600960029054906101000a90046001600160a01b03168a838151811061325a5761325a615cef565b60200260200101518a848151811061327457613274615cef565b6020026020010151613935565b600101613226565b506132948482615b29565b6009546040516370a0823160e01b8152306004820152620100009091046001600160a01b0316906370a0823190602401602060405180830381865afa1580156132df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133039190615a58565b146133205760405162461bcd60e51b81526004016108e890615d2c565b505050505050505050505061333460018055565b50505050565b5f8060ff6133495f5460ff1690565b60ff16036133695760405162461bcd60e51b81526004016108e890615aa7565b5050604080516020808201959095528082019390935260608084019290925280518084039092018252608090920182528051908301205f9081526012909252902080546001909101549091565b6002600154036134085760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e8565b6002600155565b6009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa15801561345b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061347f9190615a58565b601a54610b799190615cc1565b5f6005545f146134b2576134ad6134a161340f565b6005548591908561477b565b610ee5565b82610ee5565b6001600160a01b03821661350e5760405162461bcd60e51b815260206004820152601960248201527f6e6f6e2d7a65726f207370656e6465722072657175697265640000000000000060448201526064016108e8565b6001600160a01b0383166135645760405162461bcd60e51b815260206004820152601760248201527f6e6f6e2d7a65726f206f776e657220726571756972656400000000000000000060448201526064016108e8565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f8215806135d25750600554155b6134b2576134ad6005546135e461340f565b8591908561477b565b5f6001600160a01b0383166136445760405162461bcd60e51b815260206004820152601960248201527f6e6f6e2d7a65726f20616464726573732072657175697265640000000000000060448201526064016108e8565b6001600160a01b03841661369a5760405162461bcd60e51b815260206004820152601860248201527f6e6f6e2d7a65726f2073656e646572207265717569726564000000000000000060448201526064016108e8565b5f82116136e15760405162461bcd60e51b8152602060048201526015602482015274416d6f756e742063616e6e6f74206265207a65726f60581b60448201526064016108e8565b6001600160a01b0384165f908152600760205260409020548211156137485760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e7420657863656564732073656e6465722062616c616e636500000060448201526064016108e8565b6001600160a01b0384165f9081526007602052604090205461376b908390615b29565b6001600160a01b038086165f90815260076020526040808220939093559085168152205461379a908390615cc1565b6001600160a01b038085165f8181526007602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906137ed9086815260200190565b60405180910390a35060019392505050565b6001600160a01b0381165f908152601b602052604090206002015460ff16610dc65760405162461bcd60e51b8152602060048201526015602482015274125b9d985b1a59081b1bd85b8818dbdb9d1c9858dd605a1b60448201526064016108e8565b5f6005545f1480610b7957505f61387661340f565b11905090565b5f80613888835f61348c565b91508190505f80600d5411156138c25761271083600d546138a99190615d5a565b6138b39190615d85565b90506138bf8184615b29565b91505b50915091565b6009805461ffff191683151561ff00191617610100831515810291909117918290556040805160ff8085161515825292909304909116151560208301527f559628b27717ff2f5863f3a218839e17c6bc1b900e9de0dc2b3dc365068841d791015b60405180910390a15050565b6040516001600160a01b03831660248201526044810182905261115290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526147d6565b5f816139a5603c85615d5a565b6139b1610e1087615d5a565b620151806139c08b8b8b6148a7565b6139ca9190615d5a565b6139d49190615cc1565b6139de9190615cc1565b6139e89190615cc1565b979650505050505050565b6009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa158015613a3f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a639190615a58565b613a6d9084615cc1565b600954909150613a8e906201000090046001600160a01b0316863086614a0d565b6009546040516370a0823160e01b815230600482015282916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa158015613ada573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613afe9190615a58565b14613b1b5760405162461bcd60e51b81526004016108e890615d2c565b613b258483614a45565b836001600160a01b0316856001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78585604051613b73929190918252602082015260400190565b60405180910390a35050505050565b5f808080806001600160a01b03871615801590613ba857506001600160a01b0387163014155b613bc45760405162461bcd60e51b81526004016108e890615c3b565b6001600160a01b03881615801590613be557506001600160a01b0388163014155b613c225760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b2103437b63232b960911b60448201526064016108e8565b5f8911613c415760405162461bcd60e51b81526004016108e890615c65565b6001600160a01b0388165f90815260076020526040902054891115613c9e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742073686172657360681b60448201526064016108e8565b5f80613ca98b61387c565b91509150613cb68a6124e2565b821115613d055760405162461bcd60e51b815260206004820152601860248201527f5769746864726177616c206c696d69742072656163686564000000000000000060448201526064016108e8565b5f8111613d455760405162461bcd60e51b815260206004820152600e60248201526d416d6f756e7420746f6f206c6f7760901b60448201526064016108e8565b5f613d508284615b29565b9050819350613d69600f5461012c426124169190615cc1565b60408051602080820186905281830185905260608083018590528351808403909101815260809092019092528051910120600e54939a50919850965090613dba9089908990899060ff165f80613998565b98508b6001600160a01b03168a6001600160a01b031614613de057613de08c8b8f614b59565b613deb8c308f6135ed565b505f8181526012602052604081206001018054869290613e0c908490615cc1565b90915550505f81815260126020526040812080548f9290613e2e908490615cc1565b925050819055508c60105f828254613e469190615cc1565b90915550505f8181526015602090815260408083206001600160a01b038f1684529091528120549003613f145760135f8281526020019081526020015f208b908060018154018082558091505060019003905f5260205f20015f9091909190916101000a8154816001600160a01b0302191690836001600160a01b0316021790555060135f8281526020019081526020015f208054905060145f8381526020019081526020015f205f8d6001600160a01b03166001600160a01b031681526020019081526020015f20819055505b5f8181526015602090815260408083206001600160a01b038f16845290915281208054859290613f45908490615cc1565b90915550505f8181526016602090815260408083206001600160a01b038f168452909152812080548f9290613f7b908490615cc1565b90915550505f8181526017602090815260408083206001600160a01b038f16845290915281208054849290613fb1908490615cc1565b9091555050604080516001600160a01b03808f1682528d1660208201529081018e9052606081018590526080810183905260a0810189905260c0810188905260e081018790527ff60d67b14614c8984f880fd3b3bc7ddc3c2913656340f454bf0c7431152bbda6906101000160405180910390a150505050945094509450945094565b5f806001600160a01b03831661405c5760405162461bcd60e51b81526004016108e890615c3b565b6040805160208101889052908101869052606081018590525f9060800160408051601f1981840301815291815281516020928301205f818152601684528281206001600160a01b0389168252909352912054909150806140f75760405162461bcd60e51b815260206004820152601660248201527527379039b430b932b9903337b9103932b1b2b4bb32b960511b60448201526064016108e8565b5f8281526014602090815260408083206001600160a01b03891684529091529020548061415f5760405162461bcd60e51b8152602060048201526016602482015275092dcecc2d8d2c840e4cac6cad2eccae440d2dcc8caf60531b60448201526064016108e8565b5f8381526015602090815260408083206001600160a01b038a168085529083528184205487855260178452828520918552925290912054600f54156141fb57600e546141b5908c908c908c9060ff165f80613998565b6141c161012c42615cc1565b10156141fb5760405162461bcd60e51b8152602060048201526009602482015268546f6f206561726c7960b81b60448201526064016108e8565b5f8581526015602090815260408083206001600160a01b038c16808552908352818420849055888452601683528184208185528352818420849055888452601783528184209084528252808320839055878352601290915281208054869290614265908490615b29565b9091555061427590508183615cc1565b5f8681526012602052604081206001018054909190614295908490615b29565b925050819055508360105f8282546142ad9190615b29565b925050819055508060115f8282546142c59190615cc1565b909155506142d590508589614be5565b6142df308561464b565b6009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa15801561432b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061434f9190615a58565b60095490915061436f906201000090046001600160a01b03168a85613935565b6143798382615b29565b6009546040516370a0823160e01b8152306004820152620100009091046001600160a01b0316906370a0823190602401602060405180830381865afa1580156143c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143e89190615a58565b10156144065760405162461bcd60e51b81526004016108e890615d2c565b50929a909950975050505050505050565b5f831161445e5760405162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590819195c1bdcda5d081b1a5b5a5d605a1b60448201526064016108e8565b5f82116144ad5760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964207769746864726177616c206c696d6974000000000000000060448201526064016108e8565b6144b681614e26565b50600b91909155600c55565b5f80806144da6144d56201518086615d85565b614eb5565b9196909550909350915050565b80158061455f5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015614539573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061455d9190615a58565b155b6145ca5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016108e8565b6040516001600160a01b03831660248201526044810182905261115290849063095ea7b360e01b90606401613961565b601880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f811161468b5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016108e8565b6001600160a01b0382165f908152600760205260409020548111156146f25760405162461bcd60e51b815260206004820152601b60248201527f4275726e20616d6f756e7420657863656564732062616c616e6365000000000060448201526064016108e8565b6001600160a01b0382165f9081526007602052604081208054839290614719908490615b29565b925050819055508060055f8282546147319190615b29565b90915550506040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b5f80614788868686615024565b9050600183600281111561479e5761479e615d98565b1480156147ba57505f84806147b5576147b5615d71565b868809115b156147cd576147ca600182615cc1565b90505b95945050505050565b5f61482a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150cd9092919063ffffffff16565b80519091501561115257808060200190518101906148489190615dac565b6111525760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108e8565b5f6107b28410156148e25760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b60448201526064016108e8565b8383835f62253d8c60046064600c6148fb600e88615dc7565b6149059190615ded565b61491188611324615e19565b61491b9190615e19565b6149259190615ded565b614930906003615e40565b61493a9190615ded565b600c80614948600e88615dc7565b6149529190615ded565b61495d90600c615e40565b614968600288615dc7565b6149729190615dc7565b61497e9061016f615e40565b6149889190615ded565b6004600c614997600e89615dc7565b6149a19190615ded565b6149ad896112c0615e19565b6149b79190615e19565b6149c3906105b5615e40565b6149cd9190615ded565b6149d9617d4b87615dc7565b6149e39190615e19565b6149ed9190615e19565b6149f79190615dc7565b614a019190615dc7565b98975050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526133349085906323b872dd60e01b90608401613961565b5f8111614a855760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016108e8565b614a8e816150db565b614ada5760405162461bcd60e51b815260206004820152601860248201527f4d617820737570706c79206c696d69742072656163686564000000000000000060448201526064016108e8565b8060055f828254614aeb9190615cc1565b90915550506001600160a01b0382165f9081526007602052604081208054839290614b17908490615cc1565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161476f565b6001600160a01b038084165f908152600860209081526040808320938616835292905220545f1981146133345781811015614bd65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e8565b6133348484610ed88585615b29565b5f8281526014602090815260408083206001600160a01b0385168452909152812054614c1390600190615b29565b5f84815260136020526040902080549192506001600160a01b0384169183908110614c4057614c40615cef565b5f918252602090912001546001600160a01b031614614c9a5760405162461bcd60e51b8152602060048201526016602482015275082c8c8e4cae6e65ed2dcc8caf040dad2e6dac2e8c6d60531b60448201526064016108e8565b5f83815260136020526040812080549190614cb6600184615b29565b81548110614cc657614cc6615cef565b5f918252602090912001546001600160a01b03908116915084168114614dc0575f858152601360205260409020805484908110614d0557614d05615cef565b5f918252602080832090910154878352601390915260409091206001600160a01b0390911690614d36600185615b29565b81548110614d4657614d46615cef565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508060135f8781526020019081526020015f208481548110614d9457614d94615cef565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055505b5f858152601360205260409020805480614ddc57614ddc615d18565b5f828152602080822083015f1990810180546001600160a01b03191690559092019092559581526014865260408082206001600160a01b0396909616825294909552505050812055565b5f81118015614e36575060055481115b614e775760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206d617820737570706c7960701b60448201526064016108e8565b600680549082905560408051828152602081018490527fe4fd3e707c42fe7e4405214e86e4f796ecfa58dfe4d17def31221e34e2e4b2b59101613929565b5f8080838162253d8c614ecb8362010bd9615e19565b614ed59190615e19565b90505f62023ab1614ee7836004615e40565b614ef19190615ded565b90506004614f028262023ab1615e40565b614f0d906003615e19565b614f179190615ded565b614f219083615dc7565b91505f62164b09614f33846001615e19565b614f3f90610fa0615e40565b614f499190615ded565b90506004614f59826105b5615e40565b614f639190615ded565b614f6d9084615dc7565b614f7890601f615e19565b92505f61098f614f89856050615e40565b614f939190615ded565b90505f6050614fa48361098f615e40565b614fae9190615ded565b614fb89086615dc7565b9050614fc5600b83615ded565b9450614fd285600c615e40565b614fdd836002615e19565b614fe79190615dc7565b91508483614ff6603187615dc7565b615001906064615e40565b61500b9190615e19565b6150159190615e19565b9a919950975095505050505050565b5f80805f19858709858702925082811083820303915050805f0361505b5783828161505157615051615d71565b0492505050610ee5565b808411615066575f80fd5b5f8486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091025f889003889004909101858311909403939093029303949094049190911702949350505050565b606061227884845f856150f5565b5f816005546006546150ed9190615b29565b101592915050565b6060824710156151565760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016108e8565b5f80866001600160a01b031685876040516151719190615e6f565b5f6040518083038185875af1925050503d805f81146151ab576040519150601f19603f3d011682016040523d82523d5f602084013e6151b0565b606091505b50915091506139e8878383876060831561522a5782515f03615223576001600160a01b0385163b6152235760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108e8565b5081612278565b612278838381511561523f5781518083602001fd5b8060405162461bcd60e51b81526004016108e89190615507565b634e487b7160e01b5f52604160045260245ffd5b604051610280810167ffffffffffffffff8111828210171561529157615291615259565b60405290565b5f82601f8301126152a6575f80fd5b813567ffffffffffffffff8111156152c0576152c0615259565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156152ef576152ef615259565b604052818152838201602001851015615306575f80fd5b816020850160208301375f918101602001919091529392505050565b6001600160a01b0381168114610dc6575f80fd5b8035610b3c81615322565b8015158114610dc6575f80fd5b8035610b3c81615341565b5f60208284031215615369575f80fd5b813567ffffffffffffffff81111561537f575f80fd5b82016102808185031215615391575f80fd5b61539961526d565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c0808301359082015260e080830135908201526101008083013590820152610120808301359082015261014082013567ffffffffffffffff811115615413575f80fd5b61541f86828501615297565b610140830152506154336101608301615336565b6101608201526154466101808301615336565b6101808201526154596101a08301615336565b6101a082015261546c6101c08301615336565b6101c082015261547f6101e08301615336565b6101e08201526154926102008301615336565b6102008201526154a56102208301615336565b6102208201526154b86102408301615336565b6102408201526154cb610260830161534e565b610260820152949350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610ee560208301846154d9565b5f60208284031215615529575f80fd5b5035919050565b5f8060408385031215615541575f80fd5b823561554c81615322565b946020939093013593505050565b5f805f6060848603121561556c575f80fd5b833561557781615322565b9250602084013561558781615322565b929592945050506040919091013590565b5f602082840312156155a8575f80fd5b8135610ee581615322565b5f805f606084860312156155c5575f80fd5b83356155d081615322565b95602085013595506040909401359392505050565b60ff81168114610dc6575f80fd5b5f805f8060808587031215615606575f80fd5b843561561181615322565b93506020850135615621816155e5565b9250604085013567ffffffffffffffff81111561563c575f80fd5b61564887828801615297565b925050606085013567ffffffffffffffff811115615664575f80fd5b61567087828801615297565b91505092959194509250565b5f806040838503121561568d575f80fd5b823561569881615322565b915060208301356156a881615322565b809150509250929050565b5f805f606084860312156156c5575f80fd5b505081359360208301359350604090920135919050565b5f80604083850312156156ed575f80fd5b8235915060208301356156a881615322565b5f805f60608486031215615711575f80fd5b83359250602084013561572381615322565b9150604084013561573381615322565b809150509250925092565b5f805f805f805f805f6101208a8c031215615757575f80fd5b8935985060208a0135975060408a0135965060608a0135955060808a013561577e81615322565b945060a08a013561578e81615322565b935060c08a013561579e81615322565b925060e08a01356157ae81615322565b91506101008a01356157bf816155e5565b809150509295985092959850929598565b5f80604083850312156157e1575f80fd5b82356157ec81615341565b915060208301356156a881615341565b5f805f806080858703121561580f575f80fd5b843593506020850135925060408501359150606085013561582f81615322565b939692955090935050565b5f806040838503121561584b575f80fd5b50508035926020909101359150565b5f805f806080858703121561586d575f80fd5b5050823594602084013594506040840135936060013592509050565b6020808252600e908201526d139bdd0818dbdb999a59dd5c995960921b604082015260600190565b6020808252601390820152724c6f616e73204f70657261746f72206f6e6c7960681b604082015260600190565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260c082015160e082015260e08201516101008201526101008201516101208201526101208201516101408201525f6101408301516102806101608401526159666102a08401826154d9565b90506101608401516159846101808501826001600160a01b03169052565b506101808401516001600160a01b0381166101a0850152506101a08401516001600160a01b0381166101c0850152506101c08401516001600160a01b0381166101e0850152506101e08401516001600160a01b038116610200850152506102008401516001600160a01b038116610220850152506102208401516001600160a01b038116610240850152506102408401516001600160a01b03811661026085015250610260840151801515610280850152509392505050565b5f60208284031215615a4d575f80fd5b8151610ee581615322565b5f60208284031215615a68575f80fd5b5051919050565b600181811c90821680615a8357607f821691505b602082108103615aa157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601c908201527f436f6e7472616374206e6f7420696e697469616c697a65642079657400000000604082015260600190565b60208082526017908201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610c4457610c44615b15565b601f82111561115257805f5260205f20601f840160051c81016020851015615b615750805b601f840160051c820191505b8181101561107c575f8155600101615b6d565b815167ffffffffffffffff811115615b9a57615b9a615259565b615bae81615ba88454615a6f565b84615b3c565b6020601f821160018114615be0575f8315615bc95750848201515b5f19600385901b1c1916600184901b17845561107c565b5f84815260208120601f198516915b82811015615c0f5787850151825560209485019460019092019101615bef565b5084821015615c2c57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60208082526010908201526f24b73b30b634b2103932b1b2b4bb32b960811b604082015260600190565b60208082526016908201527514da185c995cc8185b5bdd5b9d081c995c5d5a5c995960521b604082015260600190565b60208082526012908201527115da5d1a191c985dd85b1cc81c185d5cd95960721b604082015260600190565b80820180821115610c4457610c44615b15565b5f60208284031215615ce4575f80fd5b8151610ee5816155e5565b634e487b7160e01b5f52603260045260245ffd5b5f81615d1157615d11615b15565b505f190190565b634e487b7160e01b5f52603160045260245ffd5b60208082526014908201527310985b185b98d94818da1958dac819985a5b195960621b604082015260600190565b8082028115828204841417610c4457610c44615b15565b634e487b7160e01b5f52601260045260245ffd5b5f82615d9357615d93615d71565b500490565b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215615dbc575f80fd5b8151610ee581615341565b8181035f831280158383131683831282161715615de657615de6615b15565b5092915050565b5f82615dfb57615dfb615d71565b600160ff1b82145f1984141615615e1457615e14615b15565b500590565b8082018281125f831280158216821582161715615e3857615e38615b15565b505092915050565b8082025f8212600160ff1b84141615615e5b57615e5b615b15565b8181058314821517610c4457610c44615b15565b5f82518060208501845e5f92019182525091905056fea264697066735822122051ad39efa317233bce494ff6bbff2c2c32aef832f31fa92c121a1dbf1ae370f564736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610400575f3560e01c806395d89b4111610216578063cc1d04711161012a578063e74a4bca116100b4578063e9f2838e11610084578063e9f2838e14610866578063ef8b30f71461075c578063f2fde38b14610878578063f3cbf47c1461088b578063ff3c63c01461089e575f80fd5b8063e74a4bca14610835578063e75c7a091461083d578063e91e918314610850578063e976d4311461085d575f80fd5b8063d961b58c116100fa578063d961b58c146107e0578063da354efa146107e9578063dc68a93a146107fc578063dd62ed3e1461080f578063e48f6faf14610822575f80fd5b8063cc1d04711461079f578063ce96cb77146107b2578063d5abeb01146107c5578063d905777e146107cd575f80fd5b8063b460af94116101ab578063be1f92141161017b578063be1f921414610736578063c63d75b614610749578063c6e6f5921461075c578063c87965721461076f578063ca55a55714610777575f80fd5b8063b460af9414610710578063ba08765214610710578063ba4bb7a4146104f4578063baaa19fb14610723575f80fd5b8063a9059cbb116101e6578063a9059cbb146106cf578063b3c65015146106e2578063b3c9e83d146106ea578063b3d7f6b9146106fd575f80fd5b806395d89b41146106985780639cb43f81146106a05780639cf160f6146106a9578063a2aa660f146106bc575f80fd5b8063402d267d1161031857806370a08231116102a25780638c0190e3116102725780638c0190e3146106585780638da5cb5b1461066b5780638ed83271146106735780638fa243c61461067c57806394bf804d14610685575f80fd5b806370a08231146106165780637d41c86e14610629578063852710b21461063c5780638bc7e8c41461064f575f80fd5b8063569b8e2c116102e8578063569b8e2c146105a857806360da3e83146105bb5780636382d9ad146105c85780636c46407b146105db5780636e553f6514610603575f80fd5b8063402d267d1461055c57806342fe09801461056f57806344caa122146105825780634cdad50614610595575f80fd5b806323b872dd116103995780632f865568116103695780632f865568146104fc578063313ce5671461050f57806334c16b5c1461052e57806338867fd41461054157806338d52e0f14610554575f80fd5b806323b872dd146104c557806324e86d67146104d857806327d9ef5f146104e15780632a33cf05146104f4575f80fd5b8063095ea7b3116103d4578063095ea7b3146104725780630a28a4771461049557806318160ddd146104a8578063184466c9146104b0575f80fd5b806251e6111461040457806301e1d1141461043457806306fdde031461044a57806307a2d13a1461045f575b5f80fd5b610417610412366004615359565b6108b1565b6040516001600160a01b0390911681526020015b60405180910390f35b61043c610b41565b60405190815260200161042b565b610452610b7e565b60405161042b9190615507565b61043c61046d366004615519565b610c0a565b610485610480366004615530565b610c4a565b604051901515815260200161042b565b61043c6104a3366004615519565b610c98565b61043c610cd3565b6104c36104be366004615519565b610d08565b005b6104856104d336600461555a565b610dc9565b61043c600f5481565b601c54610417906001600160a01b031681565b6104c3610eec565b6104c361050a366004615598565b610fd1565b60025461051c9060ff1681565b60405160ff909116815260200161042b565b6104c361053c3660046155b3565b611083565b6104c361054f3660046155b3565b611157565b6104176111f4565b61043c61056a366004615598565b611238565b6104c361057d3660046155f3565b611282565b601954610417906001600160a01b031681565b61043c6105a3366004615519565b611422565b6104c36105b6366004615519565b61145b565b6009546104859060ff1681565b6104c36105d636600461567c565b61154c565b6105ee6105e93660046156b3565b611744565b6040805192835260208301919091520161042b565b61043c6106113660046156dc565b6117e0565b61043c610624366004615598565b611967565b6105ee6106373660046156ff565b6119b0565b6104c361064a36600461573e565b611a5b565b61043c600d5481565b6104c36106663660046157d0565b611cd9565b610417611d4c565b61043c600b5481565b61043c601a5481565b61043c6106933660046156dc565b611d8a565b610452611f21565b61043c60105481565b600a54610417906001600160a01b031681565b6104c36106ca366004615530565b611f2e565b6104856106dd366004615530565b611ff6565b61051c612042565b6105ee6106f83660046157fc565b612079565b61043c61070b366004615519565b6120fb565b61043c61071e3660046156ff565b612136565b6104c36107313660046156b3565b612180565b61043c6107443660046157fc565b6121f4565b61043c610757366004615598565b612280565b61043c61076a366004615519565b6122b8565b6104c36122f2565b61077f6123cd565b60408051948552602085019390935291830152606082015260800161042b565b6104c36107ad366004615530565b61244c565b61043c6107c0366004615598565b6124e2565b61043c612533565b61043c6107db366004615598565b612568565b61043c60115481565b6104176107f7366004615519565b612598565b61043c61080a3660046157fc565b6125c0565b61043c61081d36600461567c565b61264b565b6104c3610830366004615598565b6126a4565b601d5461043c565b6104c361084b36600461583a565b6129ef565b600e5461051c9060ff1681565b61043c600c5481565b60095461048590610100900460ff1681565b6104c3610886366004615598565b612b0d565b6104c361089936600461585a565b612c97565b6105ee6108ac3660046156b3565b61333a565b5f6108ba6133b6565b6009546201000090046001600160a01b03166108f15760405162461bcd60e51b81526004016108e890615889565b60405180910390fd5b6019546001600160a01b0316331461091b5760405162461bcd60e51b81526004016108e8906158b1565b30610160830152601c546040516251e61160e01b81525f916001600160a01b0316906251e611906109509086906004016158de565b6020604051808303815f875af115801561096c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109909190615a3d565b6001600160a01b0381165f908152601b602052604090206002015490915060ff16156109fe5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964206465706c6f796d656e74206164647265737300000000000060448201526064016108e8565b5f816001600160a01b0316636acc83026040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5f9190615a58565b604080516060810182528281525f602080830182815260018486018181526001600160a01b038a16808652601b855287862096518755925186830155516002909501805460ff191695151595909517909455601d805494850181559092527f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f90920180546001600160a01b0319168217905560808801518351918252918101919091529192507f91e8e0724fa073d770149830b6e9c1f6027b484a27617dc901ac8795338e4b49910160405180910390a1509050610b3c60018055565b919050565b6009545f906201000090046001600160a01b0316610b715760405162461bcd60e51b81526004016108e890615889565b610b7961340f565b905090565b60048054610b8b90615a6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb790615a6f565b8015610c025780601f10610bd957610100808354040283529160200191610c02565b820191905f5260205f20905b815481529060010190602001808311610be557829003601f168201915b505050505081565b6009545f906201000090046001600160a01b0316610c3a5760405162461bcd60e51b81526004016108e890615889565b610c44825f61348c565b92915050565b5f60ff610c585f5460ff1690565b60ff1603610c785760405162461bcd60e51b81526004016108e890615aa7565b610c806133b6565b610c8b3384846134b8565b5060015b610c4460018055565b6009545f906201000090046001600160a01b0316610cc85760405162461bcd60e51b81526004016108e890615889565b610c448260016135c4565b5f60ff610ce15f5460ff1690565b60ff1603610d015760405162461bcd60e51b81526004016108e890615aa7565b5060055490565b610d106133b6565b6009546201000090046001600160a01b0316610d3e5760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b03163314610d685760405162461bcd60e51b81526004016108e890615ade565b600f548111610db85760105415610db85760405162461bcd60e51b8152602060048201526014602482015273141c9bd8d95cdcc818db185a5b5cc8199a5c9cdd60621b60448201526064016108e8565b600f819055610dc660018055565b50565b5f60ff610dd75f5460ff1690565b60ff1603610df75760405162461bcd60e51b81526004016108e890615aa7565b610dff6133b6565b6001600160a01b0384165f90815260086020908152604080832033845290915290205482811015610e725760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206578636565647320616c6c6f77616e6365000000000000000060448201526064016108e8565b610e7d8585856135ed565b610ec95760405162461bcd60e51b815260206004820152601e60248201527f4661696c656420746f2065786563757465207472616e7366657246726f6d000060448201526064016108e8565b610edd8533610ed88685615b29565b6134b8565b505060018080555b9392505050565b610ef46133b6565b6009546201000090046001600160a01b0316610f225760405162461bcd60e51b81526004016108e890615889565b335f908152601b602052604090206002015460ff16610f725760405162461bcd60e51b815260206004820152600c60248201526b2ab735b737bbb7103637b0b760a11b60448201526064016108e8565b335f908152601b602052604090206001015415610fb457335f908152601b6020526040812060010154601a805491929091610fae908490615b29565b90915550505b335f908152601b6020526040812060010155610fcf60018055565b565b6009546201000090046001600160a01b0316610fff5760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146110295760405162461bcd60e51b81526004016108e8906158b1565b611032816137ff565b806001600160a01b03166328a070256040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561106a575f80fd5b505af115801561107c573d5f803e3d5ffd5b5050505050565b61108b6133b6565b6009546201000090046001600160a01b03166110b95760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146110e35760405162461bcd60e51b81526004016108e8906158b1565b6110ec836137ff565b604051632140fc7760e11b815260048101839052602481018290526001600160a01b03841690634281f8ee906044015b5f604051808303815f87803b158015611133575f80fd5b505af1158015611145573d5f803e3d5ffd5b5050505061115260018055565b505050565b61115f6133b6565b6009546201000090046001600160a01b031661118d5760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146111b75760405162461bcd60e51b81526004016108e8906158b1565b6111c0836137ff565b604051633b8fc6f760e21b815260048101839052602481018290526001600160a01b0384169063ee3f1bdc9060440161111c565b5f60ff6112025f5460ff1690565b60ff16036112225760405162461bcd60e51b81526004016108e890615aa7565b506009546201000090046001600160a01b031690565b6009545f906201000090046001600160a01b03166112685760405162461bcd60e51b81526004016108e890615889565b611270613861565b61127a575f610c44565b5050600b5490565b5f54610100900460ff16158080156112a057505f54600160ff909116105b806112b95750303b1580156112b957505f5460ff166001145b61131c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016108e8565b5f805460ff19166001179055801561133d575f805461ff0019166101001790555b6001600160a01b0385166113845760405162461bcd60e51b815260206004820152600e60248201526d13dddb995c881c995c5d5a5c995960921b60448201526064016108e8565b6002805460ff191660ff8616179055600361139f8482615b80565b5060046113ac8382615b80565b506009805461ffff1916610101179055601880546001600160a01b0319166001600160a01b038716179055801561107c575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050505050565b6009545f906201000090046001600160a01b03166114525760405162461bcd60e51b81526004016108e890615889565b610ee58261387c565b6114636133b6565b6009546201000090046001600160a01b03166114915760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146114bb5760405162461bcd60e51b81526004016108e890615ade565b6126ac81106114fb5760405162461bcd60e51b815260206004820152600c60248201526b08ccaca40e8dede40d0d2ced60a31b60448201526064016108e8565b80600d540361153e5760405162461bcd60e51b815260206004820152600f60248201526e11995948185b1c9958591e481cd95d608a1b60448201526064016108e8565b600d819055610dc660018055565b6115546133b6565b6009546201000090046001600160a01b03166115825760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146115ac5760405162461bcd60e51b81526004016108e890615ade565b6001600160a01b038116158015906115cd57506001600160a01b0381163014155b61160b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016108e8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561164f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116739190615a58565b90505f81116116bb5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016108e8565b6009546001600160a01b03620100009091048116908416036116e2576116e26001806138c8565b6116ed838383613935565b604080518281526001600160a01b03858116602083015284168183015290517f853009bb99110572d2d914b6a40e1d763158ebac968d169d09e41bf6c15fc97a9181900360600190a15061174060018055565b5050565b6009545f9081906201000090046001600160a01b03166117765760405162461bcd60e51b81526004016108e890615889565b6040805160208101879052908101859052606081018490525f9060800160408051601f1981840301815291815281516020928301205f818152601390935290822054600e549095509092506117d59188918891889160ff169080613998565b915050935093915050565b5f6117e96133b6565b6009546201000090046001600160a01b03166118175760405162461bcd60e51b81526004016108e890615889565b60095460ff161561185c5760405162461bcd60e51b815260206004820152600f60248201526e11195c1bdcda5d1cc81c185d5cd959608a1b60448201526064016108e8565b6001600160a01b0382161580159061187d57506001600160a01b0382163014155b6118995760405162461bcd60e51b81526004016108e890615c3b565b5f83116118e15760405162461bcd60e51b8152602060048201526016602482015275105cdcd95d1cc8185b5bdd5b9d081c995c5d5a5c995960521b60448201526064016108e8565b6118ea82611238565b8311156119315760405162461bcd60e51b815260206004820152601560248201527411195c1bdcda5d081b1a5b5a5d081c995858da1959605a1b60448201526064016108e8565b61193a836122b8565b90505f811161195b5760405162461bcd60e51b81526004016108e890615c65565b610c8f338385846139f3565b5f60ff6119755f5460ff1690565b60ff16036119955760405162461bcd60e51b81526004016108e890615aa7565b506001600160a01b03165f9081526007602052604090205490565b5f806119ba6133b6565b6009546201000090046001600160a01b03166119e85760405162461bcd60e51b81526004016108e890615889565b600954610100900460ff1615611a105760405162461bcd60e51b81526004016108e890615c95565b5f805f611a1f88878933613b82565b600f54909950939750919550935091505f03611a4757429350611a448383838a614034565b50505b505050611a5360018055565b935093915050565b60ff611a685f5460ff1690565b60ff1603611a885760405162461bcd60e51b81526004016108e890615aa7565b611a906133b6565b6009546201000090046001600160a01b031615611ae45760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e4818dbdb999a59dd5c995960721b60448201526064016108e8565b6018546001600160a01b03163314611b0e5760405162461bcd60e51b81526004016108e890615ade565b6001600160a01b038416611b585760405162461bcd60e51b815260206004820152601160248201527013dc195c985d1bdc881c995c5d5a5c9959607a1b60448201526064016108e8565b6001600160a01b038316611ba25760405162461bcd60e51b815260206004820152601160248201527011195c1b1bde595c881c995c5d5a5c9959607a1b60448201526064016108e8565b6001600160a01b038216611bed5760405162461bcd60e51b815260206004820152601260248201527110dbdb1b1958dd1bdc881c995c5d5a5c995960721b60448201526064016108e8565b60188160ff1610611c405760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642070726f63657373696e6720686f757200000000000000000060448201526064016108e8565b6009805462010000600160b01b031916620100006001600160a01b03881602179055611c6d888888614417565b601980546001600160a01b03199081166001600160a01b0387811691909117909255601c80548216868416179055600a8054909116918416919091179055600f899055600e805460ff191660ff83161790556009805461ffff1916905560018055505050505050505050565b611ce16133b6565b6009546201000090046001600160a01b0316611d0f5760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b03163314611d395760405162461bcd60e51b81526004016108e890615ade565b611d4382826138c8565b61174060018055565b5f60ff611d5a5f5460ff1690565b60ff1603611d7a5760405162461bcd60e51b81526004016108e890615aa7565b506018546001600160a01b031690565b5f611d936133b6565b6009546201000090046001600160a01b0316611dc15760405162461bcd60e51b81526004016108e890615889565b60095460ff1615611e065760405162461bcd60e51b815260206004820152600f60248201526e11195c1bdcda5d1cc81c185d5cd959608a1b60448201526064016108e8565b6001600160a01b03821615801590611e2757506001600160a01b0382163014155b611e435760405162461bcd60e51b81526004016108e890615c3b565b5f8311611e625760405162461bcd60e51b81526004016108e890615c65565b611e6b82612280565b831115611eba5760405162461bcd60e51b815260206004820152601b60248201527f455243343632363a206d696e74206d6f7265207468616e206d6178000000000060448201526064016108e8565b611ec3836120fb565b9050611ece82611238565b811115611f155760405162461bcd60e51b815260206004820152601560248201527411195c1bdcda5d081b1a5b5a5d081c995858da1959605a1b60448201526064016108e8565b610c8f338383866139f3565b60038054610b8b90615a6f565b611f366133b6565b6009546201000090046001600160a01b0316611f645760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b03163314611f8e5760405162461bcd60e51b81526004016108e8906158b1565b611f97826137ff565b60405163354ead1160e11b8152600481018290526001600160a01b03831690636a9d5a22906024015b5f604051808303815f87803b158015611fd7575f80fd5b505af1158015611fe9573d5f803e3d5ffd5b5050505061174060018055565b5f60ff6120045f5460ff1690565b60ff16036120245760405162461bcd60e51b81526004016108e890615aa7565b61202c6133b6565b6120373384846135ed565b9050610c4460018055565b5f60ff6120505f5460ff1690565b60ff16036120705760405162461bcd60e51b81526004016108e890615aa7565b505f5460ff1690565b5f806120836133b6565b6009546201000090046001600160a01b03166120b15760405162461bcd60e51b81526004016108e890615889565b600954610100900460ff16156120d95760405162461bcd60e51b81526004016108e890615c95565b6120e586868686614034565b915091506120f260018055565b94509492505050565b6009545f906201000090046001600160a01b031661212b5760405162461bcd60e51b81526004016108e890615889565b610c4482600161348c565b60405162461bcd60e51b815260206004820152601b60248201527f5769746864726177616c2072657175657374207265717569726564000000000060448201525f906064016108e8565b6121886133b6565b6009546201000090046001600160a01b03166121b65760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146121e05760405162461bcd60e51b81526004016108e890615ade565b6121eb838383614417565b61115260018055565b5f60ff6122025f5460ff1690565b60ff16036122225760405162461bcd60e51b81526004016108e890615aa7565b6040805160208101879052908101859052606081018490525f9060800160408051601f1981840301815291815281516020928301205f908152601683528181206001600160a01b03871682529092529020549150505b949350505050565b6009545f906201000090046001600160a01b03166122b05760405162461bcd60e51b81526004016108e890615889565b505060065490565b6009545f906201000090046001600160a01b03166122e85760405162461bcd60e51b81526004016108e890615889565b610c44825f6135c4565b6122fa6133b6565b6009546201000090046001600160a01b03166123285760405162461bcd60e51b81526004016108e890615889565b6018546001600160a01b031633146123525760405162461bcd60e51b81526004016108e890615ade565b5f601154116123985760405162461bcd60e51b8152602060048201526012602482015271139bc81999595cc81d1bc818dbdb1b1958dd60721b60448201526064016108e8565b601180545f909155600954600a546123c3916001600160a01b03620100009091048116911683613935565b50610fcf60018055565b6009545f908190819081906201000090046001600160a01b03166124035760405162461bcd60e51b81526004016108e890615889565b600f546124259061241661012c42615cc1565b6124209190615cc1565b6144c2565b600e5492965090945092506124449085908590859060ff165f80613998565b905090919293565b6124546133b6565b6009546201000090046001600160a01b03166124825760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146124ac5760405162461bcd60e51b81526004016108e8906158b1565b6124b5826137ff565b604051636140e50d60e01b8152600481018290526001600160a01b03831690636140e50d90602401611fc0565b6009545f906201000090046001600160a01b03166125125760405162461bcd60e51b81526004016108e890615889565b6001600160a01b0382165f90815260076020526040812054610c449161348c565b5f60ff6125415f5460ff1690565b60ff16036125615760405162461bcd60e51b81526004016108e890615aa7565b5060065490565b6009545f906201000090046001600160a01b03166119955760405162461bcd60e51b81526004016108e890615889565b601d81815481106125a7575f80fd5b5f918252602090912001546001600160a01b0316905081565b5f60ff6125ce5f5460ff1690565b60ff16036125ee5760405162461bcd60e51b81526004016108e890615aa7565b6040805160208101879052908101859052606081018490525f9060800160408051601f1981840301815291815281516020928301205f908152601583528181206001600160a01b0387168252909252902054915050949350505050565b5f60ff6126595f5460ff1690565b60ff16036126795760405162461bcd60e51b81526004016108e890615aa7565b506001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b6126ac6133b6565b6009546201000090046001600160a01b03166126da5760405162461bcd60e51b81526004016108e890615889565b6019546001600160a01b031633146127045760405162461bcd60e51b81526004016108e8906158b1565b61270d816137ff565b6001600160a01b0381165f908152601b6020526040812080546001909101819055601a805491928392612741908490615cc1565b92505081905550600260ff16826001600160a01b03166325af34cd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612789573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127ad9190615cd4565b60ff16146127f25760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206c6f616e20737461746560701b60448201526064016108e8565b60095461280f906201000090046001600160a01b031683836144e7565b816001600160a01b0316638db579946040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612847575f80fd5b505af1158015612859573d5f803e3d5ffd5b505060095461287b92506201000090046001600160a01b03169050835f6144e7565b600460ff16826001600160a01b03166325af34cd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128e09190615cd4565b60ff16146129275760405162461bcd60e51b8152602060048201526014602482015273119d5b991a5b99c818da1958dac819985a5b195960621b60448201526064016108e8565b600954604051636eb1769f60e11b81523060048201526001600160a01b0384811660248301525f92620100009004169063dd62ed3e90604401602060405180830381865afa15801561297b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061299f9190615a58565b146129e55760405162461bcd60e51b8152602060048201526016602482015275105b1b1bddd85b98d94818da1958dac819985a5b195960521b60448201526064016108e8565b50610dc660018055565b6129f76133b6565b6009546201000090046001600160a01b0316612a255760405162461bcd60e51b81526004016108e890615889565b335f908152601b602052604090206002015460ff16612a755760405162461bcd60e51b815260206004820152600c60248201526b2ab735b737bbb7103637b0b760a11b60448201526064016108e8565b5f828210612a83575f612a8d565b612a8d8284615b29565b335f908152601b602052604090206001015490915015612ad257335f908152601b6020526040812060010154601a805491929091612acc908490615b29565b90915550505b335f908152601b602052604090206001018190558015612b035780601a5f828254612afd9190615cc1565b90915550505b5061174060018055565b60ff612b1a5f5460ff1690565b60ff1603612b3a5760405162461bcd60e51b81526004016108e890615aa7565b612b426133b6565b6018546001600160a01b03163314612b6c5760405162461bcd60e51b81526004016108e890615ade565b6001600160a01b03811615801590612b8d57506001600160a01b0381163014155b612bc95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b60448201526064016108e8565b6019546001600160a01b0390811690821603612c275760405162461bcd60e51b815260206004820152601860248201527f4f776e65722063616e6e6f74206265206f70657261746f72000000000000000060448201526064016108e8565b601c546001600160a01b0390811690821603612c855760405162461bcd60e51b815260206004820152601860248201527f4f776e65722063616e6e6f74206265206465706c6f796572000000000000000060448201526064016108e8565b612c8e816145fa565b610dc660018055565b612c9f6133b6565b6009546201000090046001600160a01b0316612ccd5760405162461bcd60e51b81526004016108e890615889565b600954610100900460ff1615612cf55760405162461bcd60e51b81526004016108e890615c95565b5f8111612d355760405162461bcd60e51b815260206004820152600e60248201526d131a5b5a5d081c995c5d5a5c995960921b60448201526064016108e8565b6040805160208101869052908101849052606081018390525f9060800160408051601f1981840301815291815281516020928301205f8181526012909352912060010154909150612dbd5760405162461bcd60e51b81526020600482015260126024820152714e6f7468696e6720746f2070726f6365737360701b60448201526064016108e8565b600e54612dd49086908690869060ff165f80613998565b612de061012c42615cc1565b1015612e1a5760405162461bcd60e51b8152602060048201526009602482015268546f6f206561726c7960b81b60448201526064016108e8565b5f818152601360205260408120548310612e41575f82815260136020526040902054612e43565b825b5f838152601360205260408120549192508267ffffffffffffffff811115612e6d57612e6d615259565b604051908082528060200260200182016040528015612e96578160200160208202803683370190505b5090505f8367ffffffffffffffff811115612eb357612eb3615259565b604051908082528060200260200182016040528015612edc578160200160208202803683370190505b5090505f80808681875b612ef08a8a615b29565b8111156130eb575f8b8152601360205260409020612f0f600183615b29565b81548110612f1f57612f1f615cef565b5f918252602090912001546001600160a01b0316915082612f3f81615d03565b93505081888481518110612f5557612f55615cef565b6001600160a01b039283166020918202929092018101919091525f8d815260158252604080822093861682529290915220548751889085908110612f9b57612f9b615cef565b602002602001018181525050868381518110612fb957612fb9615cef565b602002602001015184612fcc9190615cc1565b5f8c81526016602090815260408083206001600160a01b0387168452909152902054909450612ffb9086615cc1565b5f8c81526017602090815260408083206001600160a01b038716845290915290205490955061302a9087615cc1565b5f8c81526015602090815260408083206001600160a01b0387168085529083528184208490558f84526016835281842081855283528184208490558f84526017835281842090845282528083208390558e8352601390915290208054919750908061309757613097615d18565b5f828152602080822083015f1990810180546001600160a01b03191690559092019092558c82526014815260408083206001600160a01b0386168452909152812055806130e381615d03565b915050612ee6565b508360105f8282546130fd9190615b29565b925050819055508460115f8282546131159190615cc1565b90915550505f8a8152601260205260408120600101805485929061313a908490615b29565b90915550505f8a8152601260205260408120805486929061315c908490615b29565b90915550506009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa1580156131ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d19190615a58565b90508381101561321a5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016108e8565b613224308661464b565b5f5b885181101561328957613281600960029054906101000a90046001600160a01b03168a838151811061325a5761325a615cef565b60200260200101518a848151811061327457613274615cef565b6020026020010151613935565b600101613226565b506132948482615b29565b6009546040516370a0823160e01b8152306004820152620100009091046001600160a01b0316906370a0823190602401602060405180830381865afa1580156132df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133039190615a58565b146133205760405162461bcd60e51b81526004016108e890615d2c565b505050505050505050505061333460018055565b50505050565b5f8060ff6133495f5460ff1690565b60ff16036133695760405162461bcd60e51b81526004016108e890615aa7565b5050604080516020808201959095528082019390935260608084019290925280518084039092018252608090920182528051908301205f9081526012909252902080546001909101549091565b6002600154036134085760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e8565b6002600155565b6009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa15801561345b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061347f9190615a58565b601a54610b799190615cc1565b5f6005545f146134b2576134ad6134a161340f565b6005548591908561477b565b610ee5565b82610ee5565b6001600160a01b03821661350e5760405162461bcd60e51b815260206004820152601960248201527f6e6f6e2d7a65726f207370656e6465722072657175697265640000000000000060448201526064016108e8565b6001600160a01b0383166135645760405162461bcd60e51b815260206004820152601760248201527f6e6f6e2d7a65726f206f776e657220726571756972656400000000000000000060448201526064016108e8565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f8215806135d25750600554155b6134b2576134ad6005546135e461340f565b8591908561477b565b5f6001600160a01b0383166136445760405162461bcd60e51b815260206004820152601960248201527f6e6f6e2d7a65726f20616464726573732072657175697265640000000000000060448201526064016108e8565b6001600160a01b03841661369a5760405162461bcd60e51b815260206004820152601860248201527f6e6f6e2d7a65726f2073656e646572207265717569726564000000000000000060448201526064016108e8565b5f82116136e15760405162461bcd60e51b8152602060048201526015602482015274416d6f756e742063616e6e6f74206265207a65726f60581b60448201526064016108e8565b6001600160a01b0384165f908152600760205260409020548211156137485760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e7420657863656564732073656e6465722062616c616e636500000060448201526064016108e8565b6001600160a01b0384165f9081526007602052604090205461376b908390615b29565b6001600160a01b038086165f90815260076020526040808220939093559085168152205461379a908390615cc1565b6001600160a01b038085165f8181526007602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906137ed9086815260200190565b60405180910390a35060019392505050565b6001600160a01b0381165f908152601b602052604090206002015460ff16610dc65760405162461bcd60e51b8152602060048201526015602482015274125b9d985b1a59081b1bd85b8818dbdb9d1c9858dd605a1b60448201526064016108e8565b5f6005545f1480610b7957505f61387661340f565b11905090565b5f80613888835f61348c565b91508190505f80600d5411156138c25761271083600d546138a99190615d5a565b6138b39190615d85565b90506138bf8184615b29565b91505b50915091565b6009805461ffff191683151561ff00191617610100831515810291909117918290556040805160ff8085161515825292909304909116151560208301527f559628b27717ff2f5863f3a218839e17c6bc1b900e9de0dc2b3dc365068841d791015b60405180910390a15050565b6040516001600160a01b03831660248201526044810182905261115290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526147d6565b5f816139a5603c85615d5a565b6139b1610e1087615d5a565b620151806139c08b8b8b6148a7565b6139ca9190615d5a565b6139d49190615cc1565b6139de9190615cc1565b6139e89190615cc1565b979650505050505050565b6009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa158015613a3f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a639190615a58565b613a6d9084615cc1565b600954909150613a8e906201000090046001600160a01b0316863086614a0d565b6009546040516370a0823160e01b815230600482015282916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa158015613ada573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613afe9190615a58565b14613b1b5760405162461bcd60e51b81526004016108e890615d2c565b613b258483614a45565b836001600160a01b0316856001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78585604051613b73929190918252602082015260400190565b60405180910390a35050505050565b5f808080806001600160a01b03871615801590613ba857506001600160a01b0387163014155b613bc45760405162461bcd60e51b81526004016108e890615c3b565b6001600160a01b03881615801590613be557506001600160a01b0388163014155b613c225760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b2103437b63232b960911b60448201526064016108e8565b5f8911613c415760405162461bcd60e51b81526004016108e890615c65565b6001600160a01b0388165f90815260076020526040902054891115613c9e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742073686172657360681b60448201526064016108e8565b5f80613ca98b61387c565b91509150613cb68a6124e2565b821115613d055760405162461bcd60e51b815260206004820152601860248201527f5769746864726177616c206c696d69742072656163686564000000000000000060448201526064016108e8565b5f8111613d455760405162461bcd60e51b815260206004820152600e60248201526d416d6f756e7420746f6f206c6f7760901b60448201526064016108e8565b5f613d508284615b29565b9050819350613d69600f5461012c426124169190615cc1565b60408051602080820186905281830185905260608083018590528351808403909101815260809092019092528051910120600e54939a50919850965090613dba9089908990899060ff165f80613998565b98508b6001600160a01b03168a6001600160a01b031614613de057613de08c8b8f614b59565b613deb8c308f6135ed565b505f8181526012602052604081206001018054869290613e0c908490615cc1565b90915550505f81815260126020526040812080548f9290613e2e908490615cc1565b925050819055508c60105f828254613e469190615cc1565b90915550505f8181526015602090815260408083206001600160a01b038f1684529091528120549003613f145760135f8281526020019081526020015f208b908060018154018082558091505060019003905f5260205f20015f9091909190916101000a8154816001600160a01b0302191690836001600160a01b0316021790555060135f8281526020019081526020015f208054905060145f8381526020019081526020015f205f8d6001600160a01b03166001600160a01b031681526020019081526020015f20819055505b5f8181526015602090815260408083206001600160a01b038f16845290915281208054859290613f45908490615cc1565b90915550505f8181526016602090815260408083206001600160a01b038f168452909152812080548f9290613f7b908490615cc1565b90915550505f8181526017602090815260408083206001600160a01b038f16845290915281208054849290613fb1908490615cc1565b9091555050604080516001600160a01b03808f1682528d1660208201529081018e9052606081018590526080810183905260a0810189905260c0810188905260e081018790527ff60d67b14614c8984f880fd3b3bc7ddc3c2913656340f454bf0c7431152bbda6906101000160405180910390a150505050945094509450945094565b5f806001600160a01b03831661405c5760405162461bcd60e51b81526004016108e890615c3b565b6040805160208101889052908101869052606081018590525f9060800160408051601f1981840301815291815281516020928301205f818152601684528281206001600160a01b0389168252909352912054909150806140f75760405162461bcd60e51b815260206004820152601660248201527527379039b430b932b9903337b9103932b1b2b4bb32b960511b60448201526064016108e8565b5f8281526014602090815260408083206001600160a01b03891684529091529020548061415f5760405162461bcd60e51b8152602060048201526016602482015275092dcecc2d8d2c840e4cac6cad2eccae440d2dcc8caf60531b60448201526064016108e8565b5f8381526015602090815260408083206001600160a01b038a168085529083528184205487855260178452828520918552925290912054600f54156141fb57600e546141b5908c908c908c9060ff165f80613998565b6141c161012c42615cc1565b10156141fb5760405162461bcd60e51b8152602060048201526009602482015268546f6f206561726c7960b81b60448201526064016108e8565b5f8581526015602090815260408083206001600160a01b038c16808552908352818420849055888452601683528184208185528352818420849055888452601783528184209084528252808320839055878352601290915281208054869290614265908490615b29565b9091555061427590508183615cc1565b5f8681526012602052604081206001018054909190614295908490615b29565b925050819055508360105f8282546142ad9190615b29565b925050819055508060115f8282546142c59190615cc1565b909155506142d590508589614be5565b6142df308561464b565b6009546040516370a0823160e01b81523060048201525f916201000090046001600160a01b0316906370a0823190602401602060405180830381865afa15801561432b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061434f9190615a58565b60095490915061436f906201000090046001600160a01b03168a85613935565b6143798382615b29565b6009546040516370a0823160e01b8152306004820152620100009091046001600160a01b0316906370a0823190602401602060405180830381865afa1580156143c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143e89190615a58565b10156144065760405162461bcd60e51b81526004016108e890615d2c565b50929a909950975050505050505050565b5f831161445e5760405162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590819195c1bdcda5d081b1a5b5a5d605a1b60448201526064016108e8565b5f82116144ad5760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964207769746864726177616c206c696d6974000000000000000060448201526064016108e8565b6144b681614e26565b50600b91909155600c55565b5f80806144da6144d56201518086615d85565b614eb5565b9196909550909350915050565b80158061455f5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015614539573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061455d9190615a58565b155b6145ca5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016108e8565b6040516001600160a01b03831660248201526044810182905261115290849063095ea7b360e01b90606401613961565b601880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f811161468b5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016108e8565b6001600160a01b0382165f908152600760205260409020548111156146f25760405162461bcd60e51b815260206004820152601b60248201527f4275726e20616d6f756e7420657863656564732062616c616e6365000000000060448201526064016108e8565b6001600160a01b0382165f9081526007602052604081208054839290614719908490615b29565b925050819055508060055f8282546147319190615b29565b90915550506040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b5f80614788868686615024565b9050600183600281111561479e5761479e615d98565b1480156147ba57505f84806147b5576147b5615d71565b868809115b156147cd576147ca600182615cc1565b90505b95945050505050565b5f61482a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150cd9092919063ffffffff16565b80519091501561115257808060200190518101906148489190615dac565b6111525760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108e8565b5f6107b28410156148e25760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b60448201526064016108e8565b8383835f62253d8c60046064600c6148fb600e88615dc7565b6149059190615ded565b61491188611324615e19565b61491b9190615e19565b6149259190615ded565b614930906003615e40565b61493a9190615ded565b600c80614948600e88615dc7565b6149529190615ded565b61495d90600c615e40565b614968600288615dc7565b6149729190615dc7565b61497e9061016f615e40565b6149889190615ded565b6004600c614997600e89615dc7565b6149a19190615ded565b6149ad896112c0615e19565b6149b79190615e19565b6149c3906105b5615e40565b6149cd9190615ded565b6149d9617d4b87615dc7565b6149e39190615e19565b6149ed9190615e19565b6149f79190615dc7565b614a019190615dc7565b98975050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526133349085906323b872dd60e01b90608401613961565b5f8111614a855760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016108e8565b614a8e816150db565b614ada5760405162461bcd60e51b815260206004820152601860248201527f4d617820737570706c79206c696d69742072656163686564000000000000000060448201526064016108e8565b8060055f828254614aeb9190615cc1565b90915550506001600160a01b0382165f9081526007602052604081208054839290614b17908490615cc1565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161476f565b6001600160a01b038084165f908152600860209081526040808320938616835292905220545f1981146133345781811015614bd65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e8565b6133348484610ed88585615b29565b5f8281526014602090815260408083206001600160a01b0385168452909152812054614c1390600190615b29565b5f84815260136020526040902080549192506001600160a01b0384169183908110614c4057614c40615cef565b5f918252602090912001546001600160a01b031614614c9a5760405162461bcd60e51b8152602060048201526016602482015275082c8c8e4cae6e65ed2dcc8caf040dad2e6dac2e8c6d60531b60448201526064016108e8565b5f83815260136020526040812080549190614cb6600184615b29565b81548110614cc657614cc6615cef565b5f918252602090912001546001600160a01b03908116915084168114614dc0575f858152601360205260409020805484908110614d0557614d05615cef565b5f918252602080832090910154878352601390915260409091206001600160a01b0390911690614d36600185615b29565b81548110614d4657614d46615cef565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508060135f8781526020019081526020015f208481548110614d9457614d94615cef565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055505b5f858152601360205260409020805480614ddc57614ddc615d18565b5f828152602080822083015f1990810180546001600160a01b03191690559092019092559581526014865260408082206001600160a01b0396909616825294909552505050812055565b5f81118015614e36575060055481115b614e775760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206d617820737570706c7960701b60448201526064016108e8565b600680549082905560408051828152602081018490527fe4fd3e707c42fe7e4405214e86e4f796ecfa58dfe4d17def31221e34e2e4b2b59101613929565b5f8080838162253d8c614ecb8362010bd9615e19565b614ed59190615e19565b90505f62023ab1614ee7836004615e40565b614ef19190615ded565b90506004614f028262023ab1615e40565b614f0d906003615e19565b614f179190615ded565b614f219083615dc7565b91505f62164b09614f33846001615e19565b614f3f90610fa0615e40565b614f499190615ded565b90506004614f59826105b5615e40565b614f639190615ded565b614f6d9084615dc7565b614f7890601f615e19565b92505f61098f614f89856050615e40565b614f939190615ded565b90505f6050614fa48361098f615e40565b614fae9190615ded565b614fb89086615dc7565b9050614fc5600b83615ded565b9450614fd285600c615e40565b614fdd836002615e19565b614fe79190615dc7565b91508483614ff6603187615dc7565b615001906064615e40565b61500b9190615e19565b6150159190615e19565b9a919950975095505050505050565b5f80805f19858709858702925082811083820303915050805f0361505b5783828161505157615051615d71565b0492505050610ee5565b808411615066575f80fd5b5f8486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091025f889003889004909101858311909403939093029303949094049190911702949350505050565b606061227884845f856150f5565b5f816005546006546150ed9190615b29565b101592915050565b6060824710156151565760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016108e8565b5f80866001600160a01b031685876040516151719190615e6f565b5f6040518083038185875af1925050503d805f81146151ab576040519150601f19603f3d011682016040523d82523d5f602084013e6151b0565b606091505b50915091506139e8878383876060831561522a5782515f03615223576001600160a01b0385163b6152235760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108e8565b5081612278565b612278838381511561523f5781518083602001fd5b8060405162461bcd60e51b81526004016108e89190615507565b634e487b7160e01b5f52604160045260245ffd5b604051610280810167ffffffffffffffff8111828210171561529157615291615259565b60405290565b5f82601f8301126152a6575f80fd5b813567ffffffffffffffff8111156152c0576152c0615259565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156152ef576152ef615259565b604052818152838201602001851015615306575f80fd5b816020850160208301375f918101602001919091529392505050565b6001600160a01b0381168114610dc6575f80fd5b8035610b3c81615322565b8015158114610dc6575f80fd5b8035610b3c81615341565b5f60208284031215615369575f80fd5b813567ffffffffffffffff81111561537f575f80fd5b82016102808185031215615391575f80fd5b61539961526d565b813581526020808301359082015260408083013590820152606080830135908201526080808301359082015260a0808301359082015260c0808301359082015260e080830135908201526101008083013590820152610120808301359082015261014082013567ffffffffffffffff811115615413575f80fd5b61541f86828501615297565b610140830152506154336101608301615336565b6101608201526154466101808301615336565b6101808201526154596101a08301615336565b6101a082015261546c6101c08301615336565b6101c082015261547f6101e08301615336565b6101e08201526154926102008301615336565b6102008201526154a56102208301615336565b6102208201526154b86102408301615336565b6102408201526154cb610260830161534e565b610260820152949350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610ee560208301846154d9565b5f60208284031215615529575f80fd5b5035919050565b5f8060408385031215615541575f80fd5b823561554c81615322565b946020939093013593505050565b5f805f6060848603121561556c575f80fd5b833561557781615322565b9250602084013561558781615322565b929592945050506040919091013590565b5f602082840312156155a8575f80fd5b8135610ee581615322565b5f805f606084860312156155c5575f80fd5b83356155d081615322565b95602085013595506040909401359392505050565b60ff81168114610dc6575f80fd5b5f805f8060808587031215615606575f80fd5b843561561181615322565b93506020850135615621816155e5565b9250604085013567ffffffffffffffff81111561563c575f80fd5b61564887828801615297565b925050606085013567ffffffffffffffff811115615664575f80fd5b61567087828801615297565b91505092959194509250565b5f806040838503121561568d575f80fd5b823561569881615322565b915060208301356156a881615322565b809150509250929050565b5f805f606084860312156156c5575f80fd5b505081359360208301359350604090920135919050565b5f80604083850312156156ed575f80fd5b8235915060208301356156a881615322565b5f805f60608486031215615711575f80fd5b83359250602084013561572381615322565b9150604084013561573381615322565b809150509250925092565b5f805f805f805f805f6101208a8c031215615757575f80fd5b8935985060208a0135975060408a0135965060608a0135955060808a013561577e81615322565b945060a08a013561578e81615322565b935060c08a013561579e81615322565b925060e08a01356157ae81615322565b91506101008a01356157bf816155e5565b809150509295985092959850929598565b5f80604083850312156157e1575f80fd5b82356157ec81615341565b915060208301356156a881615341565b5f805f806080858703121561580f575f80fd5b843593506020850135925060408501359150606085013561582f81615322565b939692955090935050565b5f806040838503121561584b575f80fd5b50508035926020909101359150565b5f805f806080858703121561586d575f80fd5b5050823594602084013594506040840135936060013592509050565b6020808252600e908201526d139bdd0818dbdb999a59dd5c995960921b604082015260600190565b6020808252601390820152724c6f616e73204f70657261746f72206f6e6c7960681b604082015260600190565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260c082015160e082015260e08201516101008201526101008201516101208201526101208201516101408201525f6101408301516102806101608401526159666102a08401826154d9565b90506101608401516159846101808501826001600160a01b03169052565b506101808401516001600160a01b0381166101a0850152506101a08401516001600160a01b0381166101c0850152506101c08401516001600160a01b0381166101e0850152506101e08401516001600160a01b038116610200850152506102008401516001600160a01b038116610220850152506102208401516001600160a01b038116610240850152506102408401516001600160a01b03811661026085015250610260840151801515610280850152509392505050565b5f60208284031215615a4d575f80fd5b8151610ee581615322565b5f60208284031215615a68575f80fd5b5051919050565b600181811c90821680615a8357607f821691505b602082108103615aa157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601c908201527f436f6e7472616374206e6f7420696e697469616c697a65642079657400000000604082015260600190565b60208082526017908201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610c4457610c44615b15565b601f82111561115257805f5260205f20601f840160051c81016020851015615b615750805b601f840160051c820191505b8181101561107c575f8155600101615b6d565b815167ffffffffffffffff811115615b9a57615b9a615259565b615bae81615ba88454615a6f565b84615b3c565b6020601f821160018114615be0575f8315615bc95750848201515b5f19600385901b1c1916600184901b17845561107c565b5f84815260208120601f198516915b82811015615c0f5787850151825560209485019460019092019101615bef565b5084821015615c2c57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60208082526010908201526f24b73b30b634b2103932b1b2b4bb32b960811b604082015260600190565b60208082526016908201527514da185c995cc8185b5bdd5b9d081c995c5d5a5c995960521b604082015260600190565b60208082526012908201527115da5d1a191c985dd85b1cc81c185d5cd95960721b604082015260600190565b80820180821115610c4457610c44615b15565b5f60208284031215615ce4575f80fd5b8151610ee5816155e5565b634e487b7160e01b5f52603260045260245ffd5b5f81615d1157615d11615b15565b505f190190565b634e487b7160e01b5f52603160045260245ffd5b60208082526014908201527310985b185b98d94818da1958dac819985a5b195960621b604082015260600190565b8082028115828204841417610c4457610c44615b15565b634e487b7160e01b5f52601260045260245ffd5b5f82615d9357615d93615d71565b500490565b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215615dbc575f80fd5b8151610ee581615341565b8181035f831280158383131683831282161715615de657615de6615b15565b5092915050565b5f82615dfb57615dfb615d71565b600160ff1b82145f1984141615615e1457615e14615b15565b500590565b8082018281125f831280158216821582161715615e3857615e38615b15565b505092915050565b8082025f8212600160ff1b84141615615e5b57615e5b615b15565b8181058314821517610c4457610c44615b15565b5f82518060208501845e5f92019182525091905056fea264697066735822122051ad39efa317233bce494ff6bbff2c2c32aef832f31fa92c121a1dbf1ae370f564736f6c634300081a0033

Deployed Bytecode Sourcemap

116540:6507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113390:938;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4281:32:1;;;4263:51;;4251:2;4236:18;113390:938:0;;;;;;;;75350:128;;;:::i;:::-;;;4471:25:1;;;4459:2;4444:18;75350:128:0;4325:177:1;62569:18:0;;;:::i;:::-;;;;;;;:::i;76413:182::-;;;;;;:::i;:::-;;:::i;66160:197::-;;;;;;:::i;:::-;;:::i;:::-;;;5890:14:1;;5883:22;5865:41;;5853:2;5838:18;66160:197:0;5725:187:1;75859:180:0;;;;;;:::i;:::-;;:::i;66777:120::-;;;:::i;122363:244::-;;;;;;:::i;:::-;;:::i;:::-;;64990:466;;;;;;:::i;:::-;;:::i;82621:26::-;;;;;;112846:35;;;;;-1:-1:-1;;;;;112846:35:0;;;110847:274;;;:::i;109104:178::-;;;;;;:::i;:::-;;:::i;62423:21::-;;;;;;;;;;;;6854:4:1;6842:17;;;6824:36;;6812:2;6797:18;62423:21:0;6682:184:1;108657:325:0;;;;;;:::i;:::-;;:::i;107424:381::-;;;;;;:::i;:::-;;:::i;75088:127::-;;;:::i;76603:155::-;;;;;;:::i;:::-;;:::i;117004:564::-;;;;;;:::i;:::-;;:::i;106025:28::-;;;;;-1:-1:-1;;;;;106025:28:0;;;76047:168;;;;;;:::i;:::-;;:::i;122760:284::-;;;;;;:::i;:::-;;:::i;71146:26::-;;;;;;;;;104735:779;;;;;;:::i;:::-;;:::i;96984:466::-;;;;;;:::i;:::-;;:::i;:::-;;;;9351:25:1;;;9407:2;9392:18;;9385:34;;;;9324:18;96984:466:0;9177:248:1;73400:555:0;;;;;;:::i;:::-;;:::i;67127:133::-;;;;;;:::i;:::-;;:::i;87592:677::-;;;;;;:::i;:::-;;:::i;118730:1340::-;;;;;;:::i;:::-;;:::i;71724:28::-;;;;;;121900:190;;;;;;:::i;:::-;;:::i;105639:99::-;;;:::i;71512:31::-;;;;;;110218:32;;;;;;74386:571;;;;;;:::i;:::-;;:::i;62488:20::-;;;:::i;82724:36::-;;;;;;71430:28;;;;;-1:-1:-1;;;;;71430:28:0;;;108041:351;;;;;;:::i;:::-;;:::i;64281:179::-;;;;;;:::i;:::-;;:::i;66497:131::-;;;:::i;89042:636::-;;;;;;:::i;:::-;;:::i;75675:176::-;;;;;;:::i;:::-;;:::i;84690:1061::-;;;;;;:::i;:::-;;:::i;121250:303::-;;;;;;:::i;:::-;;:::i;96263:341::-;;;;;;:::i;:::-;;:::i;76766:122::-;;;;;;:::i;:::-;;:::i;76223:182::-;;;;;;:::i;:::-;;:::i;115765:319::-;;;:::i;93667:406::-;;;:::i;:::-;;;;12838:25:1;;;12894:2;12879:18;;12872:34;;;;12922:18;;;12915:34;12980:2;12965:18;;12958:34;12825:3;12810:19;93667:406:0;12607:391:1;106801:277:0;;;;;;:::i;:::-;;:::i;76896:197::-;;;;;;:::i;:::-;;:::i;67920:107::-;;;:::i;77101:146::-;;;;;;:::i;:::-;;:::i;82846:35::-;;;;;;112958:30;;;;;;:::i;:::-;;:::i;95431:340::-;;;;;;:::i;:::-;;:::i;67618:179::-;;;;;;:::i;:::-;;:::i;114532:1106::-;;;;;;:::i;:::-;;:::i;116251:111::-;116334:13;:20;116251:111;;111410:541;;;;;;:::i;:::-;;:::i;82520:28::-;;;;;;;;;71600:34;;;;;;71247:29;;;;;;;;;;;;120312:385;;;;;;:::i;:::-;;:::i;90241:3021::-;;;;;;:::i;:::-;;:::i;94565:386::-;;;;;;:::i;:::-;;:::i;113390:938::-;113528:7;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;;;;;;;;;106286:13:::2;::::0;-1:-1:-1;;;;;106286:13:0::2;106272:10;:27;106264:59;;;;-1:-1:-1::0;;;106264:59:0::2;;;;;;;:::i;:::-;113580:4:::3;113548:21;::::0;::::3;:37:::0;113646:20:::3;::::0;113617:73:::3;::::0;-1:-1:-1;;;113617:73:0;;113598:16:::3;::::0;-1:-1:-1;;;;;113646:20:0::3;::::0;113617:61:::3;::::0;:73:::3;::::0;113548:10;;113617:73:::3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;113810:24:0;::::3;;::::0;;;:14:::3;:24;::::0;;;;:38:::3;;::::0;113598:92;;-1:-1:-1;113810:38:0::3;;113809:39;113801:78;;;::::0;-1:-1:-1;;;113801:78:0;;17553:2:1;113801:78:0::3;::::0;::::3;17535:21:1::0;17592:2;17572:18;;;17565:30;17631:28;17611:18;;;17604:56;17677:18;;113801:78:0::3;17351:350:1::0;113801:78:0::3;113892:27;113946:8;-1:-1:-1::0;;;;;113922:53:0::3;;:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;114017:151;::::0;;::::3;::::0;::::3;::::0;;;;;-1:-1:-1;114017:151:0::3;::::0;;::::3;::::0;;;114152:4:::3;114017:151:::0;;;;;;-1:-1:-1;;;;;113990:24:0;::::3;::::0;;;:14:::3;:24:::0;;;;;:178;;;;;;;;::::3;::::0;;::::3;::::0;;::::3;::::0;;-1:-1:-1;;113990:178:0::3;::::0;::::3;;::::0;;;::::3;::::0;;;114181:13:::3;:28:::0;;;;::::3;::::0;;;;;;;;::::3;::::0;;-1:-1:-1;;;;;;114181:28:0::3;::::0;::::3;::::0;;114259:32:::3;::::0;::::3;::::0;114227:65;;18069:51:1;;;18136:18;;;18129:34;;;;114017:151:0;;-1:-1:-1;114227:65:0::3;::::0;18042:18:1;114227:65:0::3;;;;;;;-1:-1:-1::0;114312:8:0;-1:-1:-1;61218:20:0;60652:1;61780:43;;61597:234;61218:20;113390:938;;;:::o;75350:128::-;72280:16;;75426:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;75453:17:::1;:15;:17::i;:::-;75446:24;;75350:128:::0;:::o;62569:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76413:182::-;72280:16;;76505:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;76532:55:::1;76549:6;76557:29;76532:16;:55::i;:::-;76525:62:::0;76413:182;-1:-1:-1;;76413:182:0:o;66160:197::-;66267:4;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;61174:21:::1;:19;:21::i;:::-;66284:43:::2;66300:10;66312:7;66321:5;66284:15;:43::i;:::-;-1:-1:-1::0;66345:4:0::2;61206:1;61218:20:::1;60652:1:::0;61780:43;;61597:234;75859:180;72280:16;;75951:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;75978:53:::1;75995:6;76003:27;75978:16;:53::i;66777:120::-:0;66850:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;66877:12:0::1;::::0;66777:120;:::o;122363:244::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;5858:6:::2;::::0;-1:-1:-1;;;;;5858:6:0::2;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::2;;;;;;;:::i;:::-;122491:11:::3;;122476;:26;122472:91;;122512:21;::::0;:26;122504:59:::3;;;::::0;-1:-1:-1;;;122504:59:0;;19470:2:1;122504:59:0::3;::::0;::::3;19452:21:1::0;19509:2;19489:18;;;19482:30;-1:-1:-1;;;19528:18:1;;;19521:50;19588:18;;122504:59:0::3;19268:344:1::0;122504:59:0::3;122574:11;:25:::0;;;61218:20;60652:1;61780:43;;61597:234;61218:20;122363:244;:::o;64990:466::-;65111:4;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;61174:21:::1;:19;:21::i;:::-;-1:-1:-1::0;;;;;65155:17:0;::::2;65128:24;65155:17:::0;;;:11:::2;:17;::::0;;;;;;;65173:10:::2;65155:29:::0;;;;;;;;65203:25;;::::2;;65195:62;;;::::0;-1:-1:-1;;;65195:62:0;;19819:2:1;65195:62:0::2;::::0;::::2;19801:21:1::0;19858:2;19838:18;;;19831:30;19897:26;19877:18;;;19870:54;19941:18;;65195:62:0::2;19617:348:1::0;65195:62:0::2;65279:38;65301:4;65307:2;65311:5;65279:21;:38::i;:::-;65270:82;;;::::0;-1:-1:-1;;;65270:82:0;;20172:2:1;65270:82:0::2;::::0;::::2;20154:21:1::0;20211:2;20191:18;;;20184:30;20250:32;20230:18;;;20223:60;20300:18;;65270:82:0::2;19970:354:1::0;65270:82:0::2;65365:59;65381:4:::0;65387:10:::2;65399:24;65418:5:::0;65399:16;:24:::2;:::i;:::-;65365:15;:59::i;:::-;-1:-1:-1::0;;65444:4:0::2;61780:43:::0;;;61218:20:::1;64990:466:::0;;;;;:::o;110847:274::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;110604:10:::2;110589:26;::::0;;;:14:::2;:26;::::0;;;;:40:::2;;::::0;::::2;;110581:65;;;::::0;-1:-1:-1;;;110581:65:0;;20796:2:1;110581:65:0::2;::::0;::::2;20778:21:1::0;20835:2;20815:18;;;20808:30;-1:-1:-1;;;20854:18:1;;;20847:42;20906:18;;110581:65:0::2;20594:336:1::0;110581:65:0::2;110972:10:::3;110998:1;110957:26:::0;;;:14:::3;:26;::::0;;;;:38:::3;;::::0;:42;110953:107:::3;;111037:10;111022:26;::::0;;;:14:::3;:26;::::0;;;;:38:::3;;::::0;111001:17:::3;:59:::0;;111022:38;;111001:17;;:59:::3;::::0;111022:38;;111001:59:::3;:::i;:::-;::::0;;;-1:-1:-1;;110953:107:0::3;111086:10;111112:1;111071:26:::0;;;:14:::3;:26;::::0;;;;:38:::3;;:42:::0;61218:20;60652:1;61780:43;;61597:234;61218:20;110847:274::o;109104:178::-;72280:16;;;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;106286:13:::1;::::0;-1:-1:-1;;;;;106286:13:0::1;106272:10;:27;106264:59;;;;-1:-1:-1::0;;;106264:59:0::1;;;;;;;:::i;:::-;109192:26:::2;109209:8;109192:16;:26::i;:::-;109253:8;-1:-1:-1::0;;;;;109229:43:0::2;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;109104:178:::0;:::o;108657:325::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;106286:13:::2;::::0;-1:-1:-1;;;;;106286:13:0::2;106272:10;:27;106264:59;;;;-1:-1:-1::0;;;106264:59:0::2;;;;;;;:::i;:::-;108852:26:::3;108869:8;108852:16;:26::i;:::-;108889:85;::::0;-1:-1:-1;;;108889:85:0;;::::3;::::0;::::3;9351:25:1::0;;;9392:18;;;9385:34;;;-1:-1:-1;;;;;108889:42:0;::::3;::::0;::::3;::::0;9324:18:1;;108889:85:0::3;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;61218:20:::0;60652:1;61780:43;;61597:234;61218:20;108657:325;;;:::o;107424:381::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;106286:13:::2;::::0;-1:-1:-1;;;;;106286:13:0::2;106272:10;:27;106264:59;;;;-1:-1:-1::0;;;106264:59:0::2;;;;;;;:::i;:::-;107647:26:::3;107664:8;107647:16;:26::i;:::-;107684:113;::::0;-1:-1:-1;;;107684:113:0;;::::3;::::0;::::3;9351:25:1::0;;;9392:18;;;9385:34;;;-1:-1:-1;;;;;107684:48:0;::::3;::::0;::::3;::::0;9324:18:1;;107684:113:0::3;9177:248:1::0;75088:127:0;75155:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;75190:16:0::1;::::0;;;::::1;-1:-1:-1::0;;;;;75190:16:0::1;::::0;75088:127::o;76603:155::-;72280:16;;76683:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;76710:17:::1;:15;:17::i;:::-;:40;;76749:1;76710:40;;;-1:-1:-1::0;;76730:16:0::1;::::0;;76603:155::o;117004:564::-;56987:19;57010:13;;;;;;57009:14;;57057:34;;;;-1:-1:-1;57075:12:0;;57090:1;57075:12;;;;:16;57057:34;57056:97;;;-1:-1:-1;57125:4:0;29411:19;:23;;;57097:55;;-1:-1:-1;57135:12:0;;;;;:17;57097:55;57034:193;;;;-1:-1:-1;;;57034:193:0;;21137:2:1;57034:193:0;;;21119:21:1;21176:2;21156:18;;;21149:30;21215:34;21195:18;;;21188:62;-1:-1:-1;;;21266:18:1;;;21259:44;21320:19;;57034:193:0;20935:410:1;57034:193:0;57238:12;:16;;-1:-1:-1;;57238:16:0;57253:1;57238:16;;;57265:67;;;;57300:13;:20;;-1:-1:-1;;57300:20:0;;;;;57265:67;-1:-1:-1;;;;;117198:22:0;::::1;117190:49;;;::::0;-1:-1:-1;;;117190:49:0;;21552:2:1;117190:49:0::1;::::0;::::1;21534:21:1::0;21591:2;21571:18;;;21564:30;-1:-1:-1;;;21610:18:1;;;21603:44;21664:18;;117190:49:0::1;21350:338:1::0;117190:49:0::1;117280:8;:24:::0;;-1:-1:-1;;117280:24:0::1;;::::0;::::1;;::::0;;117315:6:::1;:20;117324:11:::0;117315:6;:20:::1;:::i;:::-;-1:-1:-1::0;117346:4:0::1;:16;117353:9:::0;117346:4;:16:::1;:::i;:::-;-1:-1:-1::0;117474:14:0::1;:21:::0;;-1:-1:-1;;117506:24:0;;;;;117543:6:::1;:17:::0;;-1:-1:-1;;;;;;117543:17:0::1;-1:-1:-1::0;;;;;117543:17:0;::::1;;::::0;;57354:102;;;;57405:5;57389:21;;-1:-1:-1;;57389:21:0;;;57430:14;;-1:-1:-1;6824:36:1;;57430:14:0;;6812:2:1;6797:18;57430:14:0;;;;;;;56976:487;117004:564;;;;:::o;76047:168::-;72280:16;;76137:14;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;76177:30:::1;76200:6;76177:22;:30::i;122760:284::-:0;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;5858:6:::2;::::0;-1:-1:-1;;;;;5858:6:0::2;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::2;;;;;;;:::i;:::-;122898:4:::3;122879:16;:23;122871:48;;;::::0;-1:-1:-1;;;122871:48:0;;24218:2:1;122871:48:0::3;::::0;::::3;24200:21:1::0;24257:2;24237:18;;;24230:30;-1:-1:-1;;;24276:18:1;;;24269:42;24328:18;;122871:48:0::3;24016:336:1::0;122871:48:0::3;122955:16;122938:13;;:33:::0;122930:61:::3;;;::::0;-1:-1:-1;;;122930:61:0;;24559:2:1;122930:61:0::3;::::0;::::3;24541:21:1::0;24598:2;24578:18;;;24571:30;-1:-1:-1;;;24617:18:1;;;24610:45;24672:18;;122930:61:0::3;24357:339:1::0;122930:61:0::3;123004:13;:32:::0;;;61218:20;60652:1;61780:43;;61597:234;104735:779;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;5858:6:::2;::::0;-1:-1:-1;;;;;5858:6:0::2;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;104898:29:0;::::3;::::0;;::::3;::::0;:65:::3;;-1:-1:-1::0;;;;;;104931:32:0;::::3;104958:4;104931:32;;104898:65;104890:93;;;::::0;-1:-1:-1;;;104890:93:0;;24903:2:1;104890:93:0::3;::::0;::::3;24885:21:1::0;24942:2;24922:18;;;24915:30;-1:-1:-1;;;24961:18:1;;;24954:45;25016:18;;104890:93:0::3;24701:339:1::0;104890:93:0::3;105021:30;::::0;-1:-1:-1;;;105021:30:0;;105045:4:::3;105021:30;::::0;::::3;4263:51:1::0;104996:22:0::3;::::0;-1:-1:-1;;;;;105021:15:0;::::3;::::0;::::3;::::0;4236:18:1;;105021:30:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;104996:55;;105087:1;105070:14;:18;105062:51;;;::::0;-1:-1:-1;;;105062:51:0;;25247:2:1;105062:51:0::3;::::0;::::3;25229:21:1::0;25286:2;25266:18;;;25259:30;-1:-1:-1;;;25305:18:1;;;25298:50;25365:18;;105062:51:0::3;25045:344:1::0;105062:51:0::3;105156:16;::::0;-1:-1:-1;;;;;105156:16:0;;;::::3;::::0;::::3;105130:43:::0;;::::3;::::0;105126:220:::3;;105313:21;105323:4;105329::::0;105313:9:::3;:21::i;:::-;105358:62;105381:5;105388:15;105405:14;105358:22;:62::i;:::-;105438:68;::::0;;25596:25:1;;;-1:-1:-1;;;;;25657:32:1;;;25652:2;25637:18;;25630:60;25726:32;;25706:18;;;25699:60;105438:68:0;;::::3;::::0;;;;25584:2:1;105438:68:0;;::::3;104879:635;61218:20:::0;60652:1;61780:43;;61597:234;61218:20;104735:779;;:::o;96984:466::-;72280:16;;97138:25;;;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;97233:28:::1;::::0;;::::1;::::0;::::1;25972:25:1::0;;;26013:18;;;26006:34;;;26056:18;;;26049:34;;;97200:20:0::1;::::0;25945:18:1;;97233:28:0::1;::::0;;-1:-1:-1;;97233:28:0;;::::1;::::0;;;;;;97223:39;;97233:28:::1;97223:39:::0;;::::1;::::0;97295:40:::1;::::0;;;:26:::1;:40:::0;;;;;;:47;97420:15:::1;::::0;97295:47;;-1:-1:-1;97223:39:0;;-1:-1:-1;97370:72:0::1;::::0;97402:4;;97408:5;;97415:3;;97420:15:::1;;::::0;97295:40;97370:31:::1;:72::i;:::-;97353:89;;97189:261;96984:466:::0;;;;;;:::o;73400:555::-;73550:14;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;72545:14:::2;::::0;::::2;;72544:15;72536:43;;;::::0;-1:-1:-1;;;72536:43:0;;26296:2:1;72536:43:0::2;::::0;::::2;26278:21:1::0;26335:2;26315:18;;;26308:30;-1:-1:-1;;;26354:18:1;;;26347:45;26409:18;;72536:43:0::2;26094:339:1::0;72536:43:0::2;-1:-1:-1::0;;;;;73585:22:0;::::3;::::0;;::::3;::::0;:51:::3;;-1:-1:-1::0;;;;;;73611:25:0;::::3;73631:4;73611:25;;73585:51;73577:80;;;;-1:-1:-1::0;;;73577:80:0::3;;;;;;;:::i;:::-;73685:1;73676:6;:10;73668:45;;;::::0;-1:-1:-1;;;73668:45:0;;26985:2:1;73668:45:0::3;::::0;::::3;26967:21:1::0;27024:2;27004:18;;;26997:30;-1:-1:-1;;;27043:18:1;;;27036:52;27105:18;;73668:45:0::3;26783:346:1::0;73668:45:0::3;73742:20;73753:8;73742:10;:20::i;:::-;73732:6;:30;;73724:64;;;::::0;-1:-1:-1;;;73724:64:0;;27336:2:1;73724:64:0::3;::::0;::::3;27318:21:1::0;27375:2;27355:18;;;27348:30;-1:-1:-1;;;27394:18:1;;;27387:51;27455:18;;73724:64:0::3;27134:345:1::0;73724:64:0::3;73810:22;73825:6;73810:14;:22::i;:::-;73801:31;;73860:1;73851:6;:10;73843:45;;;;-1:-1:-1::0;;;73843:45:0::3;;;;;;;:::i;:::-;73901:46;73910:10;73922:8;73932:6;73940;73901:8;:46::i;67127:133::-:0;67210:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;67237:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;;;67127:133::o;87592:677::-;87786:14;87812:22;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;72661:17:::2;::::0;::::2;::::0;::::2;;;72660:18;72652:49;;;;-1:-1:-1::0;;;72652:49:0::2;;;;;;;:::i;:::-;87853:12:::3;87876:13:::0;87900:11:::3;87967:68;87990:6;87998:10;88010:12;88024:10;87967:22;:68::i;:::-;88132:11;::::0;87922:113;;-1:-1:-1;87922:113:0;;-1:-1:-1;87922:113:0;;-1:-1:-1;87922:113:0;-1:-1:-1;87922:113:0;-1:-1:-1;88147:1:0::3;88132:16:::0;88128:134:::3;;88182:15;88165:32;;88212:38;88219:4;88225:5;88232:3;88237:12;88212:6;:38::i;:::-;;;88128:134;87842:427;;;61218:20:::0;60652:1;61780:43;;61597:234;61218:20;87592:677;;;;;;:::o;118730:1340::-;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;61174:21:::1;:19;:21::i;:::-;72412:16:::2;::::0;;;::::2;-1:-1:-1::0;;;;;72412:16:0::2;72404:39:::0;72396:70:::2;;;::::0;-1:-1:-1;;;72396:70:0;;28384:2:1;72396:70:0::2;::::0;::::2;28366:21:1::0;28423:2;28403:18;;;28396:30;-1:-1:-1;;;28442:18:1;;;28435:48;28500:18;;72396:70:0::2;28182:342:1::0;72396:70:0::2;5858:6:::3;::::0;-1:-1:-1;;;;;5858:6:0::3;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::3;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;119182:30:0;::::4;119174:60;;;::::0;-1:-1:-1;;;119174:60:0;;28731:2:1;119174:60:0::4;::::0;::::4;28713:21:1::0;28770:2;28750:18;;;28743:30;-1:-1:-1;;;28789:18:1;;;28782:47;28846:18;;119174:60:0::4;28529:341:1::0;119174:60:0::4;-1:-1:-1::0;;;;;119253:37:0;::::4;119245:67;;;::::0;-1:-1:-1;;;119245:67:0;;29077:2:1;119245:67:0::4;::::0;::::4;29059:21:1::0;29116:2;29096:18;;;29089:30;-1:-1:-1;;;29135:18:1;;;29128:47;29192:18;;119245:67:0::4;28875:341:1::0;119245:67:0::4;-1:-1:-1::0;;;;;119331:34:0;::::4;119323:65;;;::::0;-1:-1:-1;;;119323:65:0;;29423:2:1;119323:65:0::4;::::0;::::4;29405:21:1::0;29462:2;29442:18;;;29435:30;-1:-1:-1;;;29481:18:1;;;29474:48;29539:18;;119323:65:0::4;29221:342:1::0;119323:65:0::4;119427:2;119407:17;:22;;;119399:58;;;::::0;-1:-1:-1;;;119399:58:0;;29770:2:1;119399:58:0::4;::::0;::::4;29752:21:1::0;29809:2;29789:18;;;29782:30;29848:25;29828:18;;;29821:53;29891:18;;119399:58:0::4;29568:347:1::0;119399:58:0::4;119505:16;:45:::0;;-1:-1:-1;;;;;;119505:45:0::4;::::0;-1:-1:-1;;;;;119505:45:0;::::4;;;::::0;;119561:85:::4;119583:19:::0;119604:22;119628:17;119561:21:::4;:85::i;:::-;119694:13;:32:::0;;-1:-1:-1;;;;;;119694:32:0;;::::4;-1:-1:-1::0;;;;;119694:32:0;;::::4;::::0;;;::::4;::::0;;;119737:20:::4;:46:::0;;;::::4;::::0;;::::4;;::::0;;119794:13:::4;:36:::0;;;;::::4;::::0;;::::4;::::0;;;::::4;::::0;;-1:-1:-1;119873:28:0;;;119912:15:::4;:35:::0;;-1:-1:-1;;119912:35:0::4;;::::0;::::4;;::::0;;120004:14:::4;:22:::0;;-1:-1:-1;;120037:25:0;;;-1:-1:-1;61780:43:0;;118730:1340;;;;;;;;;:::o;121900:190::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;5858:6:::2;::::0;-1:-1:-1;;;;;5858:6:0::2;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::2;;;;;;;:::i;:::-;122038:44:::3;122048:14;122064:17;122038:9;:44::i;:::-;61218:20:::0;60652:1;61780:43;;61597:234;105639:99;105697:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;105724:6:0::1;::::0;-1:-1:-1;;;;;105724:6:0::1;105639:99:::0;:::o;74386:571::-;74533:14;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;72545:14:::2;::::0;::::2;;72544:15;72536:43;;;::::0;-1:-1:-1;;;72536:43:0;;26296:2:1;72536:43:0::2;::::0;::::2;26278:21:1::0;26335:2;26315:18;;;26308:30;-1:-1:-1;;;26354:18:1;;;26347:45;26409:18;;72536:43:0::2;26094:339:1::0;72536:43:0::2;-1:-1:-1::0;;;;;74568:22:0;::::3;::::0;;::::3;::::0;:51:::3;;-1:-1:-1::0;;;;;;74594:25:0;::::3;74614:4;74594:25;;74568:51;74560:80;;;;-1:-1:-1::0;;;74560:80:0::3;;;;;;;:::i;:::-;74668:1;74659:6;:10;74651:45;;;;-1:-1:-1::0;;;74651:45:0::3;;;;;;;:::i;:::-;74725:17;74733:8;74725:7;:17::i;:::-;74715:6;:27;;74707:67;;;::::0;-1:-1:-1;;;74707:67:0;;30122:2:1;74707:67:0::3;::::0;::::3;30104:21:1::0;30161:2;30141:18;;;30134:30;30200:29;30180:18;;;30173:57;30247:18;;74707:67:0::3;29920:351:1::0;74707:67:0::3;74796:19;74808:6;74796:11;:19::i;:::-;74787:28;;74844:20;74855:8;74844:10;:20::i;:::-;74834:6;:30;;74826:64;;;::::0;-1:-1:-1;;;74826:64:0;;27336:2:1;74826:64:0::3;::::0;::::3;27318:21:1::0;27375:2;27355:18;;;27348:30;-1:-1:-1;;;27394:18:1;;;27387:51;27455:18;;74826:64:0::3;27134:345:1::0;74826:64:0::3;74903:46;74912:10;74924:8;74934:6;74942;74903:8;:46::i;62488:20::-:0;;;;;;;:::i;108041:351::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;106286:13:::2;::::0;-1:-1:-1;;;;;106286:13:0::2;106272:10;:27;106264:59;;;;-1:-1:-1::0;;;106264:59:0::2;;;;;;;:::i;:::-;108240:26:::3;108257:8;108240:16;:26::i;:::-;108277:107;::::0;-1:-1:-1;;;108277:107:0;;::::3;::::0;::::3;4471:25:1::0;;;-1:-1:-1;;;;;108277:66:0;::::3;::::0;::::3;::::0;4444:18:1;;108277:107:0::3;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;61218:20:::0;60652:1;61780:43;;61597:234;64281:179;64384:4;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;61174:21:::1;:19;:21::i;:::-;64408:44:::2;64430:10;64442:2;64446:5;64408:21;:44::i;:::-;64401:51;;61218:20:::1;60652:1:::0;61780:43;;61597:234;66497:131;66571:5;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;60154:5:0;60179:12;;;;75350:128::o;89042:636::-;89233:7;89242;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;72661:17:::2;::::0;::::2;::::0;::::2;;;72660:18;72652:49;;;;-1:-1:-1::0;;;72652:49:0::2;;;;;;;:::i;:::-;89632:38:::3;89639:4;89645:5;89652:3;89657:12;89632:6;:38::i;:::-;89625:45;;;;61218:20:::0;60652:1;61780:43;;61597:234;61218:20;89042:636;;;;;;;:::o;75675:176::-;72280:16;;75763:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;75790:53:::1;75807:6;75815:27;75790:16;:53::i;84690:1061::-:0;85346:37;;-1:-1:-1;;;85346:37:0;;30478:2:1;85346:37:0;;;30460:21:1;30517:2;30497:18;;;30490:30;30556:29;30536:18;;;30529:57;84803:7:0;;30603:18:1;;85346:37:0;30276:351:1;121250:303:0;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;5858:6:::2;::::0;-1:-1:-1;;;;;5858:6:0::2;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::2;;;;;;;:::i;:::-;121460:85:::3;121482:19;121503:22;121527:17;121460:21;:85::i;:::-;61218:20:::0;60652:1;61780:43;;61597:234;96263:341;96450:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;96503:28:::1;::::0;;::::1;::::0;::::1;25972:25:1::0;;;26013:18;;;26006:34;;;26056:18;;;26049:34;;;96470:20:0::1;::::0;25945:18:1;;96503:28:0::1;::::0;;-1:-1:-1;;96503:28:0;;::::1;::::0;;;;;;96493:39;;96503:28:::1;96493:39:::0;;::::1;::::0;96552:30:::1;::::0;;;:16:::1;:30:::0;;;;;-1:-1:-1;;;;;96552:44:0;::::1;::::0;;;;;;;;;-1:-1:-1;;63820:1:0::1;96263:341:::0;;;;;;:::o;76766:122::-;72280:16;;76843:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;-1:-1:-1;;76870:10:0::1;::::0;;76766:122::o;76223:182::-;72280:16;;76315:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;76342:55:::1;76359:6;76367:29;76342:16;:55::i;115765:319::-:0;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;5858:6:::2;::::0;-1:-1:-1;;;;;5858:6:0::2;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::2;;;;;;;:::i;:::-;115875:1:::3;115852:20;;:24;115844:55;;;::::0;-1:-1:-1;;;115844:55:0;;30834:2:1;115844:55:0::3;::::0;::::3;30816:21:1::0;30873:2;30853:18;;;30846:30;-1:-1:-1;;;30892:18:1;;;30885:48;30950:18;;115844:55:0::3;30632:342:1::0;115844:55:0::3;115941:20;::::0;;115920:18:::3;115974:24:::0;;;116032:16:::3;::::0;116050:13:::3;::::0;116009:67:::3;::::0;-1:-1:-1;;;;;116032:16:0;;;::::3;::::0;::::3;::::0;116050:13:::3;115941:20:::0;116009:22:::3;:67::i;:::-;115833:251;61218:20:::0;60652:1;61780:43;;61597:234;93667:406;72280:16;;93743:12;;;;;;;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;93953:11:::1;::::0;93876:89:::1;::::0;93902:48:::1;82213:9;93902:15;:48;:::i;:::-;:62;;;;:::i;:::-;93876:25;:89::i;:::-;94043:15;::::0;93855:110;;-1:-1:-1;93855:110:0;;-1:-1:-1;93855:110:0;-1:-1:-1;93993:72:0::1;::::0;93855:110;;;;;;94043:15:::1;;;::::0;93993:31:::1;:72::i;:::-;93976:89;;93667:406:::0;;;;:::o;106801:277::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;106286:13:::2;::::0;-1:-1:-1;;;;;106286:13:0::2;106272:10;:27;106264:59;;;;-1:-1:-1::0;;;106264:59:0::2;;;;;;;:::i;:::-;106963:26:::3;106980:8;106963:16;:26::i;:::-;107000:70;::::0;-1:-1:-1;;;107000:70:0;;::::3;::::0;::::3;4471:25:1::0;;;-1:-1:-1;;;;;107000:47:0;::::3;::::0;::::3;::::0;4444:18:1;;107000:70:0::3;4325:177:1::0;76896:197:0;72280:16;;76988:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;77032:21:0;::::1;;::::0;;;:9:::1;:21;::::0;;;;;77015:70:::1;::::0;:16:::1;:70::i;67920:107::-:0;67982:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;68009:10:0::1;::::0;67920:107;:::o;77101:146::-;72280:16;;77191:7;;72280:16;;;-1:-1:-1;;;;;72280:16:0;72264:66;;;;-1:-1:-1;;;72264:66:0;;;;;;;:::i;112958:30::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;112958:30:0;;-1:-1:-1;112958:30:0;:::o;95431:340::-;95619:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;95672:28:::1;::::0;;::::1;::::0;::::1;25972:25:1::0;;;26013:18;;;26006:34;;;26056:18;;;26049:34;;;95639:20:0::1;::::0;25945:18:1;;95672:28:0::1;::::0;;-1:-1:-1;;95672:28:0;;::::1;::::0;;;;;;95662:39;;95672:28:::1;95662:39:::0;;::::1;::::0;95719:30:::1;::::0;;;:16:::1;:30:::0;;;;;-1:-1:-1;;;;;95719:44:0;::::1;::::0;;;;;;;;;-1:-1:-1;;95431:340:0;;;;;;:::o;67618:179::-;67727:7;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;67754:22:0;;::::1;;::::0;;;:11:::1;:22;::::0;;;;;;;:35;;;::::1;::::0;;;;;;;;;67618:179::o;114532:1106::-;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;106286:13:::2;::::0;-1:-1:-1;;;;;106286:13:0::2;106272:10;:27;106264:59;;;;-1:-1:-1::0;;;106264:59:0::2;;;;;;;:::i;:::-;114669:26:::3;114686:8;114669:16;:26::i;:::-;-1:-1:-1::0;;;;;114736:24:0;::::3;114706:27;114736:24:::0;;;:14:::3;:24;::::0;;;;:44;;114821:36:::3;::::0;;::::3;:58:::0;;;114944:17:::3;:40:::0;;114736:44;;;;114944:40:::3;::::0;114736:44;;114944:40:::3;:::i;:::-;;;;;;;;2884:1;115056:70;;115080:8;-1:-1:-1::0;;;;;115056:43:0::3;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:70;;;115048:101;;;::::0;-1:-1:-1;;;115048:101:0;;31563:2:1;115048:101:0::3;::::0;::::3;31545:21:1::0;31602:2;31582:18;;;31575:30;-1:-1:-1;;;31621:18:1;;;31614:48;31679:18;;115048:101:0::3;31361:342:1::0;115048:101:0::3;115214:16;::::0;115192:70:::3;::::0;115214:16;;::::3;-1:-1:-1::0;;;;;115214:16:0::3;115232:8:::0;115242:19;115192:21:::3;:70::i;:::-;115297:8;-1:-1:-1::0;;;;;115273:42:0::3;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;115350:16:0::3;::::0;115328:61:::3;::::0;-1:-1:-1;115350:16:0;;::::3;-1:-1:-1::0;;;;;115350:16:0::3;::::0;-1:-1:-1;115368:8:0;115386:1:::3;115328:21;:61::i;:::-;3071:1;115434:60;;115458:8;-1:-1:-1::0;;;;;115434:43:0::3;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;;115426:93;;;::::0;-1:-1:-1;;;115426:93:0;;31910:2:1;115426:93:0::3;::::0;::::3;31892:21:1::0;31949:2;31929:18;;;31922:30;-1:-1:-1;;;31968:18:1;;;31961:50;32028:18;;115426:93:0::3;31708:344:1::0;115426:93:0::3;115538:16;::::0;:51:::3;::::0;-1:-1:-1;;;115538:51:0;;115573:4:::3;115538:51;::::0;::::3;32231::1::0;-1:-1:-1;;;;;32318:32:1;;;32298:18;;;32291:60;115601:1:0::3;::::0;115538:16;;::::3;;::::0;:26:::3;::::0;32204:18:1;;115538:51:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;115530:100;;;::::0;-1:-1:-1;;;115530:100:0;;32564:2:1;115530:100:0::3;::::0;::::3;32546:21:1::0;32603:2;32583:18;;;32576:30;-1:-1:-1;;;32622:18:1;;;32615:52;32684:18;;115530:100:0::3;32362:346:1::0;115530:100:0::3;114630:1008;61218:20:::0;60652:1;61780:43;;61597:234;111410:541;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;110604:10:::2;110589:26;::::0;;;:14:::2;:26;::::0;;;;:40:::2;;::::0;::::2;;110581:65;;;::::0;-1:-1:-1;;;110581:65:0;;20796:2:1;110581:65:0::2;::::0;::::2;20778:21:1::0;20835:2;20815:18;;;20808:30;-1:-1:-1;;;20854:18:1;;;20847:42;20906:18;;110581:65:0::2;20594:336:1::0;110581:65:0::2;111601:16:::3;111639:19;111621:15;:37;111620:83;;111702:1;111620:83;;;111662:37;111684:15:::0;111662:19;:37:::3;:::i;:::-;111735:10;111761:1;111720:26:::0;;;:14:::3;:26;::::0;;;;:38:::3;;::::0;111601:102;;-1:-1:-1;111720:42:0;111716:107:::3;;111800:10;111785:26;::::0;;;:14:::3;:26;::::0;;;;:38:::3;;::::0;111764:17:::3;:59:::0;;111785:38;;111764:17;;:59:::3;::::0;111785:38;;111764:59:::3;:::i;:::-;::::0;;;-1:-1:-1;;111716:107:0::3;111849:10;111834:26;::::0;;;:14:::3;:26;::::0;;;;:38:::3;;:49:::0;;;111900:12;;111896:47:::3;;111935:8;111914:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;111896:47:0::3;111590:361;61218:20:::0;60652:1;61780:43;;61597:234;120312:385;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;61174:21:::1;:19;:21::i;:::-;5858:6:::2;::::0;-1:-1:-1;;;;;5858:6:0::2;5844:10;:20;5836:56;;;;-1:-1:-1::0;;;5836:56:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;120426:22:0;::::3;::::0;;::::3;::::0;:51:::3;;-1:-1:-1::0;;;;;;120452:25:0;::::3;120472:4;120452:25;;120426:51;120418:77;;;::::0;-1:-1:-1;;;120418:77:0;;32915:2:1;120418:77:0::3;::::0;::::3;32897:21:1::0;32954:2;32934:18;;;32927:30;-1:-1:-1;;;32973:18:1;;;32966:43;33026:18;;120418:77:0::3;32713:337:1::0;120418:77:0::3;120526:13;::::0;-1:-1:-1;;;;;120526:13:0;;::::3;120514:25:::0;;::::3;::::0;120506:62:::3;;;::::0;-1:-1:-1;;;120506:62:0;;33257:2:1;120506:62:0::3;::::0;::::3;33239:21:1::0;33296:2;33276:18;;;33269:30;33335:26;33315:18;;;33308:54;33379:18;;120506:62:0::3;33055:348:1::0;120506:62:0::3;120599:20;::::0;-1:-1:-1;;;;;120599:20:0;;::::3;120587:32:::0;;::::3;::::0;120579:69:::3;;;::::0;-1:-1:-1;;;120579:69:0;;33610:2:1;120579:69:0::3;::::0;::::3;33592:21:1::0;33649:2;33629:18;;;33622:30;33688:26;33668:18;;;33661:54;33732:18;;120579:69:0::3;33408:348:1::0;120579:69:0::3;120661:28;120680:8;120661:18;:28::i;:::-;61218:20:::1;60652:1:::0;61780:43;;61597:234;90241:3021;61174:21;:19;:21::i;:::-;72280:16:::1;::::0;;;::::1;-1:-1:-1::0;;;;;72280:16:0::1;72264:66;;;;-1:-1:-1::0;;;72264:66:0::1;;;;;;;:::i;:::-;72661:17:::2;::::0;::::2;::::0;::::2;;;72660:18;72652:49;;;;-1:-1:-1::0;;;72652:49:0::2;;;;;;;:::i;:::-;90466:1:::3;90455:8;:12;90447:39;;;::::0;-1:-1:-1;;;90447:39:0;;33963:2:1;90447:39:0::3;::::0;::::3;33945:21:1::0;34002:2;33982:18;;;33975:30;-1:-1:-1;;;34021:18:1;;;34014:44;34075:18;;90447:39:0::3;33761:338:1::0;90447:39:0::3;90532:28;::::0;;::::3;::::0;::::3;25972:25:1::0;;;26013:18;;;26006:34;;;26056:18;;;26049:34;;;90499:20:0::3;::::0;25945:18:1;;90532:28:0::3;::::0;;-1:-1:-1;;90532:28:0;;::::3;::::0;;;;;;90522:39;;90532:28:::3;90522:39:::0;;::::3;::::0;90682:1:::3;90641:31:::0;;;:17:::3;:31:::0;;;;;:38:::3;;::::0;90522:39;;-1:-1:-1;90633:73:0::3;;;::::0;-1:-1:-1;;;90633:73:0;;34306:2:1;90633:73:0::3;::::0;::::3;34288:21:1::0;34345:2;34325:18;;;34318:30;-1:-1:-1;;;34364:18:1;;;34357:48;34422:18;;90633:73:0::3;34104:342:1::0;90633:73:0::3;90905:15;::::0;90855:72:::3;::::0;90887:4;;90893:5;;90900:3;;90905:15:::3;;;::::0;90855:31:::3;:72::i;:::-;90803:48;82213:9;90803:15;:48;:::i;:::-;:124;;90795:146;;;::::0;-1:-1:-1;;;90795:146:0;;34653:2:1;90795:146:0::3;::::0;::::3;34635:21:1::0;34692:1;34672:18;;;34665:29;-1:-1:-1;;;34710:18:1;;;34703:39;34759:18;;90795:146:0::3;34451:332:1::0;90795:146:0::3;91052:16;91072:40:::0;;;:26:::3;:40;::::0;;;;:47;:58;-1:-1:-1;91071:121:0::3;;91145:40;::::0;;;:26:::3;:40;::::0;;;;:47;91071:121:::3;;;91134:8;91071:121;91203:19;91225:40:::0;;;:26:::3;:40;::::0;;;;:47;91052:140;;-1:-1:-1;91052:140:0;91314:23:::3;::::0;::::3;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;91314:23:0::3;;91285:52;;91348:24;91389:8;91375:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;91375:23:0::3;-1:-1:-1::0;91348:50:0;-1:-1:-1;91409:17:0::3;::::0;;91511:8;91409:17;91580:11;91563:797:::3;91598:22;91612:8:::0;91598:11;:22:::3;:::i;:::-;91593:1;:28;91563:797;;;91658:40;::::0;;;:26:::3;:40;::::0;;;;91699:5:::3;91703:1;91699::::0;:5:::3;:::i;:::-;91658:47;;;;;;;;:::i;:::-;;::::0;;;::::3;::::0;;;::::3;::::0;-1:-1:-1;;;;;91658:47:0::3;::::0;-1:-1:-1;91720:3:0;::::3;::::0;::::3;:::i;:::-;;;;91753:12;91738:9;91748:1;91738:12;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;91738:27:0;;::::3;:12;::::0;;::::3;::::0;;;;;;:27;;;;91793:30:::3;::::0;;;:16:::3;:30:::0;;;;;;:44;;::::3;::::0;;;;;;;;91780:10;;:7;;91788:1;;91780:10;::::3;;;;;:::i;:::-;;;;;;:57;;;::::0;::::3;91868:7;91876:1;91868:10;;;;;;;;:::i;:::-;;;;;;;91852:26;;;;;:::i;:::-;91909:30;::::0;;;:16:::3;:30;::::0;;;;;;;-1:-1:-1;;;;;91909:44:0;::::3;::::0;;;;;;;;91852:26;;-1:-1:-1;91893:60:0::3;::::0;;::::3;:::i;:::-;91981:35;::::0;;;:21:::3;:35;::::0;;;;;;;-1:-1:-1;;;;;91981:49:0;::::3;::::0;;;;;;;;91893:60;;-1:-1:-1;91968:62:0::3;::::0;;::::3;:::i;:::-;92092:1;92045:30:::0;;;:16:::3;:30;::::0;;;;;;;-1:-1:-1;;;;;92045:44:0;::::3;::::0;;;;;;;;;:48;;;92108:30;;;:16:::3;:30:::0;;;;;:44;;;;;;;;:48;;;92171:35;;;:21:::3;:35:::0;;;;;:49;;;;;;;;:53;;;92239:40;;;:26:::3;:40:::0;;;;;:46;;91968:62;;-1:-1:-1;92239:40:0;:46;::::3;;;;:::i;:::-;;::::0;;;::::3;::::0;;;;;-1:-1:-1;;92239:46:0;;;;;-1:-1:-1;;;;;;92239:46:0::3;::::0;;;;;;;;92300:30;;;:16:::3;:30:::0;;;;;;-1:-1:-1;;;;;92300:44:0;::::3;::::0;;;;;;;:48;91623:3;::::3;::::0;::::3;:::i;:::-;;;;91563:797;;;;92397:12;92372:21;;:37;;;;;;;:::i;:::-;;;;;;;;92444:9;92420:20;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;92464:31:0::3;::::0;;;:17:::3;:31;::::0;;;;:38:::3;;:54:::0;;92506:12;;92464:31;:54:::3;::::0;92506:12;;92464:54:::3;:::i;:::-;::::0;;;-1:-1:-1;;92529:31:0::3;::::0;;;:17:::3;:31;::::0;;;;:54;;92571:12;;92529:31;:54:::3;::::0;92571:12;;92529:54:::3;:::i;:::-;::::0;;;-1:-1:-1;;92699:16:0::3;::::0;92692:49:::3;::::0;-1:-1:-1;;;92692:49:0;;92735:4:::3;92692:49;::::0;::::3;4263:51:1::0;92668:21:0::3;::::0;92699:16;;::::3;-1:-1:-1::0;;;;;92699:16:0::3;::::0;92692:34:::3;::::0;4236:18:1;;92692:49:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;92668:73;;92777:12;92760:13;:29;;92752:62;;;::::0;-1:-1:-1;;;92752:62:0;;25247:2:1;92752:62:0::3;::::0;::::3;25229:21:1::0;25286:2;25266:18;;;25259:30;-1:-1:-1;;;25305:18:1;;;25298:50;25365:18;;92752:62:0::3;25045:344:1::0;92752:62:0::3;92827:39;92846:4;92853:12;92827:10;:39::i;:::-;92929:9;92924:136;92944:9;:16;92940:1;:20;92924:136;;;92982:66;93005:16;;;;;;;;;-1:-1:-1::0;;;;;93005:16:0::3;93023:9;93033:1;93023:12;;;;;;;;:::i;:::-;;;;;;;93037:7;93045:1;93037:10;;;;;;;;:::i;:::-;;;;;;;92982:22;:66::i;:::-;92962:3;;92924:136;;;-1:-1:-1::0;93201:28:0::3;93217:12:::0;93201:13;:28:::3;:::i;:::-;93155:16;::::0;93148:49:::3;::::0;-1:-1:-1;;;93148:49:0;;93191:4:::3;93148:49;::::0;::::3;4263:51:1::0;93155:16:0;;;::::3;-1:-1:-1::0;;;;;93155:16:0::3;::::0;93148:34:::3;::::0;4236:18:1;;93148:49:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:81;93140:114;;;;-1:-1:-1::0;;;93140:114:0::3;;;;;;;:::i;:::-;90436:2826;;;;;;;;;;;61218:20:::0;60652:1;61780:43;;61597:234;61218:20;90241:3021;;;;:::o;94565:386::-;94714:14;;63761:15;63733:24;60154:5;60179:12;;;;60097:102;63733:24;:43;;;63725:84;;;;-1:-1:-1;;;63725:84:0;;;;;;;:::i;:::-;-1:-1:-1;;94790:28:0::1;::::0;;::::1;::::0;;::::1;25972:25:1::0;;;;26013:18;;;26006:34;;;;26056:18;;;;26049:34;;;;94790:28:0;;;;;;;;;;25945:18:1;;;;94790:28:0;;94780:39;;;;::::1;::::0;-1:-1:-1;94847:31:0;;;:17:::1;:31:::0;;;;;:38;;94905::::1;::::0;;::::1;::::0;94847;;94565:386::o;61254:335::-;60708:1;61388:17;;:40;61380:84;;;;-1:-1:-1;;;61380:84:0;;35744:2:1;61380:84:0;;;35726:21:1;35783:2;35763:18;;;35756:30;35822:33;35802:18;;;35795:61;35873:18;;61380:84:0;35542:355:1;61380:84:0;60708:1;61542:17;:39;61254:335::o;112296:242::-;112489:16;;:41;;-1:-1:-1;;;112489:41:0;;112524:4;112489:41;;;4263:51:1;112363:7:0;;112489:16;;;-1:-1:-1;;;;;112489:16:0;;:26;;4236:18:1;;112489:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;112469:17;;:61;;;;:::i;81021:265::-;81129:7;81157:12;;81173:1;81157:17;81156:122;;81222:56;81236:17;:15;:17::i;:::-;81255:12;;81222:6;;:56;81269:8;81222:13;:56::i;:::-;81156:122;;;81202:6;81178:41;80212:147;68868:399;-1:-1:-1;;;;;68980:21:0;;68972:59;;;;-1:-1:-1;;;68972:59:0;;36104:2:1;68972:59:0;;;36086:21:1;36143:2;36123:18;;;36116:30;36182:27;36162:18;;;36155:55;36227:18;;68972:59:0;35902:349:1;68972:59:0;-1:-1:-1;;;;;69050:23:0;;69042:59;;;;-1:-1:-1;;;69042:59:0;;36458:2:1;69042:59:0;;;36440:21:1;36497:2;36477:18;;;36470:30;36536:25;36516:18;;;36509:53;36579:18;;69042:59:0;36256:347:1;69042:59:0;-1:-1:-1;;;;;69140:22:0;;;;;;;:11;:22;;;;;;;;:31;;;;;;;;;;;;;:39;;;69224:35;;4471:25:1;;;69224:35:0;;4444:18:1;69224:35:0;;;;;;;68868:399;;;:::o;80635:280::-;80743:7;80771:11;;;:32;;-1:-1:-1;80786:12:0;;:17;80771:32;80770:137;;80851:56;80865:12;;80879:17;:15;:17::i;:::-;80851:6;;:56;80898:8;80851:13;:56::i;68234:626::-;68332:4;-1:-1:-1;;;;;68376:16:0;;68368:54;;;;-1:-1:-1;;;68368:54:0;;36810:2:1;68368:54:0;;;36792:21:1;36849:2;36829:18;;;36822:30;36888:27;36868:18;;;36861:55;36933:18;;68368:54:0;36608:349:1;68368:54:0;-1:-1:-1;;;;;68441:18:0;;68433:55;;;;-1:-1:-1;;;68433:55:0;;37164:2:1;68433:55:0;;;37146:21:1;37203:2;37183:18;;;37176:30;37242:26;37222:18;;;37215:54;37286:18;;68433:55:0;36962:348:1;68433:55:0;68515:1;68507:5;:9;68499:43;;;;-1:-1:-1;;;68499:43:0;;37517:2:1;68499:43:0;;;37499:21:1;37556:2;37536:18;;;37529:30;-1:-1:-1;;;37575:18:1;;;37568:51;37636:18;;68499:43:0;37315:345:1;68499:43:0;-1:-1:-1;;;;;68561:15:0;;;;;;:9;:15;;;;;;:24;-1:-1:-1;68561:24:0;68553:66;;;;-1:-1:-1;;;68553:66:0;;37867:2:1;68553:66:0;;;37849:21:1;37906:2;37886:18;;;37879:30;37945:31;37925:18;;;37918:59;37994:18;;68553:66:0;37665:353:1;68553:66:0;-1:-1:-1;;;;;68676:15:0;;;;;;:9;:15;;;;;;:23;;68694:5;;68676:23;:::i;:::-;-1:-1:-1;;;;;68658:15:0;;;;;;;:9;:15;;;;;;:41;;;;68726:13;;;;;;;:21;;68742:5;;68726:21;:::i;:::-;-1:-1:-1;;;;;68710:13:0;;;;;;;:9;:13;;;;;;;:37;;;;68803:25;;;;;;;;;;68822:5;4471:25:1;;4459:2;4444:18;;4325:177;68803:25:0;;;;;;;;-1:-1:-1;68848:4:0;68234:626;;;;;:::o;111959:158::-;-1:-1:-1;;;;;112045:24:0;;;;;;:14;:24;;;;;:38;;;;;112037:72;;;;-1:-1:-1;;;112037:72:0;;38225:2:1;112037:72:0;;;38207:21:1;38264:2;38244:18;;;38237:30;-1:-1:-1;;;38283:18:1;;;38276:51;38344:18;;112037:72:0;38023:345:1;79720:132:0;79778:4;79802:12;;79818:1;79802:17;:42;;;;79843:1;79823:17;:15;:17::i;:::-;:21;79795:49;;79720:132;:::o;81294:504::-;81365:20;81387:22;81437:55;81454:6;81462:29;81437:16;:55::i;:::-;81422:70;;81520:12;81503:29;;81543:21;81601:1;81585:13;;:17;81581:160;;;81666:3;81651:12;81635:13;;:28;;;;:::i;:::-;:34;;;;:::i;:::-;81619:50;-1:-1:-1;81701:28:0;81619:50;81701:12;:28;:::i;:::-;81684:45;;81581:160;81753:37;81294:504;;;:::o;79181:270::-;79273:14;:31;;-1:-1:-1;;79315:37:0;79273:31;;;-1:-1:-1;;79315:37:0;;79273:31;79315:37;;;;;;;;;;;;;79378:65;;;79273:31;79409:14;;;38990::1;38983:22;38965:41;;79425:17:0;;;;;;;39049:14:1;39042:22;39037:2;39022:18;;39015:50;79378:65:0;;38938:18:1;79378:65:0;;;;;;;;79181:270;;:::o;37804:177::-;37914:58;;-1:-1:-1;;;;;18087:32:1;;37914:58:0;;;18069:51:1;18136:18;;;18129:34;;;37887:86:0;;37907:5;;-1:-1:-1;;;37937:23:0;18042:18:1;;37914:58:0;;;;-1:-1:-1;;37914:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;37914:58:0;-1:-1:-1;;;;;;37914:58:0;;;;;;;;;;37887:19;:86::i;7205:306::-;7347:17;7497:6;7467:27;6446:2;7467:6;:27;:::i;:::-;7441:23;6342:7;7441:4;:23;:::i;:::-;6237:12;7389:31;7403:4;7409:5;7416:3;7389:13;:31::i;:::-;:49;;;;:::i;:::-;:75;;;;:::i;:::-;:105;;;;:::i;:::-;:114;;;;:::i;:::-;7377:126;7205:306;-1:-1:-1;;;;;;;7205:306:0:o;77454:1230::-;78230:16;;:41;;-1:-1:-1;;;78230:41:0;;78265:4;78230:41;;;4263:51:1;78182:36:0;;78230:16;;;-1:-1:-1;;;;;78230:16:0;;:26;;4236:18:1;;78230:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;78221:50;;:6;:50;:::i;:::-;78309:16;;78182:89;;-1:-1:-1;78282:79:0;;78309:16;;;-1:-1:-1;;;;;78309:16:0;78327:10;78347:4;78354:6;78282:26;:79::i;:::-;78380:16;;:41;;-1:-1:-1;;;78380:41:0;;78415:4;78380:41;;;4263:51:1;78425:28:0;;78380:16;;;-1:-1:-1;;;;;78380:16:0;;:26;;4236:18:1;;78380:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:73;78372:106;;;;-1:-1:-1;;;78372:106:0;;;;;;;:::i;:::-;78542:32;78553:12;78567:6;78542:10;:32::i;:::-;78647:12;-1:-1:-1;;;;;78627:49:0;78635:10;-1:-1:-1;;;;;78627:49:0;;78661:6;78669;78627:49;;;;;;9351:25:1;;;9407:2;9392:18;;9385:34;9339:2;9324:18;;9177:248;78627:49:0;;;;;;;;77606:1078;77454:1230;;;;:::o;97580:3177::-;97763:22;;;;;-1:-1:-1;;;;;97925:26:0;;;;;;:59;;-1:-1:-1;;;;;;97955:29:0;;97979:4;97955:29;;97925:59;97917:88;;;;-1:-1:-1;;;97917:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;98024:24:0;;;;;;:55;;-1:-1:-1;;;;;;98052:27:0;;98074:4;98052:27;;98024:55;98016:82;;;;-1:-1:-1;;;98016:82:0;;39278:2:1;98016:82:0;;;39260:21:1;39317:2;39297:18;;;39290:30;-1:-1:-1;;;39336:18:1;;;39329:44;39390:18;;98016:82:0;39076:338:1;98016:82:0;98126:1;98117:6;:10;98109:45;;;;-1:-1:-1;;;98109:45:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;98173:21:0;;;;;;:9;:21;;;;;;:31;-1:-1:-1;98173:31:0;98165:63;;;;-1:-1:-1;;;98165:63:0;;39621:2:1;98165:63:0;;;39603:21:1;39660:2;39640:18;;;39633:30;-1:-1:-1;;;39679:18:1;;;39672:49;39738:18;;98165:63:0;39419:343:1;98165:63:0;98339:20;98361:22;98387:30;98410:6;98387:22;:30::i;:::-;98338:79;;;;98452:23;98464:10;98452:11;:23::i;:::-;98436:12;:39;;98428:76;;;;-1:-1:-1;;;98428:76:0;;39969:2:1;98428:76:0;;;39951:21:1;40008:2;39988:18;;;39981:30;40047:26;40027:18;;;40020:54;40091:18;;98428:76:0;39767:348:1;98428:76:0;98540:1;98523:14;:18;98515:45;;;;-1:-1:-1;;;98515:45:0;;40322:2:1;98515:45:0;;;40304:21:1;40361:2;40341:18;;;40334:30;-1:-1:-1;;;40380:18:1;;;40373:44;40434:18;;98515:45:0;40120:338:1;98515:45:0;98613:21;98637:29;98652:14;98637:12;:29;:::i;:::-;98613:53;;98701:14;98677:38;;98810:89;98887:11;;82213:9;98836:15;:48;;;;:::i;98810:89::-;98981:28;;;;;;;25972:25:1;;;26013:18;;;26006:34;;;26056:18;;;;26049:34;;;98981:28:0;;;;;;;;;;25945:18:1;;;;98981:28:0;;;98971:39;;;;;99158:15;;25972:25:1;;-1:-1:-1;26006:34:1;;-1:-1:-1;26049:34:1;-1:-1:-1;98971:39:0;99108:72;;25972:25:1;;26006:34;;26049;;99158:15:0;;-1:-1:-1;;99108:31:0;:72::i;:::-;99091:89;;99248:10;-1:-1:-1;;;;;99234:24:0;:10;-1:-1:-1;;;;;99234:24:0;;99230:77;;99260:47;99276:10;99288;99300:6;99260:15;:47::i;:::-;99689:56;99711:10;99731:4;99738:6;99689:21;:56::i;:::-;-1:-1:-1;99785:31:0;;;;:17;:31;;;;;:38;;:54;;99827:12;;99785:31;:54;;99827:12;;99785:54;:::i;:::-;;;;-1:-1:-1;;99850:31:0;;;;:17;:31;;;;;:48;;99892:6;;99850:31;:48;;99892:6;;99850:48;:::i;:::-;;;;;;;;99934:6;99909:21;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;100056:30:0;;;;:16;:30;;;;;;;;-1:-1:-1;;;;;100056:44:0;;;;;;;;;;:49;;100052:250;;100122:26;:40;100149:12;100122:40;;;;;;;;;;;100168:12;100122:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;100122:59:0;;;;;-1:-1:-1;;;;;100122:59:0;;;;;;100243:26;:40;100270:12;100243:40;;;;;;;;;;;:47;;;;100196:16;:30;100213:12;100196:30;;;;;;;;;;;:44;100227:12;-1:-1:-1;;;;;100196:44:0;-1:-1:-1;;;;;100196:44:0;;;;;;;;;;;;:94;;;;100052:250;100427:30;;;;:16;:30;;;;;;;;-1:-1:-1;;;;;100427:44:0;;;;;;;;;:62;;100475:14;;100427:30;:62;;100475:14;;100427:62;:::i;:::-;;;;-1:-1:-1;;100500:30:0;;;;:16;:30;;;;;;;;-1:-1:-1;;;;;100500:44:0;;;;;;;;;:54;;100548:6;;100500:30;:54;;100548:6;;100500:54;:::i;:::-;;;;-1:-1:-1;;100565:35:0;;;;:21;:35;;;;;;;;-1:-1:-1;;;;;100565:49:0;;;;;;;;;:66;;100618:13;;100565:35;:66;;100618:13;;100565:66;:::i;:::-;;;;-1:-1:-1;;100649:100:0;;;-1:-1:-1;;;;;40824:32:1;;;40806:51;;40893:32;;40888:2;40873:18;;40866:60;40942:18;;;40935:34;;;41000:2;40985:18;;40978:34;;;41043:3;41028:19;;41021:35;;;40844:3;41072:19;;41065:35;;;41131:3;41116:19;;41109:35;;;41175:3;41160:19;;41153:35;;;100649:100:0;;40793:3:1;40778:19;100649:100:0;;;;;;;97906:2851;;;;97580:3177;;;;;;;;;:::o;100765:2071::-;100908:7;;-1:-1:-1;;;;;100945:26:0;;100937:55;;;;-1:-1:-1;;;100937:55:0;;;;;;;:::i;:::-;101038:28;;;;;;25972:25:1;;;26013:18;;;26006:34;;;26056:18;;;26049:34;;;101005:20:0;;25945:18:1;;101038:28:0;;;-1:-1:-1;;101038:28:0;;;;;;;;;101028:39;;101038:28;101028:39;;;;101080:14;101097:30;;;:16;:30;;;;;-1:-1:-1;;;;;101097:44:0;;;;;;;;;;101028:39;;-1:-1:-1;101160:10:0;101152:45;;;;-1:-1:-1;;;101152:45:0;;41401:2:1;101152:45:0;;;41383:21:1;41440:2;41420:18;;;41413:30;-1:-1:-1;;;41459:18:1;;;41452:52;41521:18;;101152:45:0;41199:346:1;101152:45:0;101210:21;101234:30;;;:16;:30;;;;;;;;-1:-1:-1;;;;;101234:44:0;;;;;;;;;;101297:17;101289:52;;;;-1:-1:-1;;;101289:52:0;;41752:2:1;101289:52:0;;;41734:21:1;41791:2;41771:18;;;41764:30;-1:-1:-1;;;41810:18:1;;;41803:52;41872:18;;101289:52:0;41550:346:1;101289:52:0;101354:23;101380:30;;;:16;:30;;;;;;;;-1:-1:-1;;;;;101380:44:0;;;;;;;;;;;;101454:35;;;:21;:35;;;;;:49;;;;;;;;;101520:11;;:15;101516:274;;101742:15;;101692:72;;101724:4;;101730:5;;101737:3;;101742:15;;;;101692:31;:72::i;:::-;101640:48;82213:9;101640:15;:48;:::i;:::-;:124;;101632:146;;;;-1:-1:-1;;;101632:146:0;;34653:2:1;101632:146:0;;;34635:21:1;34692:1;34672:18;;;34665:29;-1:-1:-1;;;34710:18:1;;;34703:39;34759:18;;101632:146:0;34451:332:1;101632:146:0;101894:1;101847:30;;;:16;:30;;;;;;;;-1:-1:-1;;;;;101847:44:0;;;;;;;;;;;:48;;;101906:30;;;:16;:30;;;;;:44;;;;;;;;:48;;;101965:35;;;:21;:35;;;;;:49;;;;;;;;:53;;;102029:31;;;:17;:31;;;;;:48;;102071:6;;101894:1;102029:48;;102071:6;;102029:48;:::i;:::-;;;;-1:-1:-1;102131:26:0;;-1:-1:-1;102149:8:0;102131:15;:26;:::i;:::-;102088:31;;;;:17;:31;;;;;:38;;:70;;:38;;:31;:70;;;;;:::i;:::-;;;;;;;;102194:6;102169:21;;:31;;;;;;;:::i;:::-;;;;;;;;102235:8;102211:20;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;102256:43:0;;-1:-1:-1;102272:12:0;102286;102256:15;:43::i;:::-;102312:33;102331:4;102338:6;102312:10;:33::i;:::-;102461:16;;102454:49;;-1:-1:-1;;;102454:49:0;;102497:4;102454:49;;;4263:51:1;102430:21:0;;102461:16;;;-1:-1:-1;;;;;102461:16:0;;102454:34;;4236:18:1;;102454:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;102537:16;;102430:73;;-1:-1:-1;102514:71:0;;102537:16;;;-1:-1:-1;;;;;102537:16:0;102555:12;102569:15;102514:22;:71::i;:::-;102727:31;102743:15;102727:13;:31;:::i;:::-;102681:16;;102674:49;;-1:-1:-1;;;102674:49:0;;102717:4;102674:49;;;4263:51:1;102681:16:0;;;;-1:-1:-1;;;;;102681:16:0;;102674:34;;4236:18:1;;102674:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:84;;102666:117;;;;-1:-1:-1;;;102666:117:0;;;;;;;:::i;:::-;-1:-1:-1;102804:6:0;;102812:15;;-1:-1:-1;100765:2071:0;-1:-1:-1;;;;;;;;100765:2071:0:o;78692:481::-;78905:1;78883:19;:23;78875:57;;;;-1:-1:-1;;;78875:57:0;;42103:2:1;78875:57:0;;;42085:21:1;42142:2;42122:18;;;42115:30;-1:-1:-1;;;42161:18:1;;;42154:51;42222:18;;78875:57:0;41901:345:1;78875:57:0;78976:1;78951:22;:26;78943:63;;;;-1:-1:-1;;;78943:63:0;;42453:2:1;78943:63:0;;;42435:21:1;42492:2;42472:18;;;42465:30;42531:26;42511:18;;;42504:54;42575:18;;78943:63:0;42251:348:1;78943:63:0;79027:32;79041:17;79027:13;:32::i;:::-;-1:-1:-1;79072:16:0;:38;;;;79121:19;:44;78692:481::o;6550:175::-;6610:12;;;6684:33;6696:20;6237:12;6696:2;:20;:::i;:::-;6684:11;:33::i;:::-;6663:54;;;;-1:-1:-1;6663:54:0;;-1:-1:-1;6550:175:0;-1:-1:-1;;6550:175:0:o;38463:582::-;38793:10;;;38792:62;;-1:-1:-1;38809:39:0;;-1:-1:-1;;;38809:39:0;;38833:4;38809:39;;;32231:51:1;-1:-1:-1;;;;;32318:32:1;;;32298:18;;;32291:60;38809:15:0;;;;;32204:18:1;;38809:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;38792:62;38770:166;;;;-1:-1:-1;;;38770:166:0;;42806:2:1;38770:166:0;;;42788:21:1;42845:2;42825:18;;;42818:30;42884:34;42864:18;;;42857:62;-1:-1:-1;;;42935:18:1;;;42928:52;42997:19;;38770:166:0;42604:418:1;38770:166:0;38974:62;;-1:-1:-1;;;;;18087:32:1;;38974:62:0;;;18069:51:1;18136:18;;;18129:34;;;38947:90:0;;38967:5;;-1:-1:-1;;;38997:22:0;18042:18:1;;38974:62:0;17895:274:1;5920:191:0;6013:6;;;-1:-1:-1;;;;;6030:17:0;;;-1:-1:-1;;;;;;6030:17:0;;;;;;;6063:40;;6013:6;;;6030:17;6013:6;;6063:40;;5994:16;;6063:40;5983:128;5920:191;:::o;70010:322::-;70105:1;70096:6;:10;70088:37;;;;-1:-1:-1;;;70088:37:0;;43229:2:1;70088:37:0;;;43211:21:1;43268:2;43248:18;;;43241:30;-1:-1:-1;;;43287:18:1;;;43280:44;43341:18;;70088:37:0;43027:338:1;70088:37:0;-1:-1:-1;;;;;70144:15:0;;;;;;:9;:15;;;;;;:25;-1:-1:-1;70144:25:0;70136:65;;;;-1:-1:-1;;;70136:65:0;;43572:2:1;70136:65:0;;;43554:21:1;43611:2;43591:18;;;43584:30;43650:29;43630:18;;;43623:57;43697:18;;70136:65:0;43370:351:1;70136:65:0;-1:-1:-1;;;;;70214:15:0;;;;;;:9;:15;;;;;:25;;70233:6;;70214:15;:25;;70233:6;;70214:25;:::i;:::-;;;;;;;;70266:6;70250:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;70290:34:0;;4471:25:1;;;70313:1:0;;-1:-1:-1;;;;;70290:34:0;;;;;4459:2:1;4444:18;70290:34:0;;;;;;;;70010:322;;:::o;15621:348::-;15765:7;15785:14;15802:25;15809:1;15812;15815:11;15802:6;:25::i;:::-;15785:42;-1:-1:-1;15854:11:0;15842:8;:23;;;;;;;;:::i;:::-;;:56;;;;;15897:1;15882:11;15869:25;;;;;:::i;:::-;15879:1;15876;15869:25;:29;15842:56;15838:100;;;15915:11;15925:1;15915:11;;:::i;:::-;;;15838:100;15955:6;15621:348;-1:-1:-1;;;;;15621:348:0:o;40692:716::-;41116:23;41142:69;41170:4;41142:69;;;;;;;;;;;;;;;;;41150:5;-1:-1:-1;;;;;41142:27:0;;;:69;;;;;:::i;:::-;41226:17;;41116:95;;-1:-1:-1;41226:21:0;41222:179;;41323:10;41312:30;;;;;;;;;;;;:::i;:::-;41304:85;;;;-1:-1:-1;;;41304:85:0;;44310:2:1;41304:85:0;;;44292:21:1;44349:2;44329:18;;;44322:30;44388:34;44368:18;;;44361:62;-1:-1:-1;;;44439:18:1;;;44432:40;44489:19;;41304:85:0;44108:406:1;9219:571:0;9308:13;9350:4;9342;:12;;9334:30;;;;-1:-1:-1;;;9334:30:0;;44721:2:1;9334:30:0;;;44703:21:1;44760:1;44740:18;;;44733:29;-1:-1:-1;;;44778:18:1;;;44771:35;44823:18;;9334:30:0;44519:328:1;9334:30:0;9397:4;9436:5;9474:3;9375:12;6534:7;9717:1;9710:3;9704:2;9689:11;9698:2;9436:5;9689:11;:::i;:::-;9688:18;;;;:::i;:::-;9673:12;:5;9681:4;9673:12;:::i;:::-;:33;;;;:::i;:::-;9672:41;;;;:::i;:::-;9667:47;;:1;:47;:::i;:::-;:51;;;;:::i;:::-;9651:2;;9625:11;9634:2;9625:6;:11;:::i;:::-;9624:18;;;;:::i;:::-;:23;;9645:2;9624:23;:::i;:::-;9611:10;9620:1;9611:6;:10;:::i;:::-;:36;;;;:::i;:::-;9604:44;;:3;:44;:::i;:::-;:49;;;;:::i;:::-;9589:1;9583:2;9568:11;9577:2;9568:6;:11;:::i;:::-;9567:18;;;;:::i;:::-;9552:12;:5;9560:4;9552:12;:::i;:::-;:33;;;;:::i;:::-;9544:42;;:4;:42;:::i;:::-;:46;;;;:::i;:::-;9507:23;9525:5;9507:4;:23;:::i;:::-;:83;;;;:::i;:::-;:146;;;;:::i;:::-;:211;;;;:::i;:::-;:239;;;;:::i;:::-;9491:255;9219:571;-1:-1:-1;;;;;;;;9219:571:0:o;37989:205::-;38117:68;;-1:-1:-1;;;;;45938:32:1;;;38117:68:0;;;45920:51:1;46007:32;;45987:18;;;45980:60;46056:18;;;46049:34;;;38090:96:0;;38110:5;;-1:-1:-1;;;38140:27:0;45893:18:1;;38117:68:0;45718:371:1;69692:310:0;69787:1;69778:6;:10;69770:37;;;;-1:-1:-1;;;69770:37:0;;43229:2:1;69770:37:0;;;43211:21:1;43268:2;43248:18;;;43241:30;-1:-1:-1;;;43287:18:1;;;43280:44;43341:18;;69770:37:0;43027:338:1;69770:37:0;69826:16;69835:6;69826:8;:16::i;:::-;69818:53;;;;-1:-1:-1;;;69818:53:0;;46296:2:1;69818:53:0;;;46278:21:1;46335:2;46315:18;;;46308:30;46374:26;46354:18;;;46347:54;46418:18;;69818:53:0;46094:348:1;69818:53:0;69900:6;69884:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;69917:15:0;;;;;;:9;:15;;;;;:25;;69936:6;;69917:15;:25;;69936:6;;69917:25;:::i;:::-;;;;-1:-1:-1;;69960:34:0;;4471:25:1;;;-1:-1:-1;;;;;69960:34:0;;;69977:1;;69960:34;;4459:2:1;4444:18;69960:34:0;4325:177:1;69275:409:0;-1:-1:-1;;;;;69412:22:0;;;69385:24;69412:22;;;:11;:22;;;;;;;;:35;;;;;;;;;;-1:-1:-1;;69462:37:0;;69458:219;;69544:6;69524:16;:26;;69516:68;;;;-1:-1:-1;;;69516:68:0;;46649:2:1;69516:68:0;;;46631:21:1;46688:2;46668:18;;;46661:30;46727:31;46707:18;;;46700:59;46776:18;;69516:68:0;46447:353:1;69516:68:0;69599:66;69615:9;69626:11;69639:25;69658:6;69639:16;:25;:::i;102844:893::-;102924:11;102938:30;;;:16;:30;;;;;;;;-1:-1:-1;;;;;102938:36:0;;;;;;;;;;:40;;102977:1;;102938:40;:::i;:::-;103098;;;;:26;:40;;;;;:45;;102924:54;;-1:-1:-1;;;;;;103098:53:0;;;102924:54;;103098:45;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;103098:45:0;:53;103090:88;;;;-1:-1:-1;;;103090:88:0;;47007:2:1;103090:88:0;;;46989:21:1;47046:2;47026:18;;;47019:30;-1:-1:-1;;;47065:18:1;;;47058:52;47127:18;;103090:88:0;46805:346:1;103090:88:0;103191:28;103222:40;;;:26;:40;;;;;:47;;;103191:28;103340:24;103363:1;103222:47;103340:24;:::i;:::-;103299:66;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;103299:66:0;;;;-1:-1:-1;103382:16:0;;;;103378:234;;103484:40;;;;:26;:40;;;;;:45;;103525:3;;103484:45;;;;;;:::i;:::-;;;;;;;;;;;;;103415:40;;;:26;:40;;;;;;;-1:-1:-1;;;;;103484:45:0;;;;103456:24;103484:45;103456:20;:24;:::i;:::-;103415:66;;;;;;;;:::i;:::-;;;;;;;;;:114;;;;;-1:-1:-1;;;;;103415:114:0;;;;;-1:-1:-1;;;;;103415:114:0;;;;;;103592:8;103544:26;:40;103571:12;103544:40;;;;;;;;;;;103585:3;103544:45;;;;;;;;:::i;:::-;;;;;;;;;:56;;;;;-1:-1:-1;;;;;103544:56:0;;;;;-1:-1:-1;;;;;103544:56:0;;;;;;103378:234;103632:40;;;;:26;:40;;;;;:46;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;103632:46:0;;;;;-1:-1:-1;;;;;;103632:46:0;;;;;;;;;103689:30;;;:16;:30;;;;;;-1:-1:-1;;;;;103689:36:0;;;;;;;;;;-1:-1:-1;;;103689:36:0;;:40;102844:893::o;70340:279::-;70428:1;70417:8;:12;:39;;;;;70444:12;;70433:8;:23;70417:39;70409:70;;;;-1:-1:-1;;;70409:70:0;;47358:2:1;70409:70:0;;;47340:21:1;47397:2;47377:18;;;47370:30;-1:-1:-1;;;47416:18:1;;;47409:48;47474:18;;70409:70:0;47156:342:1;70409:70:0;70512:10;;;70533:21;;;;70572:39;;;9351:25:1;;;9407:2;9392:18;;9385:34;;;70572:39:0;;9324:18:1;70572:39:0;9177:248:1;8023:665:0;8083:12;;;8159:5;8083:12;6534:7;8189:14;8159:5;8198;8189:14;:::i;:::-;:31;;;;:::i;:::-;8178:42;-1:-1:-1;8231:8:0;8250:6;8242:5;8178:42;8242:1;:5;:::i;:::-;:14;;;;:::i;:::-;8231:25;-1:-1:-1;8294:1:0;8276:10;8231:25;8276:6;:10;:::i;:::-;:14;;8289:1;8276:14;:::i;:::-;8275:20;;;;:::i;:::-;8271:24;;:1;:24;:::i;:::-;8267:28;-1:-1:-1;8306:12:0;8338:7;8329:5;8267:28;8333:1;8329:5;:::i;:::-;8321:14;;:4;:14;:::i;:::-;:24;;;;:::i;:::-;8306:39;-1:-1:-1;8379:1:0;8364:12;8306:39;8364:4;:12;:::i;:::-;:16;;;;:::i;:::-;8360:20;;:1;:20;:::i;:::-;:25;;8383:2;8360:25;:::i;:::-;8356:29;-1:-1:-1;8396:13:0;8421:4;8412:6;8356:29;8412:2;:6;:::i;:::-;:13;;;;:::i;:::-;8396:29;-1:-1:-1;8436:11:0;8470:2;8454:13;8396:29;8454:4;:13;:::i;:::-;:18;;;;:::i;:::-;8450:22;;:1;:22;:::i;:::-;8436:36;-1:-1:-1;8487:11:0;8496:2;8487:6;:11;:::i;:::-;8483:15;-1:-1:-1;8531:6:0;8483:15;8531:2;:6;:::i;:::-;8518:10;:6;8527:1;8518:10;:::i;:::-;:19;;;;:::i;:::-;8509:28;-1:-1:-1;8581:1:0;8573:5;8563:6;8567:2;8563:1;:6;:::i;:::-;8556:14;;:3;:14;:::i;:::-;:22;;;;:::i;:::-;:26;;;;:::i;:::-;8548:34;8643:6;;-1:-1:-1;8675:4:0;-1:-1:-1;8023:665:0;-1:-1:-1;;;;;;8023:665:0:o;11479:4005::-;11595:14;;;-1:-1:-1;;12140:1:0;12137;12130:20;12184:1;12181;12177:9;12168:18;;12240:5;12236:2;12233:13;12225:5;12221:2;12217:14;12213:34;12204:43;;;12346:5;12355:1;12346:10;12342:77;;12392:11;12384:5;:19;;;;;:::i;:::-;;12377:26;;;;;;12342:77;12546:5;12532:11;:19;12524:28;;;;;;12815:17;12953:11;12950:1;12947;12940:25;14360:1;13512;13497:12;;:16;;13482:32;;13620:22;;;;14341:1;:15;;14340:21;;14597;;;14593:25;;14582:36;14667:21;;;14663:25;;14652:36;14738:21;;;14734:25;;14723:36;14809:21;;;14805:25;;14794:36;14880:21;;;14876:25;;14865:36;14952:21;;;14948:25;;;14937:36;;;13467:12;13871;;;13867:23;;;13863:31;;;13070:20;;;13059:32;;;13987:12;;;;13118:21;;13721:16;;;;13978:21;;;;15422:15;;;-1:-1:-1;;;;11479:4005:0:o;31872:229::-;32009:12;32041:52;32063:6;32071:4;32077:1;32080:12;32041:21;:52::i;70698:140::-;70763:4;70824:6;70808:12;;70795:10;;:25;;;;:::i;:::-;:35;;;70698:140;-1:-1:-1;;70698:140:0:o;32958:455::-;33128:12;33186:5;33161:21;:30;;33153:81;;;;-1:-1:-1;;;33153:81:0;;47705:2:1;33153:81:0;;;47687:21:1;47744:2;47724:18;;;47717:30;47783:34;47763:18;;;47756:62;-1:-1:-1;;;47834:18:1;;;47827:36;47880:19;;33153:81:0;47503:402:1;33153:81:0;33246:12;33260:23;33287:6;-1:-1:-1;;;;;33287:11:0;33306:5;33313:4;33287:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33245:73;;;;33336:69;33363:6;33371:7;33380:10;33392:12;35716;35745:7;35741:427;;;35773:10;:17;35794:1;35773:22;35769:290;;-1:-1:-1;;;;;29411:19:0;;;35983:60;;;;-1:-1:-1;;;35983:60:0;;48418:2:1;35983:60:0;;;48400:21:1;48457:2;48437:18;;;48430:30;48496:31;48476:18;;;48469:59;48545:18;;35983:60:0;48216:353:1;35983:60:0;-1:-1:-1;36080:10:0;36073:17;;35741:427;36123:33;36131:10;36143:12;36878:17;;:21;36874:388;;37110:10;37104:17;37167:15;37154:10;37150:2;37146:19;37139:44;36874:388;37237:12;37230:20;;-1:-1:-1;;;37230:20:0;;;;;;;;:::i;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:250;213:2;207:9;255:6;243:19;;292:18;277:34;;313:22;;;274:62;271:88;;;339:18;;:::i;:::-;375:2;368:22;146:250;:::o;401:746::-;444:5;497:3;490:4;482:6;478:17;474:27;464:55;;515:1;512;505:12;464:55;555:6;542:20;585:18;577:6;574:30;571:56;;;607:18;;:::i;:::-;676:2;670:9;768:2;730:17;;-1:-1:-1;;726:31:1;;;759:2;722:40;718:54;706:67;;803:18;788:34;;824:22;;;785:62;782:88;;;850:18;;:::i;:::-;886:2;879:22;910;;;951:19;;;972:4;947:30;944:39;-1:-1:-1;941:59:1;;;996:1;993;986:12;941:59;1060:6;1053:4;1045:6;1041:17;1034:4;1026:6;1022:17;1009:58;1115:1;1087:19;;;1108:4;1083:30;1076:41;;;;1091:6;401:746;-1:-1:-1;;;401:746:1:o;1152:131::-;-1:-1:-1;;;;;1227:31:1;;1217:42;;1207:70;;1273:1;1270;1263:12;1288:134;1356:20;;1385:31;1356:20;1385:31;:::i;1427:118::-;1513:5;1506:13;1499:21;1492:5;1489:32;1479:60;;1535:1;1532;1525:12;1550:128;1615:20;;1644:28;1615:20;1644:28;:::i;1683:2320::-;1778:6;1831:2;1819:9;1810:7;1806:23;1802:32;1799:52;;;1847:1;1844;1837:12;1799:52;1887:9;1874:23;1920:18;1912:6;1909:30;1906:50;;;1952:1;1949;1942:12;1906:50;1975:22;;2031:6;2013:16;;;2009:29;2006:49;;;2051:1;2048;2041:12;2006:49;2077:17;;:::i;:::-;2139:16;;2164:22;;2252:2;2244:11;;;2231:25;2272:14;;;2265:31;2362:2;2354:11;;;2341:25;2382:14;;;2375:31;2472:2;2464:11;;;2451:25;2492:14;;;2485:31;2582:3;2574:12;;;2561:26;2603:15;;;2596:32;2694:3;2686:12;;;2673:26;2715:15;;;2708:32;2806:3;2798:12;;;2785:26;2827:15;;;2820:32;2918:3;2910:12;;;2897:26;2939:15;;;2932:32;3030:3;3022:12;;;3009:26;3051:15;;;3044:32;3144:3;3136:12;;;3123:26;3165:15;;;3158:33;3237:3;3229:12;;3216:26;3267:18;3254:32;;3251:52;;;3299:1;3296;3289:12;3251:52;3336:45;3373:7;3362:8;3358:2;3354:17;3336:45;:::i;:::-;3330:3;3323:5;3319:15;3312:70;;3415:32;3442:3;3438:2;3434:12;3415:32;:::i;:::-;3409:3;3402:5;3398:15;3391:57;3481:32;3508:3;3504:2;3500:12;3481:32;:::i;:::-;3475:3;3468:5;3464:15;3457:57;3547:32;3574:3;3570:2;3566:12;3547:32;:::i;:::-;3541:3;3534:5;3530:15;3523:57;3613:32;3640:3;3636:2;3632:12;3613:32;:::i;:::-;3607:3;3600:5;3596:15;3589:57;3679:32;3706:3;3702:2;3698:12;3679:32;:::i;:::-;3673:3;3666:5;3662:15;3655:57;3745:32;3772:3;3768:2;3764:12;3745:32;:::i;:::-;3739:3;3732:5;3728:15;3721:57;3811:32;3838:3;3834:2;3830:12;3811:32;:::i;:::-;3805:3;3798:5;3794:15;3787:57;3877:32;3904:3;3900:2;3896:12;3877:32;:::i;:::-;3871:3;3864:5;3860:15;3853:57;3943:29;3967:3;3963:2;3959:12;3943:29;:::i;:::-;3937:3;3926:15;;3919:54;3930:5;1683:2320;-1:-1:-1;;;;1683:2320:1:o;4507:289::-;4549:3;4587:5;4581:12;4614:6;4609:3;4602:19;4670:6;4663:4;4656:5;4652:16;4645:4;4640:3;4636:14;4630:47;4722:1;4715:4;4706:6;4701:3;4697:16;4693:27;4686:38;4785:4;4778:2;4774:7;4769:2;4761:6;4757:15;4753:29;4748:3;4744:39;4740:50;4733:57;;;4507:289;;;;:::o;4801:220::-;4950:2;4939:9;4932:21;4913:4;4970:45;5011:2;5000:9;4996:18;4988:6;4970:45;:::i;5026:226::-;5085:6;5138:2;5126:9;5117:7;5113:23;5109:32;5106:52;;;5154:1;5151;5144:12;5106:52;-1:-1:-1;5199:23:1;;5026:226;-1:-1:-1;5026:226:1:o;5257:367::-;5325:6;5333;5386:2;5374:9;5365:7;5361:23;5357:32;5354:52;;;5402:1;5399;5392:12;5354:52;5441:9;5428:23;5460:31;5485:5;5460:31;:::i;:::-;5510:5;5588:2;5573:18;;;;5560:32;;-1:-1:-1;;;5257:367:1:o;5917:508::-;5994:6;6002;6010;6063:2;6051:9;6042:7;6038:23;6034:32;6031:52;;;6079:1;6076;6069:12;6031:52;6118:9;6105:23;6137:31;6162:5;6137:31;:::i;:::-;6187:5;-1:-1:-1;6244:2:1;6229:18;;6216:32;6257:33;6216:32;6257:33;:::i;:::-;5917:508;;6309:7;;-1:-1:-1;;;6389:2:1;6374:18;;;;6361:32;;5917:508::o;6430:247::-;6489:6;6542:2;6530:9;6521:7;6517:23;6513:32;6510:52;;;6558:1;6555;6548:12;6510:52;6597:9;6584:23;6616:31;6641:5;6616:31;:::i;6871:487::-;6948:6;6956;6964;7017:2;7005:9;6996:7;6992:23;6988:32;6985:52;;;7033:1;7030;7023:12;6985:52;7072:9;7059:23;7091:31;7116:5;7091:31;:::i;:::-;7141:5;7219:2;7204:18;;7191:32;;-1:-1:-1;7322:2:1;7307:18;;;7294:32;;6871:487;-1:-1:-1;;;6871:487:1:o;7363:114::-;7447:4;7440:5;7436:16;7429:5;7426:27;7416:55;;7467:1;7464;7457:12;7482:811;7586:6;7594;7602;7610;7663:3;7651:9;7642:7;7638:23;7634:33;7631:53;;;7680:1;7677;7670:12;7631:53;7719:9;7706:23;7738:31;7763:5;7738:31;:::i;:::-;7788:5;-1:-1:-1;7845:2:1;7830:18;;7817:32;7858:31;7817:32;7858:31;:::i;:::-;7908:7;-1:-1:-1;7966:2:1;7951:18;;7938:32;7993:18;7982:30;;7979:50;;;8025:1;8022;8015:12;7979:50;8048;8090:7;8081:6;8070:9;8066:22;8048:50;:::i;:::-;8038:60;;;8151:2;8140:9;8136:18;8123:32;8180:18;8170:8;8167:32;8164:52;;;8212:1;8209;8202:12;8164:52;8235;8279:7;8268:8;8257:9;8253:24;8235:52;:::i;:::-;8225:62;;;7482:811;;;;;;;:::o;8298:403::-;8381:6;8389;8442:2;8430:9;8421:7;8417:23;8413:32;8410:52;;;8458:1;8455;8448:12;8410:52;8497:9;8484:23;8516:31;8541:5;8516:31;:::i;:::-;8566:5;-1:-1:-1;8623:2:1;8608:18;;8595:32;8636:33;8595:32;8636:33;:::i;:::-;8688:7;8678:17;;;8298:403;;;;;:::o;8706:466::-;8783:6;8791;8799;8852:2;8840:9;8831:7;8827:23;8823:32;8820:52;;;8868:1;8865;8858:12;8820:52;-1:-1:-1;;8913:23:1;;;9033:2;9018:18;;9005:32;;-1:-1:-1;9136:2:1;9121:18;;;9108:32;;8706:466;-1:-1:-1;8706:466:1:o;9430:367::-;9498:6;9506;9559:2;9547:9;9538:7;9534:23;9530:32;9527:52;;;9575:1;9572;9565:12;9527:52;9620:23;;;-1:-1:-1;9719:2:1;9704:18;;9691:32;9732:33;9691:32;9732:33;:::i;9802:508::-;9879:6;9887;9895;9948:2;9936:9;9927:7;9923:23;9919:32;9916:52;;;9964:1;9961;9954:12;9916:52;10009:23;;;-1:-1:-1;10108:2:1;10093:18;;10080:32;10121:33;10080:32;10121:33;:::i;:::-;10173:7;-1:-1:-1;10232:2:1;10217:18;;10204:32;10245:33;10204:32;10245:33;:::i;:::-;10297:7;10287:17;;;9802:508;;;;;:::o;10315:1293::-;10444:6;10452;10460;10468;10476;10484;10492;10500;10508;10561:3;10549:9;10540:7;10536:23;10532:33;10529:53;;;10578:1;10575;10568:12;10529:53;10623:23;;;-1:-1:-1;10743:2:1;10728:18;;10715:32;;-1:-1:-1;10846:2:1;10831:18;;10818:32;;-1:-1:-1;10949:2:1;10934:18;;10921:32;;-1:-1:-1;11031:3:1;11016:19;;11003:33;11045;11003;11045;:::i;:::-;11097:7;-1:-1:-1;11156:3:1;11141:19;;11128:33;11170;11128;11170;:::i;:::-;11222:7;-1:-1:-1;11281:3:1;11266:19;;11253:33;11295;11253;11295;:::i;:::-;11347:7;-1:-1:-1;11406:3:1;11391:19;;11378:33;11420;11378;11420;:::i;:::-;11472:7;-1:-1:-1;11531:3:1;11516:19;;11503:33;11545:31;11503:33;11545:31;:::i;:::-;11595:7;11585:17;;;10315:1293;;;;;;;;;;;:::o;11613:376::-;11675:6;11683;11736:2;11724:9;11715:7;11711:23;11707:32;11704:52;;;11752:1;11749;11742:12;11704:52;11791:9;11778:23;11810:28;11832:5;11810:28;:::i;:::-;11857:5;-1:-1:-1;11914:2:1;11899:18;;11886:32;11927:30;11886:32;11927:30;:::i;11994:608::-;12080:6;12088;12096;12104;12157:3;12145:9;12136:7;12132:23;12128:33;12125:53;;;12174:1;12171;12164:12;12125:53;12219:23;;;-1:-1:-1;12339:2:1;12324:18;;12311:32;;-1:-1:-1;12442:2:1;12427:18;;12414:32;;-1:-1:-1;12524:2:1;12509:18;;12496:32;12537:33;12496:32;12537:33;:::i;:::-;11994:608;;;;-1:-1:-1;11994:608:1;;-1:-1:-1;;11994:608:1:o;13396:346::-;13464:6;13472;13525:2;13513:9;13504:7;13500:23;13496:32;13493:52;;;13541:1;13538;13531:12;13493:52;-1:-1:-1;;13586:23:1;;;13706:2;13691:18;;;13678:32;;-1:-1:-1;13396:346:1:o;13747:587::-;13833:6;13841;13849;13857;13910:3;13898:9;13889:7;13885:23;13881:33;13878:53;;;13927:1;13924;13917:12;13878:53;-1:-1:-1;;13972:23:1;;;14092:2;14077:18;;14064:32;;-1:-1:-1;14195:2:1;14180:18;;14167:32;;14298:2;14283:18;14270:32;;-1:-1:-1;13747:587:1;-1:-1:-1;13747:587:1:o;14339:338::-;14541:2;14523:21;;;14580:2;14560:18;;;14553:30;-1:-1:-1;;;14614:2:1;14599:18;;14592:44;14668:2;14653:18;;14339:338::o;14682:343::-;14884:2;14866:21;;;14923:2;14903:18;;;14896:30;-1:-1:-1;;;14957:2:1;14942:18;;14935:49;15016:2;15001:18;;14682:343::o;15030:2060::-;15231:2;15220:9;15213:21;15276:6;15270:13;15265:2;15254:9;15250:18;15243:41;15338:2;15330:6;15326:15;15320:22;15315:2;15304:9;15300:18;15293:50;15397:2;15389:6;15385:15;15379:22;15374:2;15363:9;15359:18;15352:50;15457:2;15449:6;15445:15;15439:22;15433:3;15422:9;15418:19;15411:51;15517:3;15509:6;15505:16;15499:23;15493:3;15482:9;15478:19;15471:52;15578:3;15570:6;15566:16;15560:23;15554:3;15543:9;15539:19;15532:52;15639:3;15631:6;15627:16;15621:23;15615:3;15604:9;15600:19;15593:52;15700:3;15692:6;15688:16;15682:23;15676:3;15665:9;15661:19;15654:52;15761:3;15753:6;15749:16;15743:23;15737:3;15726:9;15722:19;15715:52;15822:3;15814:6;15810:16;15804:23;15798:3;15787:9;15783:19;15776:52;15194:4;15875:3;15867:6;15863:16;15857:23;15917:6;15911:3;15900:9;15896:19;15889:35;15947:52;15994:3;15983:9;15979:19;15965:12;15947:52;:::i;:::-;15933:66;;16048:3;16040:6;16036:16;16030:23;16062:55;16112:3;16101:9;16097:19;16081:14;-1:-1:-1;;;;;4074:31:1;4062:44;;4008:104;16062:55;-1:-1:-1;16166:3:1;16154:16;;16148:23;-1:-1:-1;;;;;4074:31:1;;16230:3;16215:19;;4062:44;-1:-1:-1;16284:3:1;16272:16;;16266:23;-1:-1:-1;;;;;4074:31:1;;16348:3;16333:19;;4062:44;-1:-1:-1;16402:3:1;16390:16;;16384:23;-1:-1:-1;;;;;4074:31:1;;16466:3;16451:19;;4062:44;-1:-1:-1;16520:3:1;16508:16;;16502:23;-1:-1:-1;;;;;4074:31:1;;16584:3;16569:19;;4062:44;-1:-1:-1;16638:3:1;16626:16;;16620:23;-1:-1:-1;;;;;4074:31:1;;16702:3;16687:19;;4062:44;-1:-1:-1;16756:3:1;16744:16;;16738:23;-1:-1:-1;;;;;4074:31:1;;16820:3;16805:19;;4062:44;-1:-1:-1;16874:3:1;16862:16;;16856:23;-1:-1:-1;;;;;4074:31:1;;16938:3;16923:19;;4062:44;-1:-1:-1;16992:3:1;16980:16;;16974:23;5699:13;;5692:21;17053:6;17038:22;;5680:34;-1:-1:-1;17078:6:1;15030:2060;-1:-1:-1;;;15030:2060:1:o;17095:251::-;17165:6;17218:2;17206:9;17197:7;17193:23;17189:32;17186:52;;;17234:1;17231;17224:12;17186:52;17266:9;17260:16;17285:31;17310:5;17285:31;:::i;17706:184::-;17776:6;17829:2;17817:9;17808:7;17804:23;17800:32;17797:52;;;17845:1;17842;17835:12;17797:52;-1:-1:-1;17868:16:1;;17706:184;-1:-1:-1;17706:184:1:o;18174:380::-;18253:1;18249:12;;;;18296;;;18317:61;;18371:4;18363:6;18359:17;18349:27;;18317:61;18424:2;18416:6;18413:14;18393:18;18390:38;18387:161;;18470:10;18465:3;18461:20;18458:1;18451:31;18505:4;18502:1;18495:15;18533:4;18530:1;18523:15;18387:161;;18174:380;;;:::o;18559:352::-;18761:2;18743:21;;;18800:2;18780:18;;;18773:30;18839;18834:2;18819:18;;18812:58;18902:2;18887:18;;18559:352::o;18916:347::-;19118:2;19100:21;;;19157:2;19137:18;;;19130:30;19196:25;19191:2;19176:18;;19169:53;19254:2;19239:18;;18916:347::o;20329:127::-;20390:10;20385:3;20381:20;20378:1;20371:31;20421:4;20418:1;20411:15;20445:4;20442:1;20435:15;20461:128;20528:9;;;20549:11;;;20546:37;;;20563:18;;:::i;21819:518::-;21921:2;21916:3;21913:11;21910:421;;;21957:5;21954:1;21947:16;22001:4;21998:1;21988:18;22071:2;22059:10;22055:19;22052:1;22048:27;22042:4;22038:38;22107:4;22095:10;22092:20;22089:47;;;-1:-1:-1;22130:4:1;22089:47;22185:2;22180:3;22176:12;22173:1;22169:20;22163:4;22159:31;22149:41;;22240:81;22258:2;22251:5;22248:13;22240:81;;;22317:1;22303:16;;22284:1;22273:13;22240:81;;22513:1299;22639:3;22633:10;22666:18;22658:6;22655:30;22652:56;;;22688:18;;:::i;:::-;22717:97;22807:6;22767:38;22799:4;22793:11;22767:38;:::i;:::-;22761:4;22717:97;:::i;:::-;22863:4;22894:2;22883:14;;22911:1;22906:649;;;;23599:1;23616:6;23613:89;;;-1:-1:-1;23668:19:1;;;23662:26;23613:89;-1:-1:-1;;22470:1:1;22466:11;;;22462:24;22458:29;22448:40;22494:1;22490:11;;;22445:57;23715:81;;22876:930;;22906:649;21766:1;21759:14;;;21803:4;21790:18;;-1:-1:-1;;22942:20:1;;;23060:222;23074:7;23071:1;23068:14;23060:222;;;23156:19;;;23150:26;23135:42;;23263:4;23248:20;;;;23216:1;23204:14;;;;23090:12;23060:222;;;23064:3;23310:6;23301:7;23298:19;23295:201;;;23371:19;;;23365:26;-1:-1:-1;;23454:1:1;23450:14;;;23466:3;23446:24;23442:37;23438:42;23423:58;23408:74;;23295:201;-1:-1:-1;;;;23542:1:1;23526:14;;;23522:22;23509:36;;-1:-1:-1;22513:1299:1:o;26438:340::-;26640:2;26622:21;;;26679:2;26659:18;;;26652:30;-1:-1:-1;;;26713:2:1;26698:18;;26691:46;26769:2;26754:18;;26438:340::o;27484:346::-;27686:2;27668:21;;;27725:2;27705:18;;;27698:30;-1:-1:-1;;;27759:2:1;27744:18;;27737:52;27821:2;27806:18;;27484:346::o;27835:342::-;28037:2;28019:21;;;28076:2;28056:18;;;28049:30;-1:-1:-1;;;28110:2:1;28095:18;;28088:48;28168:2;28153:18;;27835:342::o;30979:125::-;31044:9;;;31065:10;;;31062:36;;;31078:18;;:::i;31109:247::-;31177:6;31230:2;31218:9;31209:7;31205:23;31201:32;31198:52;;;31246:1;31243;31236:12;31198:52;31278:9;31272:16;31297:29;31320:5;31297:29;:::i;34788:127::-;34849:10;34844:3;34840:20;34837:1;34830:31;34880:4;34877:1;34870:15;34904:4;34901:1;34894:15;34920:136;34959:3;34987:5;34977:39;;34996:18;;:::i;:::-;-1:-1:-1;;;35032:18:1;;34920:136::o;35061:127::-;35122:10;35117:3;35113:20;35110:1;35103:31;35153:4;35150:1;35143:15;35177:4;35174:1;35167:15;35193:344;35395:2;35377:21;;;35434:2;35414:18;;;35407:30;-1:-1:-1;;;35468:2:1;35453:18;;35446:50;35528:2;35513:18;;35193:344::o;38373:168::-;38446:9;;;38477;;38494:15;;;38488:22;;38474:37;38464:71;;38515:18;;:::i;38546:127::-;38607:10;38602:3;38598:20;38595:1;38588:31;38638:4;38635:1;38628:15;38662:4;38659:1;38652:15;38678:120;38718:1;38744;38734:35;;38749:18;;:::i;:::-;-1:-1:-1;38783:9:1;;38678:120::o;43726:127::-;43787:10;43782:3;43778:20;43775:1;43768:31;43818:4;43815:1;43808:15;43842:4;43839:1;43832:15;43858:245;43925:6;43978:2;43966:9;43957:7;43953:23;43949:32;43946:52;;;43994:1;43991;43984:12;43946:52;44026:9;44020:16;44045:28;44067:5;44045:28;:::i;44852:200::-;44918:9;;;44891:4;44946:9;;44974:10;;44986:12;;;44970:29;45009:12;;;45001:21;;44967:56;44964:82;;;45026:18;;:::i;:::-;44964:82;44852:200;;;;:::o;45057:193::-;45096:1;45122;45112:35;;45127:18;;:::i;:::-;-1:-1:-1;;;45163:18:1;;-1:-1:-1;;45183:13:1;;45159:38;45156:64;;;45200:18;;:::i;:::-;-1:-1:-1;45234:10:1;;45057:193::o;45255:216::-;45319:9;;;45347:11;;;45294:3;45377:9;;45405:10;;45401:19;;45430:10;;45422:19;;45398:44;45395:70;;;45445:18;;:::i;:::-;45395:70;;45255:216;;;;:::o;45476:237::-;45548:9;;;45515:7;45573:9;;-1:-1:-1;;;45584:18:1;;45569:34;45566:60;;;45606:18;;:::i;:::-;45679:1;45670:7;45665:16;45662:1;45659:23;45655:1;45648:9;45645:38;45635:72;;45687:18;;:::i;47910:301::-;48039:3;48077:6;48071:13;48123:6;48116:4;48108:6;48104:17;48099:3;48093:37;48185:1;48149:16;;48174:13;;;-1:-1:-1;48149:16:1;47910:301;-1:-1:-1;47910:301:1:o

Swarm Source

ipfs://51ad39efa317233bce494ff6bbff2c2c32aef832f31fa92c121a1dbf1ae370f5

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.