ETH Price: $3,998.60 (+0.02%)

Contract

0x254A93feff3BEeF9cA004E913bB5443754e8aB19
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
208232932024-09-24 21:57:5975 days ago1727215079  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TokenizedStrategy

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: AGPL-3.0
    pragma solidity >=0.8.18 ^0.8.0 ^0.8.1;

    // lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

    // OpenZeppelin Contracts (last updated v4.9.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);
    }

    // lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Permit.sol

    // OpenZeppelin Contracts (last updated v4.9.4) (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.
    *
    * ==== Security Considerations
    *
    * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
    * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
    * considered as an intention to spend the allowance in any specific way. The second is that because permits have
    * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
    * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
    * generally recommended is:
    *
    * ```solidity
    * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
    *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
    *     doThing(..., value);
    * }
    *
    * function doThing(..., uint256 value) public {
    *     token.safeTransferFrom(msg.sender, address(this), value);
    *     ...
    * }
    * ```
    *
    * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
    * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
    * {SafeERC20-safeTransferFrom}).
    *
    * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
    * contracts should have entry points that don't rely on permit.
    */
    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].
        *
        * CAUTION: See Security Considerations above.
        */
        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);
    }

    // lib/openzeppelin-contracts/contracts/utils/Address.sol

    // OpenZeppelin Contracts (last updated v4.9.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.8.0/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);
            }
        }
    }

    // lib/openzeppelin-contracts/contracts/utils/Context.sol

    // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

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

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

        function _contextSuffixLength() internal view virtual returns (uint256) {
            return 0;
        }
    }

    // lib/openzeppelin-contracts/contracts/utils/math/Math.sol

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

    /**
    * @dev Standard math utilities missing in the Solidity language.
    */
    library Math {
        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) {
                    // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                    // The surrounding unchecked block does not change this fact.
                    // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                    return prod0 / denominator;
                }

                // Make sure the result is less than 2^256. Also prevents denominator == 0.
                require(denominator > prod1, "Math: mulDiv overflow");

                ///////////////////////////////////////////////
                // 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 256, 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);
            }
        }
    }

    // src/interfaces/IBaseStrategy.sol

    interface IBaseStrategy {
        function tokenizedStrategyAddress() external view returns (address);

        /*//////////////////////////////////////////////////////////////
                                IMMUTABLE FUNCTIONS
        //////////////////////////////////////////////////////////////*/

        function availableDepositLimit(
            address _owner
        ) external view returns (uint256);

        function availableWithdrawLimit(
            address _owner
        ) external view returns (uint256);

        function deployFunds(uint256 _assets) external;

        function freeFunds(uint256 _amount) external;

        function harvestAndReport() external returns (uint256);

        function tendThis(uint256 _totalIdle) external;

        function shutdownWithdraw(uint256 _amount) external;

        function tendTrigger() external view returns (bool, bytes memory);
    }

    // src/interfaces/IFactory.sol

    interface IFactory {
        function protocol_fee_config() external view returns (uint16, address);
    }

    // lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

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

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

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

    // lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

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

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

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

        uint256 private _totalSupply;

        string private _name;
        string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

            return true;
        }

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

            _beforeTokenTransfer(from, to, amount);

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

            emit Transfer(from, to, amount);

            _afterTokenTransfer(from, to, amount);
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol

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

    /**
    * @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;

        /**
        * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
        * non-reverting calls are assumed to be successful.
        */
        function safeTransfer(IERC20 token, address to, uint256 value) internal {
            _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
        }

        /**
        * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
        * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
        */
        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));
        }

        /**
        * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
        * non-reverting calls are assumed to be successful.
        */
        function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
            uint256 oldAllowance = token.allowance(address(this), spender);
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
        }

        /**
        * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
        * non-reverting calls are assumed to be successful.
        */
        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");
                _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
            }
        }

        /**
        * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
        * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
        * to be set to zero before setting it to a non-zero value, such as USDT.
        */
        function forceApprove(IERC20 token, address spender, uint256 value) internal {
            bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

            if (!_callOptionalReturnBool(token, approvalCall)) {
                _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
                _callOptionalReturn(token, approvalCall);
            }
        }

        /**
        * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
        * Revert on invalid signature.
        */
        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");
            require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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).
        *
        * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
        */
        function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
            // 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 cannot use {Address-functionCall} here since this should return false
            // and not revert is the subcall reverts.

            (bool success, bytes memory returndata) = address(token).call(data);
            return
                success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
        }
    }

    // src/TokenizedStrategy.sol

    /**$$$$$$$$$$$$$$$$$$$$$$$$$$$&Mr/|1+~>>iiiiiiiiiii>~+{|tuMW$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$$$$$$$$$$B#j]->iiiiiiiiiiiiiiiiiiiiiiiiiiii>-?f*B$$$$$$$$$$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$$$$$$@zj}~iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii~}fv@$$$$$$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$$$@z(+iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii+)zB$$$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$Mf~iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii~t#@$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$@u[iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii?n@$$$$$$$$$$$$$
    $$$$$$$$$$$@z]iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii?u@$$$$$$$$$$$
    $$$$$$$$$$v]iiiiiiiiiiiiiiii,.';iiiiiiiiiiiiiiiiiiiiiiiiii;'."iiiiiiiiiiiiiiii?u$$$$$$$$$$
    $$$$$$$$%)>iiiiiiiiiiiiiii,.    ';iiiiiiiiiiiiiiiiiiiiii;'    ."iiiiiiiiiiiiiiii1%$$$$$$$$
    $$$$$$$c~iiiiiiiiiiiiiii,.        ';iiiiiiiiiiiiiiiiii;'        ."iiiiiiiiiiiiiii~u$$$$$$$
    $$$$$B/>iiiiiiiiiiiiii!'            `IiiiiiiiiiiiiiiI`            .Iiiiiiiiiiiiiii>|%$$$$$
    $$$$@)iiiiiiiiiiiiiiiii;'             `Iiiiiiiiiiil`             ';iiiiiiiiiiiiiiiii}@$$$$
    $$$B|iiiiiiiiiiiiiiiiiiii;'             `Iiiiiiil`             ';iiiiiiiiiiiiiiiiiiii1B$$$
    $$@)iiiiiiiiiiiiiiiiiiiiiii:'             `;iiI`             ':iiiiiiiiiiiiiiiiiiiiiii{B$$
    $$|iiiiiiiiiiiiiiiiiiiiiiiiii;'             ``             ':iiiiiiiiiiiiiiiiiiiiiiiiii1$$
    $v>iiiiiiiiiiiiiiiiiiiiiiiiiiii:'                        ':iiiiiiiiiiiiiiiiiiiiiiiiiiii>x$
    &?iiiiiiiiiiiiiiiiiiiiiiiiiiiiiii:'                    .,iiiiiiiiiiiiiiiiiiiiiiiiiiiiiii-W
    ziiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii:'                .,iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiv
    -iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii:'            .,iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii-
    <iiiiiiiiiiiiiiiiiiii!.':iiiiiiiiiiiiii,          "iiiiiiiiiiiiii;'.Iiiiiiiiiiiiiiiiiiiii<
    iiiiiiiiiiiiiiiiiiiii'   ';iiiiiiiiiiiii          Iiiiiiiiiiiii;'   .iiiiiiiiiiiiiiiiiiiii
    iiiiiiiiiiiiiiiiiiii,      ';iiiiiiiiiii          IiiiiiiiiiiI`      `iiiiiiiiiiiiiiiiiiii
    iiiiiiiiiiiiiiiiiiii.        `Iiiiiiiiii          Iiiiiiiii!`         !iiiiiiiiiiiiiiiiiii
    iiiiiiiiiiiiiiiiiii;          :iiiiiiiii          Iiiiiiiii!          ,iiiiiiiiiiiiiiiiiii
    iiiiiiiiiiiiiiiiiii,          iiiiiiiiii          Iiiiiiiiii.         ^iiiiiiiiiiiiiiiiiii
    <iiiiiiiiiiiiiiiiii,          iiiiiiiiii          Iiiiiiiiii'         ^iiiiiiiiiiiiiiiiii<
    -iiiiiiiiiiiiiiiiii;          Iiiiiiiiii          Iiiiiiiiii.         "iiiiiiiiiiiiiiiiii-
    ziiiiiiiiiiiiiiiiiii.         'iiiiiiiii''''''''''liiiiiiii^          liiiiiiiiiiiiiiiiiiv
    &?iiiiiiiiiiiiiiiiii^          ^iiiiiiiiiiiiiiiiiiiiiiiiii,          `iiiiiiiiiiiiiiiiii_W
    $u>iiiiiiiiiiiiiiiiii.          `!iiiiiiiiiiiiiiiiiiiiiii^          .liiiiiiiiiiiiiiiiiir$
    $$(iiiiiiiiiiiiiiiiii;.          ."iiiiiiiiiiiiiiiiiiii,.           :iiiiiiiiiiiiiiiiii}$$
    $$@{iiiiiiiiiiiiiiiiii;.           .`:iiiiiiiiiiiiii;^.            :iiiiiiiiiiiiiiiiii}B$$
    $$$B)iiiiiiiiiiiiiiiiii!'              '`",::::,"`'.             .Iiiiiiiiiiiiiiiiiii{%$$$
    $$$$@1iiiiiiiiiiiiiiiiiii,.                                     ^iiiiiiiiiiiiiiiiiii[@$$$$
    $$$$$B|>iiiiiiiiiiiiiiiiii!^.                                 `liiiiiiiiiiiiiiiiii>)%$$$$$
    $$$$$$$c~iiiiiiiiiiiiiiiiiiii"'                            ."!iiiiiiiiiiiiiiiiiii~n$$$$$$$
    $$$$$$$$B)iiiiiiiiiiiiiiiiiiiii!,`.                    .'"liiiiiiiiiiiiiiiiiiiii1%$$$$$$$$
    $$$$$$$$$@u]iiiiiiiiiiiiiiiiiiiiiiil,^`'..      ..''^,liiiiiiiiiiiiiiiiiiiiiii-x@$$$$$$$$$
    $$$$$$$$$$$@v?iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii-x$$$$$$$$$$$$
    $$$$$$$$$$$$$@n?iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii-rB$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$/~iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii<\*@$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$$$Bc1~iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii~{v%$$$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$$$$$$Bvf]<iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii<]tuB$$$$$$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$$$$$$$$$$%zt-+>iiiiiiiiiiiiiiiiiiiiiiiiiiiii+_tc%$$$$$$$$$$$$$$$$$$$$$$$$$
    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$W#u/|{+~>iiiiiiiiiiii><+{|/n#W$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/

    /**
    * @title Yearn Tokenized Strategy
    * @author yearn.finance
    * @notice
    *  This TokenizedStrategy can be used by anyone wishing to easily build
    *  and deploy their own custom ERC4626 compliant single strategy Vault.
    *
    *  The TokenizedStrategy contract is meant to be used as the proxy
    *  implementation contract that will handle all logic, storage and
    *  management for a custom strategy that inherits the `BaseStrategy`.
    *  Any function calls to the strategy that are not defined within that
    *  strategy will be forwarded through a delegateCall to this contract.

    *  A strategist only needs to override a few simple functions that are
    *  focused entirely on the strategy specific needs to easily and cheaply
    *  deploy their own permissionless 4626 compliant vault.
    */
    contract TokenizedStrategy {
        using Math for uint256;
        using SafeERC20 for ERC20;

        /*//////////////////////////////////////////////////////////////
                                    EVENTS
        //////////////////////////////////////////////////////////////*/
        /**
        * @notice Emitted when a strategy is shutdown.
        */
        event StrategyShutdown();

        /**
        * @notice Emitted on the initialization of any new `strategy` that uses `asset`
        * with this specific `apiVersion`.
        */
        event NewTokenizedStrategy(
            address indexed strategy,
            address indexed asset,
            string apiVersion
        );

        /**
        * @notice Emitted when the strategy reports `profit` or `loss` and
        * `performanceFees` and `protocolFees` are paid out.
        */
        event Reported(
            uint256 profit,
            uint256 loss,
            uint256 protocolFees,
            uint256 performanceFees
        );

        /**
        * @notice Emitted when the 'performanceFeeRecipient' address is
        * updated to 'newPerformanceFeeRecipient'.
        */
        event UpdatePerformanceFeeRecipient(
            address indexed newPerformanceFeeRecipient
        );

        /**
        * @notice Emitted when the 'keeper' address is updated to 'newKeeper'.
        */
        event UpdateKeeper(address indexed newKeeper);

        /**
        * @notice Emitted when the 'performanceFee' is updated to 'newPerformanceFee'.
        */
        event UpdatePerformanceFee(uint16 newPerformanceFee);

        /**
        * @notice Emitted when the 'management' address is updated to 'newManagement'.
        */
        event UpdateManagement(address indexed newManagement);

        /**
        * @notice Emitted when the 'emergencyAdmin' address is updated to 'newEmergencyAdmin'.
        */
        event UpdateEmergencyAdmin(address indexed newEmergencyAdmin);

        /**
        * @notice Emitted when the 'profitMaxUnlockTime' is updated to 'newProfitMaxUnlockTime'.
        */
        event UpdateProfitMaxUnlockTime(uint256 newProfitMaxUnlockTime);

        /**
        * @notice Emitted when the 'pendingManagement' address is updated to 'newPendingManagement'.
        */
        event UpdatePendingManagement(address indexed newPendingManagement);

        /**
        * @notice 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
        );

        /**
        * @notice 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);

        /**
        * @notice Emitted when the `caller` has exchanged `assets` for `shares`,
        * and transferred those `shares` to `owner`.
        */
        event Deposit(
            address indexed caller,
            address indexed owner,
            uint256 assets,
            uint256 shares
        );

        /**
        * @notice Emitted when the `caller` has exchanged `owner`s `shares` for `assets`,
        * and transferred those `assets` to `receiver`.
        */
        event Withdraw(
            address indexed caller,
            address indexed receiver,
            address indexed owner,
            uint256 assets,
            uint256 shares
        );

        /*//////////////////////////////////////////////////////////////
                            STORAGE STRUCT
        //////////////////////////////////////////////////////////////*/

        /**
        * @dev The struct that will hold all the storage data for each strategy
        * that uses this implementation.
        *
        * This replaces all state variables for a traditional contract. This
        * full struct will be initialized on the creation of the strategy
        * and continually updated and read from for the life of the contract.
        *
        * We combine all the variables into one struct to limit the amount of
        * times the custom storage slots need to be loaded during complex functions.
        *
        * Loading the corresponding storage slot for the struct does not
        * load any of the contents of the struct into memory. So the size
        * will not increase memory related gas usage.
        */
        // prettier-ignore
        struct StrategyData {
            // The ERC20 compliant underlying asset that will be
            // used by the Strategy
            ERC20 asset;

            // These are the corresponding ERC20 variables needed for the
            // strategies token that is issued and burned on each deposit or withdraw.
            uint8 decimals; // The amount of decimals that `asset` and strategy use.
            string name; // The name of the token for the strategy.
            uint256 totalSupply; // The total amount of shares currently issued.
            mapping(address => uint256) nonces; // Mapping of nonces used for permit functions.
            mapping(address => uint256) balances; // Mapping to track current balances for each account that holds shares.
            mapping(address => mapping(address => uint256)) allowances; // Mapping to track the allowances for the strategies shares.

            // We manually track `totalAssets` to prevent PPS manipulation through airdrops.
            uint256 totalAssets;

            // Variables for profit reporting and locking.
            // We use uint96 for timestamps to fit in the same slot as an address. That overflows in 2.5e+21 years.
            // I know Yearn moves slowly but surely V4 will be out by then.
            // If the timestamps ever overflow tell the cyborgs still using this code I'm sorry for being cheap.
            uint256 profitUnlockingRate; // The rate at which locked profit is unlocking.
            uint96 fullProfitUnlockDate; // The timestamp at which all locked shares will unlock.
            address keeper; // Address given permission to call {report} and {tend}.
            uint32 profitMaxUnlockTime; // The amount of seconds that the reported profit unlocks over.
            uint16 performanceFee; // The percent in basis points of profit that is charged as a fee.
            address performanceFeeRecipient; // The address to pay the `performanceFee` to.
            uint96 lastReport; // The last time a {report} was called.

            // Access management variables.
            address management; // Main address that can set all configurable variables.
            address pendingManagement; // Address that is pending to take over `management`.
            address emergencyAdmin; // Address to act in emergencies as well as `management`.

            // Strategy Status
            uint8 entered; // To prevent reentrancy. Use uint8 for gas savings.
            bool shutdown; // Bool that can be used to stop deposits into the strategy.
        }

        /*//////////////////////////////////////////////////////////////
                                MODIFIERS
        //////////////////////////////////////////////////////////////*/

        /**
        * @dev Require that the call is coming from the strategies management.
        */
        modifier onlyManagement() {
            requireManagement(msg.sender);
            _;
        }

        /**
        * @dev Require that the call is coming from either the strategies
        * management or the keeper.
        */
        modifier onlyKeepers() {
            requireKeeperOrManagement(msg.sender);
            _;
        }

        /**
        * @dev Require that the call is coming from either the strategies
        * management or the emergencyAdmin.
        */
        modifier onlyEmergencyAuthorized() {
            requireEmergencyAuthorized(msg.sender);
            _;
        }

        /**
        * @dev Prevents a contract from calling itself, directly or indirectly.
        * Placed over all state changing functions for increased safety.
        */
        modifier nonReentrant() {
            StrategyData storage S = _strategyStorage();
            // On the first call to nonReentrant, `entered` will be false (2)
            require(S.entered != ENTERED, "ReentrancyGuard: reentrant call");

            // Any calls to nonReentrant after this point will fail
            S.entered = ENTERED;

            _;

            // Reset to false (1) once call has finished.
            S.entered = NOT_ENTERED;
        }

        /**
        * @notice Require a caller is `management`.
        * @dev Is left public so that it can be used by the Strategy.
        *
        * When the Strategy calls this the msg.sender would be the
        * address of the strategy so we need to specify the sender.
        *
        * @param _sender The original msg.sender.
        */
        function requireManagement(address _sender) public view {
            require(_sender == _strategyStorage().management, "!management");
        }

        /**
        * @notice Require a caller is the `keeper` or `management`.
        * @dev Is left public so that it can be used by the Strategy.
        *
        * When the Strategy calls this the msg.sender would be the
        * address of the strategy so we need to specify the sender.
        *
        * @param _sender The original msg.sender.
        */
        function requireKeeperOrManagement(address _sender) public view {
            StrategyData storage S = _strategyStorage();
            require(_sender == S.keeper || _sender == S.management, "!keeper");
        }

        /**
        * @notice Require a caller is the `management` or `emergencyAdmin`.
        * @dev Is left public so that it can be used by the Strategy.
        *
        * When the Strategy calls this the msg.sender would be the
        * address of the strategy so we need to specify the sender.
        *
        * @param _sender The original msg.sender.
        */
        function requireEmergencyAuthorized(address _sender) public view {
            StrategyData storage S = _strategyStorage();
            require(
                _sender == S.emergencyAdmin || _sender == S.management,
                "!emergency authorized"
            );
        }

        /*//////////////////////////////////////////////////////////////
                                CONSTANTS
        //////////////////////////////////////////////////////////////*/

        /// @notice API version this TokenizedStrategy implements.
        string internal constant API_VERSION = "3.0.3";

        /// @notice Value to set the `entered` flag to during a call.
        uint8 internal constant ENTERED = 2;
        /// @notice Value to set the `entered` flag to at the end of the call.
        uint8 internal constant NOT_ENTERED = 1;

        /// @notice Maximum in Basis Points the Performance Fee can be set to.
        uint16 public constant MAX_FEE = 5_000; // 50%

        /// @notice Used for fee calculations.
        uint256 internal constant MAX_BPS = 10_000;
        /// @notice Used for profit unlocking rate calculations.
        uint256 internal constant MAX_BPS_EXTENDED = 1_000_000_000_000;

        /// @notice Seconds per year for max profit unlocking time.
        uint256 internal constant SECONDS_PER_YEAR = 31_556_952; // 365.2425 days

        /**
        * @dev Custom storage slot that will be used to store the
        * `StrategyData` struct that holds each strategies
        * specific storage variables.
        *
        * Any storage updates done by the TokenizedStrategy actually update
        * the storage of the calling contract. This variable points
        * to the specific location that will be used to store the
        * struct that holds all that data.
        *
        * We use a custom string in order to get a random
        * storage slot that will allow for strategists to use any
        * amount of storage in their strategy without worrying
        * about collisions.
        */
        bytes32 internal constant BASE_STRATEGY_STORAGE =
            bytes32(uint256(keccak256("yearn.base.strategy.storage")) - 1);

        /*//////////////////////////////////////////////////////////////
                                IMMUTABLE
        //////////////////////////////////////////////////////////////*/

        /// @notice Address of the previously deployed Vault factory that the
        // protocol fee config is retrieved from.
        address public immutable FACTORY;

        /*//////////////////////////////////////////////////////////////
                                STORAGE GETTER
        //////////////////////////////////////////////////////////////*/

        /**
        * @dev will return the actual storage slot where the strategy
        * specific `StrategyData` struct is stored for both read
        * and write operations.
        *
        * This loads just the slot location, not the full struct
        * so it can be used in a gas efficient manner.
        */
        function _strategyStorage() internal pure returns (StrategyData storage S) {
            // Since STORAGE_SLOT is a constant, we have to put a variable
            // on the stack to access it from an inline assembly block.
            bytes32 slot = BASE_STRATEGY_STORAGE;
            assembly {
                S.slot := slot
            }
        }

        /*//////////////////////////////////////////////////////////////
                            INITIALIZATION
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Used to initialize storage for a newly deployed strategy.
        * @dev This should be called atomically whenever a new strategy is
        * deployed and can only be called once for each strategy.
        *
        * This will set all the default storage that must be set for a
        * strategy to function. Any changes can be made post deployment
        * through external calls from `management`.
        *
        * The function will also emit an event that off chain indexers can
        * look for to track any new deployments using this TokenizedStrategy.
        *
        * @param _asset Address of the underlying asset.
        * @param _name Name the strategy will use.
        * @param _management Address to set as the strategies `management`.
        * @param _performanceFeeRecipient Address to receive performance fees.
        * @param _keeper Address to set as strategies `keeper`.
        */
        function initialize(
            address _asset,
            string memory _name,
            address _management,
            address _performanceFeeRecipient,
            address _keeper
        ) external {
            // Cache storage pointer.
            StrategyData storage S = _strategyStorage();

            // Make sure we aren't initialized.
            require(address(S.asset) == address(0), "initialized");

            // Set the strategy's underlying asset.
            S.asset = ERC20(_asset);
            // Set the Strategy Tokens name.
            S.name = _name;
            // Set decimals based off the `asset`.
            S.decimals = ERC20(_asset).decimals();

            // Default to a 10 day profit unlock period.
            S.profitMaxUnlockTime = 10 days;
            // Set address to receive performance fees.
            // Can't be address(0) or we will be burning fees.
            require(_performanceFeeRecipient != address(0), "ZERO ADDRESS");
            // Can't mint shares to its self because of profit locking.
            require(_performanceFeeRecipient != address(this), "self");
            S.performanceFeeRecipient = _performanceFeeRecipient;
            // Default to a 10% performance fee.
            S.performanceFee = 1_000;
            // Set last report to this block.
            S.lastReport = uint96(block.timestamp);

            // Set the default management address. Can't be 0.
            require(_management != address(0), "ZERO ADDRESS");
            S.management = _management;
            // Set the keeper address
            S.keeper = _keeper;

            // Emit event to signal a new strategy has been initialized.
            emit NewTokenizedStrategy(address(this), _asset, API_VERSION);
        }

        /*//////////////////////////////////////////////////////////////
                        ERC4626 WRITE METHODS
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Mints `shares` of strategy shares to `receiver` by
        * depositing exactly `assets` of underlying tokens.
        * @param assets The amount of underlying to deposit in.
        * @param receiver The address to receive the `shares`.
        * @return shares The actual amount of shares issued.
        */
        function deposit(
            uint256 assets,
            address receiver
        ) external nonReentrant returns (uint256 shares) {
            // Get the storage slot for all following calls.
            StrategyData storage S = _strategyStorage();

            // Deposit full balance if using max uint.
            if (assets == type(uint256).max) {
                assets = S.asset.balanceOf(msg.sender);
            }

            // Checking max deposit will also check if shutdown.
            require(
                assets <= _maxDeposit(S, receiver),
                "ERC4626: deposit more than max"
            );
            // Check for rounding error.
            require(
                (shares = _convertToShares(S, assets, Math.Rounding.Down)) != 0,
                "ZERO_SHARES"
            );

            _deposit(S, receiver, assets, shares);
        }

        /**
        * @notice Mints exactly `shares` of strategy shares to
        * `receiver` by depositing `assets` of underlying tokens.
        * @param shares The amount of strategy shares mint.
        * @param receiver The address to receive the `shares`.
        * @return assets The actual amount of asset deposited.
        */
        function mint(
            uint256 shares,
            address receiver
        ) external nonReentrant returns (uint256 assets) {
            // Get the storage slot for all following calls.
            StrategyData storage S = _strategyStorage();

            // Checking max mint will also check if shutdown.
            require(shares <= _maxMint(S, receiver), "ERC4626: mint more than max");
            // Check for rounding error.
            require(
                (assets = _convertToAssets(S, shares, Math.Rounding.Up)) != 0,
                "ZERO_ASSETS"
            );

            _deposit(S, receiver, assets, shares);
        }

        /**
        * @notice Withdraws exactly `assets` from `owners` shares and sends
        * the underlying tokens to `receiver`.
        * @dev This will default to not allowing any loss to be taken.
        * @param assets The amount of underlying to withdraw.
        * @param receiver The address to receive `assets`.
        * @param owner The address whose shares are burnt.
        * @return shares The actual amount of shares burnt.
        */
        function withdraw(
            uint256 assets,
            address receiver,
            address owner
        ) external returns (uint256 shares) {
            return withdraw(assets, receiver, owner, 0);
        }

        /**
        * @notice Withdraws `assets` from `owners` shares and sends
        * the underlying tokens to `receiver`.
        * @dev This includes an added parameter to allow for losses.
        * @param assets The amount of underlying to withdraw.
        * @param receiver The address to receive `assets`.
        * @param owner The address whose shares are burnt.
        * @param maxLoss The amount of acceptable loss in Basis points.
        * @return shares The actual amount of shares burnt.
        */
        function withdraw(
            uint256 assets,
            address receiver,
            address owner,
            uint256 maxLoss
        ) public nonReentrant returns (uint256 shares) {
            // Get the storage slot for all following calls.
            StrategyData storage S = _strategyStorage();
            require(
                assets <= _maxWithdraw(S, owner),
                "ERC4626: withdraw more than max"
            );
            // Check for rounding error or 0 value.
            require(
                (shares = _convertToShares(S, assets, Math.Rounding.Up)) != 0,
                "ZERO_SHARES"
            );

            // Withdraw and track the actual amount withdrawn for loss check.
            _withdraw(S, receiver, owner, assets, shares, maxLoss);
        }

        /**
        * @notice Redeems exactly `shares` from `owner` and
        * sends `assets` of underlying tokens to `receiver`.
        * @dev This will default to allowing any loss passed to be realized.
        * @param shares The amount of shares burnt.
        * @param receiver The address to receive `assets`.
        * @param owner The address whose shares are burnt.
        * @return assets The actual amount of underlying withdrawn.
        */
        function redeem(
            uint256 shares,
            address receiver,
            address owner
        ) external returns (uint256) {
            // We default to not limiting a potential loss.
            return redeem(shares, receiver, owner, MAX_BPS);
        }

        /**
        * @notice Redeems exactly `shares` from `owner` and
        * sends `assets` of underlying tokens to `receiver`.
        * @dev This includes an added parameter to allow for losses.
        * @param shares The amount of shares burnt.
        * @param receiver The address to receive `assets`.
        * @param owner The address whose shares are burnt.
        * @param maxLoss The amount of acceptable loss in Basis points.
        * @return . The actual amount of underlying withdrawn.
        */
        function redeem(
            uint256 shares,
            address receiver,
            address owner,
            uint256 maxLoss
        ) public nonReentrant returns (uint256) {
            // Get the storage slot for all following calls.
            StrategyData storage S = _strategyStorage();
            require(
                shares <= _maxRedeem(S, owner),
                "ERC4626: redeem more than max"
            );
            uint256 assets;
            // Check for rounding error or 0 value.
            require(
                (assets = _convertToAssets(S, shares, Math.Rounding.Down)) != 0,
                "ZERO_ASSETS"
            );

            // We need to return the actual amount withdrawn in case of a loss.
            return _withdraw(S, receiver, owner, assets, shares, maxLoss);
        }

        /*//////////////////////////////////////////////////////////////
                        EXTERNAL 4626 VIEW METHODS
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Get the total amount of assets this strategy holds
        * as of the last report.
        *
        * We manually track `totalAssets` to avoid any PPS manipulation.
        *
        * @return . Total assets the strategy holds.
        */
        function totalAssets() external view returns (uint256) {
            return _totalAssets(_strategyStorage());
        }

        /**
        * @notice Get the current supply of the strategies shares.
        *
        * Locked shares issued to the strategy from profits are not
        * counted towards the full supply until they are unlocked.
        *
        * As more shares slowly unlock the totalSupply will decrease
        * causing the PPS of the strategy to increase.
        *
        * @return . Total amount of shares outstanding.
        */
        function totalSupply() external view returns (uint256) {
            return _totalSupply(_strategyStorage());
        }

        /**
        * @notice The amount of shares that the strategy would
        *  exchange for the amount of assets provided, in an
        * ideal scenario where all the conditions are met.
        *
        * @param assets The amount of underlying.
        * @return . Expected shares that `assets` represents.
        */
        function convertToShares(uint256 assets) external view returns (uint256) {
            return _convertToShares(_strategyStorage(), assets, Math.Rounding.Down);
        }

        /**
        * @notice The amount of assets that the strategy would
        * exchange for the amount of shares provided, in an
        * ideal scenario where all the conditions are met.
        *
        * @param shares The amount of the strategies shares.
        * @return . Expected amount of `asset` the shares represents.
        */
        function convertToAssets(uint256 shares) external view returns (uint256) {
            return _convertToAssets(_strategyStorage(), shares, Math.Rounding.Down);
        }

        /**
        * @notice Allows an on-chain or off-chain user to simulate
        * the effects of their deposit at the current block, given
        * current on-chain conditions.
        * @dev This will round down.
        *
        * @param assets The amount of `asset` to deposits.
        * @return . Expected shares that would be issued.
        */
        function previewDeposit(uint256 assets) external view returns (uint256) {
            return _convertToShares(_strategyStorage(), assets, Math.Rounding.Down);
        }

        /**
        * @notice Allows an on-chain or off-chain user to simulate
        * the effects of their mint at the current block, given
        * current on-chain conditions.
        * @dev This is used instead of convertToAssets so that it can
        * round up for safer mints.
        *
        * @param shares The amount of shares to mint.
        * @return . The needed amount of `asset` for the mint.
        */
        function previewMint(uint256 shares) external view returns (uint256) {
            return _convertToAssets(_strategyStorage(), shares, Math.Rounding.Up);
        }

        /**
        * @notice Allows an on-chain or off-chain user to simulate
        * the effects of their withdrawal at the current block,
        * given current on-chain conditions.
        * @dev This is used instead of convertToShares so that it can
        * round up for safer withdraws.
        *
        * @param assets The amount of `asset` that would be withdrawn.
        * @return . The amount of shares that would be burnt.
        */
        function previewWithdraw(uint256 assets) external view returns (uint256) {
            return _convertToShares(_strategyStorage(), assets, Math.Rounding.Up);
        }

        /**
        * @notice Allows an on-chain or off-chain user to simulate
        * the effects of their redemption at the current block,
        * given current on-chain conditions.
        * @dev This will round down.
        *
        * @param shares The amount of shares that would be redeemed.
        * @return . The amount of `asset` that would be returned.
        */
        function previewRedeem(uint256 shares) external view returns (uint256) {
            return _convertToAssets(_strategyStorage(), shares, Math.Rounding.Down);
        }

        /**
        * @notice Total number of underlying assets that can
        * be deposited into the strategy, where `receiver`
        * corresponds to the receiver of the shares of a {deposit} call.
        *
        * @param receiver The address receiving the shares.
        * @return . The max that `receiver` can deposit in `asset`.
        */
        function maxDeposit(address receiver) external view returns (uint256) {
            return _maxDeposit(_strategyStorage(), receiver);
        }

        /**
        * @notice Total number of shares that can be minted to `receiver`
        * of a {mint} call.
        *
        * @param receiver The address receiving the shares.
        * @return _maxMint The max that `receiver` can mint in shares.
        */
        function maxMint(address receiver) external view returns (uint256) {
            return _maxMint(_strategyStorage(), receiver);
        }

        /**
        * @notice Total number of underlying assets that can be
        * withdrawn from the strategy by `owner`, where `owner`
        * corresponds to the msg.sender of a {redeem} call.
        *
        * @param owner The owner of the shares.
        * @return _maxWithdraw Max amount of `asset` that can be withdrawn.
        */
        function maxWithdraw(address owner) external view returns (uint256) {
            return _maxWithdraw(_strategyStorage(), owner);
        }

        /**
        * @notice Variable `maxLoss` is ignored.
        * @dev Accepts a `maxLoss` variable in order to match the multi
        * strategy vaults ABI.
        */
        function maxWithdraw(
            address owner,
            uint256 /*maxLoss*/
        ) external view returns (uint256) {
            return _maxWithdraw(_strategyStorage(), owner);
        }

        /**
        * @notice Total number of strategy shares that can be
        * redeemed from the strategy by `owner`, where `owner`
        * corresponds to the msg.sender of a {redeem} call.
        *
        * @param owner The owner of the shares.
        * @return _maxRedeem Max amount of shares that can be redeemed.
        */
        function maxRedeem(address owner) external view returns (uint256) {
            return _maxRedeem(_strategyStorage(), owner);
        }

        /**
        * @notice Variable `maxLoss` is ignored.
        * @dev Accepts a `maxLoss` variable in order to match the multi
        * strategy vaults ABI.
        */
        function maxRedeem(
            address owner,
            uint256 /*maxLoss*/
        ) external view returns (uint256) {
            return _maxRedeem(_strategyStorage(), owner);
        }

        /*//////////////////////////////////////////////////////////////
                        INTERNAL 4626 VIEW METHODS
        //////////////////////////////////////////////////////////////*/

        /// @dev Internal implementation of {totalAssets}.
        function _totalAssets(
            StrategyData storage S
        ) internal view returns (uint256) {
            return S.totalAssets;
        }

        /// @dev Internal implementation of {totalSupply}.
        function _totalSupply(
            StrategyData storage S
        ) internal view returns (uint256) {
            return S.totalSupply - _unlockedShares(S);
        }

        /// @dev Internal implementation of {convertToShares}.
        function _convertToShares(
            StrategyData storage S,
            uint256 assets,
            Math.Rounding _rounding
        ) internal view returns (uint256) {
            // Saves an extra SLOAD if values are non-zero.
            uint256 totalSupply_ = _totalSupply(S);
            // If supply is 0, PPS = 1.
            if (totalSupply_ == 0) return assets;

            uint256 totalAssets_ = _totalAssets(S);
            // If assets are 0 but supply is not PPS = 0.
            if (totalAssets_ == 0) return 0;

            return assets.mulDiv(totalSupply_, totalAssets_, _rounding);
        }

        /// @dev Internal implementation of {convertToAssets}.
        function _convertToAssets(
            StrategyData storage S,
            uint256 shares,
            Math.Rounding _rounding
        ) internal view returns (uint256) {
            // Saves an extra SLOAD if totalSupply() is non-zero.
            uint256 supply = _totalSupply(S);

            return
                supply == 0
                    ? shares
                    : shares.mulDiv(_totalAssets(S), supply, _rounding);
        }

        /// @dev Internal implementation of {maxDeposit}.
        function _maxDeposit(
            StrategyData storage S,
            address receiver
        ) internal view returns (uint256) {
            // Cannot deposit when shutdown or to the strategy.
            if (S.shutdown || receiver == address(this)) return 0;

            return IBaseStrategy(address(this)).availableDepositLimit(receiver);
        }

        /// @dev Internal implementation of {maxMint}.
        function _maxMint(
            StrategyData storage S,
            address receiver
        ) internal view returns (uint256 maxMint_) {
            // Cannot mint when shutdown or to the strategy.
            if (S.shutdown || receiver == address(this)) return 0;

            maxMint_ = IBaseStrategy(address(this)).availableDepositLimit(receiver);
            if (maxMint_ != type(uint256).max) {
                maxMint_ = _convertToShares(S, maxMint_, Math.Rounding.Down);
            }
        }

        /// @dev Internal implementation of {maxWithdraw}.
        function _maxWithdraw(
            StrategyData storage S,
            address owner
        ) internal view returns (uint256 maxWithdraw_) {
            // Get the max the owner could withdraw currently.
            maxWithdraw_ = IBaseStrategy(address(this)).availableWithdrawLimit(
                owner
            );

            // If there is no limit enforced.
            if (maxWithdraw_ == type(uint256).max) {
                // Saves a min check if there is no withdrawal limit.
                maxWithdraw_ = _convertToAssets(
                    S,
                    _balanceOf(S, owner),
                    Math.Rounding.Down
                );
            } else {
                maxWithdraw_ = Math.min(
                    _convertToAssets(S, _balanceOf(S, owner), Math.Rounding.Down),
                    maxWithdraw_
                );
            }
        }

        /// @dev Internal implementation of {maxRedeem}.
        function _maxRedeem(
            StrategyData storage S,
            address owner
        ) internal view returns (uint256 maxRedeem_) {
            // Get the max the owner could withdraw currently.
            maxRedeem_ = IBaseStrategy(address(this)).availableWithdrawLimit(owner);

            // Conversion would overflow and saves a min check if there is no withdrawal limit.
            if (maxRedeem_ == type(uint256).max) {
                maxRedeem_ = _balanceOf(S, owner);
            } else {
                maxRedeem_ = Math.min(
                    // Can't redeem more than the balance.
                    _convertToShares(S, maxRedeem_, Math.Rounding.Down),
                    _balanceOf(S, owner)
                );
            }
        }

        /*//////////////////////////////////////////////////////////////
                        INTERNAL 4626 WRITE METHODS
        //////////////////////////////////////////////////////////////*/

        /**
        * @dev Function to be called during {deposit} and {mint}.
        *
        * This function handles all logic including transfers,
        * minting and accounting.
        *
        * We do all external calls before updating any internal
        * values to prevent view reentrancy issues from the token
        * transfers or the _deployFunds() calls.
        */
        function _deposit(
            StrategyData storage S,
            address receiver,
            uint256 assets,
            uint256 shares
        ) internal {
            // Cache storage variables used more than once.
            ERC20 _asset = S.asset;

            // Need to transfer before minting or ERC777s could reenter.
            _asset.safeTransferFrom(msg.sender, address(this), assets);

            // We can deploy the full loose balance currently held.
            IBaseStrategy(address(this)).deployFunds(
                _asset.balanceOf(address(this))
            );

            // Adjust total Assets.
            S.totalAssets += assets;

            // mint shares
            _mint(S, receiver, shares);

            emit Deposit(msg.sender, receiver, assets, shares);
        }

        /**
        * @dev To be called during {redeem} and {withdraw}.
        *
        * This will handle all logic, transfers and accounting
        * in order to service the withdraw request.
        *
        * If we are not able to withdraw the full amount needed, it will
        * be counted as a loss and passed on to the user.
        */
        function _withdraw(
            StrategyData storage S,
            address receiver,
            address owner,
            uint256 assets,
            uint256 shares,
            uint256 maxLoss
        ) internal returns (uint256) {
            require(receiver != address(0), "ZERO ADDRESS");
            require(maxLoss <= MAX_BPS, "exceeds MAX_BPS");

            // Spend allowance if applicable.
            if (msg.sender != owner) {
                _spendAllowance(S, owner, msg.sender, shares);
            }

            // Cache `asset` since it is used multiple times..
            ERC20 _asset = S.asset;

            uint256 idle = _asset.balanceOf(address(this));
            uint256 loss;
            // Check if we need to withdraw funds.
            if (idle < assets) {
                // Tell Strategy to free what we need.
                unchecked {
                    IBaseStrategy(address(this)).freeFunds(assets - idle);
                }

                // Return the actual amount withdrawn. Adjust for potential under withdraws.
                idle = _asset.balanceOf(address(this));

                // If we didn't get enough out then we have a loss.
                if (idle < assets) {
                    unchecked {
                        loss = assets - idle;
                    }
                    // If a non-default max loss parameter was set.
                    if (maxLoss < MAX_BPS) {
                        // Make sure we are within the acceptable range.
                        require(
                            loss <= (assets * maxLoss) / MAX_BPS,
                            "too much loss"
                        );
                    }
                    // Lower the amount to be withdrawn.
                    assets = idle;
                }
            }

            // Update assets based on how much we took.
            S.totalAssets -= (assets + loss);

            _burn(S, owner, shares);

            // Transfer the amount of underlying to the receiver.
            _asset.safeTransfer(receiver, assets);

            emit Withdraw(msg.sender, receiver, owner, assets, shares);

            // Return the actual amount of assets withdrawn.
            return assets;
        }

        /*//////////////////////////////////////////////////////////////
                            PROFIT REPORTING
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Function for keepers to call to harvest and record all
        * profits accrued.
        *
        * @dev This will account for any gains/losses since the last report
        * and charge fees accordingly.
        *
        * Any profit over the fees charged will be immediately locked
        * so there is no change in PricePerShare. Then slowly unlocked
        * over the `maxProfitUnlockTime` each second based on the
        * calculated `profitUnlockingRate`.
        *
        * In case of a loss it will first attempt to offset the loss
        * with any remaining locked shares from the last report in
        * order to reduce any negative impact to PPS.
        *
        * Will then recalculate the new time to unlock profits over and the
        * rate based on a weighted average of any remaining time from the
        * last report and the new amount of shares to be locked.
        *
        * @return profit The notional amount of gain if any since the last
        * report in terms of `asset`.
        * @return loss The notional amount of loss if any since the last
        * report in terms of `asset`.
        */
        function report()
            external
            nonReentrant
            onlyKeepers
            returns (uint256 profit, uint256 loss)
        {
            // Cache storage pointer since its used repeatedly.
            StrategyData storage S = _strategyStorage();

            // Tell the strategy to report the real total assets it has.
            // It should do all reward selling and redepositing now and
            // account for deployed and loose `asset` so we can accurately
            // account for all funds including those potentially airdropped
            // and then have any profits immediately locked.
            uint256 newTotalAssets = IBaseStrategy(address(this))
                .harvestAndReport();

            uint256 oldTotalAssets = _totalAssets(S);

            // Get the amount of shares we need to burn from previous reports.
            uint256 sharesToBurn = _unlockedShares(S);

            // Initialize variables needed throughout.
            uint256 totalFees;
            uint256 protocolFees;
            uint256 sharesToLock;
            uint256 _profitMaxUnlockTime = S.profitMaxUnlockTime;
            // Calculate profit/loss.
            if (newTotalAssets > oldTotalAssets) {
                // We have a profit.
                unchecked {
                    profit = newTotalAssets - oldTotalAssets;
                }

                // We need to get the equivalent amount of shares
                // at the current PPS before any minting or burning.
                sharesToLock = _convertToShares(S, profit, Math.Rounding.Down);

                // Cache the performance fee.
                uint16 fee = S.performanceFee;
                uint256 totalFeeShares;
                // If we are charging a performance fee
                if (fee != 0) {
                    // Asses performance fees.
                    unchecked {
                        // Get in `asset` for the event.
                        totalFees = (profit * fee) / MAX_BPS;
                        // And in shares for the payment.
                        totalFeeShares = (sharesToLock * fee) / MAX_BPS;
                    }

                    // Get the protocol fee config from the factory.
                    (
                        uint16 protocolFeeBps,
                        address protocolFeesRecipient
                    ) = IFactory(FACTORY).protocol_fee_config();

                    uint256 protocolFeeShares;
                    // Check if there is a protocol fee to charge.
                    if (protocolFeeBps != 0) {
                        unchecked {
                            // Calculate protocol fees based on the performance Fees.
                            protocolFeeShares =
                                (totalFeeShares * protocolFeeBps) /
                                MAX_BPS;
                            // Need amount in underlying for event.
                            protocolFees = (totalFees * protocolFeeBps) / MAX_BPS;
                        }

                        // Mint the protocol fees to the recipient.
                        _mint(S, protocolFeesRecipient, protocolFeeShares);
                    }

                    // Mint the difference to the strategy fee recipient.
                    unchecked {
                        _mint(
                            S,
                            S.performanceFeeRecipient,
                            totalFeeShares - protocolFeeShares
                        );
                    }
                }

                // Check if we are locking profit.
                if (_profitMaxUnlockTime != 0) {
                    // lock (profit - fees)
                    unchecked {
                        sharesToLock -= totalFeeShares;
                    }

                    // If we are burning more than re-locking.
                    if (sharesToBurn > sharesToLock) {
                        // Burn the difference
                        unchecked {
                            _burn(S, address(this), sharesToBurn - sharesToLock);
                        }
                    } else if (sharesToLock > sharesToBurn) {
                        // Mint the shares to lock the strategy.
                        unchecked {
                            _mint(S, address(this), sharesToLock - sharesToBurn);
                        }
                    }
                }
            } else {
                // Expect we have a loss.
                unchecked {
                    loss = oldTotalAssets - newTotalAssets;
                }

                // Check in case `else` was due to being equal.
                if (loss != 0) {
                    // We will try and burn the unlocked shares and as much from any
                    // pending profit still unlocking to offset the loss to prevent any PPS decline post report.
                    sharesToBurn = Math.min(
                        // Cannot burn more than we have.
                        S.balances[address(this)],
                        // Try and burn both the shares already unlocked and the amount for the loss.
                        _convertToShares(S, loss, Math.Rounding.Down) + sharesToBurn
                    );
                }

                // Check if there is anything to burn.
                if (sharesToBurn != 0) {
                    _burn(S, address(this), sharesToBurn);
                }
            }

            // Update unlocking rate and time to fully unlocked.
            uint256 totalLockedShares = S.balances[address(this)];
            if (totalLockedShares != 0) {
                uint256 previouslyLockedTime;
                uint96 _fullProfitUnlockDate = S.fullProfitUnlockDate;
                // Check if we need to account for shares still unlocking.
                if (_fullProfitUnlockDate > block.timestamp) {
                    unchecked {
                        // There will only be previously locked shares if time remains.
                        // We calculate this here since it should be rare.
                        previouslyLockedTime =
                            (_fullProfitUnlockDate - block.timestamp) *
                            (totalLockedShares - sharesToLock);
                    }
                }

                // newProfitLockingPeriod is a weighted average between the remaining
                // time of the previously locked shares and the profitMaxUnlockTime.
                uint256 newProfitLockingPeriod = (previouslyLockedTime +
                    sharesToLock *
                    _profitMaxUnlockTime) / totalLockedShares;

                // Calculate how many shares unlock per second.
                S.profitUnlockingRate =
                    (totalLockedShares * MAX_BPS_EXTENDED) /
                    newProfitLockingPeriod;

                // Calculate how long until the full amount of shares is unlocked.
                S.fullProfitUnlockDate = uint96(
                    block.timestamp + newProfitLockingPeriod
                );
            } else {
                // Only setting this to 0 will turn in the desired effect,
                // no need to update profitUnlockingRate.
                S.fullProfitUnlockDate = 0;
            }

            // Update the new total assets value.
            S.totalAssets = newTotalAssets;
            S.lastReport = uint96(block.timestamp);

            // Emit event with info
            emit Reported(
                profit,
                loss,
                protocolFees, // Protocol fees
                totalFees - protocolFees // Performance Fees
            );
        }

        /**
        * @notice Get how many shares have been unlocked since last report.
        * @return . The amount of shares that have unlocked.
        */
        function unlockedShares() external view returns (uint256) {
            return _unlockedShares(_strategyStorage());
        }

        /**
        * @dev To determine how many of the shares that were locked during the last
        * report have since unlocked.
        *
        * If the `fullProfitUnlockDate` has passed the full strategy's balance will
        * count as unlocked.
        *
        * @return unlocked The amount of shares that have unlocked.
        */
        function _unlockedShares(
            StrategyData storage S
        ) internal view returns (uint256 unlocked) {
            uint96 _fullProfitUnlockDate = S.fullProfitUnlockDate;
            if (_fullProfitUnlockDate > block.timestamp) {
                unchecked {
                    unlocked =
                        (S.profitUnlockingRate * (block.timestamp - S.lastReport)) /
                        MAX_BPS_EXTENDED;
                }
            } else if (_fullProfitUnlockDate != 0) {
                // All shares have been unlocked.
                unlocked = S.balances[address(this)];
            }
        }

        /*//////////////////////////////////////////////////////////////
                                TENDING
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice For a 'keeper' to 'tend' the strategy if a custom
        * tendTrigger() is implemented.
        *
        * @dev Both 'tendTrigger' and '_tend' will need to be overridden
        * for this to be used.
        *
        * This will callback the internal '_tend' call in the BaseStrategy
        * with the total current amount available to the strategy to deploy.
        *
        * This is a permissioned function so if desired it could
        * be used for illiquid or manipulatable strategies to compound
        * rewards, perform maintenance or deposit/withdraw funds.
        *
        * This will not cause any change in PPS. Total assets will
        * be the same before and after.
        *
        * A report() call will be needed to record any profits or losses.
        */
        function tend() external nonReentrant onlyKeepers {
            // Tend the strategy with the current loose balance.
            IBaseStrategy(address(this)).tendThis(
                _strategyStorage().asset.balanceOf(address(this))
            );
        }

        /*//////////////////////////////////////////////////////////////
                            STRATEGY SHUTDOWN
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Used to shutdown the strategy preventing any further deposits.
        * @dev Can only be called by the current `management` or `emergencyAdmin`.
        *
        * This will stop any new {deposit} or {mint} calls but will
        * not prevent {withdraw} or {redeem}. It will also still allow for
        * {tend} and {report} so that management can report any last losses
        * in an emergency as well as provide any maintenance to allow for full
        * withdraw.
        *
        * This is a one way switch and can never be set back once shutdown.
        */
        function shutdownStrategy() external onlyEmergencyAuthorized {
            _strategyStorage().shutdown = true;

            emit StrategyShutdown();
        }

        /**
        * @notice To manually withdraw funds from the yield source after a
        * strategy has been shutdown.
        * @dev This can only be called post {shutdownStrategy}.
        *
        * This will never cause a change in PPS. Total assets will
        * be the same before and after.
        *
        * A strategist will need to override the {_emergencyWithdraw} function
        * in their strategy for this to work.
        *
        * @param amount The amount of asset to attempt to free.
        */
        function emergencyWithdraw(
            uint256 amount
        ) external nonReentrant onlyEmergencyAuthorized {
            // Make sure the strategy has been shutdown.
            require(_strategyStorage().shutdown, "not shutdown");

            // Withdraw from the yield source.
            IBaseStrategy(address(this)).shutdownWithdraw(amount);
        }

        /*//////////////////////////////////////////////////////////////
                            GETTER FUNCTIONS
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Get the underlying asset for the strategy.
        * @return . The underlying asset.
        */
        function asset() external view returns (address) {
            return address(_strategyStorage().asset);
        }

        /**
        * @notice Get the API version for this TokenizedStrategy.
        * @return . The API version for this TokenizedStrategy
        */
        function apiVersion() external pure returns (string memory) {
            return API_VERSION;
        }

        /**
        * @notice Get the current address that controls the strategy.
        * @return . Address of management
        */
        function management() external view returns (address) {
            return _strategyStorage().management;
        }

        /**
        * @notice Get the current pending management address if any.
        * @return . Address of pendingManagement
        */
        function pendingManagement() external view returns (address) {
            return _strategyStorage().pendingManagement;
        }

        /**
        * @notice Get the current address that can call tend and report.
        * @return . Address of the keeper
        */
        function keeper() external view returns (address) {
            return _strategyStorage().keeper;
        }

        /**
        * @notice Get the current address that can shutdown and emergency withdraw.
        * @return . Address of the emergencyAdmin
        */
        function emergencyAdmin() external view returns (address) {
            return _strategyStorage().emergencyAdmin;
        }

        /**
        * @notice Get the current performance fee charged on profits.
        * denominated in Basis Points where 10_000 == 100%
        * @return . Current performance fee.
        */
        function performanceFee() external view returns (uint16) {
            return _strategyStorage().performanceFee;
        }

        /**
        * @notice Get the current address that receives the performance fees.
        * @return . Address of performanceFeeRecipient
        */
        function performanceFeeRecipient() external view returns (address) {
            return _strategyStorage().performanceFeeRecipient;
        }

        /**
        * @notice Gets the timestamp at which all profits will be unlocked.
        * @return . The full profit unlocking timestamp
        */
        function fullProfitUnlockDate() external view returns (uint256) {
            return uint256(_strategyStorage().fullProfitUnlockDate);
        }

        /**
        * @notice The per second rate at which profits are unlocking.
        * @dev This is denominated in EXTENDED_BPS decimals.
        * @return . The current profit unlocking rate.
        */
        function profitUnlockingRate() external view returns (uint256) {
            return _strategyStorage().profitUnlockingRate;
        }

        /**
        * @notice Gets the current time profits are set to unlock over.
        * @return . The current profit max unlock time.
        */
        function profitMaxUnlockTime() external view returns (uint256) {
            return _strategyStorage().profitMaxUnlockTime;
        }

        /**
        * @notice The timestamp of the last time protocol fees were charged.
        * @return . The last report.
        */
        function lastReport() external view returns (uint256) {
            return uint256(_strategyStorage().lastReport);
        }

        /**
        * @notice Get the price per share.
        * @dev This value offers limited precision. Integrations that require
        * exact precision should use convertToAssets or convertToShares instead.
        *
        * @return . The price per share.
        */
        function pricePerShare() external view returns (uint256) {
            StrategyData storage S = _strategyStorage();
            return _convertToAssets(S, 10 ** S.decimals, Math.Rounding.Down);
        }

        /**
        * @notice To check if the strategy has been shutdown.
        * @return . Whether or not the strategy is shutdown.
        */
        function isShutdown() external view returns (bool) {
            return _strategyStorage().shutdown;
        }

        /*//////////////////////////////////////////////////////////////
                            SETTER FUNCTIONS
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Step one of two to set a new address to be in charge of the strategy.
        * @dev Can only be called by the current `management`. The address is
        * set to pending management and will then have to call {acceptManagement}
        * in order for the 'management' to officially change.
        *
        * Cannot set `management` to address(0).
        *
        * @param _management New address to set `pendingManagement` to.
        */
        function setPendingManagement(address _management) external onlyManagement {
            require(_management != address(0), "ZERO ADDRESS");
            _strategyStorage().pendingManagement = _management;

            emit UpdatePendingManagement(_management);
        }

        /**
        * @notice Step two of two to set a new 'management' of the strategy.
        * @dev Can only be called by the current `pendingManagement`.
        */
        function acceptManagement() external {
            StrategyData storage S = _strategyStorage();
            require(msg.sender == S.pendingManagement, "!pending");
            S.management = msg.sender;
            S.pendingManagement = address(0);

            emit UpdateManagement(msg.sender);
        }

        /**
        * @notice Sets a new address to be in charge of tend and reports.
        * @dev Can only be called by the current `management`.
        *
        * @param _keeper New address to set `keeper` to.
        */
        function setKeeper(address _keeper) external onlyManagement {
            _strategyStorage().keeper = _keeper;

            emit UpdateKeeper(_keeper);
        }

        /**
        * @notice Sets a new address to be able to shutdown the strategy.
        * @dev Can only be called by the current `management`.
        *
        * @param _emergencyAdmin New address to set `emergencyAdmin` to.
        */
        function setEmergencyAdmin(
            address _emergencyAdmin
        ) external onlyManagement {
            _strategyStorage().emergencyAdmin = _emergencyAdmin;

            emit UpdateEmergencyAdmin(_emergencyAdmin);
        }

        /**
        * @notice Sets the performance fee to be charged on reported gains.
        * @dev Can only be called by the current `management`.
        *
        * Denominated in Basis Points. So 100% == 10_000.
        * Cannot set greater than to MAX_FEE.
        *
        * @param _performanceFee New performance fee.
        */
        function setPerformanceFee(uint16 _performanceFee) external onlyManagement {
            require(_performanceFee <= MAX_FEE, "MAX FEE");
            _strategyStorage().performanceFee = _performanceFee;

            emit UpdatePerformanceFee(_performanceFee);
        }

        /**
        * @notice Sets a new address to receive performance fees.
        * @dev Can only be called by the current `management`.
        *
        * Cannot set to address(0).
        *
        * @param _performanceFeeRecipient New address to set `management` to.
        */
        function setPerformanceFeeRecipient(
            address _performanceFeeRecipient
        ) external onlyManagement {
            require(_performanceFeeRecipient != address(0), "ZERO ADDRESS");
            require(_performanceFeeRecipient != address(this), "Cannot be self");
            _strategyStorage().performanceFeeRecipient = _performanceFeeRecipient;

            emit UpdatePerformanceFeeRecipient(_performanceFeeRecipient);
        }

        /**
        * @notice Sets the time for profits to be unlocked over.
        * @dev Can only be called by the current `management`.
        *
        * Denominated in seconds and cannot be greater than 1 year.
        *
        * NOTE: Setting to 0 will cause all currently locked profit
        * to be unlocked instantly and should be done with care.
        *
        * `profitMaxUnlockTime` is stored as a uint32 for packing but can
        * be passed in as uint256 for simplicity.
        *
        * @param _profitMaxUnlockTime New `profitMaxUnlockTime`.
        */
        function setProfitMaxUnlockTime(
            uint256 _profitMaxUnlockTime
        ) external onlyManagement {
            // Must be less than a year.
            require(_profitMaxUnlockTime <= SECONDS_PER_YEAR, "too long");
            StrategyData storage S = _strategyStorage();

            // If we are setting to 0 we need to adjust amounts.
            if (_profitMaxUnlockTime == 0) {
                uint256 shares = S.balances[address(this)];
                if (shares != 0) {
                    // Burn all shares if applicable.
                    _burn(S, address(this), shares);
                }
                // Reset unlocking variables
                S.profitUnlockingRate = 0;
                S.fullProfitUnlockDate = 0;
            }

            S.profitMaxUnlockTime = uint32(_profitMaxUnlockTime);

            emit UpdateProfitMaxUnlockTime(_profitMaxUnlockTime);
        }

        /**
        * @notice Updates the name for the strategy.
        * @param _name The new name for the strategy.
        */
        function setName(string calldata _name) external onlyManagement {
            _strategyStorage().name = _name;
        }

        /*//////////////////////////////////////////////////////////////
                            ERC20 METHODS
        //////////////////////////////////////////////////////////////*/

        /**
        * @notice Returns the name of the token.
        * @return . The name the strategy is using for its token.
        */
        function name() external view returns (string memory) {
            return _strategyStorage().name;
        }

        /**
        * @notice Returns the symbol of the strategies token.
        * @dev Will be 'ys + asset symbol'.
        * @return . The symbol the strategy is using for its tokens.
        */
        function symbol() external view returns (string memory) {
            return
                string(abi.encodePacked("ys", _strategyStorage().asset.symbol()));
        }

        /**
        * @notice Returns the number of decimals used to get its user representation.
        * @return . The decimals used for the strategy and `asset`.
        */
        function decimals() external view returns (uint8) {
            return _strategyStorage().decimals;
        }

        /**
        * @notice Returns the current balance for a given '_account'.
        * @dev If the '_account` is the strategy then this will subtract
        * the amount of shares that have been unlocked since the last profit first.
        * @param account the address to return the balance for.
        * @return . The current balance in y shares of the '_account'.
        */
        function balanceOf(address account) external view returns (uint256) {
            return _balanceOf(_strategyStorage(), account);
        }

        /// @dev Internal implementation of {balanceOf}.
        function _balanceOf(
            StrategyData storage S,
            address account
        ) internal view returns (uint256) {
            if (account == address(this)) {
                return S.balances[account] - _unlockedShares(S);
            }
            return S.balances[account];
        }

        /**
        * @notice Transfer '_amount` of shares from `msg.sender` to `to`.
        * @dev
        * Requirements:
        *
        * - `to` cannot be the zero address.
        * - `to` cannot be the address of the strategy.
        * - the caller must have a balance of at least `_amount`.
        *
        * @param to The address shares will be transferred to.
        * @param amount The amount of shares to be transferred from sender.
        * @return . a boolean value indicating whether the operation succeeded.
        */
        function transfer(address to, uint256 amount) external returns (bool) {
            _transfer(_strategyStorage(), msg.sender, to, amount);
            return true;
        }

        /**
        * @notice 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.
        * @param owner The address who owns the shares.
        * @param spender The address who would be moving the owners shares.
        * @return . The remaining amount of shares of `owner` that could be moved by `spender`.
        */
        function allowance(
            address owner,
            address spender
        ) external view returns (uint256) {
            return _allowance(_strategyStorage(), owner, spender);
        }

        /// @dev Internal implementation of {allowance}.
        function _allowance(
            StrategyData storage S,
            address owner,
            address spender
        ) internal view returns (uint256) {
            return S.allowances[owner][spender];
        }

        /**
        * @notice Sets `amount` as the allowance of `spender` over the caller's tokens.
        * @dev
        *
        * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
        * `transferFrom`. This is semantically equivalent to an infinite approval.
        *
        * Requirements:
        *
        * - `spender` cannot be the zero address.
        *
        * 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.
        *
        * @param spender the address to allow the shares to be moved by.
        * @param amount the amount of shares to allow `spender` to move.
        * @return . a boolean value indicating whether the operation succeeded.
        */
        function approve(address spender, uint256 amount) external returns (bool) {
            _approve(_strategyStorage(), msg.sender, spender, amount);
            return true;
        }

        /**
        * @notice `amount` tokens from `from` to `to` using the
        * allowance mechanism. `amount` is then deducted from the caller's
        * allowance.
        *
        * @dev
        * Emits an {Approval} event indicating the updated allowance. This is not
        * required by the EIP.
        *
        * NOTE: Does not update the allowance if the current allowance
        * is the maximum `uint256`.
        *
        * Requirements:
        *
        * - `from` and `to` cannot be the zero address.
        * - `to` cannot be the address of the strategy.
        * - `from` must have a balance of at least `amount`.
        * - the caller must have allowance for ``from``'s tokens of at least
        * `amount`.
        *
        * Emits a {Transfer} event.
        *
        * @param from the address to be moving shares from.
        * @param to the address to be moving shares to.
        * @param amount the quantity of shares to move.
        * @return . a boolean value indicating whether the operation succeeded.
        */
        function transferFrom(
            address from,
            address to,
            uint256 amount
        ) external returns (bool) {
            StrategyData storage S = _strategyStorage();
            _spendAllowance(S, from, msg.sender, amount);
            _transfer(S, from, to, amount);
            return true;
        }

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

            S.balances[from] -= amount;
            unchecked {
                S.balances[to] += amount;
            }

            emit Transfer(from, to, amount);
        }

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

            S.totalSupply += amount;
            unchecked {
                S.balances[account] += amount;
            }
            emit Transfer(address(0), account, amount);
        }

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

            S.balances[account] -= amount;
            unchecked {
                S.totalSupply -= amount;
            }
            emit Transfer(account, address(0), amount);
        }

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

            S.allowances[owner][spender] = amount;
            emit Approval(owner, spender, amount);
        }

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

        /*//////////////////////////////////////////////////////////////
                                EIP-2612 LOGIC
        //////////////////////////////////////////////////////////////*/

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

        /**
        * @notice Sets `value` as the allowance of `spender` over ``owner``'s tokens,
        * given ``owner``'s signed approval.
        *
        * @dev 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 {
            require(deadline >= block.timestamp, "ERC20: PERMIT_DEADLINE_EXPIRED");

            // Unchecked because the only math done is incrementing
            // the owner's nonce which cannot realistically overflow.
            unchecked {
                address recoveredAddress = ecrecover(
                    keccak256(
                        abi.encodePacked(
                            "\x19\x01",
                            DOMAIN_SEPARATOR(),
                            keccak256(
                                abi.encode(
                                    keccak256(
                                        "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                    ),
                                    owner,
                                    spender,
                                    value,
                                    _strategyStorage().nonces[owner]++,
                                    deadline
                                )
                            )
                        )
                    ),
                    v,
                    r,
                    s
                );

                require(
                    recoveredAddress != address(0) && recoveredAddress == owner,
                    "ERC20: INVALID_SIGNER"
                );

                _approve(_strategyStorage(), recoveredAddress, spender, value);
            }
        }

        /**
        * @notice Returns the domain separator used in the encoding of the signature
        * for {permit}, as defined by {EIP712}.
        *
        * @return . The domain separator that will be used for any {permit} calls.
        */
        function DOMAIN_SEPARATOR() public view returns (bytes32) {
            return
                keccak256(
                    abi.encode(
                        keccak256(
                            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                        ),
                        keccak256("Yearn Vault"),
                        keccak256(bytes(API_VERSION)),
                        block.chainid,
                        address(this)
                    )
                );
        }

        /*//////////////////////////////////////////////////////////////
                                DEPLOYMENT
        //////////////////////////////////////////////////////////////*/

        /**
        * @dev On contract creation we set `asset` for this contract to address(1).
        * This prevents it from ever being initialized in the future.
        * @param _factory Address of the factory of the same version for protocol fees.
        */
        constructor(address _factory) {
            FACTORY = _factory;
            _strategyStorage().asset = ERC20(address(1));
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_factory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","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":true,"internalType":"address","name":"strategy","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"string","name":"apiVersion","type":"string"}],"name":"NewTokenizedStrategy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"profit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"loss","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"performanceFees","type":"uint256"}],"name":"Reported","type":"event"},{"anonymous":false,"inputs":[],"name":"StrategyShutdown","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":"newEmergencyAdmin","type":"address"}],"name":"UpdateEmergencyAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newKeeper","type":"address"}],"name":"UpdateKeeper","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newManagement","type":"address"}],"name":"UpdateManagement","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingManagement","type":"address"}],"name":"UpdatePendingManagement","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"newPerformanceFee","type":"uint16"}],"name":"UpdatePerformanceFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPerformanceFeeRecipient","type":"address"}],"name":"UpdatePerformanceFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newProfitMaxUnlockTime","type":"uint256"}],"name":"UpdateProfitMaxUnlockTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","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"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FACTORY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apiVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"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":"emergencyAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fullProfitUnlockDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"address","name":"_management","type":"address"},{"internalType":"address","name":"_performanceFeeRecipient","type":"address"},{"internalType":"address","name":"_keeper","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isShutdown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastReport","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"management","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingManagement","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","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":"","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":[],"name":"pricePerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"profitMaxUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"profitUnlockingRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"maxLoss","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"report","outputs":[{"internalType":"uint256","name":"profit","type":"uint256"},{"internalType":"uint256","name":"loss","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"requireEmergencyAuthorized","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"requireKeeperOrManagement","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"requireManagement","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_emergencyAdmin","type":"address"}],"name":"setEmergencyAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_management","type":"address"}],"name":"setPendingManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_performanceFee","type":"uint16"}],"name":"setPerformanceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_performanceFeeRecipient","type":"address"}],"name":"setPerformanceFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_profitMaxUnlockTime","type":"uint256"}],"name":"setProfitMaxUnlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shutdownStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAssets","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockedShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"maxLoss","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162004030380380620040308339810160408190526200003491620000a8565b6001600160a01b03811660805260016200004d62000072565b80546001600160a01b0319166001600160a01b039290921691909117905550620000fc565b600080620000a260017fd2841a5d2692465040bd5e06a6f3b37483952c866e0f304dc0e03f76a1f8a0b1620000da565b92915050565b600060208284031215620000bb57600080fd5b81516001600160a01b0381168114620000d357600080fd5b9392505050565b81810381811115620000a257634e487b7160e01b600052601160045260246000fd5b608051613f116200011f600039600081816104dc0152610adc0152613f116000f3fe608060405234801561001057600080fd5b50600436106103d05760003560e01c806387788782116101ff578063bf86d6901161011a578063d505accf116100ad578063df69b22a1161007c578063df69b22a146107d5578063ed27f7c9146107e8578063ef8b30f714610753578063f629b790146107f057600080fd5b8063d505accf14610794578063d905777e146107a7578063d9a0e97a146107ba578063dd62ed3e146107c257600080fd5b8063c6e6f592116100e9578063c6e6f59214610753578063c8c2fe6c14610766578063ce96cb771461076e578063d43fdcf71461078157600080fd5b8063bf86d6901461071d578063c3535b5214610725578063c47f00271461072d578063c63d75b61461074057600080fd5b8063a9059cbb11610192578063b460af9411610161578063b460af94146106e6578063ba087652146106f9578063bc063e1a1461070c578063be8f16681461071557600080fd5b8063a9059cbb146106a5578063aa290e6d146106b8578063aced1661146106cb578063b3d7f6b9146106d357600080fd5b806397073ae6116101ce57806397073ae61461066457806399530b06146106775780639f40a7b31461067f578063a318c1a41461069257600080fd5b8063877887821461062657806388a8d6021461064157806394bf804d1461064957806395d89b411461065c57600080fd5b806338d52e0f116102ef5780636a5f1aa211610282578063748747e611610251578063748747e6146105da5780637ecebe00146105ed57806382e00a441461060057806385b687561461061357600080fd5b80636a5f1aa2146105995780636e553f65146105ac57806370905dce146105bf57806370a08231146105c757600080fd5b80634abe4137116102be5780634abe41371461056b5780634cdad506146104055780635141eebb1461057e5780635312ea8e1461058657600080fd5b806338d52e0f14610535578063402d267d1461053d578063440368a31461055057806348e4a6491461055857600080fd5b806323b872dd116103675780632dd31000116103365780632dd31000146104d7578063313ce567146104fe57806335da3394146105185780633644e5151461052d57600080fd5b806323b872dd1461047e57806325829410146104915780632606a10b146104b25780632d632692146104cf57600080fd5b8063095ea7b3116103a3578063095ea7b3146104205780630a28a477146104435780630b68f46f1461045657806318160ddd1461047657600080fd5b806301e1d114146103d557806306fdde03146103f057806307a2d13a146104055780630952864e14610418575b600080fd5b6103dd610803565b6040519081526020015b60405180910390f35b6103f861081c565b6040516103e79190613577565b6103dd6104133660046135aa565b6108b7565b6103dd6108d2565b61043361042e3660046135e8565b6108eb565b60405190151581526020016103e7565b6103dd6104513660046135aa565b610909565b61045e61091e565b6040516001600160a01b0390911681526020016103e7565b6103dd61093a565b61043361048c366004613614565b61094c565b604080518082019091526005815264332e302e3360d81b60208201526103f8565b6104ba61097e565b604080519283526020830191909152016103e7565b6103dd610db1565b61045e7f000000000000000000000000000000000000000000000000000000000000000081565b610506610dcd565b60405160ff90911681526020016103e7565b61052b610526366004613655565b610de7565b005b6103dd610e46565b61045e610efe565b6103dd61054b366004613655565b610f17565b61052b610f2a565b61052b610566366004613655565b611065565b6103dd6105793660046135e8565b6110c3565b6103dd6110d6565b61052b6105943660046135aa565b6110e9565b61052b6105a7366004613655565b6111ff565b6103dd6105ba366004613672565b6112d9565b61045e61147b565b6103dd6105d5366004613655565b611497565b61052b6105e8366004613655565b6114aa565b6103dd6105fb366004613655565b61150e565b61052b61060e366004613655565b61153a565b6103dd6106213660046135e8565b6115c3565b61062e6115d6565b60405161ffff90911681526020016103e7565b61045e6115f5565b6103dd610657366004613672565b611618565b6103f8611728565b61052b610672366004613711565b6117c6565b6103dd611a50565b6103dd61068d3660046137d6565b611a88565b6103dd6106a03660046137d6565b611bbc565b6104336106b33660046135e8565b611cec565b61052b6106c636600461382e565b611d01565b61045e611da9565b6103dd6106e13660046135aa565b611dcc565b6103dd6106f436600461384b565b611de1565b6103dd61070736600461384b565b611df8565b61062e61138881565b61052b611e08565b610433611e63565b6103dd611e80565b61052b61073b36600461388d565b611e9c565b6103dd61074e366004613655565b611ec3565b6103dd6107613660046135aa565b611ed6565b61052b611eeb565b6103dd61077c366004613655565b611f9b565b61052b61078f366004613655565b611fae565b61052b6107a236600461390e565b61202c565b6103dd6107b5366004613655565b61223a565b6103dd61224d565b6103dd6107d036600461397f565b61225f565b61052b6107e33660046135aa565b61229a565b61045e612382565b61052b6107fe366004613655565b6123a5565b600061081761081061242a565b6006015490565b905090565b606061082661242a565b6001018054610834906139ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610860906139ad565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108cc6108c461242a565b836000612458565b92915050565b60006108dc61242a565b6009015463ffffffff16919050565b60006109006108f861242a565b338585612493565b50600192915050565b60006108cc61091661242a565b8360016125bb565b600061092861242a565b600b01546001600160a01b0316919050565b600061081761094761242a565b612612565b60008061095761242a565b90506109658186338661262c565b610971818686866126c2565b60019150505b9392505050565b600080600061098b61242a565b600c810154909150600119600160a01b90910460ff16016109c75760405162461bcd60e51b81526004016109be906139e1565b60405180910390fd5b600c8101805460ff60a01b1916600160a11b1790556109e533611fae565b60006109ef61242a565b90506000306001600160a01b03166349317f1d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610a33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a579190613a18565b90506000610a66836006015490565b90506000610a7384612867565b60098501549091506000908190819063ffffffff1685871115610bf4578587039a50610aa1888c60006125bb565b6009890154909250640100000000900461ffff1660008115610bb35761271061ffff83168e0204955061271061ffff831685020490506000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635153b1996040518163ffffffff1660e01b81526004016040805180830381865afa158015610b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5b9190613a47565b9150915060008261ffff16600014610b8c575061271061ffff83168981028290049850840204610b8c8d83836128cf565b60098d0154610baf908e90600160301b90046001600160a01b03168387036128cf565b5050505b8215610bed57808403935083871115610bd857610bd38a30868a03612996565b610bed565b86841115610bed57610bed8a308987036128cf565b5050610c49565b868603995089600014610c3857306000908152600489016020526040812054610c35918790610c26908c908f906125bb565b610c309190613a8c565b612a6e565b94505b8415610c4957610c49883087612996565b3060009081526004890160205260409020548015610d045760088901546000906001600160601b031642811115610c8d5784830342826001600160601b0316030291505b600083610c9a8688613a9f565b610ca49085613a8c565b610cae9190613ab6565b905080610cc064e8d4a5100086613a9f565b610cca9190613ab6565b60078d0155610cd98142613a8c565b60088d0180546001600160601b0319166001600160601b039290921691909117905550610d17915050565b6008890180546001600160601b03191690555b60068901889055600a890180546001600160601b031916426001600160601b03161790557fecdd072e4d5bd913a75a37f02daedcea7e2dc0281f9942c0063cfd1cfe5c4c4f8c8c86610d69818a613ad8565b60408051948552602085019390935291830152606082015260800160405180910390a1505050600c909601805460ff60a01b1916600160a01b17905550959694955050505050565b6000610dbb61242a565b600801546001600160601b0316919050565b6000610dd761242a565b54600160a01b900460ff16919050565b610df033611065565b80610df961242a565b600c0180546001600160a01b0319166001600160a01b03928316179055604051908216907f2bf242d027263e45fab022c28b4144255c97b30b8e54c30f1f5757906d487f0990600090a250565b6040805180820182526005815264332e302e3360d81b60209182015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fda26655fe98828873f36b43d69dcf685bd7966c6141a47d0d8cf605a48cc4e6a818401527f2b6ce738020449c02940d0e7c8b11e1a66b796567f3f13ee778704e085bcd6c660608201524660808201523060a0808301919091528351808303909101815260c0909101909252815191012090565b6000610f0861242a565b546001600160a01b0316919050565b60006108cc610f2461242a565b83612a84565b6000610f3461242a565b600c810154909150600119600160a01b90910460ff1601610f675760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b179055610f8533611fae565b30639d7fb70c610f9361242a565b546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610fd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffd9190613a18565b6040518263ffffffff1660e01b815260040161101b91815260200190565b600060405180830381600087803b15801561103557600080fd5b505af1158015611049573d6000803e3d6000fd5b505050600c909101805460ff60a01b1916600160a01b17905550565b61106d61242a565b600a01546001600160a01b03828116600160601b90920416146110c05760405162461bcd60e51b815260206004820152600b60248201526a085b585b9859d95b595b9d60aa1b60448201526064016109be565b50565b60006109776110d061242a565b84612b1e565b60006110e061242a565b60070154905090565b60006110f361242a565b600c810154909150600119600160a01b90910460ff16016111265760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b1790556111443361153a565b61114c61242a565b600c0154600160a81b900460ff166111955760405162461bcd60e51b815260206004820152600c60248201526b3737ba1039b43aba3237bbb760a11b60448201526064016109be565b604051631fbd027560e31b815260048101839052309063fde813a890602401600060405180830381600087803b1580156111ce57600080fd5b505af11580156111e2573d6000803e3d6000fd5b505050600c909101805460ff60a01b1916600160a01b1790555050565b61120833611065565b6001600160a01b03811661122e5760405162461bcd60e51b81526004016109be90613aeb565b306001600160a01b038216036112775760405162461bcd60e51b815260206004820152600e60248201526d21b0b73737ba1031329039b2b63360911b60448201526064016109be565b8061128061242a565b60090180546601000000000000600160d01b031916600160301b6001600160a01b0393841602179055604051908216907f9ebbf695dd251e855d9d15a146a72f5f654dc6f8630fbc11212f27e0c88ba11a90600090a250565b6000806112e461242a565b600c810154909150600119600160a01b90910460ff16016113175760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b179055600061133661242a565b905060001985036113af5780546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611388573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ac9190613a18565b94505b6113b98185612a84565b8511156114085760405162461bcd60e51b815260206004820152601e60248201527f455243343632363a206465706f736974206d6f7265207468616e206d6178000060448201526064016109be565b611414818660006125bb565b9250826000036114545760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f53484152455360a81b60448201526064016109be565b61146081858786612bbe565b50600c01805460ff60a01b1916600160a01b17905592915050565b600061148561242a565b600c01546001600160a01b0316919050565b60006108cc6114a461242a565b83612d08565b6114b333611065565b806114bc61242a565b60080180546001600160601b0316600160601b6001600160a01b0393841602179055604051908216907fd7f49e282c36d417b290d4181a56943f6d670aaa2987c0d40e60d39919c6888290600090a250565b600061151861242a565b6001600160a01b03909216600090815260039290920160205250604090205490565b600061154461242a565b600c8101549091506001600160a01b038381169116148061157b5750600a8101546001600160a01b03838116600160601b90920416145b6115bf5760405162461bcd60e51b815260206004820152601560248201527408595b595c99d95b98de48185d5d1a1bdc9a5e9959605a1b60448201526064016109be565b5050565b60006109776115d061242a565b84612d68565b60006115e061242a565b60090154640100000000900461ffff16919050565b60006115ff61242a565b600a0154600160601b90046001600160a01b0316919050565b60008061162361242a565b600c810154909150600119600160a01b90910460ff16016116565760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b179055600061167561242a565b90506116818185612e03565b8511156116d05760405162461bcd60e51b815260206004820152601b60248201527f455243343632363a206d696e74206d6f7265207468616e206d6178000000000060448201526064016109be565b6116dc81866001612458565b92508260000361171c5760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f41535345545360a81b60448201526064016109be565b61146081858588612bbe565b606061173261242a565b54604080516395d89b4160e01b815290516001600160a01b03909216916395d89b41916004808201926000929091908290030181865afa15801561177a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117a29190810190613b11565b6040516020016117b29190613b7f565b604051602081830303815290604052905090565b60006117d061242a565b80549091506001600160a01b0316156118195760405162461bcd60e51b815260206004820152600b60248201526a1a5b9a5d1a585b1a5e995960aa1b60448201526064016109be565b80546001600160a01b0319166001600160a01b038716178155600181016118408682613bf7565b50856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561187f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a39190613cb7565b815460ff91909116600160a01b0260ff60a01b1990911617815560098101805463ffffffff1916620d2f001790556001600160a01b0383166118f75760405162461bcd60e51b81526004016109be90613aeb565b306001600160a01b038416036119385760405162461bcd60e51b81526004016109be9060208082526004908201526339b2b63360e11b604082015260600190565b600981018054640100000000600160d01b031916600160301b6001600160a01b038681169190910265ffff000000001916919091176503e80000000017909155600a820180546001600160601b031916426001600160601b031617905584166119b35760405162461bcd60e51b81526004016109be90613aeb565b600a810180546001600160a01b03808716600160601b9081026001600160601b0393841617909355600884018054868316909402939092169290921790556040805180820182526005815264332e302e3360d81b602082015290519188169130917ffb1616746b8474b6b7c67f2fe5ada156ed24774d0efe8bfe529cf537ba17333091611a409190613577565b60405180910390a3505050505050565b600080611a5b61242a565b8054909150611a82908290611a7b90600160a01b900460ff16600a613db8565b6000612458565b91505090565b600080611a9361242a565b600c810154909150600119600160a01b90910460ff1601611ac65760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b1790556000611ae561242a565b9050611af18186612b1e565b871115611b405760405162461bcd60e51b815260206004820152601d60248201527f455243343632363a2072656465656d206d6f7265207468616e206d617800000060448201526064016109be565b6000611b4e82896000612458565b905080600003611b8e5760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f41535345545360a81b60448201526064016109be565b611b9c828888848c8a612eb4565b93505050600c01805460ff60a01b1916600160a01b179055949350505050565b600080611bc761242a565b600c810154909150600119600160a01b90910460ff1601611bfa5760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b1790556000611c1961242a565b9050611c258186612d68565b871115611c745760405162461bcd60e51b815260206004820152601f60248201527f455243343632363a207769746864726177206d6f7265207468616e206d61780060448201526064016109be565b611c80818860016125bb565b925082600003611cc05760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f53484152455360a81b60448201526064016109be565b611cce8187878a8789612eb4565b5050600c01805460ff60a01b1916600160a01b179055949350505050565b6000610900611cf961242a565b3385856126c2565b611d0a33611065565b61138861ffff82161115611d4a5760405162461bcd60e51b81526020600482015260076024820152664d41582046454560c81b60448201526064016109be565b80611d5361242a565b600901805465ffff00000000191664010000000061ffff9384160217905560405190821681527fdc843735e683348ec21c302ffff45462399c5c46f75f67b0a1a5395c535997539060200160405180910390a150565b6000611db361242a565b60080154600160601b90046001600160a01b0316919050565b60006108cc611dd961242a565b836001612458565b6000611df08484846000611bbc565b949350505050565b6000611df0848484612710611a88565b611e113361153a565b6001611e1b61242a565b600c018054911515600160a81b0260ff60a81b199092169190911790556040517ffc1249757a7f27c510c8173c55d03ba442e0d33d9223e06ceb416feac8c7693f90600090a1565b6000611e6d61242a565b600c0154600160a81b900460ff16919050565b6000611e8a61242a565b600a01546001600160601b0316919050565b611ea533611065565b8181611eaf61242a565b60010191611ebe919083613dc7565b505050565b60006108cc611ed061242a565b83612e03565b60006108cc611ee361242a565b8360006125bb565b6000611ef561242a565b600b8101549091506001600160a01b03163314611f3f5760405162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b60448201526064016109be565b600a810180546001600160601b031633600160601b810291909117909155600b820180546001600160a01b03191690556040517fff54978127edd34aec0f9061fb3b155fbe0ededdfa881ee3e0d541d3a1eef43890600090a250565b60006108cc611fa861242a565b83612d68565b6000611fb861242a565b60088101549091506001600160a01b03838116600160601b909204161480611ff65750600a8101546001600160a01b03838116600160601b90920416145b6115bf5760405162461bcd60e51b815260206004820152600760248201526610b5b2b2b832b960c91b60448201526064016109be565b4284101561207c5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205045524d49545f444541444c494e455f45585049524544000060448201526064016109be565b60006001612088610e46565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98a8a8a6120b461242a565b6001600160a01b038f8116600090815260039290920160209081526040928390208054600181019091558351808301989098529582168784015293166060860152608085019190915260a084019290925260c08084018b90528251808503909101815260e08401909252815191012061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156121a3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906121d95750876001600160a01b0316816001600160a01b0316145b61221d5760405162461bcd60e51b815260206004820152601560248201527422a92199181d1024a72b20a624a22fa9a4a3a722a960591b60448201526064016109be565b61223061222861242a565b828989612493565b5050505050505050565b60006108cc61224761242a565b83612b1e565b600061081761225a61242a565b612867565b600061097761226c61242a565b6001600160a01b03808616600090815260059290920160209081526040808420928716845291905290205490565b6122a333611065565b6301e185588111156122e25760405162461bcd60e51b8152602060048201526008602482015267746f6f206c6f6e6760c01b60448201526064016109be565b60006122ec61242a565b90508160000361233457306000908152600482016020526040902054801561231957612319823083612996565b50600060078201556008810180546001600160601b03191690555b60098101805463ffffffff191663ffffffff84161790556040518281527ff361aed463da6fa20358e45c6209f1d3e16d4eca706e6eab0b0aeb338729c77a9060200160405180910390a15050565b600061238c61242a565b60090154600160301b90046001600160a01b0316919050565b6123ae33611065565b6001600160a01b0381166123d45760405162461bcd60e51b81526004016109be90613aeb565b806123dd61242a565b600b0180546001600160a01b0319166001600160a01b03928316179055604051908216907fd74668a8c80a07cc56d7c3318a06439eaa815e740d97dcd83487e1fc75076b8b90600090a250565b6000806108cc60017fd2841a5d2692465040bd5e06a6f3b37483952c866e0f304dc0e03f76a1f8a0b1613ad8565b60008061246485612612565b905080156124885761248361247a866006015490565b8590838661317f565b61248a565b835b95945050505050565b6001600160a01b0383166124f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109be565b6001600160a01b0382166125565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109be565b6001600160a01b03838116600081815260058701602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a350505050565b6000806125c785612612565b9050806000036125da5783915050610977565b60006125e7866006015490565b9050806000036125fc57600092505050610977565b6126088583838761317f565b9695505050505050565b600061261d82612867565b82600201546108cc9190613ad8565b6001600160a01b03838116600090815260058601602090815260408083209386168352929052205460001981146126bb57818110156126ad5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109be565b6126bb858585858503612493565b5050505050565b6001600160a01b0383166127265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109be565b6001600160a01b0382166127885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109be565b306001600160a01b038316036127e05760405162461bcd60e51b815260206004820152601a60248201527f4552433230207472616e7366657220746f20737472617465677900000000000060448201526064016109be565b6001600160a01b03831660009081526004850160205260408120805483929061280a908490613ad8565b90915550506001600160a01b038083166000818152600487016020526040908190208054850190555190918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906125ad9085815260200190565b60088101546000906001600160601b0316428111156128a557600a830154600784015464e8d4a51000916001600160601b03164203020491506128c9565b6001600160601b038116156128c95730600090815260048401602052604090205491505b50919050565b6001600160a01b0382166129255760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109be565b808360020160008282546129399190613a8c565b90915550506001600160a01b03821660008181526004850160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b6001600160a01b0382166129f65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109be565b6001600160a01b038216600090815260048401602052604081208054839290612a20908490613ad8565b909155505060028301805482900390556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001612989565b6000818310612a7d5781610977565b5090919050565b600c820154600090600160a81b900460ff1680612aa957506001600160a01b03821630145b15612ab6575060006108cc565b604051632355178960e11b81526001600160a01b038316600482015230906346aa2f1290602401602060405180830381865afa158015612afa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109779190613a18565b6040516304bd462960e01b81526001600160a01b038216600482015260009030906304bd462990602401602060405180830381865afa158015612b65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b899190613a18565b90506000198103612ba557612b9e8383612d08565b90506108cc565b610977612bb4848360006125bb565b610c308585612d08565b83546001600160a01b0316612bd5813330866131d0565b6040516370a0823160e01b815230600482018190529063503160d9906001600160a01b038416906370a0823190602401602060405180830381865afa158015612c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c469190613a18565b6040518263ffffffff1660e01b8152600401612c6491815260200190565b600060405180830381600087803b158015612c7e57600080fd5b505af1158015612c92573d6000803e3d6000fd5b5050505082856006016000828254612caa9190613a8c565b90915550612cbb90508585846128cf565b60408051848152602081018490526001600160a01b0386169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a35050505050565b6000306001600160a01b03831603612d4857612d2383612867565b6001600160a01b0383166000908152600485016020526040902054612b9e9190613ad8565b506001600160a01b03166000908152600491909101602052604090205490565b6040516304bd462960e01b81526001600160a01b038216600482015260009030906304bd462990602401602060405180830381865afa158015612daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd39190613a18565b90506000198103612dec57612b9e83611a7b8585612d08565b610977612dfd84611a7b8686612d08565b82612a6e565b600c820154600090600160a81b900460ff1680612e2857506001600160a01b03821630145b15612e35575060006108cc565b604051632355178960e11b81526001600160a01b038316600482015230906346aa2f1290602401602060405180830381865afa158015612e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9d9190613a18565b905060001981146108cc57610977838260006125bb565b60006001600160a01b038616612edc5760405162461bcd60e51b81526004016109be90613aeb565b612710821115612f205760405162461bcd60e51b815260206004820152600f60248201526e65786365656473204d41585f42505360881b60448201526064016109be565b336001600160a01b03861614612f3c57612f3c8786338661262c565b86546040516370a0823160e01b81523060048201526001600160a01b039091169060009082906370a0823190602401602060405180830381865afa158015612f88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fac9190613a18565b90506000868210156130e457604051633d6cb57560e01b815282880360048201523090633d6cb57590602401600060405180830381600087803b158015612ff257600080fd5b505af1158015613006573d6000803e3d6000fd5b50506040516370a0823160e01b81523060048201526001600160a01b03861692506370a082319150602401602060405180830381865afa15801561304e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130729190613a18565b9150868210156130e457508086036127108510156130e0576127106130978689613a9f565b6130a19190613ab6565b8111156130e05760405162461bcd60e51b815260206004820152600d60248201526c746f6f206d756368206c6f737360981b60448201526064016109be565b8196505b6130ee8188613a8c565b8a60060160008282546131019190613ad8565b9091555061311290508a8988612996565b6131266001600160a01b0384168a89613241565b60408051888152602081018890526001600160a01b03808b1692908c169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a4509498975050505050505050565b60008061318d868686613271565b905060018360028111156131a3576131a3613e87565b1480156131c05750600084806131bb576131bb613a31565b868809115b1561248a57612608600182613a8c565b6040516001600160a01b038085166024830152831660448201526064810182905261323b9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261335b565b50505050565b6040516001600160a01b038316602482015260448101829052611ebe90849063a9059cbb60e01b90606401613204565b60008080600019858709858702925082811083820303915050806000036132ab578382816132a1576132a1613a31565b0492505050610977565b8084116132f25760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b60448201526064016109be565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b60006133b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134309092919063ffffffff16565b90508051600014806133d15750808060200190518101906133d19190613e9d565b611ebe5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109be565b6060611df0848460008585600080866001600160a01b031685876040516134579190613ebf565b60006040518083038185875af1925050503d8060008114613494576040519150601f19603f3d011682016040523d82523d6000602084013e613499565b606091505b50915091506134aa878383876134b5565b979650505050505050565b6060831561352457825160000361351d576001600160a01b0385163b61351d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109be565b5081611df0565b611df083838151156135395781518083602001fd5b8060405162461bcd60e51b81526004016109be9190613577565b60005b8381101561356e578181015183820152602001613556565b50506000910152565b6020815260008251806020840152613596816040850160208701613553565b601f01601f19169190910160400192915050565b6000602082840312156135bc57600080fd5b5035919050565b6001600160a01b03811681146110c057600080fd5b80356135e3816135c3565b919050565b600080604083850312156135fb57600080fd5b8235613606816135c3565b946020939093013593505050565b60008060006060848603121561362957600080fd5b8335613634816135c3565b92506020840135613644816135c3565b929592945050506040919091013590565b60006020828403121561366757600080fd5b8135610977816135c3565b6000806040838503121561368557600080fd5b823591506020830135613697816135c3565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156136e1576136e16136a2565b604052919050565b600067ffffffffffffffff821115613703576137036136a2565b50601f01601f191660200190565b600080600080600060a0868803121561372957600080fd5b8535613734816135c3565b9450602086013567ffffffffffffffff81111561375057600080fd5b8601601f8101881361376157600080fd5b803561377461376f826136e9565b6136b8565b81815289602083850101111561378957600080fd5b816020840160208301376000602083830101528096505050506137ae604087016135d8565b92506137bc606087016135d8565b91506137ca608087016135d8565b90509295509295909350565b600080600080608085870312156137ec57600080fd5b8435935060208501356137fe816135c3565b9250604085013561380e816135c3565b9396929550929360600135925050565b61ffff811681146110c057600080fd5b60006020828403121561384057600080fd5b81356109778161381e565b60008060006060848603121561386057600080fd5b833592506020840135613872816135c3565b91506040840135613882816135c3565b809150509250925092565b600080602083850312156138a057600080fd5b823567ffffffffffffffff808211156138b857600080fd5b818501915085601f8301126138cc57600080fd5b8135818111156138db57600080fd5b8660208285010111156138ed57600080fd5b60209290920196919550909350505050565b60ff811681146110c057600080fd5b600080600080600080600060e0888a03121561392957600080fd5b8735613934816135c3565b96506020880135613944816135c3565b955060408801359450606088013593506080880135613962816138ff565b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561399257600080fd5b823561399d816135c3565b91506020830135613697816135c3565b600181811c908216806139c157607f821691505b6020821081036128c957634e487b7160e01b600052602260045260246000fd5b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600060208284031215613a2a57600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b60008060408385031215613a5a57600080fd5b8251613a658161381e565b6020840151909250613697816135c3565b634e487b7160e01b600052601160045260246000fd5b808201808211156108cc576108cc613a76565b80820281158282048414176108cc576108cc613a76565b600082613ad357634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108cc576108cc613a76565b6020808252600c908201526b5a45524f204144445245535360a01b604082015260600190565b600060208284031215613b2357600080fd5b815167ffffffffffffffff811115613b3a57600080fd5b8201601f81018413613b4b57600080fd5b8051613b5961376f826136e9565b818152856020838501011115613b6e57600080fd5b61248a826020830160208601613553565b61797360f01b815260008251613b9c816002850160208701613553565b9190910160020192915050565b601f821115611ebe57600081815260208120601f850160051c81016020861015613bd05750805b601f850160051c820191505b81811015613bef57828155600101613bdc565b505050505050565b815167ffffffffffffffff811115613c1157613c116136a2565b613c2581613c1f84546139ad565b84613ba9565b602080601f831160018114613c5a5760008415613c425750858301515b600019600386901b1c1916600185901b178555613bef565b600085815260208120601f198616915b82811015613c8957888601518255948401946001909101908401613c6a565b5085821015613ca75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613cc957600080fd5b8151610977816138ff565b600181815b80851115613d0f578160001904821115613cf557613cf5613a76565b80851615613d0257918102915b93841c9390800290613cd9565b509250929050565b600082613d26575060016108cc565b81613d33575060006108cc565b8160018114613d495760028114613d5357613d6f565b60019150506108cc565b60ff841115613d6457613d64613a76565b50506001821b6108cc565b5060208310610133831016604e8410600b8410161715613d92575081810a6108cc565b613d9c8383613cd4565b8060001904821115613db057613db0613a76565b029392505050565b600061097760ff841683613d17565b67ffffffffffffffff831115613ddf57613ddf6136a2565b613df383613ded83546139ad565b83613ba9565b6000601f841160018114613e275760008515613e0f5750838201355b600019600387901b1c1916600186901b1783556126bb565b600083815260209020601f19861690835b82811015613e585786850135825560209485019460019092019101613e38565b5086821015613e755760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052602160045260246000fd5b600060208284031215613eaf57600080fd5b8151801515811461097757600080fd5b60008251613ed1818460208701613553565b919091019291505056fea2646970667358221220cb52f901078122dd5ce1c57708066d164287656260238b5bdd9a107f6c9dfffe64736f6c634300081200330000000000000000000000005577edcb8a856582297cdbbb07055e6a6e38eb5f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103d05760003560e01c806387788782116101ff578063bf86d6901161011a578063d505accf116100ad578063df69b22a1161007c578063df69b22a146107d5578063ed27f7c9146107e8578063ef8b30f714610753578063f629b790146107f057600080fd5b8063d505accf14610794578063d905777e146107a7578063d9a0e97a146107ba578063dd62ed3e146107c257600080fd5b8063c6e6f592116100e9578063c6e6f59214610753578063c8c2fe6c14610766578063ce96cb771461076e578063d43fdcf71461078157600080fd5b8063bf86d6901461071d578063c3535b5214610725578063c47f00271461072d578063c63d75b61461074057600080fd5b8063a9059cbb11610192578063b460af9411610161578063b460af94146106e6578063ba087652146106f9578063bc063e1a1461070c578063be8f16681461071557600080fd5b8063a9059cbb146106a5578063aa290e6d146106b8578063aced1661146106cb578063b3d7f6b9146106d357600080fd5b806397073ae6116101ce57806397073ae61461066457806399530b06146106775780639f40a7b31461067f578063a318c1a41461069257600080fd5b8063877887821461062657806388a8d6021461064157806394bf804d1461064957806395d89b411461065c57600080fd5b806338d52e0f116102ef5780636a5f1aa211610282578063748747e611610251578063748747e6146105da5780637ecebe00146105ed57806382e00a441461060057806385b687561461061357600080fd5b80636a5f1aa2146105995780636e553f65146105ac57806370905dce146105bf57806370a08231146105c757600080fd5b80634abe4137116102be5780634abe41371461056b5780634cdad506146104055780635141eebb1461057e5780635312ea8e1461058657600080fd5b806338d52e0f14610535578063402d267d1461053d578063440368a31461055057806348e4a6491461055857600080fd5b806323b872dd116103675780632dd31000116103365780632dd31000146104d7578063313ce567146104fe57806335da3394146105185780633644e5151461052d57600080fd5b806323b872dd1461047e57806325829410146104915780632606a10b146104b25780632d632692146104cf57600080fd5b8063095ea7b3116103a3578063095ea7b3146104205780630a28a477146104435780630b68f46f1461045657806318160ddd1461047657600080fd5b806301e1d114146103d557806306fdde03146103f057806307a2d13a146104055780630952864e14610418575b600080fd5b6103dd610803565b6040519081526020015b60405180910390f35b6103f861081c565b6040516103e79190613577565b6103dd6104133660046135aa565b6108b7565b6103dd6108d2565b61043361042e3660046135e8565b6108eb565b60405190151581526020016103e7565b6103dd6104513660046135aa565b610909565b61045e61091e565b6040516001600160a01b0390911681526020016103e7565b6103dd61093a565b61043361048c366004613614565b61094c565b604080518082019091526005815264332e302e3360d81b60208201526103f8565b6104ba61097e565b604080519283526020830191909152016103e7565b6103dd610db1565b61045e7f0000000000000000000000005577edcb8a856582297cdbbb07055e6a6e38eb5f81565b610506610dcd565b60405160ff90911681526020016103e7565b61052b610526366004613655565b610de7565b005b6103dd610e46565b61045e610efe565b6103dd61054b366004613655565b610f17565b61052b610f2a565b61052b610566366004613655565b611065565b6103dd6105793660046135e8565b6110c3565b6103dd6110d6565b61052b6105943660046135aa565b6110e9565b61052b6105a7366004613655565b6111ff565b6103dd6105ba366004613672565b6112d9565b61045e61147b565b6103dd6105d5366004613655565b611497565b61052b6105e8366004613655565b6114aa565b6103dd6105fb366004613655565b61150e565b61052b61060e366004613655565b61153a565b6103dd6106213660046135e8565b6115c3565b61062e6115d6565b60405161ffff90911681526020016103e7565b61045e6115f5565b6103dd610657366004613672565b611618565b6103f8611728565b61052b610672366004613711565b6117c6565b6103dd611a50565b6103dd61068d3660046137d6565b611a88565b6103dd6106a03660046137d6565b611bbc565b6104336106b33660046135e8565b611cec565b61052b6106c636600461382e565b611d01565b61045e611da9565b6103dd6106e13660046135aa565b611dcc565b6103dd6106f436600461384b565b611de1565b6103dd61070736600461384b565b611df8565b61062e61138881565b61052b611e08565b610433611e63565b6103dd611e80565b61052b61073b36600461388d565b611e9c565b6103dd61074e366004613655565b611ec3565b6103dd6107613660046135aa565b611ed6565b61052b611eeb565b6103dd61077c366004613655565b611f9b565b61052b61078f366004613655565b611fae565b61052b6107a236600461390e565b61202c565b6103dd6107b5366004613655565b61223a565b6103dd61224d565b6103dd6107d036600461397f565b61225f565b61052b6107e33660046135aa565b61229a565b61045e612382565b61052b6107fe366004613655565b6123a5565b600061081761081061242a565b6006015490565b905090565b606061082661242a565b6001018054610834906139ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610860906139ad565b80156108ad5780601f10610882576101008083540402835291602001916108ad565b820191906000526020600020905b81548152906001019060200180831161089057829003601f168201915b5050505050905090565b60006108cc6108c461242a565b836000612458565b92915050565b60006108dc61242a565b6009015463ffffffff16919050565b60006109006108f861242a565b338585612493565b50600192915050565b60006108cc61091661242a565b8360016125bb565b600061092861242a565b600b01546001600160a01b0316919050565b600061081761094761242a565b612612565b60008061095761242a565b90506109658186338661262c565b610971818686866126c2565b60019150505b9392505050565b600080600061098b61242a565b600c810154909150600119600160a01b90910460ff16016109c75760405162461bcd60e51b81526004016109be906139e1565b60405180910390fd5b600c8101805460ff60a01b1916600160a11b1790556109e533611fae565b60006109ef61242a565b90506000306001600160a01b03166349317f1d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610a33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a579190613a18565b90506000610a66836006015490565b90506000610a7384612867565b60098501549091506000908190819063ffffffff1685871115610bf4578587039a50610aa1888c60006125bb565b6009890154909250640100000000900461ffff1660008115610bb35761271061ffff83168e0204955061271061ffff831685020490506000807f0000000000000000000000005577edcb8a856582297cdbbb07055e6a6e38eb5f6001600160a01b0316635153b1996040518163ffffffff1660e01b81526004016040805180830381865afa158015610b37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5b9190613a47565b9150915060008261ffff16600014610b8c575061271061ffff83168981028290049850840204610b8c8d83836128cf565b60098d0154610baf908e90600160301b90046001600160a01b03168387036128cf565b5050505b8215610bed57808403935083871115610bd857610bd38a30868a03612996565b610bed565b86841115610bed57610bed8a308987036128cf565b5050610c49565b868603995089600014610c3857306000908152600489016020526040812054610c35918790610c26908c908f906125bb565b610c309190613a8c565b612a6e565b94505b8415610c4957610c49883087612996565b3060009081526004890160205260409020548015610d045760088901546000906001600160601b031642811115610c8d5784830342826001600160601b0316030291505b600083610c9a8688613a9f565b610ca49085613a8c565b610cae9190613ab6565b905080610cc064e8d4a5100086613a9f565b610cca9190613ab6565b60078d0155610cd98142613a8c565b60088d0180546001600160601b0319166001600160601b039290921691909117905550610d17915050565b6008890180546001600160601b03191690555b60068901889055600a890180546001600160601b031916426001600160601b03161790557fecdd072e4d5bd913a75a37f02daedcea7e2dc0281f9942c0063cfd1cfe5c4c4f8c8c86610d69818a613ad8565b60408051948552602085019390935291830152606082015260800160405180910390a1505050600c909601805460ff60a01b1916600160a01b17905550959694955050505050565b6000610dbb61242a565b600801546001600160601b0316919050565b6000610dd761242a565b54600160a01b900460ff16919050565b610df033611065565b80610df961242a565b600c0180546001600160a01b0319166001600160a01b03928316179055604051908216907f2bf242d027263e45fab022c28b4144255c97b30b8e54c30f1f5757906d487f0990600090a250565b6040805180820182526005815264332e302e3360d81b60209182015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fda26655fe98828873f36b43d69dcf685bd7966c6141a47d0d8cf605a48cc4e6a818401527f2b6ce738020449c02940d0e7c8b11e1a66b796567f3f13ee778704e085bcd6c660608201524660808201523060a0808301919091528351808303909101815260c0909101909252815191012090565b6000610f0861242a565b546001600160a01b0316919050565b60006108cc610f2461242a565b83612a84565b6000610f3461242a565b600c810154909150600119600160a01b90910460ff1601610f675760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b179055610f8533611fae565b30639d7fb70c610f9361242a565b546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610fd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffd9190613a18565b6040518263ffffffff1660e01b815260040161101b91815260200190565b600060405180830381600087803b15801561103557600080fd5b505af1158015611049573d6000803e3d6000fd5b505050600c909101805460ff60a01b1916600160a01b17905550565b61106d61242a565b600a01546001600160a01b03828116600160601b90920416146110c05760405162461bcd60e51b815260206004820152600b60248201526a085b585b9859d95b595b9d60aa1b60448201526064016109be565b50565b60006109776110d061242a565b84612b1e565b60006110e061242a565b60070154905090565b60006110f361242a565b600c810154909150600119600160a01b90910460ff16016111265760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b1790556111443361153a565b61114c61242a565b600c0154600160a81b900460ff166111955760405162461bcd60e51b815260206004820152600c60248201526b3737ba1039b43aba3237bbb760a11b60448201526064016109be565b604051631fbd027560e31b815260048101839052309063fde813a890602401600060405180830381600087803b1580156111ce57600080fd5b505af11580156111e2573d6000803e3d6000fd5b505050600c909101805460ff60a01b1916600160a01b1790555050565b61120833611065565b6001600160a01b03811661122e5760405162461bcd60e51b81526004016109be90613aeb565b306001600160a01b038216036112775760405162461bcd60e51b815260206004820152600e60248201526d21b0b73737ba1031329039b2b63360911b60448201526064016109be565b8061128061242a565b60090180546601000000000000600160d01b031916600160301b6001600160a01b0393841602179055604051908216907f9ebbf695dd251e855d9d15a146a72f5f654dc6f8630fbc11212f27e0c88ba11a90600090a250565b6000806112e461242a565b600c810154909150600119600160a01b90910460ff16016113175760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b179055600061133661242a565b905060001985036113af5780546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611388573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ac9190613a18565b94505b6113b98185612a84565b8511156114085760405162461bcd60e51b815260206004820152601e60248201527f455243343632363a206465706f736974206d6f7265207468616e206d6178000060448201526064016109be565b611414818660006125bb565b9250826000036114545760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f53484152455360a81b60448201526064016109be565b61146081858786612bbe565b50600c01805460ff60a01b1916600160a01b17905592915050565b600061148561242a565b600c01546001600160a01b0316919050565b60006108cc6114a461242a565b83612d08565b6114b333611065565b806114bc61242a565b60080180546001600160601b0316600160601b6001600160a01b0393841602179055604051908216907fd7f49e282c36d417b290d4181a56943f6d670aaa2987c0d40e60d39919c6888290600090a250565b600061151861242a565b6001600160a01b03909216600090815260039290920160205250604090205490565b600061154461242a565b600c8101549091506001600160a01b038381169116148061157b5750600a8101546001600160a01b03838116600160601b90920416145b6115bf5760405162461bcd60e51b815260206004820152601560248201527408595b595c99d95b98de48185d5d1a1bdc9a5e9959605a1b60448201526064016109be565b5050565b60006109776115d061242a565b84612d68565b60006115e061242a565b60090154640100000000900461ffff16919050565b60006115ff61242a565b600a0154600160601b90046001600160a01b0316919050565b60008061162361242a565b600c810154909150600119600160a01b90910460ff16016116565760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b179055600061167561242a565b90506116818185612e03565b8511156116d05760405162461bcd60e51b815260206004820152601b60248201527f455243343632363a206d696e74206d6f7265207468616e206d6178000000000060448201526064016109be565b6116dc81866001612458565b92508260000361171c5760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f41535345545360a81b60448201526064016109be565b61146081858588612bbe565b606061173261242a565b54604080516395d89b4160e01b815290516001600160a01b03909216916395d89b41916004808201926000929091908290030181865afa15801561177a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117a29190810190613b11565b6040516020016117b29190613b7f565b604051602081830303815290604052905090565b60006117d061242a565b80549091506001600160a01b0316156118195760405162461bcd60e51b815260206004820152600b60248201526a1a5b9a5d1a585b1a5e995960aa1b60448201526064016109be565b80546001600160a01b0319166001600160a01b038716178155600181016118408682613bf7565b50856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561187f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a39190613cb7565b815460ff91909116600160a01b0260ff60a01b1990911617815560098101805463ffffffff1916620d2f001790556001600160a01b0383166118f75760405162461bcd60e51b81526004016109be90613aeb565b306001600160a01b038416036119385760405162461bcd60e51b81526004016109be9060208082526004908201526339b2b63360e11b604082015260600190565b600981018054640100000000600160d01b031916600160301b6001600160a01b038681169190910265ffff000000001916919091176503e80000000017909155600a820180546001600160601b031916426001600160601b031617905584166119b35760405162461bcd60e51b81526004016109be90613aeb565b600a810180546001600160a01b03808716600160601b9081026001600160601b0393841617909355600884018054868316909402939092169290921790556040805180820182526005815264332e302e3360d81b602082015290519188169130917ffb1616746b8474b6b7c67f2fe5ada156ed24774d0efe8bfe529cf537ba17333091611a409190613577565b60405180910390a3505050505050565b600080611a5b61242a565b8054909150611a82908290611a7b90600160a01b900460ff16600a613db8565b6000612458565b91505090565b600080611a9361242a565b600c810154909150600119600160a01b90910460ff1601611ac65760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b1790556000611ae561242a565b9050611af18186612b1e565b871115611b405760405162461bcd60e51b815260206004820152601d60248201527f455243343632363a2072656465656d206d6f7265207468616e206d617800000060448201526064016109be565b6000611b4e82896000612458565b905080600003611b8e5760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f41535345545360a81b60448201526064016109be565b611b9c828888848c8a612eb4565b93505050600c01805460ff60a01b1916600160a01b179055949350505050565b600080611bc761242a565b600c810154909150600119600160a01b90910460ff1601611bfa5760405162461bcd60e51b81526004016109be906139e1565b600c8101805460ff60a01b1916600160a11b1790556000611c1961242a565b9050611c258186612d68565b871115611c745760405162461bcd60e51b815260206004820152601f60248201527f455243343632363a207769746864726177206d6f7265207468616e206d61780060448201526064016109be565b611c80818860016125bb565b925082600003611cc05760405162461bcd60e51b815260206004820152600b60248201526a5a45524f5f53484152455360a81b60448201526064016109be565b611cce8187878a8789612eb4565b5050600c01805460ff60a01b1916600160a01b179055949350505050565b6000610900611cf961242a565b3385856126c2565b611d0a33611065565b61138861ffff82161115611d4a5760405162461bcd60e51b81526020600482015260076024820152664d41582046454560c81b60448201526064016109be565b80611d5361242a565b600901805465ffff00000000191664010000000061ffff9384160217905560405190821681527fdc843735e683348ec21c302ffff45462399c5c46f75f67b0a1a5395c535997539060200160405180910390a150565b6000611db361242a565b60080154600160601b90046001600160a01b0316919050565b60006108cc611dd961242a565b836001612458565b6000611df08484846000611bbc565b949350505050565b6000611df0848484612710611a88565b611e113361153a565b6001611e1b61242a565b600c018054911515600160a81b0260ff60a81b199092169190911790556040517ffc1249757a7f27c510c8173c55d03ba442e0d33d9223e06ceb416feac8c7693f90600090a1565b6000611e6d61242a565b600c0154600160a81b900460ff16919050565b6000611e8a61242a565b600a01546001600160601b0316919050565b611ea533611065565b8181611eaf61242a565b60010191611ebe919083613dc7565b505050565b60006108cc611ed061242a565b83612e03565b60006108cc611ee361242a565b8360006125bb565b6000611ef561242a565b600b8101549091506001600160a01b03163314611f3f5760405162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b60448201526064016109be565b600a810180546001600160601b031633600160601b810291909117909155600b820180546001600160a01b03191690556040517fff54978127edd34aec0f9061fb3b155fbe0ededdfa881ee3e0d541d3a1eef43890600090a250565b60006108cc611fa861242a565b83612d68565b6000611fb861242a565b60088101549091506001600160a01b03838116600160601b909204161480611ff65750600a8101546001600160a01b03838116600160601b90920416145b6115bf5760405162461bcd60e51b815260206004820152600760248201526610b5b2b2b832b960c91b60448201526064016109be565b4284101561207c5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205045524d49545f444541444c494e455f45585049524544000060448201526064016109be565b60006001612088610e46565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98a8a8a6120b461242a565b6001600160a01b038f8116600090815260039290920160209081526040928390208054600181019091558351808301989098529582168784015293166060860152608085019190915260a084019290925260c08084018b90528251808503909101815260e08401909252815191012061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156121a3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906121d95750876001600160a01b0316816001600160a01b0316145b61221d5760405162461bcd60e51b815260206004820152601560248201527422a92199181d1024a72b20a624a22fa9a4a3a722a960591b60448201526064016109be565b61223061222861242a565b828989612493565b5050505050505050565b60006108cc61224761242a565b83612b1e565b600061081761225a61242a565b612867565b600061097761226c61242a565b6001600160a01b03808616600090815260059290920160209081526040808420928716845291905290205490565b6122a333611065565b6301e185588111156122e25760405162461bcd60e51b8152602060048201526008602482015267746f6f206c6f6e6760c01b60448201526064016109be565b60006122ec61242a565b90508160000361233457306000908152600482016020526040902054801561231957612319823083612996565b50600060078201556008810180546001600160601b03191690555b60098101805463ffffffff191663ffffffff84161790556040518281527ff361aed463da6fa20358e45c6209f1d3e16d4eca706e6eab0b0aeb338729c77a9060200160405180910390a15050565b600061238c61242a565b60090154600160301b90046001600160a01b0316919050565b6123ae33611065565b6001600160a01b0381166123d45760405162461bcd60e51b81526004016109be90613aeb565b806123dd61242a565b600b0180546001600160a01b0319166001600160a01b03928316179055604051908216907fd74668a8c80a07cc56d7c3318a06439eaa815e740d97dcd83487e1fc75076b8b90600090a250565b6000806108cc60017fd2841a5d2692465040bd5e06a6f3b37483952c866e0f304dc0e03f76a1f8a0b1613ad8565b60008061246485612612565b905080156124885761248361247a866006015490565b8590838661317f565b61248a565b835b95945050505050565b6001600160a01b0383166124f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109be565b6001600160a01b0382166125565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109be565b6001600160a01b03838116600081815260058701602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a350505050565b6000806125c785612612565b9050806000036125da5783915050610977565b60006125e7866006015490565b9050806000036125fc57600092505050610977565b6126088583838761317f565b9695505050505050565b600061261d82612867565b82600201546108cc9190613ad8565b6001600160a01b03838116600090815260058601602090815260408083209386168352929052205460001981146126bb57818110156126ad5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109be565b6126bb858585858503612493565b5050505050565b6001600160a01b0383166127265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109be565b6001600160a01b0382166127885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109be565b306001600160a01b038316036127e05760405162461bcd60e51b815260206004820152601a60248201527f4552433230207472616e7366657220746f20737472617465677900000000000060448201526064016109be565b6001600160a01b03831660009081526004850160205260408120805483929061280a908490613ad8565b90915550506001600160a01b038083166000818152600487016020526040908190208054850190555190918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906125ad9085815260200190565b60088101546000906001600160601b0316428111156128a557600a830154600784015464e8d4a51000916001600160601b03164203020491506128c9565b6001600160601b038116156128c95730600090815260048401602052604090205491505b50919050565b6001600160a01b0382166129255760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109be565b808360020160008282546129399190613a8c565b90915550506001600160a01b03821660008181526004850160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b6001600160a01b0382166129f65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109be565b6001600160a01b038216600090815260048401602052604081208054839290612a20908490613ad8565b909155505060028301805482900390556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001612989565b6000818310612a7d5781610977565b5090919050565b600c820154600090600160a81b900460ff1680612aa957506001600160a01b03821630145b15612ab6575060006108cc565b604051632355178960e11b81526001600160a01b038316600482015230906346aa2f1290602401602060405180830381865afa158015612afa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109779190613a18565b6040516304bd462960e01b81526001600160a01b038216600482015260009030906304bd462990602401602060405180830381865afa158015612b65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b899190613a18565b90506000198103612ba557612b9e8383612d08565b90506108cc565b610977612bb4848360006125bb565b610c308585612d08565b83546001600160a01b0316612bd5813330866131d0565b6040516370a0823160e01b815230600482018190529063503160d9906001600160a01b038416906370a0823190602401602060405180830381865afa158015612c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c469190613a18565b6040518263ffffffff1660e01b8152600401612c6491815260200190565b600060405180830381600087803b158015612c7e57600080fd5b505af1158015612c92573d6000803e3d6000fd5b5050505082856006016000828254612caa9190613a8c565b90915550612cbb90508585846128cf565b60408051848152602081018490526001600160a01b0386169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a35050505050565b6000306001600160a01b03831603612d4857612d2383612867565b6001600160a01b0383166000908152600485016020526040902054612b9e9190613ad8565b506001600160a01b03166000908152600491909101602052604090205490565b6040516304bd462960e01b81526001600160a01b038216600482015260009030906304bd462990602401602060405180830381865afa158015612daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd39190613a18565b90506000198103612dec57612b9e83611a7b8585612d08565b610977612dfd84611a7b8686612d08565b82612a6e565b600c820154600090600160a81b900460ff1680612e2857506001600160a01b03821630145b15612e35575060006108cc565b604051632355178960e11b81526001600160a01b038316600482015230906346aa2f1290602401602060405180830381865afa158015612e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9d9190613a18565b905060001981146108cc57610977838260006125bb565b60006001600160a01b038616612edc5760405162461bcd60e51b81526004016109be90613aeb565b612710821115612f205760405162461bcd60e51b815260206004820152600f60248201526e65786365656473204d41585f42505360881b60448201526064016109be565b336001600160a01b03861614612f3c57612f3c8786338661262c565b86546040516370a0823160e01b81523060048201526001600160a01b039091169060009082906370a0823190602401602060405180830381865afa158015612f88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fac9190613a18565b90506000868210156130e457604051633d6cb57560e01b815282880360048201523090633d6cb57590602401600060405180830381600087803b158015612ff257600080fd5b505af1158015613006573d6000803e3d6000fd5b50506040516370a0823160e01b81523060048201526001600160a01b03861692506370a082319150602401602060405180830381865afa15801561304e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130729190613a18565b9150868210156130e457508086036127108510156130e0576127106130978689613a9f565b6130a19190613ab6565b8111156130e05760405162461bcd60e51b815260206004820152600d60248201526c746f6f206d756368206c6f737360981b60448201526064016109be565b8196505b6130ee8188613a8c565b8a60060160008282546131019190613ad8565b9091555061311290508a8988612996565b6131266001600160a01b0384168a89613241565b60408051888152602081018890526001600160a01b03808b1692908c169133917ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db910160405180910390a4509498975050505050505050565b60008061318d868686613271565b905060018360028111156131a3576131a3613e87565b1480156131c05750600084806131bb576131bb613a31565b868809115b1561248a57612608600182613a8c565b6040516001600160a01b038085166024830152831660448201526064810182905261323b9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261335b565b50505050565b6040516001600160a01b038316602482015260448101829052611ebe90849063a9059cbb60e01b90606401613204565b60008080600019858709858702925082811083820303915050806000036132ab578382816132a1576132a1613a31565b0492505050610977565b8084116132f25760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b60448201526064016109be565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b60006133b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166134309092919063ffffffff16565b90508051600014806133d15750808060200190518101906133d19190613e9d565b611ebe5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109be565b6060611df0848460008585600080866001600160a01b031685876040516134579190613ebf565b60006040518083038185875af1925050503d8060008114613494576040519150601f19603f3d011682016040523d82523d6000602084013e613499565b606091505b50915091506134aa878383876134b5565b979650505050505050565b6060831561352457825160000361351d576001600160a01b0385163b61351d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109be565b5081611df0565b611df083838151156135395781518083602001fd5b8060405162461bcd60e51b81526004016109be9190613577565b60005b8381101561356e578181015183820152602001613556565b50506000910152565b6020815260008251806020840152613596816040850160208701613553565b601f01601f19169190910160400192915050565b6000602082840312156135bc57600080fd5b5035919050565b6001600160a01b03811681146110c057600080fd5b80356135e3816135c3565b919050565b600080604083850312156135fb57600080fd5b8235613606816135c3565b946020939093013593505050565b60008060006060848603121561362957600080fd5b8335613634816135c3565b92506020840135613644816135c3565b929592945050506040919091013590565b60006020828403121561366757600080fd5b8135610977816135c3565b6000806040838503121561368557600080fd5b823591506020830135613697816135c3565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156136e1576136e16136a2565b604052919050565b600067ffffffffffffffff821115613703576137036136a2565b50601f01601f191660200190565b600080600080600060a0868803121561372957600080fd5b8535613734816135c3565b9450602086013567ffffffffffffffff81111561375057600080fd5b8601601f8101881361376157600080fd5b803561377461376f826136e9565b6136b8565b81815289602083850101111561378957600080fd5b816020840160208301376000602083830101528096505050506137ae604087016135d8565b92506137bc606087016135d8565b91506137ca608087016135d8565b90509295509295909350565b600080600080608085870312156137ec57600080fd5b8435935060208501356137fe816135c3565b9250604085013561380e816135c3565b9396929550929360600135925050565b61ffff811681146110c057600080fd5b60006020828403121561384057600080fd5b81356109778161381e565b60008060006060848603121561386057600080fd5b833592506020840135613872816135c3565b91506040840135613882816135c3565b809150509250925092565b600080602083850312156138a057600080fd5b823567ffffffffffffffff808211156138b857600080fd5b818501915085601f8301126138cc57600080fd5b8135818111156138db57600080fd5b8660208285010111156138ed57600080fd5b60209290920196919550909350505050565b60ff811681146110c057600080fd5b600080600080600080600060e0888a03121561392957600080fd5b8735613934816135c3565b96506020880135613944816135c3565b955060408801359450606088013593506080880135613962816138ff565b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561399257600080fd5b823561399d816135c3565b91506020830135613697816135c3565b600181811c908216806139c157607f821691505b6020821081036128c957634e487b7160e01b600052602260045260246000fd5b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600060208284031215613a2a57600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b60008060408385031215613a5a57600080fd5b8251613a658161381e565b6020840151909250613697816135c3565b634e487b7160e01b600052601160045260246000fd5b808201808211156108cc576108cc613a76565b80820281158282048414176108cc576108cc613a76565b600082613ad357634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108cc576108cc613a76565b6020808252600c908201526b5a45524f204144445245535360a01b604082015260600190565b600060208284031215613b2357600080fd5b815167ffffffffffffffff811115613b3a57600080fd5b8201601f81018413613b4b57600080fd5b8051613b5961376f826136e9565b818152856020838501011115613b6e57600080fd5b61248a826020830160208601613553565b61797360f01b815260008251613b9c816002850160208701613553565b9190910160020192915050565b601f821115611ebe57600081815260208120601f850160051c81016020861015613bd05750805b601f850160051c820191505b81811015613bef57828155600101613bdc565b505050505050565b815167ffffffffffffffff811115613c1157613c116136a2565b613c2581613c1f84546139ad565b84613ba9565b602080601f831160018114613c5a5760008415613c425750858301515b600019600386901b1c1916600185901b178555613bef565b600085815260208120601f198616915b82811015613c8957888601518255948401946001909101908401613c6a565b5085821015613ca75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613cc957600080fd5b8151610977816138ff565b600181815b80851115613d0f578160001904821115613cf557613cf5613a76565b80851615613d0257918102915b93841c9390800290613cd9565b509250929050565b600082613d26575060016108cc565b81613d33575060006108cc565b8160018114613d495760028114613d5357613d6f565b60019150506108cc565b60ff841115613d6457613d64613a76565b50506001821b6108cc565b5060208310610133831016604e8410600b8410161715613d92575081810a6108cc565b613d9c8383613cd4565b8060001904821115613db057613db0613a76565b029392505050565b600061097760ff841683613d17565b67ffffffffffffffff831115613ddf57613ddf6136a2565b613df383613ded83546139ad565b83613ba9565b6000601f841160018114613e275760008515613e0f5750838201355b600019600387901b1c1916600186901b1783556126bb565b600083815260209020601f19861690835b82811015613e585786850135825560209485019460019092019101613e38565b5086821015613e755760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052602160045260246000fd5b600060208284031215613eaf57600080fd5b8151801515811461097757600080fd5b60008251613ed1818460208701613553565b919091019291505056fea2646970667358221220cb52f901078122dd5ce1c57708066d164287656260238b5bdd9a107f6c9dfffe64736f6c63430008120033

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

0000000000000000000000005577edcb8a856582297cdbbb07055e6a6e38eb5f

-----Decoded View---------------
Arg [0] : _factory (address): 0x5577EdcB8A856582297CdBbB07055E6a6E38eb5f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005577edcb8a856582297cdbbb07055e6a6e38eb5f


Deployed Bytecode Sourcemap

61907:79753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86003:121;;;:::i;:::-;;;160:25:1;;;148:2;133:18;86003:121:0;;;;;;;;125944:111;;;:::i;:::-;;;;;;;:::i;87588:171::-;;;;;;:::i;:::-;;:::i;118842:135::-;;;:::i;130612:184::-;;;;;;:::i;:::-;;:::i;:::-;;;1797:14:1;;1790:22;1772:41;;1760:2;1745:18;130612:184:0;1632:187:1;89397:169:0;;;;;;:::i;:::-;;:::i;116652:131::-;;;:::i;:::-;;;-1:-1:-1;;;;;1988:32:1;;;1970:51;;1958:2;1943:18;116652:131:0;1824:203:1;86582:121:0;;;:::i;131895:338::-;;;;;;:::i;:::-;;:::i;116122:105::-;116204:11;;;;;;;;;;;;-1:-1:-1;;;116204:11:0;;;;116122:105;;103121:7863;;;:::i;:::-;;;;2667:25:1;;;2723:2;2708:18;;2701:34;;;;2640:18;103121:7863:0;2493:248:1;118168:146:0;;;:::i;74924:32::-;;;;;126635:111;;;:::i;:::-;;;2918:4:1;2906:17;;;2888:36;;2876:2;2861:18;126635:111:0;2746:184:1;122168:237:0;;;;;;:::i;:::-;;:::i;:::-;;140485:558;;;:::i;115838:116::-;;;:::i;90511:145::-;;;;;;:::i;:::-;;:::i;113334:263::-;;;:::i;71228:147::-;;;;;;:::i;:::-;;:::i;92664:195::-;;;;;;:::i;:::-;;:::i;118540:135::-;;;:::i;115132:368::-;;;;;;:::i;:::-;;:::i;123345:452::-;;;;;;:::i;:::-;;:::i;79396:901::-;;;;;;:::i;:::-;;:::i;117219:125::-;;;:::i;127150:141::-;;;;;;:::i;:::-;;:::i;121742:165::-;;;;;;:::i;:::-;;:::i;137445:131::-;;;;;;:::i;:::-;;:::i;72372:287::-;;;;;;:::i;:::-;;:::i;91778:199::-;;;;;;:::i;:::-;;:::i;117558:124::-;;;:::i;:::-;;;3863:6:1;3851:19;;;3833:38;;3821:2;3806:18;117558:124:0;3689:188:1;116378:117:0;;;:::i;80654:660::-;;;;;;:::i;:::-;;:::i;126270:172::-;;;:::i;77022:1818::-;;;;;;:::i;:::-;;:::i;119551:206::-;;;:::i;84667:843::-;;;;;;:::i;:::-;;:::i;82554:816::-;;;;;;:::i;:::-;;:::i;128237:176::-;;;;;;:::i;:::-;;:::i;122766:273::-;;;;;;:::i;:::-;;:::i;116937:109::-;;;:::i;88758:165::-;;;;;;:::i;:::-;;:::i;81792:221::-;;;;;;:::i;:::-;;:::i;83850:277::-;;;;;;:::i;:::-;;:::i;73320:38::-;;73353:5;73320:38;;114419:162;;;:::i;119919:112::-;;;:::i;119130:126::-;;;:::i;125475:122::-;;;;;;:::i;:::-;;:::i;90941:139::-;;;;;;:::i;:::-;;:::i;87051:171::-;;;;;;:::i;:::-;;:::i;121184:313::-;;;:::i;91445:141::-;;;;;;:::i;:::-;;:::i;71762:215::-;;;;;;:::i;:::-;;:::i;138478:1740::-;;;;;;:::i;:::-;;:::i;92335:137::-;;;;;;:::i;:::-;;:::i;111160:127::-;;;:::i;128957:200::-;;;;;;:::i;:::-;;:::i;124404:925::-;;;;;;:::i;:::-;;:::i;117854:143::-;;;:::i;120723:275::-;;;;;;:::i;:::-;;:::i;86003:121::-;86049:7;86080:32;86093:18;:16;:18::i;:::-;93257:13;;;;93133:149;86080:32;86073:39;;86003:121;:::o;125944:111::-;125983:13;126020:18;:16;:18::i;:::-;:23;;126013:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125944:111;:::o;87588:171::-;87652:7;87683:64;87700:18;:16;:18::i;:::-;87720:6;87728:18;87683:16;:64::i;:::-;87676:71;87588:171;-1:-1:-1;;87588:171:0:o;118842:135::-;118896:7;118927:18;:16;:18::i;:::-;:38;;;;;;118842:135;-1:-1:-1;118842:135:0:o;130612:184::-;130680:4;130701:57;130710:18;:16;:18::i;:::-;130730:10;130742:7;130751:6;130701:8;:57::i;:::-;-1:-1:-1;130780:4:0;130612:184;;;;:::o;89397:169::-;89461:7;89492:62;89509:18;:16;:18::i;:::-;89529:6;89537:16;89492;:62::i;116652:131::-;116704:7;116735:18;:16;:18::i;:::-;:36;;;-1:-1:-1;;;;;116735:36:0;;116652:131;-1:-1:-1;116652:131:0:o;86582:121::-;86628:7;86659:32;86672:18;:16;:18::i;:::-;86659:12;:32::i;131895:338::-;132027:4;132048:22;132073:18;:16;:18::i;:::-;132048:43;;132106:44;132122:1;132125:4;132131:10;132143:6;132106:15;:44::i;:::-;132165:30;132175:1;132178:4;132184:2;132188:6;132165:9;:30::i;:::-;132217:4;132210:11;;;131895:338;;;;;;:::o;103121:7863::-;103234:14;103250:12;70422:22;70447:18;:16;:18::i;:::-;70567:9;;;;70422:43;;-1:-1:-1;;;;;;70567:9:0;;;:20;:9;:20;70559:64;;;;-1:-1:-1;;;70559:64:0;;;;;;;:::i;:::-;;;;;;;;;70709:9;;;:19;;-1:-1:-1;;;;70709:19:0;-1:-1:-1;;;70709:19:0;;;69853:37:::1;69879:10;69853:25;:37::i;:::-;103353:22:::2;103378:18;:16;:18::i;:::-;103353:43;;103775:22;103822:4;-1:-1:-1::0;;;;;103800:63:0::2;;:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103775:90;;103882:22;103907:15;103920:1;93257:13:::0;;;;93133:149;103907:15:::2;103882:40;;104019:20;104042:18;104058:1;104042:15;:18::i;:::-;104266:21;::::0;::::2;::::0;104019:41;;-1:-1:-1;104133:17:0::2;::::0;;;;;104266:21:::2;;104345:31:::0;;::::2;104341:4377;;;104494:14;104477;:31;104468:40;;104700:47;104717:1;104720:6;104728:18;104700:16;:47::i;:::-;104828:16;::::0;::::2;::::0;104685:62;;-1:-1:-1;104828:16:0;;::::2;;;104815:10;104965:8:::0;;104961:1802:::2;;73462:6;105154:12;::::0;::::2;::::0;::::2;105153:24;::::0;-1:-1:-1;73462:6:0::2;105281:18;::::0;::::2;::::0;::::2;105280:30;105263:47;;105455:21;105503:29:::0;105567:7:::2;-1:-1:-1::0;;;;;105558:37:0::2;;:39;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;105428:169;;;;105622:25;105742:14;:19;;105760:1;105742:19;105738:661;;-1:-1:-1::0;73462:6:0::2;105972:31;::::0;::::2;106163:26:::0;;::::2;106162:38:::0;;::::2;::::0;-1:-1:-1;105972:31:0;::::2;105971:76;106325:50;106331:1:::0;106334:21;105971:76;106325:5:::2;:50::i;:::-;106603:25;::::0;::::2;::::0;106535:185:::2;::::0;106603:25;;-1:-1:-1;;;106603:25:0;::::2;-1:-1:-1::0;;;;;106603:25:0::2;106659:34:::0;;::::2;106535:5;:185::i;:::-;104975:1788;;;104961:1802;106839:25:::0;;106835:825:::2;;106987:14;106971:30;;;;107132:12;107117;:27;107113:528;;;107262:52;107268:1;107279:4;107301:12;107286;:27;107262:5;:52::i;:::-;107113:528;;;107390:12;107375;:27;107371:270;;;107538:52;107544:1;107555:4;107577:12;107562;:27;107538:5;:52::i;:::-;104378:3297;;104341:4377;;;107800:14;107783;:31;107776:38;;107923:4;107931:1;107923:9;107919:605;;108285:4;108266:25;::::0;;;:10:::2;::::0;::::2;:25;::::0;;;;;108172:332:::2;::::0;108469:12;;108421:45:::2;::::0;108266:1;;108441:4;;108421:16:::2;:45::i;:::-;:60;;;;:::i;:::-;108172:8;:332::i;:::-;108157:347;;107919:605;108604:17:::0;;108600:103:::2;;108646:37;108652:1;108663:4;108670:12;108646:5;:37::i;:::-;108847:4;108800:25;108828::::0;;;:10:::2;::::0;::::2;:25;::::0;;;;;108872:22;;108868:1713:::2;;108993:22;::::0;::::2;::::0;108915:28:::2;::::0;-1:-1:-1;;;;;108993:22:0::2;109138:15;109114:39:::0;::::2;109110:472;;;109526:12;109506:17;:32;109457:15;109433:21;-1:-1:-1::0;;;;;109433:39:0::2;;109432:107;109380:159;;109110:472;109775:30;109913:17:::0;109853:56:::2;109889:20:::0;109853:12;:56:::2;:::i;:::-;109809:100;::::0;:20;:100:::2;:::i;:::-;109808:122;;;;:::i;:::-;109775:155:::0;-1:-1:-1;109775:155:0;110062:36:::2;73590:17;110062::::0;:36:::2;:::i;:::-;110061:84;;;;:::i;:::-;110016:21;::::0;::::2;:129:::0;110304:40:::2;110322:22:::0;110304:15:::2;:40;:::i;:::-;110250:22;::::0;::::2;:113:::0;;-1:-1:-1;;;;;;110250:113:0::2;-1:-1:-1::0;;;;;110250:113:0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;108868:1713:0::2;::::0;-1:-1:-1;;108868:1713:0::2;;110539:22;::::0;::::2;:26:::0;;-1:-1:-1;;;;;;110539:26:0::2;::::0;;108868:1713:::2;110648:13;::::0;::::2;:30:::0;;;110693:12:::2;::::0;::::2;:38:::0;;-1:-1:-1;;;;;;110693:38:0::2;110715:15;-1:-1:-1::0;;;;;110693:38:0::2;;::::0;;110790:182:::2;110817:6:::0;110842:4;110865:12;110913:24:::2;110865:12:::0;110913:9;:24:::2;:::i;:::-;110790:182;::::0;;11276:25:1;;;11332:2;11317:18;;11310:34;;;;11360:18;;;11353:34;11418:2;11403:18;;11396:34;11263:3;11248:19;110790:182:0::2;;;;;;;-1:-1:-1::0;;;70822:9:0;;;;:23;;-1:-1:-1;;;;70822:23:0;-1:-1:-1;;;70822:23:0;;;-1:-1:-1;103121:7863:0;;;;-1:-1:-1;;;;;103121:7863:0:o;118168:146::-;118223:7;118262:18;:16;:18::i;:::-;:39;;;-1:-1:-1;;;;;118262:39:0;;118168:146;-1:-1:-1;118168:146:0:o;126635:111::-;126678:5;126707:18;:16;:18::i;:::-;:27;-1:-1:-1;;;126707:27:0;;;;;;-1:-1:-1;126635:111:0:o;122168:237::-;69609:29;69627:10;69609:17;:29::i;:::-;122319:15:::1;122283:18;:16;:18::i;:::-;:33;;:51:::0;;-1:-1:-1;;;;;;122283:51:0::1;-1:-1:-1::0;;;;;122283:51:0;;::::1;;::::0;;122356:37:::1;::::0;;;::::1;::::0;::::1;::::0;-1:-1:-1;;122356:37:0::1;122168:237:::0;:::o;140485:558::-;140896:11;;;;;;;;;;;-1:-1:-1;;;140896:11:0;;;;;140614:398;;140651:151;140614:398;;;11700:25:1;140829:24:0;11741:18:1;;;11734:34;140880:29:0;11784:18:1;;;11777:34;140936:13:0;11827:18:1;;;11820:34;140984:4:0;11870:19:1;;;;11863:61;;;;140614:398:0;;;;;;;;;;11672:19:1;;;;140614:398:0;;;140582:449;;;;;;140485:558::o;115838:116::-;115878:7;115917:18;:16;:18::i;:::-;:24;-1:-1:-1;;;;;115917:24:0;;115838:116;-1:-1:-1;115838:116:0:o;90511:145::-;90572:7;90603:41;90615:18;:16;:18::i;:::-;90635:8;90603:11;:41::i;113334:263::-;70422:22;70447:18;:16;:18::i;:::-;70567:9;;;;70422:43;;-1:-1:-1;;;;;;70567:9:0;;;:20;:9;:20;70559:64;;;;-1:-1:-1;;;70559:64:0;;;;;;;:::i;:::-;70709:9;;;:19;;-1:-1:-1;;;;70709:19:0;-1:-1:-1;;;70709:19:0;;;69853:37:::1;69879:10;69853:25;:37::i;:::-;113487:4:::2;113465:37;113521:18;:16;:18::i;:::-;:24:::0;:49:::2;::::0;-1:-1:-1;;;113521:49:0;;113564:4:::2;113521:49;::::0;::::2;1970:51:1::0;-1:-1:-1;;;;;113521:24:0;;::::2;::::0;:34:::2;::::0;1943:18:1;;113521:49:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;113465:120;;;;;;;;;;;;;160:25:1::0;;148:2;133:18;;14:177;113465:120:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;70822:9:0;;;;:23;;-1:-1:-1;;;;70822:23:0;-1:-1:-1;;;70822:23:0;;;-1:-1:-1;113334:263:0:o;71228:147::-;71318:18;:16;:18::i;:::-;:29;;;-1:-1:-1;;;;;71307:40:0;;;-1:-1:-1;;;71318:29:0;;;;71307:40;71299:64;;;;-1:-1:-1;;;71299:64:0;;12137:2:1;71299:64:0;;;12119:21:1;12176:2;12156:18;;;12149:30;-1:-1:-1;;;12195:18:1;;;12188:41;12246:18;;71299:64:0;11935:335:1;71299:64:0;71228:147;:::o;92664:195::-;92779:7;92810:37;92821:18;:16;:18::i;:::-;92841:5;92810:10;:37::i;118540:135::-;118594:7;118625:18;:16;:18::i;:::-;:38;;;118618:45;;118540:135;:::o;115132:368::-;70422:22;70447:18;:16;:18::i;:::-;70567:9;;;;70422:43;;-1:-1:-1;;;;;;70567:9:0;;;:20;:9;:20;70559:64;;;;-1:-1:-1;;;70559:64:0;;;;;;;:::i;:::-;70709:9;;;:19;;-1:-1:-1;;;;70709:19:0;-1:-1:-1;;;70709:19:0;;;70125:38:::1;70152:10;70125:26;:38::i;:::-;115326:18:::2;:16;:18::i;:::-;:27;;::::0;-1:-1:-1;;;115326:27:0;::::2;;;115318:52;;;::::0;-1:-1:-1;;;115318:52:0;;12477:2:1;115318:52:0::2;::::0;::::2;12459:21:1::0;12516:2;12496:18;;;12489:30;-1:-1:-1;;;12535:18:1;;;12528:42;12587:18;;115318:52:0::2;12275:336:1::0;115318:52:0::2;115435:53;::::0;-1:-1:-1;;;115435:53:0;;::::2;::::0;::::2;160:25:1::0;;;115457:4:0::2;::::0;115435:45:::2;::::0;133:18:1;;115435:53:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;70822:9:0;;;;:23;;-1:-1:-1;;;;70822:23:0;-1:-1:-1;;;70822:23:0;;;-1:-1:-1;;115132:368:0:o;123345:452::-;69609:29;69627:10;69609:17;:29::i;:::-;-1:-1:-1;;;;;123486:38:0;::::1;123478:63;;;;-1:-1:-1::0;;;123478:63:0::1;;;;;;;:::i;:::-;123600:4;-1:-1:-1::0;;;;;123564:41:0;::::1;::::0;123556:68:::1;;;::::0;-1:-1:-1;;;123556:68:0;;13159:2:1;123556:68:0::1;::::0;::::1;13141:21:1::0;13198:2;13178:18;;;13171:30;-1:-1:-1;;;13217:18:1;;;13210:44;13271:18;;123556:68:0::1;12957:338:1::0;123556:68:0::1;123684:24;123639:18;:16;:18::i;:::-;:42;;:69:::0;;-1:-1:-1;;;;;;123639:69:0::1;-1:-1:-1::0;;;;;;;;123639:69:0;;::::1;;;::::0;;123730:55:::1;::::0;;;::::1;::::0;::::1;::::0;-1:-1:-1;;123730:55:0::1;123345:452:::0;:::o;79396:901::-;79515:14;70422:22;70447:18;:16;:18::i;:::-;70567:9;;;;70422:43;;-1:-1:-1;;;;;;70567:9:0;;;:20;:9;:20;70559:64;;;;-1:-1:-1;;;70559:64:0;;;;;;;:::i;:::-;70709:9;;;:19;;-1:-1:-1;;;;70709:19:0;-1:-1:-1;;;70709:19:0;;;-1:-1:-1;79633:18:0::1;:16;:18::i;:::-;79608:43;;-1:-1:-1::0;;79728:6:0::1;:27:::0;79724:106:::1;;79785:7:::0;;:29:::1;::::0;-1:-1:-1;;;79785:29:0;;79803:10:::1;79785:29;::::0;::::1;1970:51:1::0;-1:-1:-1;;;;;79785:7:0;;::::1;::::0;:17:::1;::::0;1943:18:1;;79785:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;79776:38;;79724:106;79948:24;79960:1;79963:8;79948:11;:24::i;:::-;79938:6;:34;;79912:126;;;::::0;-1:-1:-1;;;79912:126:0;;13502:2:1;79912:126:0::1;::::0;::::1;13484:21:1::0;13541:2;13521:18;;;13514:30;13580:32;13560:18;;;13553:60;13630:18;;79912:126:0::1;13300:354:1::0;79912:126:0::1;80131:47;80148:1;80151:6;80159:18;80131:16;:47::i;:::-;80122:56;;;80183:1;80121:63:::0;80095:136:::1;;;::::0;-1:-1:-1;;;80095:136:0;;13861:2:1;80095:136:0::1;::::0;::::1;13843:21:1::0;13900:2;13880:18;;;13873:30;-1:-1:-1;;;13919:18:1;;;13912:41;13970:18;;80095:136:0::1;13659:335:1::0;80095:136:0::1;80248:37;80257:1;80260:8;80270:6;80278;80248:8;:37::i;:::-;-1:-1:-1::0;70822:9:0;;:23;;-1:-1:-1;;;;70822:23:0;-1:-1:-1;;;70822:23:0;;;79396:901;;-1:-1:-1;;79396:901:0:o;117219:125::-;117268:7;117299:18;:16;:18::i;:::-;:33;;;-1:-1:-1;;;;;117299:33:0;;117219:125;-1:-1:-1;117219:125:0:o;127150:141::-;127209:7;127240:39;127251:18;:16;:18::i;:::-;127271:7;127240:10;:39::i;121742:165::-;69609:29;69627:10;69609:17;:29::i;:::-;121845:7:::1;121817:18;:16;:18::i;:::-;:25;;:35:::0;;-1:-1:-1;;;;;121817:35:0::1;-1:-1:-1::0;;;;;;;;121817:35:0;;::::1;;;::::0;;121874:21:::1;::::0;;;::::1;::::0;::::1;::::0;-1:-1:-1;;121874:21:0::1;121742:165:::0;:::o;137445:131::-;137500:7;137531:18;:16;:18::i;:::-;-1:-1:-1;;;;;137531:33:0;;;;;;;:25;;;;;:33;;-1:-1:-1;137531:33:0;;;;;137445:131::o;72372:287::-;72452:22;72477:18;:16;:18::i;:::-;72547:16;;;;72452:43;;-1:-1:-1;;;;;;72536:27:0;;;72547:16;;72536:27;;:54;;-1:-1:-1;72578:12:0;;;;-1:-1:-1;;;;;72567:23:0;;;-1:-1:-1;;;72578:12:0;;;;72567:23;72536:54;72510:137;;;;-1:-1:-1;;;72510:137:0;;14201:2:1;72510:137:0;;;14183:21:1;14240:2;14220:18;;;14213:30;-1:-1:-1;;;14259:18:1;;;14252:51;14320:18;;72510:137:0;13999:345:1;72510:137:0;72437:222;72372:287;:::o;91778:199::-;91895:7;91926:39;91939:18;:16;:18::i;:::-;91959:5;91926:12;:39::i;117558:124::-;117607:6;117637:18;:16;:18::i;:::-;:33;;;;;;;;;;-1:-1:-1;117558:124:0:o;116378:117::-;116423:7;116454:18;:16;:18::i;:::-;:29;;;-1:-1:-1;;;116454:29:0;;-1:-1:-1;;;;;116454:29:0;;;-1:-1:-1;116378:117:0:o;80654:660::-;80770:14;70422:22;70447:18;:16;:18::i;:::-;70567:9;;;;70422:43;;-1:-1:-1;;;;;;70567:9:0;;;:20;:9;:20;70559:64;;;;-1:-1:-1;;;70559:64:0;;;;;;;:::i;:::-;70709:9;;;:19;;-1:-1:-1;;;;70709:19:0;-1:-1:-1;;;70709:19:0;;;-1:-1:-1;80888:18:0::1;:16;:18::i;:::-;80863:43;;81004:21;81013:1;81016:8;81004;:21::i;:::-;80994:6;:31;;80986:71;;;::::0;-1:-1:-1;;;80986:71:0;;14551:2:1;80986:71:0::1;::::0;::::1;14533:21:1::0;14590:2;14570:18;;;14563:30;14629:29;14609:18;;;14602:57;14676:18;;80986:71:0::1;14349:351:1::0;80986:71:0::1;81150:45;81167:1;81170:6;81178:16;81150;:45::i;:::-;81141:54;;;81200:1;81140:61:::0;81114:134:::1;;;::::0;-1:-1:-1;;;81114:134:0;;14907:2:1;81114:134:0::1;::::0;::::1;14889:21:1::0;14946:2;14926:18;;;14919:30;-1:-1:-1;;;14965:18:1;;;14958:41;15016:18;;81114:134:0::1;14705:335:1::0;81114:134:0::1;81265:37;81274:1;81277:8;81287:6;81295;81265:8;:37::i;126270:172::-:0;126311:13;126395:18;:16;:18::i;:::-;:24;:33;;;-1:-1:-1;;;126395:33:0;;;;-1:-1:-1;;;;;126395:24:0;;;;:31;;:33;;;;;:24;;:33;;;;;;;;:24;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;126395:33:0;;;;;;;;;;;;:::i;:::-;126372:57;;;;;;;;:::i;:::-;;;;;;;;;;;;;126341:89;;126270:172;:::o;77022:1818::-;77290:22;77315:18;:16;:18::i;:::-;77415:7;;77290:43;;-1:-1:-1;;;;;;77415:7:0;77407:30;77399:54;;;;-1:-1:-1;;;77399:54:0;;16338:2:1;77399:54:0;;;16320:21:1;16377:2;16357:18;;;16350:30;-1:-1:-1;;;16396:18:1;;;16389:41;16447:18;;77399:54:0;16136:335:1;77399:54:0;77523:23;;-1:-1:-1;;;;;;77523:23:0;-1:-1:-1;;;;;77523:23:0;;;;;-1:-1:-1;77607:6:0;;:14;77616:5;77607:6;:14;:::i;:::-;;77707:6;-1:-1:-1;;;;;77701:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77688:37;;;;;;;-1:-1:-1;;;77688:37:0;-1:-1:-1;;;;77688:37:0;;;;;;77800:21;;;:31;;-1:-1:-1;;77800:31:0;77824:7;77800:31;;;-1:-1:-1;;;;;77975:38:0;;77967:63;;;;-1:-1:-1;;;77967:63:0;;;;;;;:::i;:::-;78162:4;-1:-1:-1;;;;;78126:41:0;;;78118:58;;;;-1:-1:-1;;;78118:58:0;;;;;;19134:2:1;19116:21;;;19173:1;19153:18;;;19146:29;-1:-1:-1;;;19206:2:1;19191:18;;19184:34;19250:2;19235:18;;18932:327;78118:58:0;78191:25;;;:52;;-1:-1:-1;;;;;;78308:24:0;-1:-1:-1;;;;;;;;78191:52:0;;;;;;;-1:-1:-1;;78308:24:0;;;;;;;;;;78394:12;;;:38;;-1:-1:-1;;;;;;78394:38:0;78416:15;-1:-1:-1;;;;;78394:38:0;;;;78521:25;;78513:50;;;;-1:-1:-1;;;78513:50:0;;;;;;;:::i;:::-;78578:12;;;:26;;-1:-1:-1;;;;;78578:26:0;;;-1:-1:-1;;;78578:26:0;;;-1:-1:-1;;;;;78578:26:0;;;;;;;78658:8;;;:18;;;;;;;;;;;;;;;;;;78816:11;;;;;;;;;;;-1:-1:-1;;;78816:11:0;;;;78772:56;;;;;;78801:4;;78772:56;;;;78816:11;78772:56;:::i;:::-;;;;;;;;77236:1604;77022:1818;;;;;:::o;119551:206::-;119599:7;119623:22;119648:18;:16;:18::i;:::-;119714:10;;;;-1:-1:-1;119688:57:0;;119714:10;;119708:16;;-1:-1:-1;;;119714:10:0;;;;119708:2;:16;:::i;:::-;119726:18;119688:16;:57::i;:::-;119681:64;;;119551:206;:::o;84667:843::-;84841:7;70422:22;70447:18;:16;:18::i;:::-;70567:9;;;;70422:43;;-1:-1:-1;;;;;;70567:9:0;;;:20;:9;:20;70559:64;;;;-1:-1:-1;;;70559:64:0;;;;;;;:::i;:::-;70709:9;;;:19;;-1:-1:-1;;;;70709:19:0;-1:-1:-1;;;70709:19:0;;;-1:-1:-1;84952:18:0::1;:16;:18::i;:::-;84927:43;;85021:20;85032:1;85035:5;85021:10;:20::i;:::-;85011:6;:30;;84985:121;;;::::0;-1:-1:-1;;;84985:121:0;;20849:2:1;84985:121:0::1;::::0;::::1;20831:21:1::0;20888:2;20868:18;;;20861:30;20927:31;20907:18;;;20900:59;20976:18;;84985:121:0::1;20647:353:1::0;84985:121:0::1;85121:14;85239:47;85256:1;85259:6;85267:18;85239:16;:47::i;:::-;85230:56;;;85291:1;85229:63:::0;85203:136:::1;;;::::0;-1:-1:-1;;;85203:136:0;;14907:2:1;85203:136:0::1;::::0;::::1;14889:21:1::0;14946:2;14926:18;;;14919:30;-1:-1:-1;;;14965:18:1;;;14958:41;15016:18;;85203:136:0::1;14705:335:1::0;85203:136:0::1;85444:54;85454:1;85457:8;85467:5;85474:6;85482;85490:7;85444:9;:54::i;:::-;85437:61;;;;70822:9:::0;;:23;;-1:-1:-1;;;;70822:23:0;-1:-1:-1;;;70822:23:0;;;84667:843;;-1:-1:-1;;;;84667:843:0:o;82554:816::-;82730:14;70422:22;70447:18;:16;:18::i;:::-;70567:9;;;;70422:43;;-1:-1:-1;;;;;;70567:9:0;;;:20;:9;:20;70559:64;;;;-1:-1:-1;;;70559:64:0;;;;;;;:::i;:::-;70709:9;;;:19;;-1:-1:-1;;;;70709:19:0;-1:-1:-1;;;70709:19:0;;;-1:-1:-1;82848:18:0::1;:16;:18::i;:::-;82823:43;;82917:22;82930:1;82933:5;82917:12;:22::i;:::-;82907:6;:32;;82881:125;;;::::0;-1:-1:-1;;;82881:125:0;;21207:2:1;82881:125:0::1;::::0;::::1;21189:21:1::0;21246:2;21226:18;;;21219:30;21285:33;21265:18;;;21258:61;21336:18;;82881:125:0::1;21005:355:1::0;82881:125:0::1;83110:45;83127:1;83130:6;83138:16;83110;:45::i;:::-;83101:54;;;83160:1;83100:61:::0;83074:134:::1;;;::::0;-1:-1:-1;;;83074:134:0;;13861:2:1;83074:134:0::1;::::0;::::1;13843:21:1::0;13900:2;13880:18;;;13873:30;-1:-1:-1;;;13919:18:1;;;13912:41;13970:18;;83074:134:0::1;13659:335:1::0;83074:134:0::1;83304:54;83314:1;83317:8;83327:5;83334:6;83342;83350:7;83304:9;:54::i;:::-;-1:-1:-1::0;;70822:9:0;;:23;;-1:-1:-1;;;;70822:23:0;-1:-1:-1;;;70822:23:0;;;82554:816;;-1:-1:-1;;;;82554:816:0:o;128237:176::-;128301:4;128322:53;128332:18;:16;:18::i;:::-;128352:10;128364:2;128368:6;128322:9;:53::i;122766:273::-;69609:29;69627:10;69609:17;:29::i;:::-;73353:5:::1;122864:26;::::0;::::1;;;122856:46;;;::::0;-1:-1:-1;;;122856:46:0;;21567:2:1;122856:46:0::1;::::0;::::1;21549:21:1::0;21606:1;21586:18;;;21579:29;-1:-1:-1;;;21624:18:1;;;21617:37;21671:18;;122856:46:0::1;21365:330:1::0;122856:46:0::1;122953:15;122917:18;:16;:18::i;:::-;:33;;:51:::0;;-1:-1:-1;;122917:51:0::1;::::0;::::1;::::0;;::::1;;;::::0;;122990:37:::1;::::0;3851:19:1;;;3833:38;;122990:37:0::1;::::0;3821:2:1;3806:18;122990:37:0::1;;;;;;;122766:273:::0;:::o;116937:109::-;116978:7;117009:18;:16;:18::i;:::-;:25;;;-1:-1:-1;;;117009:25:0;;-1:-1:-1;;;;;117009:25:0;;;-1:-1:-1;116937:109:0:o;88758:165::-;88818:7;88849:62;88866:18;:16;:18::i;:::-;88886:6;88894:16;88849;:62::i;81792:221::-;81927:14;81965:36;81974:6;81982:8;81992:5;81999:1;81965:8;:36::i;:::-;81958:43;81792:221;-1:-1:-1;;;;81792:221:0:o;83850:277::-;83983:7;84075:40;84082:6;84090:8;84100:5;73462:6;84075;:40::i;114419:162::-;70125:38;70152:10;70125:26;:38::i;:::-;114525:4:::1;114495:18;:16;:18::i;:::-;:27;;:34:::0;;;::::1;;-1:-1:-1::0;;;114495:34:0::1;-1:-1:-1::0;;;;114495:34:0;;::::1;::::0;;;::::1;::::0;;114551:18:::1;::::0;::::1;::::0;-1:-1:-1;;114551:18:0::1;114419:162::o:0;119919:112::-;119964:4;119992:18;:16;:18::i;:::-;:27;;;-1:-1:-1;;;119992:27:0;;;;;;-1:-1:-1;119919:112:0:o;119130:126::-;119175:7;119214:18;:16;:18::i;:::-;:29;;;-1:-1:-1;;;;;119214:29:0;;119130:126;-1:-1:-1;119130:126:0:o;125475:122::-;69609:29;69627:10;69609:17;:29::i;:::-;125580:5:::1;;125554:18;:16;:18::i;:::-;:23;;::::0;:31:::1;::::0;;:23;:31:::1;:::i;:::-;;125475:122:::0;;:::o;90941:139::-;90999:7;91030:38;91039:18;:16;:18::i;:::-;91059:8;91030;:38::i;87051:171::-;87115:7;87146:64;87163:18;:16;:18::i;:::-;87183:6;87191:18;87146:16;:64::i;121184:313::-;121236:22;121261:18;:16;:18::i;:::-;121316:19;;;;;;-1:-1:-1;;;;;;121316:19:0;121302:10;:33;121294:54;;;;-1:-1:-1;;;121294:54:0;;23113:2:1;121294:54:0;;;23095:21:1;23152:1;23132:18;;;23125:29;-1:-1:-1;;;23170:18:1;;;23163:38;23218:18;;121294:54:0;22911:331:1;121294:54:0;121363:12;;;:25;;-1:-1:-1;;;;;121363:25:0;121378:10;-1:-1:-1;;;121363:25:0;;;;;;;;;121403:19;;;:32;;-1:-1:-1;;;;;;121403:32:0;;;121457:28;;;;-1:-1:-1;;121457:28:0;121221:276;121184:313::o;91445:141::-;91504:7;91535:39;91548:18;:16;:18::i;:::-;91568:5;91535:12;:39::i;71762:215::-;71841:22;71866:18;:16;:18::i;:::-;71918:8;;;;71841:43;;-1:-1:-1;;;;;;71907:19:0;;;-1:-1:-1;;;71918:8:0;;;;71907:19;;:46;;-1:-1:-1;71941:12:0;;;;-1:-1:-1;;;;;71930:23:0;;;-1:-1:-1;;;71941:12:0;;;;71930:23;71907:46;71899:66;;;;-1:-1:-1;;;71899:66:0;;23449:2:1;71899:66:0;;;23431:21:1;23488:1;23468:18;;;23461:29;-1:-1:-1;;;23506:18:1;;;23499:37;23553:18;;71899:66:0;23247:330:1;138478:1740:0;138736:15;138724:8;:27;;138716:70;;;;-1:-1:-1;;;138716:70:0;;23784:2:1;138716:70:0;;;23766:21:1;23823:2;23803:18;;;23796:30;23862:32;23842:18;;;23835:60;23912:18;;138716:70:0;23582:354:1;138716:70:0;138972:24;138999:934;139155:18;:16;:18::i;:::-;139297:175;139511:5;139555:7;139601:5;139645:18;:16;:18::i;:::-;-1:-1:-1;;;;;139645:32:0;;;;;;;:25;;;;;:32;;;;;;;;;:34;;;;;;;;139248:513;;;;;24228:25:1;;;;24327:15;;;24307:18;;;24300:43;24379:15;;24359:18;;;24352:43;24411:18;;;24404:34;;;;24454:19;;;24447:35;;;;24498:19;;;;24491:35;;;139248:513:0;;;;;;;;;;24200:19:1;;;139248:513:0;;;139204:588;;;;;-1:-1:-1;;;139067:752:0;;;24795:27:1;24838:11;;;24831:27;;;;24874:12;;;24867:28;;;;24911:12;;139067:752:0;;;-1:-1:-1;;139067:752:0;;;;;;;;;139031:811;;139067:752;139031:811;;;;138999:934;;;;;;;;;25161:25:1;25234:4;25222:17;;25202:18;;;25195:45;25256:18;;;25249:34;;;25299:18;;;25292:34;;;25133:19;;138999:934:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;138999:934:0;;-1:-1:-1;;138999:934:0;;;-1:-1:-1;;;;;;;139984:30:0;;;;;;:59;;;140038:5;-1:-1:-1;;;;;140018:25:0;:16;-1:-1:-1;;;;;140018:25:0;;139984:59;139954:154;;;;-1:-1:-1;;;139954:154:0;;25539:2:1;139954:154:0;;;25521:21:1;25578:2;25558:18;;;25551:30;-1:-1:-1;;;25597:18:1;;;25590:51;25658:18;;139954:154:0;25337:345:1;139954:154:0;140129:62;140138:18;:16;:18::i;:::-;140158:16;140176:7;140185:5;140129:8;:62::i;:::-;138943:1264;138478:1740;;;;;;;:::o;92335:137::-;92392:7;92423:37;92434:18;:16;:18::i;:::-;92454:5;92423:10;:37::i;111160:127::-;111209:7;111240:35;111256:18;:16;:18::i;:::-;111240:15;:35::i;128957:200::-;129068:7;129099:46;129110:18;:16;:18::i;:::-;-1:-1:-1;;;;;129407:19:0;;;129376:7;129407:19;;;:12;;;;;:19;;;;;;;;:28;;;;;;;;;;;;129227:220;124404:925;69609:29;69627:10;69609:17;:29::i;:::-;73734:10:::1;124579:20;:40;;124571:61;;;::::0;-1:-1:-1;;;124571:61:0;;25889:2:1;124571:61:0::1;::::0;::::1;25871:21:1::0;25928:1;25908:18;;;25901:29;-1:-1:-1;;;25946:18:1;;;25939:38;25994:18;;124571:61:0::1;25687:331:1::0;124571:61:0::1;124647:22;124672:18;:16;:18::i;:::-;124647:43;;124777:20;124801:1;124777:25:::0;124773:407:::1;;124859:4;124823:14;124840:25:::0;;;:10:::1;::::0;::::1;:25;::::0;;;;;124888:11;;124884:146:::1;;124979:31;124985:1;124996:4;125003:6;124979:5;:31::i;:::-;-1:-1:-1::0;125118:1:0::1;125094:21;::::0;::::1;:25:::0;125138:22:::1;::::0;::::1;:26:::0;;-1:-1:-1;;;;;;125138:26:0::1;::::0;;124773:407:::1;125196:21;::::0;::::1;:52:::0;;-1:-1:-1;;125196:52:0::1;;::::0;::::1;;::::0;;125270:47:::1;::::0;160:25:1;;;125270:47:0::1;::::0;148:2:1;133:18;125270:47:0::1;;;;;;;124514:815;124404:925:::0;:::o;117854:143::-;117912:7;117943:18;:16;:18::i;:::-;:42;;;-1:-1:-1;;;117943:42:0;;-1:-1:-1;;;;;117943:42:0;;;-1:-1:-1;117854:143:0:o;120723:275::-;69609:29;69627:10;69609:17;:29::i;:::-;-1:-1:-1;;;;;120821:25:0;::::1;120813:50;;;;-1:-1:-1::0;;;120813:50:0::1;;;;;;;:::i;:::-;120917:11;120878:18;:16;:18::i;:::-;:36;;:50:::0;;-1:-1:-1;;;;;;120878:50:0::1;-1:-1:-1::0;;;;;120878:50:0;;::::1;;::::0;;120950:36:::1;::::0;;;::::1;::::0;::::1;::::0;-1:-1:-1;;120950:36:0::1;120723:275:::0;:::o;75495:358::-;75546:22;;74534:53;74586:1;74542:40;74534:53;:::i;94303:454::-;94467:7;94558:14;94575:15;94588:1;94575:12;:15::i;:::-;94558:32;-1:-1:-1;94631:11:0;;:114;;94696:49;94710:15;94723:1;93257:13;;;;93133:149;94710:15;94696:6;;94727;94735:9;94696:13;:49::i;:::-;94631:114;;;94666:6;94631:114;94607:138;94303:454;-1:-1:-1;;;;;94303:454:0:o;135391:446::-;-1:-1:-1;;;;;135576:19:0;;135568:68;;;;-1:-1:-1;;;135568:68:0;;26225:2:1;135568:68:0;;;26207:21:1;26264:2;26244:18;;;26237:30;26303:34;26283:18;;;26276:62;-1:-1:-1;;;26354:18:1;;;26347:34;26398:19;;135568:68:0;26023:400:1;135568:68:0;-1:-1:-1;;;;;135659:21:0;;135651:68;;;;-1:-1:-1;;;135651:68:0;;26630:2:1;135651:68:0;;;26612:21:1;26669:2;26649:18;;;26642:30;26708:34;26688:18;;;26681:62;-1:-1:-1;;;26759:18:1;;;26752:32;26801:19;;135651:68:0;26428:398:1;135651:68:0;-1:-1:-1;;;;;135736:19:0;;;;;;;:12;;;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;135793:32;;160:25:1;;;135793:32:0;;133:18:1;135793:32:0;;;;;;;;135391:446;;;;:::o;93600:627::-;93764:7;93849:20;93872:15;93885:1;93872:12;:15::i;:::-;93849:38;;93947:12;93963:1;93947:17;93943:36;;93973:6;93966:13;;;;;93943:36;93996:20;94019:15;94032:1;93257:13;;;;93133:149;94019:15;93996:38;;94112:12;94128:1;94112:17;94108:31;;94138:1;94131:8;;;;;;94108:31;94163:52;:6;94177:12;94191;94205:9;94163:13;:52::i;:::-;94156:59;93600:627;-1:-1:-1;;;;;;93600:627:0:o;93354:170::-;93447:7;93494:18;93510:1;93494:15;:18::i;:::-;93478:1;:13;;;:34;;;;:::i;136157:598::-;-1:-1:-1;;;;;129407:19:0;;;136341:24;129407:19;;;:12;;;:19;;;;;;;;:28;;;;;;;;;;-1:-1:-1;;136416:37:0;;136412:332;;136524:6;136504:16;:26;;136474:129;;;;-1:-1:-1;;;136474:129:0;;27033:2:1;136474:129:0;;;27015:21:1;27072:2;27052:18;;;27045:30;27111:31;27091:18;;;27084:59;27160:18;;136474:129:0;26831:353:1;136474:129:0;136655:54;136664:1;136667:5;136674:7;136702:6;136683:16;:25;136655:8;:54::i;:::-;136326:429;136157:598;;;;:::o;132812:578::-;-1:-1:-1;;;;;132992:18:0;;132984:68;;;;-1:-1:-1;;;132984:68:0;;27391:2:1;132984:68:0;;;27373:21:1;27430:2;27410:18;;;27403:30;27469:34;27449:18;;;27442:62;-1:-1:-1;;;27520:18:1;;;27513:35;27565:19;;132984:68:0;27189:401:1;132984:68:0;-1:-1:-1;;;;;133075:16:0;;133067:64;;;;-1:-1:-1;;;133067:64:0;;27797:2:1;133067:64:0;;;27779:21:1;27836:2;27816:18;;;27809:30;27875:34;27855:18;;;27848:62;-1:-1:-1;;;27926:18:1;;;27919:33;27969:19;;133067:64:0;27595:399:1;133067:64:0;133168:4;-1:-1:-1;;;;;133154:19:0;;;133146:58;;;;-1:-1:-1;;;133146:58:0;;28201:2:1;133146:58:0;;;28183:21:1;28240:2;28220:18;;;28213:30;28279:28;28259:18;;;28252:56;28325:18;;133146:58:0;27999:350:1;133146:58:0;-1:-1:-1;;;;;133221:16:0;;;;;;:10;;;:16;;;;;:26;;133241:6;;133221:16;:26;;133241:6;;133221:26;:::i;:::-;;;;-1:-1:-1;;;;;;;133291:14:0;;;;;;;:10;;;:14;;;;;;;:24;;;;;;133352:26;133291:14;;133352:26;;;;;;;133309:6;160:25:1;;148:2;133:18;;14:177;111654:638:0;111814:22;;;;111750:16;;-1:-1:-1;;;;;111814:22:0;111879:15;111855:39;;111851:430;;;112028:12;;;;111985:21;;;;73590:17;;-1:-1:-1;;;;;112028:12:0;112010:15;:30;111985:56;111984:102;111948:138;;111851:430;;;-1:-1:-1;;;;;112131:26:0;;;112127:154;;112259:4;112240:25;;;;:10;;;:25;;;;;;;-1:-1:-1;112127:154:0;111768:524;111654:638;;;:::o;133720:408::-;-1:-1:-1;;;;;133874:21:0;;133866:65;;;;-1:-1:-1;;;133866:65:0;;28556:2:1;133866:65:0;;;28538:21:1;28595:2;28575:18;;;28568:30;28634:33;28614:18;;;28607:61;28685:18;;133866:65:0;28354:355:1;133866:65:0;133965:6;133948:1;:13;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;134015:19:0;;;;;;:10;;;:19;;;;;;;;:29;;;;;;134079:37;160:25:1;;;134079:37:0;;133:18:1;134079:37:0;;;;;;;;133720:408;;;:::o;134499:410::-;-1:-1:-1;;;;;134653:21:0;;134645:67;;;;-1:-1:-1;;;134645:67:0;;28916:2:1;134645:67:0;;;28898:21:1;28955:2;28935:18;;;28928:30;28994:34;28974:18;;;28967:62;-1:-1:-1;;;29045:18:1;;;29038:31;29086:19;;134645:67:0;28714:397:1;134645:67:0;-1:-1:-1;;;;;134729:19:0;;;;;;:10;;;:19;;;;;:29;;134752:6;;134729:19;:29;;134752:6;;134729:29;:::i;:::-;;;;-1:-1:-1;;134802:13:0;;;:23;;;;;;;134860:37;;160:25:1;;;-1:-1:-1;;;;;;;134860:37:0;;;;;148:2:1;133:18;134860:37:0;14:177:1;19501:114:0;19559:7;19594:1;19590;:5;:13;;19602:1;19590:13;;;-1:-1:-1;19598:1:0;;19501:114;-1:-1:-1;19501:114:0:o;94828:361::-;95044:10;;;;94951:7;;-1:-1:-1;;;95044:10:0;;;;;:39;;-1:-1:-1;;;;;;95058:25:0;;95078:4;95058:25;95044:39;95040:53;;;-1:-1:-1;95092:1:0;95085:8;;95040:53;95117:60;;-1:-1:-1;;;95117:60:0;;-1:-1:-1;;;;;1988:32:1;;95117:60:0;;;1970:51:1;95139:4:0;;95117:50;;1943:18:1;;95117:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;96818:777::-;97049:58;;-1:-1:-1;;;97049:58:0;;-1:-1:-1;;;;;1988:32:1;;97049:58:0;;;1970:51:1;96937:18:0;;97071:4;;97049:51;;1943:18:1;;97049:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;97036:71;;-1:-1:-1;;97225:10:0;:31;97221:363;;97290:20;97301:1;97304:5;97290:10;:20::i;:::-;97277:33;;97221:363;;;97364:204;97455:51;97472:1;97475:10;97487:18;97455:16;:51::i;:::-;97529:20;97540:1;97543:5;97529:10;:20::i;98205:829::-;98460:7;;-1:-1:-1;;;;;98460:7:0;98558:58;98460:7;98582:10;98602:4;98609:6;98558:23;:58::i;:::-;98761:31;;-1:-1:-1;;;98761:31:0;;98724:4;98761:31;;;1970:51:1;;;98724:4:0;98702:40;;-1:-1:-1;;;;;98761:16:0;;;;;1943:18:1;;98761:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;98702:105;;;;;;;;;;;;;160:25:1;;148:2;133:18;;14:177;98702:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98878:6;98861:1;:13;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;98929:26:0;;-1:-1:-1;98935:1:0;98938:8;98948:6;98929:5;:26::i;:::-;98977:45;;;2667:25:1;;;2723:2;2708:18;;2701:34;;;-1:-1:-1;;;;;98977:45:0;;;98985:10;;98977:45;;2640:18:1;98977:45:0;;;;;;;98369:665;98205:829;;;;:::o;127361:309::-;127482:7;127529:4;-1:-1:-1;;;;;127510:24:0;;;127506:112;;127584:18;127600:1;127584:15;:18::i;:::-;-1:-1:-1;;;;;127562:19:0;;;;;;:10;;;:19;;;;;;:40;;;;:::i;127506:112::-;-1:-1:-1;;;;;;127639:19:0;;;;;:10;;;;;:19;;;;;;;127361:309::o;95841:907::-;96078:90;;-1:-1:-1;;;96078:90:0;;-1:-1:-1;;;;;1988:32:1;;96078:90:0;;;1970:51:1;95962:20:0;;96100:4;;96078:51;;1943:18:1;;96078:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;96063:105;;-1:-1:-1;;96236:12:0;:33;96232:505;;96376:143;96415:1;96439:20;96450:1;96453:5;96439:10;:20::i;96232:505::-;96575:146;96606:61;96623:1;96626:20;96637:1;96640:5;96626:10;:20::i;96606:61::-;96690:12;96575:8;:146::i;95257:512::-;95476:10;;;;95377:16;;-1:-1:-1;;;95476:10:0;;;;;:39;;-1:-1:-1;;;;;;95490:25:0;;95510:4;95490:25;95476:39;95472:53;;;-1:-1:-1;95524:1:0;95517:8;;95472:53;95553:60;;-1:-1:-1;;;95553:60:0;;-1:-1:-1;;;;;1988:32:1;;95553:60:0;;;1970:51:1;95575:4:0;;95553:50;;1943:18:1;;95553:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;95542:71;;-1:-1:-1;;95632:8:0;:29;95628:130;;95693:49;95710:1;95713:8;95723:18;95693:16;:49::i;99404:2316::-;99636:7;-1:-1:-1;;;;;99668:22:0;;99660:47;;;;-1:-1:-1;;;99660:47:0;;;;;;;:::i;:::-;73462:6;99730:7;:18;;99722:46;;;;-1:-1:-1;;;99722:46:0;;29318:2:1;99722:46:0;;;29300:21:1;29357:2;29337:18;;;29330:30;-1:-1:-1;;;29376:18:1;;;29369:45;29431:18;;99722:46:0;29116:339:1;99722:46:0;99836:10;-1:-1:-1;;;;;99836:19:0;;;99832:105;;99876:45;99892:1;99895:5;99902:10;99914:6;99876:15;:45::i;:::-;100032:7;;100071:31;;-1:-1:-1;;;100071:31:0;;100096:4;100071:31;;;1970:51:1;-1:-1:-1;;;;;100032:7:0;;;;100017:12;;100032:7;;100071:16;;1943:18:1;;100071:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;100056:46;;100117:12;100207:6;100200:4;:13;100196:1079;;;100323:53;;-1:-1:-1;;;100323:53:0;;100362:13;;;100323:53;;;160:25:1;100345:4:0;;100323:38;;133:18:1;;100323:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;100517:31:0;;-1:-1:-1;;;100517:31:0;;100542:4;100517:31;;;1970:51:1;-1:-1:-1;;;;;100517:16:0;;;-1:-1:-1;100517:16:0;;-1:-1:-1;1943:18:1;;100517:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;100510:38;;100649:6;100642:4;:13;100638:622;;;-1:-1:-1;100724:13:0;;;73462:6;100856:17;;100852:295;;;73462:6;101023:16;101032:7;101023:6;:16;:::i;:::-;101022:28;;;;:::i;:::-;101014:4;:36;;100976:147;;;;-1:-1:-1;;;100976:147:0;;29662:2:1;100976:147:0;;;29644:21:1;29701:2;29681:18;;;29674:30;-1:-1:-1;;;29720:18:1;;;29713:43;29773:18;;100976:147:0;29460:337:1;100976:147:0;101236:4;101227:13;;100638:622;101366:13;101375:4;101366:6;:13;:::i;:::-;101348:1;:13;;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;101397:23:0;;-1:-1:-1;101403:1:0;101406:5;101413:6;101397:5;:23::i;:::-;101504:37;-1:-1:-1;;;;;101504:19:0;;101524:8;101534:6;101504:19;:37::i;:::-;101563:53;;;2667:25:1;;;2723:2;2708:18;;2701:34;;;-1:-1:-1;;;;;101563:53:0;;;;;;;;101572:10;;101563:53;;2640:18:1;101563:53:0;;;;;;;-1:-1:-1;101702:6:0;;99404:2316;-1:-1:-1;;;;;;;;99404:2316:0:o;25408:329::-;25509:7;25533:14;25550:25;25557:1;25560;25563:11;25550:6;:25::i;:::-;25533:42;-1:-1:-1;25606:11:0;25594:8;:23;;;;;;;;:::i;:::-;;:56;;;;;25649:1;25634:11;25621:25;;;;;:::i;:::-;25631:1;25628;25621:25;:29;25594:56;25590:108;;;25671:11;25681:1;25671:11;;:::i;50637:213::-;50769:68;;-1:-1:-1;;;;;30192:15:1;;;50769:68:0;;;30174:34:1;30244:15;;30224:18;;;30217:43;30276:18;;;30269:34;;;50742:96:0;;50762:5;;-1:-1:-1;;;50792:27:0;30109:18:1;;50769:68:0;;;;-1:-1:-1;;50769:68:0;;;;;;;;;;;;;;-1:-1:-1;;;;;50769:68:0;-1:-1:-1;;;;;;50769:68:0;;;;;;;;;;50742:19;:96::i;:::-;50637:213;;;;:::o;50190:185::-;50304:58;;-1:-1:-1;;;;;30506:32:1;;50304:58:0;;;30488:51:1;30555:18;;;30548:34;;;50277:86:0;;50297:5;;-1:-1:-1;;;50327:23:0;30461:18:1;;50304:58:0;30314:274:1;20701:4556:0;20783:14;;;-1:-1:-1;;21360:1:0;21357;21350:20;21408:1;21405;21401:9;21392:18;;21468:5;21464:2;21461:13;21453:5;21449:2;21445:14;21441:34;21432:43;;;21586:5;21595:1;21586:10;21582:393;;21944:11;21936:5;:19;;;;;:::i;:::-;;21929:26;;;;;;21582:393;22110:5;22096:11;:19;22088:53;;;;-1:-1:-1;;;22088:53:0;;30795:2:1;22088:53:0;;;30777:21:1;30834:2;30814:18;;;30807:30;-1:-1:-1;;;30853:18:1;;;30846:51;30914:18;;22088:53:0;30593:345:1;22088:53:0;22424:17;22574:11;22571:1;22568;22561:25;24069:1;23165;23150:12;;:16;;23135:32;;23285:22;;;;24050:1;:15;;24049:21;;24318;;;24314:25;;24303:36;24392:21;;;24388:25;;24377:36;24467:21;;;24463:25;;24452:36;24542:21;;;24538:25;;24527:36;24617:21;;;24613:25;;24602:36;24693:21;;;24689:25;;;24678:36;;;23120:12;23552;;;23548:23;;;23544:31;;;22699:20;;;22688:32;;;23680:12;;;;22751:21;;23394:16;;;;23671:21;;;;25183:15;;;-1:-1:-1;;;;20701:4556:0:o;54841:673::-;55281:23;55307:69;55335:4;55307:69;;;;;;;;;;;;;;;;;55315:5;-1:-1:-1;;;;;55307:27:0;;;:69;;;;;:::i;:::-;55281:95;;55399:10;:17;55420:1;55399:22;:56;;;;55436:10;55425:30;;;;;;;;;;;;:::i;:::-;55391:111;;;;-1:-1:-1;;;55391:111:0;;31427:2:1;55391:111:0;;;31409:21:1;31466:2;31446:18;;;31439:30;31505:34;31485:18;;;31478:62;-1:-1:-1;;;31556:18:1;;;31549:40;31606:19;;55391:111:0;31225:406:1;11828:253:0;11981:12;12017:52;12039:6;12047:4;12053:1;12056:12;11981;13323;13337:23;13364:6;-1:-1:-1;;;;;13364:11:0;13383:5;13390:4;13364:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13322:73;;;;13417:69;13444:6;13452:7;13461:10;13473:12;13417:26;:69::i;:::-;13410:76;13007:491;-1:-1:-1;;;;;;;13007:491:0:o;15803:708::-;16008:12;16041:7;16037:463;;;16073:10;:17;16094:1;16073:22;16069:306;;-1:-1:-1;;;;;9205:19:0;;;16295:60;;;;-1:-1:-1;;;16295:60:0;;32537:2:1;16295:60:0;;;32519:21:1;32576:2;32556:18;;;32549:30;32615:31;32595:18;;;32588:59;32664:18;;16295:60:0;32335:353:1;16295:60:0;-1:-1:-1;16400:10:0;16393:17;;16037:463;16451:33;16459:10;16471:12;17289:17;;:21;17285:424;;17537:10;17531:17;17598:15;17585:10;17581:2;17577:19;17570:44;17285:424;17680:12;17673:20;;-1:-1:-1;;;17673:20:0;;;;;;;;:::i;196:250:1:-;281:1;291:113;305:6;302:1;299:13;291:113;;;381:11;;;375:18;362:11;;;355:39;327:2;320:10;291:113;;;-1:-1:-1;;438:1:1;420:16;;413:27;196:250::o;451:396::-;600:2;589:9;582:21;563:4;632:6;626:13;675:6;670:2;659:9;655:18;648:34;691:79;763:6;758:2;747:9;743:18;738:2;730:6;726:15;691:79;:::i;:::-;831:2;810:15;-1:-1:-1;;806:29:1;791:45;;;;838:2;787:54;;451:396;-1:-1:-1;;451:396:1:o;852:180::-;911:6;964:2;952:9;943:7;939:23;935:32;932:52;;;980:1;977;970:12;932:52;-1:-1:-1;1003:23:1;;852:180;-1:-1:-1;852:180:1:o;1037:131::-;-1:-1:-1;;;;;1112:31:1;;1102:42;;1092:70;;1158:1;1155;1148:12;1173:134;1241:20;;1270:31;1241:20;1270:31;:::i;:::-;1173:134;;;:::o;1312:315::-;1380:6;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;1617:2;1602:18;;;;1589:32;;-1:-1:-1;;;1312:315:1:o;2032:456::-;2109:6;2117;2125;2178:2;2166:9;2157:7;2153:23;2149:32;2146:52;;;2194:1;2191;2184:12;2146:52;2233:9;2220:23;2252:31;2277:5;2252:31;:::i;:::-;2302:5;-1:-1:-1;2359:2:1;2344:18;;2331:32;2372:33;2331:32;2372:33;:::i;:::-;2032:456;;2424:7;;-1:-1:-1;;;2478:2:1;2463:18;;;;2450:32;;2032:456::o;2935:247::-;2994:6;3047:2;3035:9;3026:7;3022:23;3018:32;3015:52;;;3063:1;3060;3053:12;3015:52;3102:9;3089:23;3121:31;3146:5;3121:31;:::i;3369:315::-;3437:6;3445;3498:2;3486:9;3477:7;3473:23;3469:32;3466:52;;;3514:1;3511;3504:12;3466:52;3550:9;3537:23;3527:33;;3610:2;3599:9;3595:18;3582:32;3623:31;3648:5;3623:31;:::i;:::-;3673:5;3663:15;;;3369:315;;;;;:::o;3882:127::-;3943:10;3938:3;3934:20;3931:1;3924:31;3974:4;3971:1;3964:15;3998:4;3995:1;3988:15;4014:275;4085:2;4079:9;4150:2;4131:13;;-1:-1:-1;;4127:27:1;4115:40;;4185:18;4170:34;;4206:22;;;4167:62;4164:88;;;4232:18;;:::i;:::-;4268:2;4261:22;4014:275;;-1:-1:-1;4014:275:1:o;4294:187::-;4343:4;4376:18;4368:6;4365:30;4362:56;;;4398:18;;:::i;:::-;-1:-1:-1;4464:2:1;4443:15;-1:-1:-1;;4439:29:1;4470:4;4435:40;;4294:187::o;4486:1032::-;4591:6;4599;4607;4615;4623;4676:3;4664:9;4655:7;4651:23;4647:33;4644:53;;;4693:1;4690;4683:12;4644:53;4732:9;4719:23;4751:31;4776:5;4751:31;:::i;:::-;4801:5;-1:-1:-1;4857:2:1;4842:18;;4829:32;4884:18;4873:30;;4870:50;;;4916:1;4913;4906:12;4870:50;4939:22;;4992:4;4984:13;;4980:27;-1:-1:-1;4970:55:1;;5021:1;5018;5011:12;4970:55;5057:2;5044:16;5082:49;5098:32;5127:2;5098:32;:::i;:::-;5082:49;:::i;:::-;5154:2;5147:5;5140:17;5194:7;5189:2;5184;5180;5176:11;5172:20;5169:33;5166:53;;;5215:1;5212;5205:12;5166:53;5270:2;5265;5261;5257:11;5252:2;5245:5;5241:14;5228:45;5314:1;5309:2;5304;5297:5;5293:14;5289:23;5282:34;5335:5;5325:15;;;;;5359:38;5393:2;5382:9;5378:18;5359:38;:::i;:::-;5349:48;;5416:38;5450:2;5439:9;5435:18;5416:38;:::i;:::-;5406:48;;5473:39;5507:3;5496:9;5492:19;5473:39;:::i;:::-;5463:49;;4486:1032;;;;;;;;:::o;5523:525::-;5609:6;5617;5625;5633;5686:3;5674:9;5665:7;5661:23;5657:33;5654:53;;;5703:1;5700;5693:12;5654:53;5739:9;5726:23;5716:33;;5799:2;5788:9;5784:18;5771:32;5812:31;5837:5;5812:31;:::i;:::-;5862:5;-1:-1:-1;5919:2:1;5904:18;;5891:32;5932:33;5891:32;5932:33;:::i;:::-;5523:525;;;;-1:-1:-1;5984:7:1;;6038:2;6023:18;6010:32;;-1:-1:-1;;5523:525:1:o;6053:117::-;6138:6;6131:5;6127:18;6120:5;6117:29;6107:57;;6160:1;6157;6150:12;6175:245;6233:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:52;;;6302:1;6299;6292:12;6254:52;6341:9;6328:23;6360:30;6384:5;6360:30;:::i;6425:456::-;6502:6;6510;6518;6571:2;6559:9;6550:7;6546:23;6542:32;6539:52;;;6587:1;6584;6577:12;6539:52;6623:9;6610:23;6600:33;;6683:2;6672:9;6668:18;6655:32;6696:31;6721:5;6696:31;:::i;:::-;6746:5;-1:-1:-1;6803:2:1;6788:18;;6775:32;6816:33;6775:32;6816:33;:::i;:::-;6868:7;6858:17;;;6425:456;;;;;:::o;6886:592::-;6957:6;6965;7018:2;7006:9;6997:7;6993:23;6989:32;6986:52;;;7034:1;7031;7024:12;6986:52;7074:9;7061:23;7103:18;7144:2;7136:6;7133:14;7130:34;;;7160:1;7157;7150:12;7130:34;7198:6;7187:9;7183:22;7173:32;;7243:7;7236:4;7232:2;7228:13;7224:27;7214:55;;7265:1;7262;7255:12;7214:55;7305:2;7292:16;7331:2;7323:6;7320:14;7317:34;;;7347:1;7344;7337:12;7317:34;7392:7;7387:2;7378:6;7374:2;7370:15;7366:24;7363:37;7360:57;;;7413:1;7410;7403:12;7360:57;7444:2;7436:11;;;;;7466:6;;-1:-1:-1;6886:592:1;;-1:-1:-1;;;;6886:592:1:o;7483:114::-;7567:4;7560:5;7556:16;7549:5;7546:27;7536:55;;7587:1;7584;7577:12;7602:801;7713:6;7721;7729;7737;7745;7753;7761;7814:3;7802:9;7793:7;7789:23;7785:33;7782:53;;;7831:1;7828;7821:12;7782:53;7870:9;7857:23;7889:31;7914:5;7889:31;:::i;:::-;7939:5;-1:-1:-1;7996:2:1;7981:18;;7968:32;8009:33;7968:32;8009:33;:::i;:::-;8061:7;-1:-1:-1;8115:2:1;8100:18;;8087:32;;-1:-1:-1;8166:2:1;8151:18;;8138:32;;-1:-1:-1;8222:3:1;8207:19;;8194:33;8236:31;8194:33;8236:31;:::i;:::-;7602:801;;;;-1:-1:-1;7602:801:1;;;;8286:7;8340:3;8325:19;;8312:33;;-1:-1:-1;8392:3:1;8377:19;;;8364:33;;7602:801;-1:-1:-1;;7602:801:1:o;8408:388::-;8476:6;8484;8537:2;8525:9;8516:7;8512:23;8508:32;8505:52;;;8553:1;8550;8543:12;8505:52;8592:9;8579:23;8611:31;8636:5;8611:31;:::i;:::-;8661:5;-1:-1:-1;8718:2:1;8703:18;;8690:32;8731:33;8690:32;8731:33;:::i;8801:380::-;8880:1;8876:12;;;;8923;;;8944:61;;8998:4;8990:6;8986:17;8976:27;;8944:61;9051:2;9043:6;9040:14;9020:18;9017:38;9014:161;;9097:10;9092:3;9088:20;9085:1;9078:31;9132:4;9129:1;9122:15;9160:4;9157:1;9150:15;9186:355;9388:2;9370:21;;;9427:2;9407:18;;;9400:30;9466:33;9461:2;9446:18;;9439:61;9532:2;9517:18;;9186:355::o;9546:184::-;9616:6;9669:2;9657:9;9648:7;9644:23;9640:32;9637:52;;;9685:1;9682;9675:12;9637:52;-1:-1:-1;9708:16:1;;9546:184;-1:-1:-1;9546:184:1:o;9735:127::-;9796:10;9791:3;9787:20;9784:1;9777:31;9827:4;9824:1;9817:15;9851:4;9848:1;9841:15;9867:383;9945:6;9953;10006:2;9994:9;9985:7;9981:23;9977:32;9974:52;;;10022:1;10019;10012:12;9974:52;10054:9;10048:16;10073:30;10097:5;10073:30;:::i;:::-;10172:2;10157:18;;10151:25;10122:5;;-1:-1:-1;10185:33:1;10151:25;10185:33;:::i;10255:127::-;10316:10;10311:3;10307:20;10304:1;10297:31;10347:4;10344:1;10337:15;10371:4;10368:1;10361:15;10387:125;10452:9;;;10473:10;;;10470:36;;;10486:18;;:::i;10517:168::-;10590:9;;;10621;;10638:15;;;10632:22;;10618:37;10608:71;;10659:18;;:::i;10690:217::-;10730:1;10756;10746:132;;10800:10;10795:3;10791:20;10788:1;10781:31;10835:4;10832:1;10825:15;10863:4;10860:1;10853:15;10746:132;-1:-1:-1;10892:9:1;;10690:217::o;10912:128::-;10979:9;;;11000:11;;;10997:37;;;11014:18;;:::i;12616:336::-;12818:2;12800:21;;;12857:2;12837:18;;;12830:30;-1:-1:-1;;;12891:2:1;12876:18;;12869:42;12943:2;12928:18;;12616:336::o;15045:649::-;15125:6;15178:2;15166:9;15157:7;15153:23;15149:32;15146:52;;;15194:1;15191;15184:12;15146:52;15227:9;15221:16;15260:18;15252:6;15249:30;15246:50;;;15292:1;15289;15282:12;15246:50;15315:22;;15368:4;15360:13;;15356:27;-1:-1:-1;15346:55:1;;15397:1;15394;15387:12;15346:55;15426:2;15420:9;15451:49;15467:32;15496:2;15467:32;:::i;15451:49::-;15523:2;15516:5;15509:17;15563:7;15558:2;15553;15549;15545:11;15541:20;15538:33;15535:53;;;15584:1;15581;15574:12;15535:53;15597:67;15661:2;15656;15649:5;15645:14;15640:2;15636;15632:11;15597:67;:::i;15699:432::-;-1:-1:-1;;;15956:3:1;15949:17;15931:3;15995:6;15989:13;16011:74;16078:6;16074:1;16069:3;16065:11;16058:4;16050:6;16046:17;16011:74;:::i;:::-;16105:16;;;;16123:1;16101:24;;15699:432;-1:-1:-1;;15699:432:1:o;16602:545::-;16704:2;16699:3;16696:11;16693:448;;;16740:1;16765:5;16761:2;16754:17;16810:4;16806:2;16796:19;16880:2;16868:10;16864:19;16861:1;16857:27;16851:4;16847:38;16916:4;16904:10;16901:20;16898:47;;;-1:-1:-1;16939:4:1;16898:47;16994:2;16989:3;16985:12;16982:1;16978:20;16972:4;16968:31;16958:41;;17049:82;17067:2;17060:5;17057:13;17049:82;;;17112:17;;;17093:1;17082:13;17049:82;;;17053:3;;;16602:545;;;:::o;17323:1352::-;17449:3;17443:10;17476:18;17468:6;17465:30;17462:56;;;17498:18;;:::i;:::-;17527:97;17617:6;17577:38;17609:4;17603:11;17577:38;:::i;:::-;17571:4;17527:97;:::i;:::-;17679:4;;17743:2;17732:14;;17760:1;17755:663;;;;18462:1;18479:6;18476:89;;;-1:-1:-1;18531:19:1;;;18525:26;18476:89;-1:-1:-1;;17280:1:1;17276:11;;;17272:24;17268:29;17258:40;17304:1;17300:11;;;17255:57;18578:81;;17725:944;;17755:663;16549:1;16542:14;;;16586:4;16573:18;;-1:-1:-1;;17791:20:1;;;17909:236;17923:7;17920:1;17917:14;17909:236;;;18012:19;;;18006:26;17991:42;;18104:27;;;;18072:1;18060:14;;;;17939:19;;17909:236;;;17913:3;18173:6;18164:7;18161:19;18158:201;;;18234:19;;;18228:26;-1:-1:-1;;18317:1:1;18313:14;;;18329:3;18309:24;18305:37;18301:42;18286:58;18271:74;;18158:201;-1:-1:-1;;;;;18405:1:1;18389:14;;;18385:22;18372:36;;-1:-1:-1;17323:1352:1:o;18680:247::-;18748:6;18801:2;18789:9;18780:7;18776:23;18772:32;18769:52;;;18817:1;18814;18807:12;18769:52;18849:9;18843:16;18868:29;18891:5;18868:29;:::i;19264:422::-;19353:1;19396:5;19353:1;19410:270;19431:7;19421:8;19418:21;19410:270;;;19490:4;19486:1;19482:6;19478:17;19472:4;19469:27;19466:53;;;19499:18;;:::i;:::-;19549:7;19539:8;19535:22;19532:55;;;19569:16;;;;19532:55;19648:22;;;;19608:15;;;;19410:270;;;19414:3;19264:422;;;;;:::o;19691:806::-;19740:5;19770:8;19760:80;;-1:-1:-1;19811:1:1;19825:5;;19760:80;19859:4;19849:76;;-1:-1:-1;19896:1:1;19910:5;;19849:76;19941:4;19959:1;19954:59;;;;20027:1;20022:130;;;;19934:218;;19954:59;19984:1;19975:10;;19998:5;;;20022:130;20059:3;20049:8;20046:17;20043:43;;;20066:18;;:::i;:::-;-1:-1:-1;;20122:1:1;20108:16;;20137:5;;19934:218;;20236:2;20226:8;20223:16;20217:3;20211:4;20208:13;20204:36;20198:2;20188:8;20185:16;20180:2;20174:4;20171:12;20167:35;20164:77;20161:159;;;-1:-1:-1;20273:19:1;;;20305:5;;20161:159;20352:34;20377:8;20371:4;20352:34;:::i;:::-;20422:6;20418:1;20414:6;20410:19;20401:7;20398:32;20395:58;;;20433:18;;:::i;:::-;20471:20;;19691:806;-1:-1:-1;;;19691:806:1:o;20502:140::-;20560:5;20589:47;20630:4;20620:8;20616:19;20610:4;20589:47;:::i;21700:1206::-;21824:18;21819:3;21816:27;21813:53;;;21846:18;;:::i;:::-;21875:94;21965:3;21925:38;21957:4;21951:11;21925:38;:::i;:::-;21919:4;21875:94;:::i;:::-;21995:1;22020:2;22015:3;22012:11;22037:1;22032:616;;;;22692:1;22709:3;22706:93;;;-1:-1:-1;22765:19:1;;;22752:33;22706:93;-1:-1:-1;;17280:1:1;17276:11;;;17272:24;17268:29;17258:40;17304:1;17300:11;;;17255:57;22812:78;;22005:895;;22032:616;16549:1;16542:14;;;16586:4;16573:18;;-1:-1:-1;;22068:17:1;;;22169:9;22191:229;22205:7;22202:1;22199:14;22191:229;;;22294:19;;;22281:33;22266:49;;22401:4;22386:20;;;;22354:1;22342:14;;;;22221:12;22191:229;;;22195:3;22448;22439:7;22436:16;22433:159;;;22572:1;22568:6;22562:3;22556;22553:1;22549:11;22545:21;22541:34;22537:39;22524:9;22519:3;22515:19;22502:33;22498:79;22490:6;22483:95;22433:159;;;22635:1;22629:3;22626:1;22622:11;22618:19;22612:4;22605:33;22005:895;;21700:1206;;;:::o;29802:127::-;29863:10;29858:3;29854:20;29851:1;29844:31;29894:4;29891:1;29884:15;29918:4;29915:1;29908:15;30943:277;31010:6;31063:2;31051:9;31042:7;31038:23;31034:32;31031:52;;;31079:1;31076;31069:12;31031:52;31111:9;31105:16;31164:5;31157:13;31150:21;31143:5;31140:32;31130:60;;31186:1;31183;31176:12;32043:287;32172:3;32210:6;32204:13;32226:66;32285:6;32280:3;32273:4;32265:6;32261:17;32226:66;:::i;:::-;32308:16;;;;;32043:287;-1:-1:-1;;32043:287:1:o

Swarm Source

ipfs://cb52f901078122dd5ce1c57708066d164287656260238b5bdd9a107f6c9dfffe

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.